├── .gitattributes ├── Neos.Flow ├── Documentation │ ├── _build │ │ └── .gitignore │ ├── _static │ │ └── .gitignore │ ├── _templates │ │ └── .gitignore │ ├── requirements.in │ ├── TheDefinitiveGuide │ │ ├── PartV │ │ │ ├── ReleaseNotes │ │ │ │ └── index.rst │ │ │ ├── CodingGuideLines │ │ │ │ ├── index.rst │ │ │ │ ├── Images │ │ │ │ │ ├── PHP_TrueFalse.jpg │ │ │ │ │ └── Flow_Coding_Guidelines_on_one_page.png │ │ │ │ └── Pdf │ │ │ │ │ └── Flow_Coding_Guidelines_on_one_page.pdf │ │ │ ├── ChangeLogs │ │ │ │ ├── index.rst │ │ │ │ ├── 901.rst │ │ │ │ └── 8311.rst │ │ │ └── index.rst │ │ ├── PartII │ │ │ ├── Images │ │ │ │ ├── EditPost.png │ │ │ │ ├── PostIndex.png │ │ │ │ ├── Welcome.png │ │ │ │ ├── MyFirstBlog.png │ │ │ │ ├── UpdatedPost.png │ │ │ │ ├── CreateNewPost.png │ │ │ │ ├── CreatedNewPost.png │ │ │ │ ├── DomainModel-1.png │ │ │ │ ├── DomainModel-2.png │ │ │ │ ├── DomainModel-3.png │ │ │ │ ├── DomainModel-4.png │ │ │ │ ├── DomainModel-5.png │ │ │ │ ├── RoutingLogTail.png │ │ │ │ ├── EditURLWithUUID.png │ │ │ │ ├── FreshBlogPackage.png │ │ │ │ ├── BlogActionRoute2URI.png │ │ │ │ ├── PostActionRoute1URI.png │ │ │ │ ├── LayoutTemplatePartial.png │ │ │ │ ├── CreateActionWithoutArgument.png │ │ │ │ ├── CreateNewPostValidationError1.png │ │ │ │ └── CreateNewPostValidationError2.png │ │ │ └── index.rst │ │ ├── PartI │ │ │ ├── Images │ │ │ │ ├── ddd-lifecycle1.png │ │ │ │ └── ddd-lifecycle2.png │ │ │ └── index.rst │ │ ├── PartIII │ │ │ └── Images │ │ │ │ ├── Error_ReferenceCode.png │ │ │ │ ├── Http_ApplicationFlow.png │ │ │ │ ├── Http_MiddlewaresChain.png │ │ │ │ ├── Security_FilterFirewall.png │ │ │ │ ├── AOPFramework_AdviceChain.png │ │ │ │ ├── Persistence_QueryProcess.png │ │ │ │ ├── Persistence_BlogDomainModel.png │ │ │ │ ├── Persistence_PersistenceProcess.png │ │ │ │ ├── AOPFramework_ProxyBuildingProcess.png │ │ │ │ ├── Security_BasicAuthenticationProcess.png │ │ │ │ ├── Security_BasicAuthorizationProcess.png │ │ │ │ └── Security_FailedAuthorizationProcess.png │ │ └── index.rst │ ├── Quickstart │ │ └── Images │ │ │ ├── Welcome.png │ │ │ └── CoffeeBeanController.png │ ├── Flow_Coding_Guidelines_on_one_page.odt │ └── StyleGuide │ │ └── index.rst ├── Tests │ ├── Unit │ │ ├── Configuration │ │ │ └── Fixture │ │ │ │ ├── YmlThrowsException.yaml │ │ │ │ ├── YmlThrowsException.yml │ │ │ │ ├── SplitYamlConfigurationFile.aaa.yaml │ │ │ │ ├── SplitYamlConfigurationFile.yaml │ │ │ │ ├── SplitYamlConfigurationFile.zzz.yaml │ │ │ │ ├── SplitYamlConfigurationFileWithoutDot.yaml │ │ │ │ └── YAMLConfigurationFile.yaml │ │ ├── Reflection │ │ │ └── Fixture │ │ │ │ ├── FileWithNoClass.php │ │ │ │ ├── DummyClass.php │ │ │ │ ├── ParentClass1.php │ │ │ │ ├── DummyFinalClass.php │ │ │ │ ├── AliasedClass.php │ │ │ │ ├── DummyAbstractClass.php │ │ │ │ ├── DummyInterface1.php │ │ │ │ ├── DummyInterface2.php │ │ │ │ ├── DummyInterface3.php │ │ │ │ ├── TaggedClass1.php │ │ │ │ ├── TaggedClass2.php │ │ │ │ ├── SubClassOfParentClass1.php │ │ │ │ └── ClassWithAlias.php │ │ ├── ObjectManagement │ │ │ └── Fixture │ │ │ │ ├── SomeInterface.php │ │ │ │ ├── ExampleEnum.php │ │ │ │ ├── SomeImplementation.php │ │ │ │ ├── FooBarAnnotation.php │ │ │ │ └── ClassWithUnmatchedRequiredSetterDependency.php │ │ ├── Security │ │ │ └── Fixture │ │ │ │ └── Roles │ │ │ │ ├── Policy.yaml │ │ │ │ ├── Foo.Package1 │ │ │ │ └── Policy.yaml │ │ │ │ └── Package2 │ │ │ │ └── Policy.yaml │ │ ├── Fixtures │ │ │ ├── SecondDummyClass.php │ │ │ ├── RawResponse-2.txt │ │ │ └── DummyClass.php │ │ ├── ResourceManagement │ │ │ └── Fixtures │ │ │ │ └── TestTemplate.html │ │ ├── Aop │ │ │ └── Advice │ │ │ │ └── Fixtures │ │ │ │ └── SomeClass.php │ │ ├── I18n │ │ │ └── Fixtures │ │ │ │ └── MockInvalidXliffData.xlf │ │ └── Property │ │ │ └── TypeConverter │ │ │ └── Fixture │ │ │ └── ExampleIntBackedEnum.php │ ├── Functional │ │ ├── Persistence │ │ │ ├── FixturesPHP8 │ │ │ │ └── ObjectHoldingAnEntity.php │ │ │ └── Fixtures │ │ │ │ └── ObjectHoldingAnEntity.php │ │ ├── ObjectManagement │ │ │ └── Fixtures │ │ │ │ ├── SampleMethodAttribute.php │ │ │ │ ├── InterfaceA.php │ │ │ │ ├── Flow175 │ │ │ │ └── GreeterInterface.php │ │ │ │ ├── SampleAttribute.php │ │ │ │ └── InterfaceWithConstructor.php │ │ ├── I18n │ │ │ └── Xliff │ │ │ │ └── Fixtures │ │ │ │ ├── en │ │ │ │ ├── DependentPackage.WithoutBase.xlf │ │ │ │ ├── BasePackage.GlobalOverride.xlf │ │ │ │ └── BasePackage.GlobalOverride.Global.xlf │ │ │ │ └── de │ │ │ │ ├── BasePackage.Main.xlf │ │ │ │ ├── BasePackage.Unmerged.xlf │ │ │ │ ├── DependentPackage.Main.xlf │ │ │ │ ├── DependentPackage.BaseMain.xlf │ │ │ │ ├── BasePackage.DependentMain.xlf │ │ │ │ └── BasePackage.GlobalOverride.xlf │ │ └── Property │ │ │ └── Fixtures │ │ │ └── TestSubclass.php │ └── Behavior │ │ └── behat.yml ├── Resources │ ├── Private │ │ ├── Templates │ │ │ └── Tests │ │ │ │ └── Functional │ │ │ │ └── Mvc │ │ │ │ └── Fixtures │ │ │ │ ├── ViewsConfigurationTest │ │ │ │ ├── First.html │ │ │ │ ├── Second.html │ │ │ │ ├── RenderOther.html │ │ │ │ ├── Wrong.html │ │ │ │ ├── ChangedOnPackageLevel.html │ │ │ │ ├── ChangedOnControllerLevel.html │ │ │ │ └── Widget.html │ │ │ │ └── ActionControllerTestA │ │ │ │ └── Fourth.html │ │ ├── Schema │ │ │ ├── Settings │ │ │ │ ├── Neos.Flow.utility.schema.yaml │ │ │ │ ├── Neos.Flow.aop.schema.yaml │ │ │ │ ├── Neos.Flow.reflection.schema.yaml │ │ │ │ ├── Neos.Flow.package.schema.yaml │ │ │ │ ├── Neos.Flow.core.schema.yaml │ │ │ │ └── Neos.Flow.object.schema.yaml │ │ │ └── Views.schema.yaml │ │ ├── Translations │ │ │ ├── uk │ │ │ │ └── .ValidationErrors.xlf.swp │ │ │ ├── pt-PT │ │ │ │ ├── Main.xlf │ │ │ │ └── ValidationErrors.xlf │ │ │ └── ta │ │ │ │ ├── Main.xlf │ │ │ │ └── ValidationErrors.xlf │ │ ├── Installer │ │ │ └── Distribution │ │ │ │ └── Defaults │ │ │ │ ├── .gitignore │ │ │ │ ├── flow.bat │ │ │ │ ├── Web │ │ │ │ └── _Resources │ │ │ │ │ └── .htaccess │ │ │ │ └── flow │ │ └── I18n │ │ │ └── CLDR │ │ │ ├── README │ │ │ └── Sources │ │ │ ├── main │ │ │ ├── aa_ER.xml │ │ │ ├── aa_ET.xml │ │ │ ├── bs_BA.xml │ │ │ ├── dv_MV.xml │ │ │ ├── ff_SN.xml │ │ │ ├── gv_GB.xml │ │ │ ├── nr_ZA.xml │ │ │ ├── ny_MW.xml │ │ │ ├── oc_FR.xml │ │ │ ├── sa_IN.xml │ │ │ ├── ss_SZ.xml │ │ │ ├── ss_ZA.xml │ │ │ ├── st_ZA.xml │ │ │ ├── tn_ZA.xml │ │ │ ├── ts_ZA.xml │ │ │ ├── ve_ZA.xml │ │ │ ├── az_Arab.xml │ │ │ ├── byn_ER.xml │ │ │ ├── cch_NG.xml │ │ │ ├── gaa_GH.xml │ │ │ ├── gez_ER.xml │ │ │ ├── gez_ET.xml │ │ │ ├── ha_Latn.xml │ │ │ ├── kaj_NG.xml │ │ │ ├── kcg_NG.xml │ │ │ ├── kfo_CI.xml │ │ │ ├── kk_Cyrl.xml │ │ │ ├── kpe_LR.xml │ │ │ ├── ku_Arab.xml │ │ │ ├── mn_Cyrl.xml │ │ │ ├── nso_ZA.xml │ │ │ ├── sid_ET.xml │ │ │ ├── ssy_ER.xml │ │ │ ├── syr_SY.xml │ │ │ ├── tg_Cyrl.xml │ │ │ ├── tig_ER.xml │ │ │ ├── trv_TW.xml │ │ │ ├── tzm_Latn.xml │ │ │ ├── ug_Arab.xml │ │ │ ├── wal_ET.xml │ │ │ ├── wo_Latn.xml │ │ │ ├── in.xml │ │ │ ├── iw.xml │ │ │ ├── no.xml │ │ │ ├── tl.xml │ │ │ ├── mo.xml │ │ │ ├── sh.xml │ │ │ ├── az_Arab_IR.xml │ │ │ ├── en_Dsrt_US.xml │ │ │ ├── ha_Arab_NG.xml │ │ │ ├── ha_Arab_SD.xml │ │ │ ├── ha_Latn_GH.xml │ │ │ ├── ha_Latn_NE.xml │ │ │ ├── ha_Latn_NG.xml │ │ │ ├── kk_Cyrl_KZ.xml │ │ │ ├── ku_Arab_IQ.xml │ │ │ ├── ku_Latn_SY.xml │ │ │ ├── ku_Latn_TR.xml │ │ │ ├── mn_Cyrl_MN.xml │ │ │ ├── mn_Mong_CN.xml │ │ │ ├── tg_Cyrl_TJ.xml │ │ │ ├── ug_Arab_CN.xml │ │ │ ├── wo_Latn_SN.xml │ │ │ ├── tzm_Latn_MA.xml │ │ │ ├── az_AZ.xml │ │ │ ├── az_IR.xml │ │ │ ├── ha_SD.xml │ │ │ ├── ku_IQ.xml │ │ │ ├── ku_IR.xml │ │ │ ├── ku_SY.xml │ │ │ ├── mn_CN.xml │ │ │ ├── pa_IN.xml │ │ │ ├── pa_PK.xml │ │ │ ├── sh_BA.xml │ │ │ ├── sh_CS.xml │ │ │ ├── sh_YU.xml │ │ │ ├── sr_BA.xml │ │ │ ├── sr_CS.xml │ │ │ ├── sr_ME.xml │ │ │ ├── sr_RS.xml │ │ │ ├── sr_YU.xml │ │ │ ├── uz_AF.xml │ │ │ ├── uz_UZ.xml │ │ │ ├── zh_CN.xml │ │ │ ├── zh_HK.xml │ │ │ ├── zh_MO.xml │ │ │ ├── zh_SG.xml │ │ │ ├── zh_TW.xml │ │ │ ├── shi_MA.xml │ │ │ ├── sr_Cyrl_CS.xml │ │ │ ├── sr_Cyrl_YU.xml │ │ │ ├── sr_Latn_CS.xml │ │ │ ├── sr_Latn_YU.xml │ │ │ ├── kpe_GN.xml │ │ │ ├── st_LS.xml │ │ │ └── ku_Arab_IR.xml │ │ │ ├── bcp47 │ │ │ └── variant.xml │ │ │ ├── collation │ │ │ ├── be.xml │ │ │ ├── bg.xml │ │ │ ├── mk.xml │ │ │ ├── fa_AF.xml │ │ │ ├── sr.xml │ │ │ ├── zh_Hant.xml │ │ │ ├── el.xml │ │ │ ├── he.xml │ │ │ ├── en_BE.xml │ │ │ ├── sr_Latn.xml │ │ │ ├── af.xml │ │ │ ├── ru.xml │ │ │ └── uk.xml │ │ │ └── segments │ │ │ └── el.xml │ └── Public │ │ └── Error │ │ └── Exception.js ├── Configuration │ ├── Development │ │ └── Caches.yaml │ └── Settings.Aop.yaml └── Classes │ ├── Cli │ └── Exception │ │ ├── StopCommandException.php │ │ ├── InvalidCommandControllerException.php │ │ └── InfiniteLoopException.php │ ├── Mvc │ ├── Exception.php │ ├── Exception │ │ ├── CommandException.php │ │ ├── InvalidPartException.php │ │ ├── NoSuchCommandException.php │ │ ├── InfiniteLoopException.php │ │ ├── InvalidFormatException.php │ │ ├── InvalidMarkerException.php │ │ ├── ViewNotFoundException.php │ │ ├── InvalidArgumentMixingException.php │ │ ├── NoSuchArgumentException.php │ │ ├── InvalidActionNameException.php │ │ ├── InvalidCommandIdentifierException.php │ │ ├── InvalidPackageKeyException.php │ │ ├── InvalidRouteSetupException.php │ │ ├── InvalidUriPatternException.php │ │ ├── InvalidArgumentNameException.php │ │ ├── InvalidArgumentTypeException.php │ │ └── InvalidRequestTypeException.php │ └── Routing │ │ └── Exception │ │ ├── InvalidControllerException.php │ │ └── MissingActionNameException.php │ ├── Session │ ├── Exception.php │ ├── Exception │ │ ├── SessionNotStartedException.php │ │ ├── OperationNotSupportedException.php │ │ └── SessionAutostartIsEnabledException.php │ └── Aspect │ │ └── LazyLoadingProxyInterface.php │ ├── Http │ ├── Exception.php │ ├── InvalidArgumentException.php │ └── Client │ │ ├── CurlEngineException.php │ │ └── Exception.php │ ├── I18n │ ├── Exception.php │ └── Exception │ │ └── InvalidXmlFileException.php │ ├── Aop │ ├── Exception.php │ └── Advice │ │ ├── AfterAdvice.php │ │ ├── AfterReturningAdvice.php │ │ ├── BeforeAdvice.php │ │ └── AfterThrowingAdvice.php │ ├── Composer │ └── Exception.php │ ├── Package │ ├── Exception.php │ └── Exception │ │ ├── CorruptPackageException.php │ │ └── UnknownPackageException.php │ ├── Security │ ├── Exception.php │ └── Authorization │ │ └── Privilege │ │ └── PrivilegeSubjectInterface.php │ ├── Reflection │ ├── Exception.php │ └── Exception │ │ ├── InvalidClassException.php │ │ └── UnknownClassException.php │ ├── Validation │ ├── Exception.php │ └── Exception │ │ └── NoSuchFilterException.php │ ├── Error │ └── Exception.php │ ├── ObjectManagement │ ├── Proxy │ │ ├── ProxyInterface.php │ │ └── Exception.php │ ├── Exception.php │ └── Exception │ │ ├── UnsupportedAttributeException.php │ │ └── ProxyCompilerException.php │ ├── Persistence │ ├── Exception.php │ ├── Aspect │ │ └── PersistenceMagicInterface.php │ └── Exception │ │ └── KnownObjectException.php │ ├── Configuration │ ├── Exception.php │ └── Exception │ │ ├── RecursionException.php │ │ ├── NoSuchFileException.php │ │ └── ParseErrorException.php │ ├── Utility │ └── Exception.php │ ├── ResourceManagement │ ├── Exception.php │ ├── Target │ │ └── Exception.php │ ├── Storage │ │ └── Exception.php │ └── Filter │ │ └── FilterInterface.php │ ├── Core │ └── Booting │ │ └── Exception │ │ └── SubProcessException.php │ └── Property │ └── Exception │ ├── InvalidFormatException.php │ ├── InvalidSourceException.php │ ├── InvalidTargetException.php │ ├── TypeConverterException.php │ └── DuplicateObjectException.php ├── Neos.Utility.MediaTypes ├── Tests │ └── Unit │ │ └── Fixtures │ │ ├── Text.txt │ │ └── Neos.png └── phpunit.xml.dist ├── Neos.FluidAdaptor ├── Tests │ ├── Functional │ │ └── View │ │ │ └── Fixtures │ │ │ ├── Partials │ │ │ └── Test.txt │ │ │ ├── SpecialPartialsDirectory │ │ │ └── Test.txt │ │ │ ├── Layouts │ │ │ └── Foo.txt │ │ │ ├── NestedRenderingConfiguration │ │ │ ├── Partials │ │ │ │ └── Test.html │ │ │ └── TemplateWithSection.txt │ │ │ ├── TestTemplate.txt │ │ │ ├── TestTemplateWithUnknownViewHelper.txt │ │ │ ├── SpecialLayouts │ │ │ └── Foo.txt │ │ │ ├── TestTemplateWithPartial.txt │ │ │ ├── TestTemplateWithLayout.txt │ │ │ ├── TestTemplateWithFormField.txt │ │ │ ├── TestTemplateWithFormUpload.txt │ │ │ ├── TestTemplateWithPackageKeyViewHelper.txt │ │ │ └── TestTemplateWithCustomNamespaces.txt │ └── Unit │ │ ├── View │ │ └── Fixtures │ │ │ ├── UnparsedTemplateFixture.html │ │ │ ├── LayoutFixture.html │ │ │ └── TemplateViewSectionFixture.html │ │ ├── Core │ │ └── Parser │ │ │ └── Fixtures │ │ │ ├── TemplateParserTestFixture01-shorthand.html │ │ │ ├── TemplateParserTestFixture01-shorthand-split.php │ │ │ ├── TemplateParserTestFixture14.html │ │ │ ├── TemplateParserTestFixture06.html │ │ │ ├── TemplateParserTestFixture14-split.php │ │ │ └── TemplateParserTestFixture06-split.php │ │ └── ViewHelpers │ │ └── Fixtures │ │ ├── IfFixture.html │ │ └── IfThenElseFixture.html ├── Resources │ └── Private │ │ ├── Templates │ │ ├── Tests │ │ │ └── Functional │ │ │ │ ├── Core │ │ │ │ └── Fixtures │ │ │ │ │ ├── ViewHelpers │ │ │ │ │ ├── Redirect │ │ │ │ │ │ └── Target.html │ │ │ │ │ └── SomeAjax │ │ │ │ │ │ └── Index.html │ │ │ │ │ ├── RedirectTest │ │ │ │ │ └── Index.html │ │ │ │ │ └── AjaxTest │ │ │ │ │ ├── Index.html │ │ │ │ │ └── ForIndex.html │ │ │ │ └── Form │ │ │ │ └── Fixtures │ │ │ │ └── Form │ │ │ │ └── Check.html │ │ └── ViewHelpers │ │ │ └── Widget │ │ │ └── Autocomplete │ │ │ └── Index.html │ │ └── Translations │ │ ├── ta │ │ └── Main.xlf │ │ ├── pt-PT │ │ └── Main.xlf │ │ └── en │ │ └── Main.xlf ├── Configuration │ └── Caches.yaml └── Classes │ ├── Exception.php │ ├── Core │ ├── Exception.php │ ├── ViewHelper │ │ └── Exception.php │ └── Widget │ │ └── Exception.php │ ├── Service │ └── Exception.php │ └── View │ └── Exception.php ├── Neos.Utility.Pdo ├── Configuration │ └── Objects.yaml └── composer.json ├── Neos.Eel ├── Configuration │ └── Caches.yaml ├── Resources │ └── Private │ │ └── PHP │ │ └── php-peg │ │ └── cli.php ├── Scripts │ ├── updatePeg.sh │ ├── generateEelParser.bat │ └── generateEelParser.sh └── Classes │ ├── Exception.php │ ├── FlowQuery │ ├── FizzleException.php │ └── FlowQueryException.php │ ├── EvaluationException.php │ ├── ParserException.php │ └── NotAllowedException.php ├── Neos.Cache ├── phpunit.xml.dist ├── Tests │ └── PhpUnitBootstrap.php └── Classes │ └── Exception │ ├── InvalidCacheException.php │ ├── InvalidDataException.php │ ├── NoSuchCacheException.php │ ├── InvalidBackendException.php │ ├── ClassAlreadyLoadedException.php │ ├── DuplicateIdentifierException.php │ └── NotSupportedByBackendException.php ├── Neos.Error.Messages └── phpunit.xml.dist ├── Neos.Utility.Arrays └── phpunit.xml.dist ├── Neos.Utility.Files ├── phpunit.xml.dist └── Classes │ └── Exception │ └── FilesException.php ├── Neos.Utility.Schema └── phpunit.xml.dist ├── Neos.Utility.Unicode ├── phpunit.xml.dist └── Classes │ ├── Exception.php │ └── UnsupportedFeatureException.php ├── Neos.Utility.ObjectHandling ├── phpunit.xml.dist └── Classes │ └── Exception │ └── InvalidTypeException.php ├── .codeclimate.yml ├── Neos.Http.Factories └── Classes │ ├── UriFactory.php │ ├── StreamFactory.php │ ├── RequestFactory.php │ ├── ResponseFactory.php │ ├── UploadedFileFactory.php │ ├── ServerRequestFactory.php │ ├── UriFactoryTrait.php │ ├── RequestFactoryTrait.php │ └── ResponseFactoryTrait.php ├── .github ├── ISSUE_TEMPLATE │ └── config.yml ├── dependabot.yml └── stale.yml ├── Neos.Kickstarter └── Resources │ └── Private │ └── Generator │ ├── Translations │ └── SourceLanguageTemplate.xlf.tmpl │ ├── Repository │ └── RepositoryTemplate.php.tmpl │ └── View │ ├── DefaultLayout.html │ └── SampleIndexTemplate.html ├── Neos.Utility.OpcodeCache └── composer.json ├── Neos.Flow.Log └── Classes │ ├── Exception.php │ └── Exception │ └── NoSuchBackendException.php └── .editorconfig /.gitattributes: -------------------------------------------------------------------------------- 1 | Neos.Flow/Documentation/conf.py merge=ours 2 | -------------------------------------------------------------------------------- /Neos.Flow/Documentation/_build/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Neos.Flow/Documentation/_static/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Neos.Flow/Documentation/_templates/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Neos.Utility.MediaTypes/Tests/Unit/Fixtures/Text.txt: -------------------------------------------------------------------------------- 1 | Neos is great! -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Functional/View/Fixtures/Partials/Test.txt: -------------------------------------------------------------------------------- 1 | Robert -------------------------------------------------------------------------------- /Neos.Flow/Documentation/requirements.in: -------------------------------------------------------------------------------- 1 | sphinx==7.2.6 2 | sphinx_rtd_theme==1.3.0 3 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Unit/View/Fixtures/UnparsedTemplateFixture.html: -------------------------------------------------------------------------------- 1 | Unparsed Template -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Functional/View/Fixtures/SpecialPartialsDirectory/Test.txt: -------------------------------------------------------------------------------- 1 | Karsten -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Functional/View/Fixtures/Layouts/Foo.txt: -------------------------------------------------------------------------------- 1 | Hey -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Functional/View/Fixtures/NestedRenderingConfiguration/Partials/Test.html: -------------------------------------------------------------------------------- 1 | {hack} -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Functional/View/Fixtures/TestTemplate.txt: -------------------------------------------------------------------------------- 1 | This is a test template. Hello {name}. -------------------------------------------------------------------------------- /Neos.Flow/Tests/Unit/Configuration/Fixture/YmlThrowsException.yaml: -------------------------------------------------------------------------------- 1 | Neos: 2 | Flow: 3 | yaml: true 4 | -------------------------------------------------------------------------------- /Neos.Flow/Tests/Unit/Configuration/Fixture/YmlThrowsException.yml: -------------------------------------------------------------------------------- 1 | Neos: 2 | Flow: 3 | yml: true 4 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/First.html: -------------------------------------------------------------------------------- 1 | First action -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Unit/Core/Parser/Fixtures/TemplateParserTestFixture01-shorthand.html: -------------------------------------------------------------------------------- 1 | 2 | a{f:base()}b -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/Second.html: -------------------------------------------------------------------------------- 1 | Second action -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Functional/View/Fixtures/TestTemplateWithUnknownViewHelper.txt: -------------------------------------------------------------------------------- 1 | {namespace fo} 2 | -------------------------------------------------------------------------------- /Neos.Utility.Pdo/Configuration/Objects.yaml: -------------------------------------------------------------------------------- 1 | Neos\Utility\PdoHelper: 2 | autowiring: off 3 | scope: prototype 4 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Functional/View/Fixtures/SpecialLayouts/Foo.txt: -------------------------------------------------------------------------------- 1 | Hey -- overridden -- -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/RenderOther.html: -------------------------------------------------------------------------------- 1 | Render Other Action -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/Wrong.html: -------------------------------------------------------------------------------- 1 | Oops, that's not right! -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ActionControllerTestA/Fourth.html: -------------------------------------------------------------------------------- 1 | Fourth action {emailAddress} -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Functional/View/Fixtures/TestTemplateWithPartial.txt: -------------------------------------------------------------------------------- 1 | This is a test template. Hello . -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/ChangedOnPackageLevel.html: -------------------------------------------------------------------------------- 1 | Changed on Package Level -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Schema/Settings/Neos.Flow.utility.schema.yaml: -------------------------------------------------------------------------------- 1 | type: dictionary 2 | additionalProperties: false 3 | properties: [] 4 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/ChangedOnControllerLevel.html: -------------------------------------------------------------------------------- 1 | Changed on Controller Level -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Resources/Private/Templates/Tests/Functional/Core/Fixtures/ViewHelpers/Redirect/Target.html: -------------------------------------------------------------------------------- 1 |
{parameter}
-------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Unit/Core/Parser/Fixtures/TemplateParserTestFixture01-shorthand-split.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | HEY HO -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Unit/View/Fixtures/LayoutFixture.html: -------------------------------------------------------------------------------- 1 | {namespace f=Neos\FluidAdaptor\ViewHelpers}
2 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Functional/View/Fixtures/TestTemplateWithFormField.txt: -------------------------------------------------------------------------------- 1 | This is a test template. -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Unit/Core/Parser/Fixtures/TemplateParserTestFixture14.html: -------------------------------------------------------------------------------- 1 | %.3e -------------------------------------------------------------------------------- /Neos.Eel/Configuration/Caches.yaml: -------------------------------------------------------------------------------- 1 | Eel_Expression_Code: 2 | frontend: Neos\Cache\Frontend\StringFrontend 3 | backend: Neos\Cache\Backend\SimpleFileBackend 4 | -------------------------------------------------------------------------------- /Neos.Eel/Resources/Private/PHP/php-peg/cli.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Functional/View/Fixtures/TestTemplateWithPackageKeyViewHelper.txt: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Unit/ViewHelpers/Fixtures/IfFixture.html: -------------------------------------------------------------------------------- 1 | {namespace f=Neos\FluidAdaptor\ViewHelpers}RenderSomething 2 | -------------------------------------------------------------------------------- /Neos.Flow/Configuration/Development/Caches.yaml: -------------------------------------------------------------------------------- 1 | Flow_PropertyMapper: 2 | frontend: Neos\Cache\Frontend\VariableFrontend 3 | backend: Neos\Cache\Backend\NullBackend 4 | -------------------------------------------------------------------------------- /Neos.Flow/Documentation/TheDefinitiveGuide/PartV/ReleaseNotes/index.rst: -------------------------------------------------------------------------------- 1 | Release Notes 2 | ============= 3 | 4 | .. toctree:: 5 | :reversed: 6 | :glob: 7 | 8 | * 9 | -------------------------------------------------------------------------------- /Neos.Flow/Tests/Unit/Reflection/Fixture/FileWithNoClass.php: -------------------------------------------------------------------------------- 1 | foobar -------------------------------------------------------------------------------- /Neos.Flow/Documentation/Quickstart/Images/CoffeeBeanController.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/Quickstart/Images/CoffeeBeanController.png -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/Widget.html: -------------------------------------------------------------------------------- 1 | {namespace test=Neos\FluidAdaptor\Tests\Functional\Core\Fixtures\ViewHelpers} 2 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Resources/Private/Templates/Tests/Functional/Core/Fixtures/RedirectTest/Index.html: -------------------------------------------------------------------------------- 1 | {namespace test=Neos\FluidAdaptor\Tests\Functional\Core\Fixtures\ViewHelpers} 2 | -------------------------------------------------------------------------------- /Neos.Eel/Scripts/updatePeg.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cd ../Resources/Private 4 | git clone git://github.com/skurfuerst/php-peg.git 5 | rm -Rf php-peg/.git 6 | rm -Rf PHP/php-peg 7 | mv php-peg PHP/ 8 | -------------------------------------------------------------------------------- /Neos.Flow/Classes/Cli/Exception/StopCommandException.php: -------------------------------------------------------------------------------- 1 | 2 | Christian uses 3 | -------------------------------------------------------------------------------- /Neos.Flow/Documentation/TheDefinitiveGuide/PartII/Images/MyFirstBlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartII/Images/MyFirstBlog.png -------------------------------------------------------------------------------- /Neos.Flow/Documentation/TheDefinitiveGuide/PartII/Images/UpdatedPost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartII/Images/UpdatedPost.png -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Installer/Distribution/Defaults/.gitignore: -------------------------------------------------------------------------------- 1 | /Build/ 2 | /Configuration/ 3 | /Data/ 4 | /Packages/ 5 | /Web/ 6 | /bin/ 7 | /Readme.rst 8 | /Upgrading.rst 9 | /flow 10 | /flow.bat -------------------------------------------------------------------------------- /Neos.Flow/Tests/Unit/ObjectManagement/Fixture/SomeImplementation.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Unit/Core/Parser/Fixtures/TemplateParserTestFixture06.html: -------------------------------------------------------------------------------- 1 | {namespace foo=Neos\FluidAdaptor\ViewHelpers}{number} 2 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Unit/Core/Parser/Fixtures/TemplateParserTestFixture14-split.php: -------------------------------------------------------------------------------- 1 | ', 5 | '%.3e', 6 | '' 7 | ]; 8 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Tests/Unit/ViewHelpers/Fixtures/IfThenElseFixture.html: -------------------------------------------------------------------------------- 1 | {namespace f=Neos\FluidAdaptor\ViewHelpers} 2 | Do not display 3 | YEP 4 | NOPE 5 | 6 | -------------------------------------------------------------------------------- /Neos.Flow/Documentation/StyleGuide/index.rst: -------------------------------------------------------------------------------- 1 | ======================== 2 | Publications Style Guide 3 | ======================== 4 | 5 | .. toctree:: 6 | :titlesonly: 7 | 8 | About 9 | StyleAndUsage 10 | FontConventions 11 | -------------------------------------------------------------------------------- /Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/Http_MiddlewaresChain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/Http_MiddlewaresChain.png -------------------------------------------------------------------------------- /Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/Security_FilterFirewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/Security_FilterFirewall.png -------------------------------------------------------------------------------- /Neos.Flow/Tests/Unit/Configuration/Fixture/YAMLConfigurationFile.yaml: -------------------------------------------------------------------------------- 1 | configurationFileHasBeenLoaded: true 2 | Neos: 3 | Flow: 4 | something: 'foo' 5 | '@bar': 1 6 | aboolean: true 7 | 'Foo.Bar:Baz': 'a quoted key' 8 | -------------------------------------------------------------------------------- /Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/AOPFramework_AdviceChain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/AOPFramework_AdviceChain.png -------------------------------------------------------------------------------- /Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/Persistence_QueryProcess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/Persistence_QueryProcess.png -------------------------------------------------------------------------------- /Neos.Flow/Tests/Functional/Persistence/FixturesPHP8/ObjectHoldingAnEntity.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tests 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Neos.Error.Messages/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tests 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Neos.Utility.Arrays/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tests 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Neos.Utility.Files/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tests 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Neos.Utility.Schema/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tests 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Neos.Utility.Unicode/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tests 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/README: -------------------------------------------------------------------------------- 1 | 2 | This directory contains the Unicode Common Data Locale Repository (CLDR) 3 | available at http://www.unicode.org/cldr/. 4 | 5 | Latest update: 6 | main: Version 38 as of 2020-06-04 7 | other: Version 1.8.1 as of 2010-04-29 8 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Schema/Settings/Neos.Flow.aop.schema.yaml: -------------------------------------------------------------------------------- 1 | type: dictionary 2 | additionalProperties: false 3 | properties: 4 | 'globalObjects': 5 | required: true 6 | type: dictionary 7 | additionalProperties: { type: string, format: class-name } 8 | -------------------------------------------------------------------------------- /Neos.Utility.MediaTypes/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tests 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Resources/Private/Templates/Tests/Functional/Form/Fixtures/Form/Check.html: -------------------------------------------------------------------------------- 1 |

My Form

2 | 3 | 4 | 5 | Abschicken 6 | -------------------------------------------------------------------------------- /Neos.Utility.ObjectHandling/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tests 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Neos.Flow/Documentation/TheDefinitiveGuide/PartV/CodingGuideLines/Pdf/Flow_Coding_Guidelines_on_one_page.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartV/CodingGuideLines/Pdf/Flow_Coding_Guidelines_on_one_page.pdf -------------------------------------------------------------------------------- /Neos.Flow/Documentation/TheDefinitiveGuide/PartV/CodingGuideLines/Images/Flow_Coding_Guidelines_on_one_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartV/CodingGuideLines/Images/Flow_Coding_Guidelines_on_one_page.png -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Translations/pt-PT/Main.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Translations/ta/Main.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | exclude_paths: 2 | # Auto-generated classes from the PEG parser generator 3 | - Neos.Eel/Classes/FlowQuery/FizzleParser.php 4 | - Neos.Eel/Classes/EelParser.php 5 | - Neos.Eel/Classes/AbstractParser.php 6 | # 3rd party code 7 | - Neos.Eel/Resources/Private/PHP/php-peg/** 8 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Resources/Private/Templates/Tests/Functional/Core/Fixtures/AjaxTest/ForIndex.html: -------------------------------------------------------------------------------- 1 | {namespace test=Neos\FluidAdaptor\Tests\Functional\Core\Fixtures\ViewHelpers} 2 | 3 | 4 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Resources/Private/Translations/ta/Main.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Neos.Http.Factories/Classes/UriFactory.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Neos.FluidAdaptor/Resources/Private/Translations/pt-PT/Main.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Neos.Flow/Configuration/Settings.Aop.yaml: -------------------------------------------------------------------------------- 1 | # 2 | # AOP configuration for the Flow Framework 3 | # 4 | 5 | Neos: 6 | Flow: 7 | aop: 8 | # Registers global objects to be evaluated for dynamic pointcut expressions 9 | globalObjects: 10 | securityContext: Neos\Flow\Security\Context 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/Translations/pt-PT/ValidationErrors.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Neos.Flow/Tests/Functional/Persistence/Fixtures/ObjectHoldingAnEntity.php: -------------------------------------------------------------------------------- 1 | ', 6 | '', 7 | '{number}', 8 | '', 9 | '' 10 | ]; 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: Neos Forum 4 | url: https://discuss.neos.io/ 5 | about: The official online forum for questions and discussions around Neos. 6 | - name: Neos Slack 7 | url: https://slack.neos.io/ 8 | about: Direct chat of the Neos creators and users. 9 | -------------------------------------------------------------------------------- /Neos.Http.Factories/Classes/UploadedFileFactory.php: -------------------------------------------------------------------------------- 1 | f:format.raw()} 3 | {f:widget.uri(action: 'ajaxWithCustomView', ajax: true, arguments: {option1: 'xyz'}) -> f:format.raw()} 4 | -------------------------------------------------------------------------------- /Neos.Cache/Tests/PhpUnitBootstrap.php: -------------------------------------------------------------------------------- 1 | value = $value; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/aa_ER.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/aa_ET.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/bs_BA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/dv_MV.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ff_SN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/gv_GB.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/nr_ZA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ny_MW.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/oc_FR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sa_IN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ss_SZ.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ss_ZA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/st_ZA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/tn_ZA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ts_ZA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ve_ZA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Neos.Flow/Tests/Unit/Security/Fixture/Roles/Foo.Package1/Policy.yaml: -------------------------------------------------------------------------------- 1 | roles: 2 | Administrator: ['Package2:PowerUser'] 3 | 4 | acls: 5 | Administrator: 6 | methods: 7 | method1: 'Some policy from Foo.Package1 for Foo.Package1:Administrator' 8 | 'Package2:User': 9 | methods: 10 | method1: 'Some policy from Foo.Package1 for Package2:User with packageKey definition' 11 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/az_Arab.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | -------------------------------------------------------------------------------- /Neos.Flow/Resources/Private/I18n/CLDR/Sources/collation/fa_AF.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Neos.Eel/Classes/Exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <![CDATA[<f:render section="Title" />]]> 6 | 7 | 8 | ]]> 9 | 10 |

]]>

11 | ]]> 12 | 13 | 14 | -------------------------------------------------------------------------------- /Neos.Eel/Classes/FlowQuery/FizzleException.php: -------------------------------------------------------------------------------- 1 | 7 | # Override again if executed later in the evaluation list 8 | SetHandler default-handler 9 | 10 | 11 | 12 | php_flag engine off 13 | 14 | 15 | php_flag engine off 16 | 17 | -------------------------------------------------------------------------------- /Neos.Eel/Classes/FlowQuery/FlowQueryException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Neos.Flow.Log/Classes/Exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |