From d36adcb0c16ee44f1523c3c180bc136937edbeb2 Mon Sep 17 00:00:00 2001 From: Denny Lubitz Date: Thu, 21 Dec 2023 13:18:28 +0100 Subject: [PATCH 01/14] BUGFIX: Check SVG files for malicious code before providing original asset url links --- .../Classes/Controller/AssetController.php | 28 ++++++++++++++++++- .../Partials/ContentDefaultPreview.html | 13 +++++++-- .../Private/Templates/Asset/Edit.html | 14 +++++++++- .../Private/Templates/Asset/Show.html | 27 +++++++++++++++--- .../Private/Translations/en/Main.xlf | 3 ++ Neos.Media.Browser/composer.json | 4 ++- composer.json | 3 +- 7 files changed, 81 insertions(+), 11 deletions(-) diff --git a/Neos.Media.Browser/Classes/Controller/AssetController.php b/Neos.Media.Browser/Classes/Controller/AssetController.php index 141326a6951..86c7963fe23 100644 --- a/Neos.Media.Browser/Classes/Controller/AssetController.php +++ b/Neos.Media.Browser/Classes/Controller/AssetController.php @@ -14,6 +14,7 @@ use Doctrine\Common\Persistence\Proxy as DoctrineProxy; use Doctrine\ORM\EntityNotFoundException; +use enshrined\svgSanitize\Sanitizer; use Neos\Error\Messages\Error; use Neos\Error\Messages\Message; use Neos\Flow\Annotations as Flow; @@ -35,6 +36,7 @@ use Neos\Media\Domain\Model\AssetCollection; use Neos\Media\Domain\Model\AssetInterface; use Neos\Media\Domain\Model\AssetSource\AssetNotFoundExceptionInterface; +use Neos\Media\Domain\Model\AssetSource\AssetProxy\AssetProxyInterface; use Neos\Media\Domain\Model\AssetSource\AssetProxyRepositoryInterface; use Neos\Media\Domain\Model\AssetSource\AssetSourceConnectionExceptionInterface; use Neos\Media\Domain\Model\AssetSource\AssetSourceInterface; @@ -371,7 +373,8 @@ public function showAction(string $assetSourceIdentifier, string $assetProxyIden $this->view->assignMultiple([ 'assetProxy' => $assetProxy, - 'assetCollections' => $this->assetCollectionRepository->findAll() + 'assetCollections' => $this->assetCollectionRepository->findAll(), + 'assetContainsMaliciousContent' => $this->checkForMaliciousContent($assetProxy) ]); } catch (AssetNotFoundExceptionInterface | AssetSourceConnectionExceptionInterface $e) { $this->view->assign('connectionError', $e); @@ -418,12 +421,14 @@ public function editAction(string $assetSourceIdentifier, string $assetProxyIden } } + $this->view->assignMultiple([ 'tags' => $tags, 'assetProxy' => $assetProxy, 'assetCollections' => $this->assetCollectionRepository->findAll(), 'contentPreview' => $contentPreview, 'assetSource' => $assetSource, + 'assetContainsMaliciousContent' => $this->checkForMaliciousContent($assetProxy), 'canShowVariants' => ($assetProxy instanceof NeosAssetProxy) && ($assetProxy->getAsset() instanceof VariantSupportInterface) ]); } catch (AssetNotFoundExceptionInterface | AssetSourceConnectionExceptionInterface $e) { @@ -1023,4 +1028,25 @@ private function forwardWithConstraints(string $actionName, string $controllerNa } $this->forward($actionName, $controllerName, null, $arguments); } + + private function checkForMaliciousContent(AssetProxyInterface $assetProxy): bool + { + if ($assetProxy->getMediaType() == 'image/svg+xml') { + // @todo: Simplify again when https://github.com/darylldoyle/svg-sanitizer/pull/90 is merged and released. + $previousXmlErrorHandling = libxml_use_internal_errors(true); + $sanitizer = new Sanitizer(); + + $resource = stream_get_contents($assetProxy->getImportStream()); + + $sanitizer->sanitize($resource); + libxml_clear_errors(); + libxml_use_internal_errors($previousXmlErrorHandling); + $issues = $sanitizer->getXmlIssues(); + if ($issues && count($issues) > 0) { + return true; + } + } + + return false; + } } diff --git a/Neos.Media.Browser/Resources/Private/Partials/ContentDefaultPreview.html b/Neos.Media.Browser/Resources/Private/Partials/ContentDefaultPreview.html index f32baac89dd..3f0963cdf42 100644 --- a/Neos.Media.Browser/Resources/Private/Partials/ContentDefaultPreview.html +++ b/Neos.Media.Browser/Resources/Private/Partials/ContentDefaultPreview.html @@ -1,7 +1,14 @@ {namespace m=Neos\Media\ViewHelpers} {namespace neos=Neos\Neos\ViewHelpers}
- - {assetProxy.label} - + + + {assetProxy.label} + + + + {assetProxy.label} + + +
diff --git a/Neos.Media.Browser/Resources/Private/Templates/Asset/Edit.html b/Neos.Media.Browser/Resources/Private/Templates/Asset/Edit.html index f40c47e7df1..06ec12fa5d7 100644 --- a/Neos.Media.Browser/Resources/Private/Templates/Asset/Edit.html +++ b/Neos.Media.Browser/Resources/Private/Templates/Asset/Edit.html @@ -78,7 +78,19 @@

{neos:backend.translate(id: 'connectionError', package: 'Neos.Media.Browser' {neos:backend.translate(id: 'metadata.filename', package: 'Neos.Media.Browser')} - {assetProxy.filename} + + + + {assetProxy.filename} +
+ {neos:backend.translate(id: 'message.assetContainsMaliciousContent', package: 'Neos.Media.Browser')} +
+
+ + {assetProxy.filename} + +
+ {neos:backend.translate(id: 'metadata.lastModified', package: 'Neos.Media.Browser')} diff --git a/Neos.Media.Browser/Resources/Private/Templates/Asset/Show.html b/Neos.Media.Browser/Resources/Private/Templates/Asset/Show.html index 0375e584638..c74719983bb 100644 --- a/Neos.Media.Browser/Resources/Private/Templates/Asset/Show.html +++ b/Neos.Media.Browser/Resources/Private/Templates/Asset/Show.html @@ -39,7 +39,19 @@ {neos:backend.translate(id: 'metadata.filename', package: 'Neos.Media.Browser')} - {assetProxy.filename} + + + + {assetProxy.filename} +
+ {neos:backend.translate(id: 'message.assetContainsMaliciousContent', package: 'Neos.Media.Browser')} +
+
+ + {assetProxy.filename} + +
+ {neos:backend.translate(id: 'metadata.lastModified', package: 'Neos.Media.Browser')} @@ -85,9 +97,16 @@
- - {assetProxy.label} - + + + {assetProxy.label} + + + + {assetProxy.label} + + +
diff --git a/Neos.Media.Browser/Resources/Private/Translations/en/Main.xlf b/Neos.Media.Browser/Resources/Private/Translations/en/Main.xlf index 07f3354ed02..1dd0ef007a1 100644 --- a/Neos.Media.Browser/Resources/Private/Translations/en/Main.xlf +++ b/Neos.Media.Browser/Resources/Private/Translations/en/Main.xlf @@ -101,6 +101,9 @@ This operation cannot be undone. + + This asset might contain malicious content! + Cancel diff --git a/Neos.Media.Browser/composer.json b/Neos.Media.Browser/composer.json index 7b471692107..5ef1f8f26bb 100644 --- a/Neos.Media.Browser/composer.json +++ b/Neos.Media.Browser/composer.json @@ -12,6 +12,7 @@ ], "require": { "php": "^7.3 || ^8.0", + "ext-libxml": "*", "neos/media": "self.version", "neos/content-repository": "self.version", "neos/neos": "self.version", @@ -22,7 +23,8 @@ "neos/utility-mediatypes": "*", "neos/error-messages": "*", "doctrine/common": "^2.7 || ^3.0", - "doctrine/orm": "^2.6" + "doctrine/orm": "^2.6", + "enshrined/svg-sanitize": "^0.16.0" }, "autoload": { "psr-4": { diff --git a/composer.json b/composer.json index b47778adb24..6a93e521d72 100644 --- a/composer.json +++ b/composer.json @@ -30,7 +30,8 @@ "neos/party": "*", "neos/fusion-form": "^1.0 || ^2.0", "neos/form": "*", - "neos/kickstarter": "~7.3.0" + "neos/kickstarter": "~7.3.0", + "enshrined/svg-sanitize": "^0.16.0" }, "replace": { "typo3/typo3cr": "self.version", From a7c93cd8f52f39b2d2d0923eaf06324b1421d621 Mon Sep 17 00:00:00 2001 From: Denny Lubitz Date: Thu, 21 Dec 2023 15:38:15 +0100 Subject: [PATCH 02/14] Update Neos.Media.Browser/Classes/Controller/AssetController.php Co-authored-by: Karsten Dambekalns --- Neos.Media.Browser/Classes/Controller/AssetController.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Neos.Media.Browser/Classes/Controller/AssetController.php b/Neos.Media.Browser/Classes/Controller/AssetController.php index 86c7963fe23..44df81e24e5 100644 --- a/Neos.Media.Browser/Classes/Controller/AssetController.php +++ b/Neos.Media.Browser/Classes/Controller/AssetController.php @@ -421,7 +421,6 @@ public function editAction(string $assetSourceIdentifier, string $assetProxyIden } } - $this->view->assignMultiple([ 'tags' => $tags, 'assetProxy' => $assetProxy, From f7163e2d2f208d6ccb578eac3dcfd3703a7b7e1b Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Wed, 27 Dec 2023 20:20:52 +0100 Subject: [PATCH 03/14] TASK: Translated using Weblate (Dutch) Currently translated at 100.0% (142 of 142 strings) Co-authored-by: Mark Kuiphuis Translate-URL: https://hosted.weblate.org/projects/neos/neosmediabrowser-main-73/nl/ Translation: Neos/Neos.Media.Browser - Main - 7.3 --- .../Private/Translations/nl/Main.xlf | 427 ++++++++++++------ 1 file changed, 284 insertions(+), 143 deletions(-) diff --git a/Neos.Media.Browser/Resources/Private/Translations/nl/Main.xlf b/Neos.Media.Browser/Resources/Private/Translations/nl/Main.xlf index 3a8056ff555..5999ac0939f 100644 --- a/Neos.Media.Browser/Resources/Private/Translations/nl/Main.xlf +++ b/Neos.Media.Browser/Resources/Private/Translations/nl/Main.xlf @@ -4,431 +4,572 @@ Drag and drop an asset on a collection / tag to add them to it. - Sleep een asset naar een collectie of tag om deze daaraan toe te voegen. + Sleep een asset naar een collectie of tag om deze daaraan toe te voegen. + Keep the filename "{0}" - Het bestand "{0}" behouden + Het bestand "{0}" behouden + Media - Media + Media + This module allows managing of media assets including pictures, videos, audio and documents. - Deze module stelt u in staat media bestanden waaronder afbeeldingen, video's, audio bestanden en documenten te beheren. + Deze module stelt u in staat media bestanden waaronder afbeeldingen, video's, audio bestanden en documenten te beheren. + Name - Naam + Naam + Title - Titel + Titel + Label - Label + Label + Caption - Onderschrift + Onderschrift + Copyright Notice - Copyright melding + Copyright melding + Last modified - Laatst bewerkt + Laatst bewerkt + File size - Bestandsgrootte + Bestandsgrootte + Type - Type + Type + Tags - Tags + Tags + Sort by name - Sorteer op naam + Sorteer op naam + Sort by last modified - Sorteer op laatst gewijzigd + Sorteer op laatst gewijzigd + Sort by - Sorteren op + Sorteren op + Sort direction - Sorteer volgorde + Sorteer volgorde + Ascending - Oplopend + Oplopend + Descending - Aflopend + Aflopend + Sort direction Ascending - Oplopend sorteren + Oplopend sorteren + Sort direction Descending - Aflopend sorteren + Aflopend sorteren + Drag and drop on tag or collection - Slepen en neerzetten op tag of collectie + Slepen en neerzetten op tag of collectie + View - Weergeven + Weergeven + View asset - Bekijk materiaal + Bekijk materiaal + Edit asset - Bestand bewerken + Bestand bewerken + Delete asset - Bestand verwijderen + Bestand verwijderen + Do you really want to delete asset "{0}"? - Weet u zeker dat u bestand "{0}" wilt verwijderen? + Weet u zeker dat u bestand "{0}" wilt verwijderen? + Do you really want to delete collection "{0}"? - Weet u zeker dat u collectie "{0}" wilt verwijderen? + Weet u zeker dat u collectie "{0}" wilt verwijderen? + Do you really want to delete tag "{0}"? - Weet u zeker dat u tag "{0}" wilt verwijderen? + Weet u zeker dat u tag "{0}" wilt verwijderen? + This will delete the asset. - Dit verwijderd het bestand. + Dit verwijderd het bestand. + This will delete the collection, but not the assets that it contains. - Dit verwijderd de collectie, maar niet de bestanden die deze bevat. + Dit verwijderd de collectie, maar niet de bestanden die deze bevat. + This will delete the tag, but not the assets that has it. - Dit verwijderd de tag, maar niet de bestanden die deze gebruikt. + Dit verwijderd de tag, maar niet de bestanden die deze gebruikt. + This operation cannot be undone. - Deze bewerking kan niet ongedaan worden gemaakt. + Deze bewerking kan niet ongedaan worden gemaakt. + Cancel - Annuleren + Annuleren + Replace - Vervang + Vervang + Replace asset resource - Vervang asset bron + Vervang asset bron + Save - Sla op + Sla op + Yes, delete the asset - Ja, verwijder het bestand + Ja, verwijder het bestand + Yes, delete the collection - Ja, verwijder de collectie + Ja, verwijder de collectie + Yes, delete the tag - Ja, verwijder de tag + Ja, verwijder de tag + Edit {0} - Bewerk {0} + Bewerk {0} + Search in assets - Zoek binnen de bestanden + Zoek binnen de bestanden + Search - Zoeken + Zoeken + {0} items - {0} items + {0} items + found matching "{0}" - gevonden overeenkomende "{0}" + gevonden overeenkomende "{0}" + Upload - Upload + Upload + Filter options - Filter opties + Filter opties + Display all asset types - Alle bestandstypen weergeven + Alle bestandstypen weergeven + Only display image assets - Alleen afbeeldingen weergeven + Alleen afbeeldingen weergeven + Only display document assets - Toon enkel documenten + Toon enkel documenten + Only display video assets - Toon enkel videobestanden + Toon enkel videobestanden + Only display audio assets - Toon enkel audiobestanden + Toon enkel audiobestanden + All - Alle + Alle + Images - Afbeeldingen + Afbeeldingen + Documents - Documenten + Documenten + Video - Video + Video + Audio - Audio + Audio + Sort options - Sorteeropties + Sorteeropties + List view - Lijstweergave + Lijstweergave + Thumbnail view - Miniatuurweergave + Miniatuurweergave + Connection error - Verbindingsfout + Verbindingsfout + Media source - Media bron + Media bron + Media sources - Media bronnen + Media bronnen + Collections - Collecties + Collecties + Edit collections - Collecties bewerken + Collecties bewerken + Edit collection - Collectie bewerken + Collectie bewerken + Delete collection - Collectie verwijderen + Collectie verwijderen + Create collection - Collectie aanmaken + Collectie aanmaken + Enter collection title - Voer collectie titel in + Voer collectie titel in + All collections - Alle collecties + Alle collecties + Tags - Tags + Tags + Edit tags - Bewerk tags + Bewerk tags + Edit tag - Bewerk tag + Bewerk tag + Delete tag - Verwijder tag + Verwijder tag + Enter tag label - Voer het label van de tag in + Voer het label van de tag in + Create tag - Maak tag aan + Maak tag aan + All assets - Alle assets + Alle assets + All - Alle + Alle + Untagged assets - Bestanden zonder tag + Bestanden zonder tag + Untagged - Zonder tag + Zonder tag + Max. upload size {0} per file - Max. upload grootte {0} per bestand + Max. upload grootte {0} per bestand + Drop files here - Drop bestanden hier + Drop bestanden hier + or click to upload - of klik om te uploaden + of klik om te uploaden + Choose file - Kies bestand + Kies bestand + No Assets found. - Geen bestanden gevonden. + Geen bestanden gevonden. + Basics - Basis + Basis + Delete - Verwijderen + Verwijderen + Click to delete - Klik om te verwijderen + Klik om te verwijderen + Save - Sla op + Sla op + Metadata - Metadata + Metadata + Filename - Bestandsnaam + Bestandsnaam + Last modified (resource) - Laatst bewerkt (resource) + Laatst bewerkt (resource) + File size - Bestandsgrootte + Bestandsgrootte + Dimensions - Dimensies + Dimensies + Type - Type + Type + Identifier - Identifier + Identifier + Title - Titel + Titel + Caption - Onderschrift + Onderschrift + Copyright Notice - Copyright melding + Copyright melding + Preview - Voorbeeld + Voorbeeld + Download - Downloaden + Downloaden + Next - Volgende + Volgende + Previous - Vorige + Vorige + Cannot upload the file - Kan het bestand niet uploaden + Kan het bestand niet uploaden + No file selected - Geen bestand geselecteerd + Geen bestand geselecteerd + The file size of {0} exceeds the allowed limit of {1} - De bestandsgrootte van {0} groter is dan de toegestane limiet van {1} + De bestandsgrootte van {0} groter is dan de toegestane limiet van {1} + for the file - voor het bestand + voor het bestand + Only some of the files were successfully uploaded. Refresh the page to see the those. - Slechts enkele van de bestanden zijn geüpload. Vernieuw de pagina om die te zien. + Slechts enkele van de bestanden zijn geüpload. Vernieuw de pagina om die te zien. + Tagging the asset failed. - Taggen van bestand is mislukt. + Taggen van bestand is mislukt. + Adding the asset to the collection failed. - Het toevoegen van het bestand aan de collectie is niet gelukt. + Het toevoegen van het bestand aan de collectie is niet gelukt. + Creating - Wordt aangemaakt + Wordt aangemaakt + Asset could not be deleted, because there are still Nodes using it - Bestand kon niet worden verwijderd, omdat het nog door nodes wordt gebruikt + Bestand kon niet worden verwijderd, omdat het nog door nodes wordt gebruikt + {0} usages - {0} keer toegepast - + {0} keer toegepast {0} usages - {0} keer toegepast - + {0} keer toegepast References to "{asset}" - Referenties naar "{asset}" + Referenties naar "{asset}" + Replace "{filename}" - Vervang "{filename}" + Vervang "{filename}" + You can replace this asset by uploading a new file. Once replaced, the new asset will be used on all places where the asset is used on your website. - Je kunt dit bestand vervangen door een nieuw bestand te uploaden. Eenmaal vervangen, zal het nieuwe bestand worden gebruikt op alle plaatsen waar de asset op uw website wordt gebruikt. + Je kunt dit bestand vervangen door een nieuw bestand te uploaden. Eenmaal vervangen, zal het nieuwe bestand worden gebruikt op alle plaatsen waar de asset op uw website wordt gebruikt. + Note - Notitie + Notitie + This operation will replace the asset in all published or unpublished workspaces, including the live website. - Deze operatie vervangt de asset in alle gepubliceerde of ongepubliceerde werkruimten, inclusief de live website. + Deze operatie vervangt de asset in alle gepubliceerde of ongepubliceerde werkruimten, inclusief de live website. + Choose a new file - Kies een nieuw bestand + Kies een nieuw bestand + Currently the asset is used {usageCount} times. - Momenteel wordt de asset {usageCount} keer gebruikt. + Momenteel wordt de asset {usageCount} keer gebruikt. + Show all usages - Toon alle toepassingen + Toon alle toepassingen + Currently the asset is not in used anywhere on the website. - Momenteel wordt de asset nergens op de website gebruikt. + Momenteel wordt de asset nergens op de website gebruikt. + Preview current file - Voorbeeld huidige bestand + Voorbeeld huidige bestand + Could not replace asset - Kon het bestand niet vervangen + Kon het bestand niet vervangen + Asset "{0}" has been replaced. - Bestand "{0}" is vervangen. + Bestand "{0}" is vervangen. + Asset "{0}" has been updated. - Bestand "{0}" is aangepast. + Bestand "{0}" is aangepast. + Asset "{0}" has been added. - Bestand "{0}" is toegevoegd. + Bestand "{0}" is toegevoegd. + Asset "{0}" has been deleted. - Bestand "{0}" is verwijderd. + Bestand "{0}" is verwijderd. + Asset could not be deleted. - Het bestand kon niet worden verwijderd. + Het bestand kon niet worden verwijderd. + Tag "{0}" already exists and was added to collection. - Tag "{0}" bestond al en is toegevoegd aan de collectie. + Tag "{0}" bestond al en is toegevoegd aan de collectie. + Tag "{0}" has been created. - Tag "{0}" is aangemaakt. + Tag "{0}" is aangemaakt. + Tag "{0}" has been updated. - Tag "{0}" is aangepast. + Tag "{0}" is aangepast. + Tag "{0}" has been deleted. - Tag "{0}" is verwijderd. + Tag "{0}" is verwijderd. + Collection "{0}" has been created. - Collectie "{0}" is aangemaakt. + Collectie "{0}" is aangemaakt. + Collection "{0}" has been updated. - Collectie "{0}" is aangepast. + Collectie "{0}" is aangepast. + Collection "{0}" has been deleted. - Collectie "{0}" is verwijderd. + Collectie "{0}" is verwijderd. + Generate redirects from original file url to the new url - Genereer een redirect van de originele locatie van het bestand naar de nieuwe locatie + Genereer een redirect van de originele locatie van het bestand naar de nieuwe locatie + 'Resources of type "{0}" can only be replaced by a similar resource. Got type "{1}"' - 'Bronnen van type "{0}' kunnen alleen worden vervangen door een vergelijkbare bron. Kreeg type "{1}"' + 'Bronnen van type "{0}' kunnen alleen worden vervangen door een vergelijkbare bron. Kreeg type "{1}"' + No access to workspace "{0}" - Geen toegang tot werkplaats "{0}" + Geen toegang tot werkplaats "{0}" + No document node found for this node - Geen documentnode gevonden voor deze node + Geen documentnode gevonden voor deze node + + + Create missing variants + Maak ontbrekende varianten aan + From 24a148810b21bc590a061a9cf71a65720b258180 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Wed, 27 Dec 2023 19:22:50 +0000 Subject: [PATCH 04/14] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index e3a63c3ab01..ec95d728ee5 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2023-12-20 +The following reference was automatically generated from code on 2023-12-27 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index 87a66e0b0eb..4cdfff55cdf 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index 80cb29c1601..c95540e967c 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index 259fee69ef0..f383d2cbeae 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index 69e25d42418..09698b78488 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index 8613cc7dd78..ad4324e8b99 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index f7ce9301702..7551d4913c9 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index 3df5d44d900..b5f2f3c11e2 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index dc591767c94..6693933af99 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index f91ea49777b..895960cb438 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index 9d1413f5795..8b7ad8c1e5f 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index 6035f2227b5..6597ea573ae 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index 6a397755388..c5bfce65904 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index 9b7c4981bf2..c3273d1b169 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index 734ff6d5d43..6a708f7c332 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index 65e4a0c9975..bcc833f51a2 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index c8f10aa993b..183d0ec151b 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2023-12-20 +This reference was automatically generated from code on 2023-12-27 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: From 69ae182491bbf95407ada743e55587d396d06d32 Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Thu, 28 Dec 2023 12:09:30 +0100 Subject: [PATCH 05/14] TASK: Translated using Weblate (Dutch)\n\nCurrently translated at 100.0% (142 of 142 strings)\n\nTranslation: Neos/Neos.Media.Browser - Main - 8.0\nTranslate-URL: https://hosted.weblate.org/projects/neos/neosmediabrowser-main-80/nl/ Co-authored-by: Mark Kuiphuis --- .../Private/Translations/nl/Main.xlf | 427 ++++++++++++------ 1 file changed, 284 insertions(+), 143 deletions(-) diff --git a/Neos.Media.Browser/Resources/Private/Translations/nl/Main.xlf b/Neos.Media.Browser/Resources/Private/Translations/nl/Main.xlf index 3a8056ff555..5999ac0939f 100644 --- a/Neos.Media.Browser/Resources/Private/Translations/nl/Main.xlf +++ b/Neos.Media.Browser/Resources/Private/Translations/nl/Main.xlf @@ -4,431 +4,572 @@ Drag and drop an asset on a collection / tag to add them to it. - Sleep een asset naar een collectie of tag om deze daaraan toe te voegen. + Sleep een asset naar een collectie of tag om deze daaraan toe te voegen. + Keep the filename "{0}" - Het bestand "{0}" behouden + Het bestand "{0}" behouden + Media - Media + Media + This module allows managing of media assets including pictures, videos, audio and documents. - Deze module stelt u in staat media bestanden waaronder afbeeldingen, video's, audio bestanden en documenten te beheren. + Deze module stelt u in staat media bestanden waaronder afbeeldingen, video's, audio bestanden en documenten te beheren. + Name - Naam + Naam + Title - Titel + Titel + Label - Label + Label + Caption - Onderschrift + Onderschrift + Copyright Notice - Copyright melding + Copyright melding + Last modified - Laatst bewerkt + Laatst bewerkt + File size - Bestandsgrootte + Bestandsgrootte + Type - Type + Type + Tags - Tags + Tags + Sort by name - Sorteer op naam + Sorteer op naam + Sort by last modified - Sorteer op laatst gewijzigd + Sorteer op laatst gewijzigd + Sort by - Sorteren op + Sorteren op + Sort direction - Sorteer volgorde + Sorteer volgorde + Ascending - Oplopend + Oplopend + Descending - Aflopend + Aflopend + Sort direction Ascending - Oplopend sorteren + Oplopend sorteren + Sort direction Descending - Aflopend sorteren + Aflopend sorteren + Drag and drop on tag or collection - Slepen en neerzetten op tag of collectie + Slepen en neerzetten op tag of collectie + View - Weergeven + Weergeven + View asset - Bekijk materiaal + Bekijk materiaal + Edit asset - Bestand bewerken + Bestand bewerken + Delete asset - Bestand verwijderen + Bestand verwijderen + Do you really want to delete asset "{0}"? - Weet u zeker dat u bestand "{0}" wilt verwijderen? + Weet u zeker dat u bestand "{0}" wilt verwijderen? + Do you really want to delete collection "{0}"? - Weet u zeker dat u collectie "{0}" wilt verwijderen? + Weet u zeker dat u collectie "{0}" wilt verwijderen? + Do you really want to delete tag "{0}"? - Weet u zeker dat u tag "{0}" wilt verwijderen? + Weet u zeker dat u tag "{0}" wilt verwijderen? + This will delete the asset. - Dit verwijderd het bestand. + Dit verwijderd het bestand. + This will delete the collection, but not the assets that it contains. - Dit verwijderd de collectie, maar niet de bestanden die deze bevat. + Dit verwijderd de collectie, maar niet de bestanden die deze bevat. + This will delete the tag, but not the assets that has it. - Dit verwijderd de tag, maar niet de bestanden die deze gebruikt. + Dit verwijderd de tag, maar niet de bestanden die deze gebruikt. + This operation cannot be undone. - Deze bewerking kan niet ongedaan worden gemaakt. + Deze bewerking kan niet ongedaan worden gemaakt. + Cancel - Annuleren + Annuleren + Replace - Vervang + Vervang + Replace asset resource - Vervang asset bron + Vervang asset bron + Save - Sla op + Sla op + Yes, delete the asset - Ja, verwijder het bestand + Ja, verwijder het bestand + Yes, delete the collection - Ja, verwijder de collectie + Ja, verwijder de collectie + Yes, delete the tag - Ja, verwijder de tag + Ja, verwijder de tag + Edit {0} - Bewerk {0} + Bewerk {0} + Search in assets - Zoek binnen de bestanden + Zoek binnen de bestanden + Search - Zoeken + Zoeken + {0} items - {0} items + {0} items + found matching "{0}" - gevonden overeenkomende "{0}" + gevonden overeenkomende "{0}" + Upload - Upload + Upload + Filter options - Filter opties + Filter opties + Display all asset types - Alle bestandstypen weergeven + Alle bestandstypen weergeven + Only display image assets - Alleen afbeeldingen weergeven + Alleen afbeeldingen weergeven + Only display document assets - Toon enkel documenten + Toon enkel documenten + Only display video assets - Toon enkel videobestanden + Toon enkel videobestanden + Only display audio assets - Toon enkel audiobestanden + Toon enkel audiobestanden + All - Alle + Alle + Images - Afbeeldingen + Afbeeldingen + Documents - Documenten + Documenten + Video - Video + Video + Audio - Audio + Audio + Sort options - Sorteeropties + Sorteeropties + List view - Lijstweergave + Lijstweergave + Thumbnail view - Miniatuurweergave + Miniatuurweergave + Connection error - Verbindingsfout + Verbindingsfout + Media source - Media bron + Media bron + Media sources - Media bronnen + Media bronnen + Collections - Collecties + Collecties + Edit collections - Collecties bewerken + Collecties bewerken + Edit collection - Collectie bewerken + Collectie bewerken + Delete collection - Collectie verwijderen + Collectie verwijderen + Create collection - Collectie aanmaken + Collectie aanmaken + Enter collection title - Voer collectie titel in + Voer collectie titel in + All collections - Alle collecties + Alle collecties + Tags - Tags + Tags + Edit tags - Bewerk tags + Bewerk tags + Edit tag - Bewerk tag + Bewerk tag + Delete tag - Verwijder tag + Verwijder tag + Enter tag label - Voer het label van de tag in + Voer het label van de tag in + Create tag - Maak tag aan + Maak tag aan + All assets - Alle assets + Alle assets + All - Alle + Alle + Untagged assets - Bestanden zonder tag + Bestanden zonder tag + Untagged - Zonder tag + Zonder tag + Max. upload size {0} per file - Max. upload grootte {0} per bestand + Max. upload grootte {0} per bestand + Drop files here - Drop bestanden hier + Drop bestanden hier + or click to upload - of klik om te uploaden + of klik om te uploaden + Choose file - Kies bestand + Kies bestand + No Assets found. - Geen bestanden gevonden. + Geen bestanden gevonden. + Basics - Basis + Basis + Delete - Verwijderen + Verwijderen + Click to delete - Klik om te verwijderen + Klik om te verwijderen + Save - Sla op + Sla op + Metadata - Metadata + Metadata + Filename - Bestandsnaam + Bestandsnaam + Last modified (resource) - Laatst bewerkt (resource) + Laatst bewerkt (resource) + File size - Bestandsgrootte + Bestandsgrootte + Dimensions - Dimensies + Dimensies + Type - Type + Type + Identifier - Identifier + Identifier + Title - Titel + Titel + Caption - Onderschrift + Onderschrift + Copyright Notice - Copyright melding + Copyright melding + Preview - Voorbeeld + Voorbeeld + Download - Downloaden + Downloaden + Next - Volgende + Volgende + Previous - Vorige + Vorige + Cannot upload the file - Kan het bestand niet uploaden + Kan het bestand niet uploaden + No file selected - Geen bestand geselecteerd + Geen bestand geselecteerd + The file size of {0} exceeds the allowed limit of {1} - De bestandsgrootte van {0} groter is dan de toegestane limiet van {1} + De bestandsgrootte van {0} groter is dan de toegestane limiet van {1} + for the file - voor het bestand + voor het bestand + Only some of the files were successfully uploaded. Refresh the page to see the those. - Slechts enkele van de bestanden zijn geüpload. Vernieuw de pagina om die te zien. + Slechts enkele van de bestanden zijn geüpload. Vernieuw de pagina om die te zien. + Tagging the asset failed. - Taggen van bestand is mislukt. + Taggen van bestand is mislukt. + Adding the asset to the collection failed. - Het toevoegen van het bestand aan de collectie is niet gelukt. + Het toevoegen van het bestand aan de collectie is niet gelukt. + Creating - Wordt aangemaakt + Wordt aangemaakt + Asset could not be deleted, because there are still Nodes using it - Bestand kon niet worden verwijderd, omdat het nog door nodes wordt gebruikt + Bestand kon niet worden verwijderd, omdat het nog door nodes wordt gebruikt + {0} usages - {0} keer toegepast - + {0} keer toegepast {0} usages - {0} keer toegepast - + {0} keer toegepast References to "{asset}" - Referenties naar "{asset}" + Referenties naar "{asset}" + Replace "{filename}" - Vervang "{filename}" + Vervang "{filename}" + You can replace this asset by uploading a new file. Once replaced, the new asset will be used on all places where the asset is used on your website. - Je kunt dit bestand vervangen door een nieuw bestand te uploaden. Eenmaal vervangen, zal het nieuwe bestand worden gebruikt op alle plaatsen waar de asset op uw website wordt gebruikt. + Je kunt dit bestand vervangen door een nieuw bestand te uploaden. Eenmaal vervangen, zal het nieuwe bestand worden gebruikt op alle plaatsen waar de asset op uw website wordt gebruikt. + Note - Notitie + Notitie + This operation will replace the asset in all published or unpublished workspaces, including the live website. - Deze operatie vervangt de asset in alle gepubliceerde of ongepubliceerde werkruimten, inclusief de live website. + Deze operatie vervangt de asset in alle gepubliceerde of ongepubliceerde werkruimten, inclusief de live website. + Choose a new file - Kies een nieuw bestand + Kies een nieuw bestand + Currently the asset is used {usageCount} times. - Momenteel wordt de asset {usageCount} keer gebruikt. + Momenteel wordt de asset {usageCount} keer gebruikt. + Show all usages - Toon alle toepassingen + Toon alle toepassingen + Currently the asset is not in used anywhere on the website. - Momenteel wordt de asset nergens op de website gebruikt. + Momenteel wordt de asset nergens op de website gebruikt. + Preview current file - Voorbeeld huidige bestand + Voorbeeld huidige bestand + Could not replace asset - Kon het bestand niet vervangen + Kon het bestand niet vervangen + Asset "{0}" has been replaced. - Bestand "{0}" is vervangen. + Bestand "{0}" is vervangen. + Asset "{0}" has been updated. - Bestand "{0}" is aangepast. + Bestand "{0}" is aangepast. + Asset "{0}" has been added. - Bestand "{0}" is toegevoegd. + Bestand "{0}" is toegevoegd. + Asset "{0}" has been deleted. - Bestand "{0}" is verwijderd. + Bestand "{0}" is verwijderd. + Asset could not be deleted. - Het bestand kon niet worden verwijderd. + Het bestand kon niet worden verwijderd. + Tag "{0}" already exists and was added to collection. - Tag "{0}" bestond al en is toegevoegd aan de collectie. + Tag "{0}" bestond al en is toegevoegd aan de collectie. + Tag "{0}" has been created. - Tag "{0}" is aangemaakt. + Tag "{0}" is aangemaakt. + Tag "{0}" has been updated. - Tag "{0}" is aangepast. + Tag "{0}" is aangepast. + Tag "{0}" has been deleted. - Tag "{0}" is verwijderd. + Tag "{0}" is verwijderd. + Collection "{0}" has been created. - Collectie "{0}" is aangemaakt. + Collectie "{0}" is aangemaakt. + Collection "{0}" has been updated. - Collectie "{0}" is aangepast. + Collectie "{0}" is aangepast. + Collection "{0}" has been deleted. - Collectie "{0}" is verwijderd. + Collectie "{0}" is verwijderd. + Generate redirects from original file url to the new url - Genereer een redirect van de originele locatie van het bestand naar de nieuwe locatie + Genereer een redirect van de originele locatie van het bestand naar de nieuwe locatie + 'Resources of type "{0}" can only be replaced by a similar resource. Got type "{1}"' - 'Bronnen van type "{0}' kunnen alleen worden vervangen door een vergelijkbare bron. Kreeg type "{1}"' + 'Bronnen van type "{0}' kunnen alleen worden vervangen door een vergelijkbare bron. Kreeg type "{1}"' + No access to workspace "{0}" - Geen toegang tot werkplaats "{0}" + Geen toegang tot werkplaats "{0}" + No document node found for this node - Geen documentnode gevonden voor deze node + Geen documentnode gevonden voor deze node + + + Create missing variants + Maak ontbrekende varianten aan + From b86947fb2aaff0ad38f78c97ac93207779dd6a0d Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Thu, 28 Dec 2023 12:09:30 +0100 Subject: [PATCH 06/14] TASK: Translated using Weblate (Dutch)\n\nCurrently translated at 100.0% (142 of 142 strings)\n\nTranslation: Neos/Neos.Media.Browser - Main - 8.1\nTranslate-URL: https://hosted.weblate.org/projects/neos/neosmediabrowser-main-81/nl/ Co-authored-by: Mark Kuiphuis --- .../Private/Translations/nl/Main.xlf | 427 ++++++++++++------ 1 file changed, 284 insertions(+), 143 deletions(-) diff --git a/Neos.Media.Browser/Resources/Private/Translations/nl/Main.xlf b/Neos.Media.Browser/Resources/Private/Translations/nl/Main.xlf index 3a8056ff555..5999ac0939f 100644 --- a/Neos.Media.Browser/Resources/Private/Translations/nl/Main.xlf +++ b/Neos.Media.Browser/Resources/Private/Translations/nl/Main.xlf @@ -4,431 +4,572 @@ Drag and drop an asset on a collection / tag to add them to it. - Sleep een asset naar een collectie of tag om deze daaraan toe te voegen. + Sleep een asset naar een collectie of tag om deze daaraan toe te voegen. + Keep the filename "{0}" - Het bestand "{0}" behouden + Het bestand "{0}" behouden + Media - Media + Media + This module allows managing of media assets including pictures, videos, audio and documents. - Deze module stelt u in staat media bestanden waaronder afbeeldingen, video's, audio bestanden en documenten te beheren. + Deze module stelt u in staat media bestanden waaronder afbeeldingen, video's, audio bestanden en documenten te beheren. + Name - Naam + Naam + Title - Titel + Titel + Label - Label + Label + Caption - Onderschrift + Onderschrift + Copyright Notice - Copyright melding + Copyright melding + Last modified - Laatst bewerkt + Laatst bewerkt + File size - Bestandsgrootte + Bestandsgrootte + Type - Type + Type + Tags - Tags + Tags + Sort by name - Sorteer op naam + Sorteer op naam + Sort by last modified - Sorteer op laatst gewijzigd + Sorteer op laatst gewijzigd + Sort by - Sorteren op + Sorteren op + Sort direction - Sorteer volgorde + Sorteer volgorde + Ascending - Oplopend + Oplopend + Descending - Aflopend + Aflopend + Sort direction Ascending - Oplopend sorteren + Oplopend sorteren + Sort direction Descending - Aflopend sorteren + Aflopend sorteren + Drag and drop on tag or collection - Slepen en neerzetten op tag of collectie + Slepen en neerzetten op tag of collectie + View - Weergeven + Weergeven + View asset - Bekijk materiaal + Bekijk materiaal + Edit asset - Bestand bewerken + Bestand bewerken + Delete asset - Bestand verwijderen + Bestand verwijderen + Do you really want to delete asset "{0}"? - Weet u zeker dat u bestand "{0}" wilt verwijderen? + Weet u zeker dat u bestand "{0}" wilt verwijderen? + Do you really want to delete collection "{0}"? - Weet u zeker dat u collectie "{0}" wilt verwijderen? + Weet u zeker dat u collectie "{0}" wilt verwijderen? + Do you really want to delete tag "{0}"? - Weet u zeker dat u tag "{0}" wilt verwijderen? + Weet u zeker dat u tag "{0}" wilt verwijderen? + This will delete the asset. - Dit verwijderd het bestand. + Dit verwijderd het bestand. + This will delete the collection, but not the assets that it contains. - Dit verwijderd de collectie, maar niet de bestanden die deze bevat. + Dit verwijderd de collectie, maar niet de bestanden die deze bevat. + This will delete the tag, but not the assets that has it. - Dit verwijderd de tag, maar niet de bestanden die deze gebruikt. + Dit verwijderd de tag, maar niet de bestanden die deze gebruikt. + This operation cannot be undone. - Deze bewerking kan niet ongedaan worden gemaakt. + Deze bewerking kan niet ongedaan worden gemaakt. + Cancel - Annuleren + Annuleren + Replace - Vervang + Vervang + Replace asset resource - Vervang asset bron + Vervang asset bron + Save - Sla op + Sla op + Yes, delete the asset - Ja, verwijder het bestand + Ja, verwijder het bestand + Yes, delete the collection - Ja, verwijder de collectie + Ja, verwijder de collectie + Yes, delete the tag - Ja, verwijder de tag + Ja, verwijder de tag + Edit {0} - Bewerk {0} + Bewerk {0} + Search in assets - Zoek binnen de bestanden + Zoek binnen de bestanden + Search - Zoeken + Zoeken + {0} items - {0} items + {0} items + found matching "{0}" - gevonden overeenkomende "{0}" + gevonden overeenkomende "{0}" + Upload - Upload + Upload + Filter options - Filter opties + Filter opties + Display all asset types - Alle bestandstypen weergeven + Alle bestandstypen weergeven + Only display image assets - Alleen afbeeldingen weergeven + Alleen afbeeldingen weergeven + Only display document assets - Toon enkel documenten + Toon enkel documenten + Only display video assets - Toon enkel videobestanden + Toon enkel videobestanden + Only display audio assets - Toon enkel audiobestanden + Toon enkel audiobestanden + All - Alle + Alle + Images - Afbeeldingen + Afbeeldingen + Documents - Documenten + Documenten + Video - Video + Video + Audio - Audio + Audio + Sort options - Sorteeropties + Sorteeropties + List view - Lijstweergave + Lijstweergave + Thumbnail view - Miniatuurweergave + Miniatuurweergave + Connection error - Verbindingsfout + Verbindingsfout + Media source - Media bron + Media bron + Media sources - Media bronnen + Media bronnen + Collections - Collecties + Collecties + Edit collections - Collecties bewerken + Collecties bewerken + Edit collection - Collectie bewerken + Collectie bewerken + Delete collection - Collectie verwijderen + Collectie verwijderen + Create collection - Collectie aanmaken + Collectie aanmaken + Enter collection title - Voer collectie titel in + Voer collectie titel in + All collections - Alle collecties + Alle collecties + Tags - Tags + Tags + Edit tags - Bewerk tags + Bewerk tags + Edit tag - Bewerk tag + Bewerk tag + Delete tag - Verwijder tag + Verwijder tag + Enter tag label - Voer het label van de tag in + Voer het label van de tag in + Create tag - Maak tag aan + Maak tag aan + All assets - Alle assets + Alle assets + All - Alle + Alle + Untagged assets - Bestanden zonder tag + Bestanden zonder tag + Untagged - Zonder tag + Zonder tag + Max. upload size {0} per file - Max. upload grootte {0} per bestand + Max. upload grootte {0} per bestand + Drop files here - Drop bestanden hier + Drop bestanden hier + or click to upload - of klik om te uploaden + of klik om te uploaden + Choose file - Kies bestand + Kies bestand + No Assets found. - Geen bestanden gevonden. + Geen bestanden gevonden. + Basics - Basis + Basis + Delete - Verwijderen + Verwijderen + Click to delete - Klik om te verwijderen + Klik om te verwijderen + Save - Sla op + Sla op + Metadata - Metadata + Metadata + Filename - Bestandsnaam + Bestandsnaam + Last modified (resource) - Laatst bewerkt (resource) + Laatst bewerkt (resource) + File size - Bestandsgrootte + Bestandsgrootte + Dimensions - Dimensies + Dimensies + Type - Type + Type + Identifier - Identifier + Identifier + Title - Titel + Titel + Caption - Onderschrift + Onderschrift + Copyright Notice - Copyright melding + Copyright melding + Preview - Voorbeeld + Voorbeeld + Download - Downloaden + Downloaden + Next - Volgende + Volgende + Previous - Vorige + Vorige + Cannot upload the file - Kan het bestand niet uploaden + Kan het bestand niet uploaden + No file selected - Geen bestand geselecteerd + Geen bestand geselecteerd + The file size of {0} exceeds the allowed limit of {1} - De bestandsgrootte van {0} groter is dan de toegestane limiet van {1} + De bestandsgrootte van {0} groter is dan de toegestane limiet van {1} + for the file - voor het bestand + voor het bestand + Only some of the files were successfully uploaded. Refresh the page to see the those. - Slechts enkele van de bestanden zijn geüpload. Vernieuw de pagina om die te zien. + Slechts enkele van de bestanden zijn geüpload. Vernieuw de pagina om die te zien. + Tagging the asset failed. - Taggen van bestand is mislukt. + Taggen van bestand is mislukt. + Adding the asset to the collection failed. - Het toevoegen van het bestand aan de collectie is niet gelukt. + Het toevoegen van het bestand aan de collectie is niet gelukt. + Creating - Wordt aangemaakt + Wordt aangemaakt + Asset could not be deleted, because there are still Nodes using it - Bestand kon niet worden verwijderd, omdat het nog door nodes wordt gebruikt + Bestand kon niet worden verwijderd, omdat het nog door nodes wordt gebruikt + {0} usages - {0} keer toegepast - + {0} keer toegepast {0} usages - {0} keer toegepast - + {0} keer toegepast References to "{asset}" - Referenties naar "{asset}" + Referenties naar "{asset}" + Replace "{filename}" - Vervang "{filename}" + Vervang "{filename}" + You can replace this asset by uploading a new file. Once replaced, the new asset will be used on all places where the asset is used on your website. - Je kunt dit bestand vervangen door een nieuw bestand te uploaden. Eenmaal vervangen, zal het nieuwe bestand worden gebruikt op alle plaatsen waar de asset op uw website wordt gebruikt. + Je kunt dit bestand vervangen door een nieuw bestand te uploaden. Eenmaal vervangen, zal het nieuwe bestand worden gebruikt op alle plaatsen waar de asset op uw website wordt gebruikt. + Note - Notitie + Notitie + This operation will replace the asset in all published or unpublished workspaces, including the live website. - Deze operatie vervangt de asset in alle gepubliceerde of ongepubliceerde werkruimten, inclusief de live website. + Deze operatie vervangt de asset in alle gepubliceerde of ongepubliceerde werkruimten, inclusief de live website. + Choose a new file - Kies een nieuw bestand + Kies een nieuw bestand + Currently the asset is used {usageCount} times. - Momenteel wordt de asset {usageCount} keer gebruikt. + Momenteel wordt de asset {usageCount} keer gebruikt. + Show all usages - Toon alle toepassingen + Toon alle toepassingen + Currently the asset is not in used anywhere on the website. - Momenteel wordt de asset nergens op de website gebruikt. + Momenteel wordt de asset nergens op de website gebruikt. + Preview current file - Voorbeeld huidige bestand + Voorbeeld huidige bestand + Could not replace asset - Kon het bestand niet vervangen + Kon het bestand niet vervangen + Asset "{0}" has been replaced. - Bestand "{0}" is vervangen. + Bestand "{0}" is vervangen. + Asset "{0}" has been updated. - Bestand "{0}" is aangepast. + Bestand "{0}" is aangepast. + Asset "{0}" has been added. - Bestand "{0}" is toegevoegd. + Bestand "{0}" is toegevoegd. + Asset "{0}" has been deleted. - Bestand "{0}" is verwijderd. + Bestand "{0}" is verwijderd. + Asset could not be deleted. - Het bestand kon niet worden verwijderd. + Het bestand kon niet worden verwijderd. + Tag "{0}" already exists and was added to collection. - Tag "{0}" bestond al en is toegevoegd aan de collectie. + Tag "{0}" bestond al en is toegevoegd aan de collectie. + Tag "{0}" has been created. - Tag "{0}" is aangemaakt. + Tag "{0}" is aangemaakt. + Tag "{0}" has been updated. - Tag "{0}" is aangepast. + Tag "{0}" is aangepast. + Tag "{0}" has been deleted. - Tag "{0}" is verwijderd. + Tag "{0}" is verwijderd. + Collection "{0}" has been created. - Collectie "{0}" is aangemaakt. + Collectie "{0}" is aangemaakt. + Collection "{0}" has been updated. - Collectie "{0}" is aangepast. + Collectie "{0}" is aangepast. + Collection "{0}" has been deleted. - Collectie "{0}" is verwijderd. + Collectie "{0}" is verwijderd. + Generate redirects from original file url to the new url - Genereer een redirect van de originele locatie van het bestand naar de nieuwe locatie + Genereer een redirect van de originele locatie van het bestand naar de nieuwe locatie + 'Resources of type "{0}" can only be replaced by a similar resource. Got type "{1}"' - 'Bronnen van type "{0}' kunnen alleen worden vervangen door een vergelijkbare bron. Kreeg type "{1}"' + 'Bronnen van type "{0}' kunnen alleen worden vervangen door een vergelijkbare bron. Kreeg type "{1}"' + No access to workspace "{0}" - Geen toegang tot werkplaats "{0}" + Geen toegang tot werkplaats "{0}" + No document node found for this node - Geen documentnode gevonden voor deze node + Geen documentnode gevonden voor deze node + + + Create missing variants + Maak ontbrekende varianten aan + From 84ded3601ae80bba72083d3f70ff4d8d52455df1 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Thu, 28 Dec 2023 11:12:57 +0000 Subject: [PATCH 07/14] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index 27c82ca74bd..f81ac1c9f4e 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2023-12-21 +The following reference was automatically generated from code on 2023-12-28 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index 152cf0f4a96..7fa06b821c8 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index edf29d5e9ca..c6635906b4b 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index 053bfa84c35..1a1c7010aab 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index fda54492126..d07bc012751 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index b05c422f4fc..37bb722cf5e 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index 3a81a6324e1..3ef8bf93e4b 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index 9d6d45bcda6..859cb591169 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index cfa8fb17367..e98d1ca7696 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index 7a839ade47c..c44cf685a75 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index c2e58be37d4..90d9a617f3d 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index 235fc4e8fc9..981139d6b57 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index df8a264bae0..abb0c4b307a 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index 86108883c9d..19ca969b5cb 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index 6420fa70317..047eff915b2 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index 2eb373a7f4b..a98255692a1 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index 02ee96e470a..7e6d47d975e 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: From a8146772c71c8391c6c5eb76b127fd1adab81c08 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Thu, 28 Dec 2023 11:14:30 +0000 Subject: [PATCH 08/14] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index 27c82ca74bd..f81ac1c9f4e 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2023-12-21 +The following reference was automatically generated from code on 2023-12-28 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index 152cf0f4a96..7fa06b821c8 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index edf29d5e9ca..c6635906b4b 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index 053bfa84c35..1a1c7010aab 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index fda54492126..d07bc012751 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index b05c422f4fc..37bb722cf5e 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index 3a81a6324e1..3ef8bf93e4b 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index 9d6d45bcda6..859cb591169 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index cfa8fb17367..e98d1ca7696 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index 7a839ade47c..c44cf685a75 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index c2e58be37d4..90d9a617f3d 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index 235fc4e8fc9..981139d6b57 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index df8a264bae0..abb0c4b307a 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index 86108883c9d..19ca969b5cb 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index 6420fa70317..047eff915b2 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index 2eb373a7f4b..a98255692a1 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index 02ee96e470a..7e6d47d975e 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2023-12-21 +This reference was automatically generated from code on 2023-12-28 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: From 81970a5c021b4ff9122208311fac2cdc01898f90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Gu=CC=88nther?= Date: Fri, 5 Jan 2024 14:48:35 +0100 Subject: [PATCH 09/14] BUGFIX: Resolve StyleCI issues --- Neos.Fusion/Classes/Core/Parser.php | 2 +- .../Controller/Module/Management/WorkspacesController.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Neos.Fusion/Classes/Core/Parser.php b/Neos.Fusion/Classes/Core/Parser.php index c0ab73aebc3..d29f1c8259f 100644 --- a/Neos.Fusion/Classes/Core/Parser.php +++ b/Neos.Fusion/Classes/Core/Parser.php @@ -618,7 +618,7 @@ protected function parseInclude($include) } $recursiveDirectoryIterator = new \RecursiveDirectoryIterator($basePath); $iterator = new \RecursiveIteratorIterator($recursiveDirectoryIterator); - // Match simple wildcard globbing "*" + // Match simple wildcard globbing "*" } elseif (preg_match('#([^\*]*)\*#', $include, $matches) === 1) { $basePath = $matches['1']; if (!is_dir($basePath)) { diff --git a/Neos.Neos/Classes/Controller/Module/Management/WorkspacesController.php b/Neos.Neos/Classes/Controller/Module/Management/WorkspacesController.php index c5ade354882..d0aeeae4dc3 100644 --- a/Neos.Neos/Classes/Controller/Module/Management/WorkspacesController.php +++ b/Neos.Neos/Classes/Controller/Module/Management/WorkspacesController.php @@ -606,8 +606,8 @@ protected function renderContentChanges(NodeInterface $changedNode) 'diff' => $diffArray ]; } - // The && in belows condition is on purpose as creating a thumbnail for comparison only works if actually - // BOTH are ImageInterface (or NULL). + // The && in belows condition is on purpose as creating a thumbnail for comparison only works if actually + // BOTH are ImageInterface (or NULL). } elseif ( ($originalPropertyValue instanceof ImageInterface || $originalPropertyValue === null) && ($changedPropertyValue instanceof ImageInterface || $changedPropertyValue === null) From ecc641baaa25e38254ed085edf9ae492412fac91 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Fri, 5 Jan 2024 16:00:38 +0000 Subject: [PATCH 10/14] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index ec95d728ee5..b04e468258a 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2023-12-27 +The following reference was automatically generated from code on 2024-01-05 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index 4cdfff55cdf..1eacb86216f 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index c95540e967c..0714cd2a82c 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index f383d2cbeae..b3ef7a90547 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index 09698b78488..5082b8760b3 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index ad4324e8b99..8799b03abab 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index 7551d4913c9..1346e02d869 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index b5f2f3c11e2..95b0d098507 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index 6693933af99..4879ceb224d 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index 895960cb438..29b20e9a292 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index 8b7ad8c1e5f..d55398ff20f 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index 6597ea573ae..0075e561539 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index c5bfce65904..6712a1d8154 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index c3273d1b169..6b1263721bf 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index 6a708f7c332..17e8ed69a9f 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index bcc833f51a2..53c78ff39b0 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index 183d0ec151b..11ae236bec8 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2023-12-27 +This reference was automatically generated from code on 2024-01-05 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: From acd86887a56aa93b83e32a5cec4c3d1ddd9c21c6 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Wed, 10 Jan 2024 13:43:05 +0000 Subject: [PATCH 11/14] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index b04e468258a..6bf64fb7e02 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2024-01-05 +The following reference was automatically generated from code on 2024-01-10 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index 1eacb86216f..c6b3d840ec0 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index 0714cd2a82c..6af8df00971 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index b3ef7a90547..60b5cc90516 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index 5082b8760b3..3dd13fac2fb 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index 8799b03abab..21b5166da3b 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index 1346e02d869..103c38891df 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index 95b0d098507..928847ed65d 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index 4879ceb224d..8dfc2a6e3ca 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index 29b20e9a292..431f42f1a4a 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index d55398ff20f..cbfd52e79b3 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index 0075e561539..55a75fa7330 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index 6712a1d8154..882c871d2ea 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index 6b1263721bf..c25d6744459 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index 17e8ed69a9f..417b4f2c53a 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index 53c78ff39b0..b6ccc6270e2 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index 11ae236bec8..2f286d54ef1 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2024-01-05 +This reference was automatically generated from code on 2024-01-10 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: From 3c29bc14a1f4729ba4fb7db39fdc37ac5687f150 Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Thu, 11 Jan 2024 15:06:13 +0100 Subject: [PATCH 12/14] TASK: Translated using Weblate (Spanish) Currently translated at 100.0% (143 of 143 strings) Co-authored-by: gallegonovato Translate-URL: https://hosted.weblate.org/projects/neos/neosmediabrowser-main-73/es/ Translation: Neos/Neos.Media.Browser - Main - 7.3 --- Neos.Media.Browser/Resources/Private/Translations/es/Main.xlf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Neos.Media.Browser/Resources/Private/Translations/es/Main.xlf b/Neos.Media.Browser/Resources/Private/Translations/es/Main.xlf index 1cadd286e74..ae1cac42e69 100644 --- a/Neos.Media.Browser/Resources/Private/Translations/es/Main.xlf +++ b/Neos.Media.Browser/Resources/Private/Translations/es/Main.xlf @@ -570,6 +570,10 @@ Create missing variants Crear las variantes que faltan + + This asset might contain malicious content! + ¡Este activo puede tener contenido malicioso! + From 4b1457ea27a9c62094dad165d2de4f1cc222233f Mon Sep 17 00:00:00 2001 From: Jenkins Date: Thu, 11 Jan 2024 14:08:09 +0000 Subject: [PATCH 13/14] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index 6bf64fb7e02..de9605f7bab 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2024-01-10 +The following reference was automatically generated from code on 2024-01-11 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index c6b3d840ec0..feee7534a4d 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index 6af8df00971..bcfa93c8c01 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index 60b5cc90516..618ef2d2a35 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index 3dd13fac2fb..4e7199a7a57 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index 21b5166da3b..81e9a141910 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index 103c38891df..88393064a25 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index 928847ed65d..f430eb4f067 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index 8dfc2a6e3ca..f379ae15ba5 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index 431f42f1a4a..99ce6ca6298 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index cbfd52e79b3..1b65ea7856b 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index 55a75fa7330..37a2abc2d93 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index 882c871d2ea..a40b23e6374 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index c25d6744459..b2c84d49426 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index 417b4f2c53a..5e402867ace 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index b6ccc6270e2..79ae177a462 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index 2f286d54ef1..7f1efff180e 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2024-01-10 +This reference was automatically generated from code on 2024-01-11 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: From dd6455e321b56838ab6fac199ffc7865cd0ca5fa Mon Sep 17 00:00:00 2001 From: Jenkins Date: Fri, 12 Jan 2024 17:02:35 +0000 Subject: [PATCH 14/14] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index f81ac1c9f4e..28564e1b912 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2023-12-28 +The following reference was automatically generated from code on 2024-01-12 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index 7fa06b821c8..20f88c82afd 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index c6635906b4b..aae2967c1c4 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index 1a1c7010aab..c913e5f060b 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index d07bc012751..5c94ae3972c 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index 37bb722cf5e..e865cd83f33 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index 3ef8bf93e4b..f6766ebc945 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index 859cb591169..770f72a7b25 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index e98d1ca7696..e2b785bc308 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index c44cf685a75..124a5bd2c06 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index 90d9a617f3d..da5de5356a2 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index 981139d6b57..457da5bd056 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index abb0c4b307a..f5f7ff8c5d9 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index 19ca969b5cb..b13dce2c81d 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index 047eff915b2..212ca4c0baf 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index a98255692a1..87550230383 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index 7e6d47d975e..85a0b259eda 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2023-12-28 +This reference was automatically generated from code on 2024-01-12 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: