├── drupal └── core │ ├── themes │ ├── stark │ │ ├── css │ │ │ └── layout.css │ │ ├── screenshot.png │ │ ├── stark.libraries.yml │ │ └── config │ │ │ └── schema │ │ │ └── stark.schema.yml │ ├── seven │ │ ├── css │ │ │ ├── components │ │ │ │ ├── node.css │ │ │ │ ├── help.css │ │ │ │ ├── breadcrumb.css │ │ │ │ ├── page-title.css │ │ │ │ └── content-header.css │ │ │ └── layout │ │ │ │ └── layout.css │ │ ├── images │ │ │ ├── add.png │ │ │ ├── arrow-asc.png │ │ │ ├── arrow-desc.png │ │ │ ├── arrow-next.png │ │ │ ├── arrow-prev.png │ │ │ ├── noise-low.png │ │ │ ├── task-check.png │ │ │ ├── task-item.png │ │ │ ├── task-item-rtl.png │ │ │ ├── arrow-asc-active.png │ │ │ ├── arrow-desc-active.png │ │ │ ├── ui-icons-222222-256x240.png │ │ │ ├── ui-icons-454545-256x240.png │ │ │ ├── ui-icons-800000-256x240.png │ │ │ ├── ui-icons-888888-256x240.png │ │ │ └── ui-icons-ffffff-256x240.png │ │ ├── screenshot.png │ │ └── config │ │ │ └── schema │ │ │ └── seven.schema.yml │ ├── classy │ │ ├── templates │ │ │ └── field │ │ │ │ ├── field--text-long.html.twig │ │ │ │ └── field--text-with-summary.html.twig │ │ ├── screenshot.png │ │ └── css │ │ │ └── layout.css │ └── bartik │ │ ├── images │ │ ├── add.png │ │ └── tabs-border.png │ │ ├── screenshot.png │ │ ├── css │ │ └── components │ │ │ ├── forum.css │ │ │ ├── toolbar.css │ │ │ └── tips.css │ │ └── config │ │ └── schema │ │ └── bartik.schema.yml │ ├── vendor │ ├── psr │ │ └── log │ │ │ ├── .gitignore │ │ │ └── Psr │ │ │ └── Log │ │ │ └── InvalidArgumentException.php │ ├── symfony │ │ ├── routing │ │ │ └── Tests │ │ │ │ └── Fixtures │ │ │ │ ├── foo.xml │ │ │ │ ├── foo1.xml │ │ │ │ ├── annotated.php │ │ │ │ ├── empty.yml │ │ │ │ ├── nonvalid.yml │ │ │ │ ├── nonvalid2.yml │ │ │ │ ├── special_route_name.yml │ │ │ │ ├── withdoctype.xml │ │ │ │ ├── incomplete.yml │ │ │ │ ├── nonvalidkeys.yml │ │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ │ ├── nonesense_type_without_resource.yml │ │ │ │ └── with_define_path_variable.php │ │ ├── translation │ │ │ └── Tests │ │ │ │ └── fixtures │ │ │ │ ├── empty.csv │ │ │ │ ├── empty.ini │ │ │ │ ├── empty.mo │ │ │ │ ├── empty.po │ │ │ │ ├── empty.xlf │ │ │ │ ├── empty.yml │ │ │ │ ├── empty.json │ │ │ │ ├── non-valid.yml │ │ │ │ ├── resources.ini │ │ │ │ ├── resources.yml │ │ │ │ ├── malformed.json │ │ │ │ ├── resourcebundle │ │ │ │ ├── corrupted │ │ │ │ │ └── resources.dat │ │ │ │ ├── dat │ │ │ │ │ ├── packagelist.txt │ │ │ │ │ ├── en.txt │ │ │ │ │ ├── fr.txt │ │ │ │ │ ├── en.res │ │ │ │ │ └── fr.res │ │ │ │ └── res │ │ │ │ │ └── en.res │ │ │ │ ├── resources.json │ │ │ │ ├── empty-translation.po │ │ │ │ ├── valid.csv │ │ │ │ ├── resources.php │ │ │ │ ├── plurals.po │ │ │ │ ├── resources.csv │ │ │ │ ├── plurals.mo │ │ │ │ ├── encoding.xlf │ │ │ │ ├── resources.mo │ │ │ │ └── empty-translation.mo │ │ ├── validator │ │ │ └── Tests │ │ │ │ ├── Constraints │ │ │ │ └── Fixtures │ │ │ │ │ ├── foo │ │ │ │ │ ├── test.gif │ │ │ │ │ ├── test_4by3.gif │ │ │ │ │ └── test_portrait.gif │ │ │ │ └── Mapping │ │ │ │ └── Loader │ │ │ │ ├── empty-mapping.yml │ │ │ │ └── nonvalid-mapping.yml │ │ ├── console │ │ │ ├── Tests │ │ │ │ └── Fixtures │ │ │ │ │ ├── input_definition_1.md │ │ │ │ │ ├── input_definition_1.txt │ │ │ │ │ ├── application_run4.txt │ │ │ │ │ ├── application_gethelp.txt │ │ │ │ │ ├── input_argument_1.txt │ │ │ │ │ ├── input_definition_1.json │ │ │ │ │ ├── input_option_1.txt │ │ │ │ │ ├── input_argument_2.txt │ │ │ │ │ ├── input_option_3.txt │ │ │ │ │ ├── input_definition_2.txt │ │ │ │ │ ├── input_definition_3.txt │ │ │ │ │ ├── input_argument_1.json │ │ │ │ │ ├── input_argument_3.txt │ │ │ │ │ ├── input_argument_4.txt │ │ │ │ │ ├── input_argument_2.json │ │ │ │ │ ├── input_definition_1.xml │ │ │ │ │ ├── input_option_2.txt │ │ │ │ │ ├── input_option_4.txt │ │ │ │ │ ├── input_argument_4.json │ │ │ │ │ ├── input_option_5.txt │ │ │ │ │ ├── command_1.txt │ │ │ │ │ ├── input_argument_3.json │ │ │ │ │ ├── input_argument_1.md │ │ │ │ │ ├── input_definition_2.json │ │ │ │ │ ├── input_option_1.json │ │ │ │ │ └── input_definition_4.txt │ │ │ ├── .gitignore │ │ │ └── Resources │ │ │ │ └── bin │ │ │ │ └── hiddeninput.exe │ │ ├── serializer │ │ │ └── Tests │ │ │ │ └── Fixtures │ │ │ │ ├── empty-mapping.yml │ │ │ │ └── invalid-mapping.yml │ │ ├── dom-crawler │ │ │ ├── Tests │ │ │ │ └── Fixtures │ │ │ │ │ ├── no-extension │ │ │ │ │ └── windows-1250.html │ │ │ └── .gitignore │ │ ├── http-kernel │ │ │ └── Tests │ │ │ │ └── Fixtures │ │ │ │ ├── Bundle1Bundle │ │ │ │ ├── bar.txt │ │ │ │ ├── foo.txt │ │ │ │ └── Resources │ │ │ │ │ └── foo.txt │ │ │ │ ├── Bundle2Bundle │ │ │ │ └── foo.txt │ │ │ │ ├── BaseBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ │ ├── ChildBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ │ └── Resources │ │ │ │ ├── BaseBundle │ │ │ │ └── hide.txt │ │ │ │ ├── ChildBundle │ │ │ │ └── foo.txt │ │ │ │ ├── FooBundle │ │ │ │ └── foo.txt │ │ │ │ └── Bundle1Bundle │ │ │ │ └── foo.txt │ │ ├── http-foundation │ │ │ └── Tests │ │ │ │ └── File │ │ │ │ └── Fixtures │ │ │ │ ├── .unknownextension │ │ │ │ ├── directory │ │ │ │ └── .empty │ │ │ │ ├── test │ │ │ │ └── test.gif │ │ ├── dependency-injection │ │ │ └── Tests │ │ │ │ └── Fixtures │ │ │ │ ├── yaml │ │ │ │ ├── services1.yml │ │ │ │ ├── nonvalid2.yml │ │ │ │ ├── bad_services.yml │ │ │ │ ├── nonvalid1.yml │ │ │ │ ├── services11.yml │ │ │ │ ├── bad_import.yml │ │ │ │ ├── bad_imports.yml │ │ │ │ ├── bad_parameters.yml │ │ │ │ ├── bad_service.yml │ │ │ │ ├── services7.yml │ │ │ │ ├── services4_bad_import.yml │ │ │ │ ├── bad_calls.yml │ │ │ │ ├── services13.yml │ │ │ │ ├── services3.yml │ │ │ │ ├── badtag1.yml │ │ │ │ └── badtag4.yml │ │ │ │ ├── xml │ │ │ │ ├── nonvalid.xml │ │ │ │ └── withdoctype.xml │ │ │ │ ├── ini │ │ │ │ ├── nonvalid.ini │ │ │ │ ├── parameters.ini │ │ │ │ ├── parameters1.ini │ │ │ │ └── parameters2.ini │ │ │ │ └── php │ │ │ │ └── simple.php │ │ ├── debug │ │ │ ├── .gitignore │ │ │ └── Tests │ │ │ │ ├── Fixtures │ │ │ │ ├── PEARClass.php │ │ │ │ ├── casemismatch.php │ │ │ │ ├── notPsr0Bis.php │ │ │ │ ├── reallyNotPsr0.php │ │ │ │ ├── psr4 │ │ │ │ │ └── Psr4CaseMismatch.php │ │ │ │ └── ClassAlias.php │ │ │ │ └── Fixtures2 │ │ │ │ └── RequiredTwice.php │ │ ├── browser-kit │ │ │ └── .gitignore │ │ ├── yaml │ │ │ └── Tests │ │ │ │ └── Fixtures │ │ │ │ └── embededPhp.yml │ │ ├── class-loader │ │ │ └── Tests │ │ │ │ └── Fixtures │ │ │ │ ├── classmap │ │ │ │ ├── notPhpFile.md │ │ │ │ └── notAClass.php │ │ │ │ ├── includepath │ │ │ │ └── Foo.php │ │ │ │ ├── psr-4 │ │ │ │ ├── Foo.php │ │ │ │ ├── Lets │ │ │ │ │ └── Go │ │ │ │ │ │ └── Deeper │ │ │ │ │ │ ├── Foo.php │ │ │ │ │ │ └── Class_With_Underscores.php │ │ │ │ └── Class_With_Underscores.php │ │ │ │ ├── Pearlike │ │ │ │ ├── Bar.php │ │ │ │ ├── Baz.php │ │ │ │ └── Foo.php │ │ │ │ ├── Pearlike2 │ │ │ │ ├── Bar.php │ │ │ │ ├── Baz.php │ │ │ │ └── Foo.php │ │ │ │ ├── Apc │ │ │ │ ├── Pearlike │ │ │ │ │ ├── Bar.php │ │ │ │ │ ├── Baz.php │ │ │ │ │ └── Foo.php │ │ │ │ ├── fallback │ │ │ │ │ └── Apc │ │ │ │ │ │ └── Pearlike │ │ │ │ │ │ └── FooBar.php │ │ │ │ ├── alpha │ │ │ │ │ └── Apc │ │ │ │ │ │ └── ApcPrefixCollision │ │ │ │ │ │ └── A │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ └── Foo.php │ │ │ │ └── beta │ │ │ │ │ └── Apc │ │ │ │ │ └── ApcPrefixCollision │ │ │ │ │ └── A │ │ │ │ │ └── B │ │ │ │ │ ├── Bar.php │ │ │ │ │ └── Foo.php │ │ │ │ ├── ClassesWithParents │ │ │ │ ├── A.php │ │ │ │ ├── ATrait.php │ │ │ │ ├── CTrait.php │ │ │ │ ├── F.php │ │ │ │ ├── G.php │ │ │ │ ├── B.php │ │ │ │ ├── GInterface.php │ │ │ │ ├── BTrait.php │ │ │ │ ├── D.php │ │ │ │ ├── E.php │ │ │ │ └── CInterface.php │ │ │ │ ├── fallback │ │ │ │ ├── Pearlike │ │ │ │ │ └── FooBar.php │ │ │ │ ├── Pearlike2 │ │ │ │ │ └── FooBar.php │ │ │ │ └── Namespaced2 │ │ │ │ │ └── FooBar.php │ │ │ │ ├── alpha │ │ │ │ ├── PrefixCollision │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ └── Foo.php │ │ │ │ │ └── C │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ └── Foo.php │ │ │ │ └── NamespaceCollision │ │ │ │ │ └── C │ │ │ │ │ ├── Bar.php │ │ │ │ │ └── Foo.php │ │ │ │ ├── Namespaced2 │ │ │ │ ├── Bar.php │ │ │ │ ├── Baz.php │ │ │ │ └── Foo.php │ │ │ │ └── beta │ │ │ │ ├── PrefixCollision │ │ │ │ ├── A │ │ │ │ │ └── B │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ └── Foo.php │ │ │ │ └── C │ │ │ │ │ └── B │ │ │ │ │ ├── Bar.php │ │ │ │ │ └── Foo.php │ │ │ │ └── NamespaceCollision │ │ │ │ └── C │ │ │ │ └── B │ │ │ │ ├── Bar.php │ │ │ │ └── Foo.php │ │ └── css-selector │ │ │ └── CHANGELOG.md │ ├── doctrine │ │ ├── collections │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ │ ├── common │ │ │ ├── tests │ │ │ │ ├── Doctrine │ │ │ │ │ └── Tests │ │ │ │ │ │ └── Common │ │ │ │ │ │ ├── DoctrineExceptionTest.php │ │ │ │ │ │ ├── Persistence │ │ │ │ │ │ └── Mapping │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── global.yml │ │ │ │ │ │ │ ├── stdClass.yml │ │ │ │ │ │ │ └── TestEntity.php │ │ │ │ │ │ ├── ClassLoaderTest │ │ │ │ │ │ ├── ClassA.class.php │ │ │ │ │ │ ├── ClassB.class.php │ │ │ │ │ │ ├── ClassC.class.php │ │ │ │ │ │ ├── ClassD.php │ │ │ │ │ │ └── ClassE.php │ │ │ │ │ │ └── Reflection │ │ │ │ │ │ ├── NoParent.php │ │ │ │ │ │ └── Dummies │ │ │ │ │ │ └── NoParent.php │ │ │ │ └── .gitignore │ │ │ ├── build.properties │ │ │ └── .gitmodules │ │ ├── annotations │ │ │ ├── .gitignore │ │ │ └── tests │ │ │ │ └── Doctrine │ │ │ │ └── Tests │ │ │ │ └── Common │ │ │ │ └── Annotations │ │ │ │ └── Fixtures │ │ │ │ └── NoAnnotation.php │ │ ├── cache │ │ │ ├── .gitignore │ │ │ ├── .coveralls.yml │ │ │ ├── tests │ │ │ │ └── travis │ │ │ │ │ └── php.ini │ │ │ └── build.properties │ │ └── instantiator │ │ │ └── .gitignore │ ├── phpunit │ │ ├── phpunit │ │ │ ├── tests │ │ │ │ ├── _files │ │ │ │ │ ├── bar.xml │ │ │ │ │ ├── foo.xml │ │ │ │ │ ├── expectedFileFormat.txt │ │ │ │ │ ├── JsonData │ │ │ │ │ │ ├── simpleObject.json │ │ │ │ │ │ └── arrayObject.json │ │ │ │ │ ├── configuration.colors.empty.xml │ │ │ │ │ ├── NoTestCaseClass.php │ │ │ │ │ ├── configuration.colors.false.xml │ │ │ │ │ ├── configuration.colors.true.xml │ │ │ │ │ ├── CoveredFunction.php │ │ │ │ │ ├── configuration.colors.invalid.xml │ │ │ │ │ ├── DummyException.php │ │ │ │ │ ├── CustomPrinter.php │ │ │ │ │ ├── NotVoidTestCase.php │ │ │ │ │ ├── EmptyTestCaseTest.php │ │ │ │ │ ├── NonStatic.php │ │ │ │ │ ├── ConcreteTest.php │ │ │ │ │ ├── InheritedTestCase.php │ │ │ │ │ ├── Success.php │ │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ │ ├── Inheritance │ │ │ │ │ │ ├── InheritanceA.php │ │ │ │ │ │ └── InheritanceB.php │ │ │ │ │ ├── NoTestCases.php │ │ │ │ │ ├── NothingTest.php │ │ │ │ │ ├── OverrideTestCase.php │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ ├── ConcreteTest.my.php │ │ │ │ │ ├── MockRunner.php │ │ │ │ │ ├── NoArgTestCaseTest.php │ │ │ │ │ ├── Failure.php │ │ │ │ │ ├── Error.php │ │ │ │ │ └── ThrowNoExceptionTestCase.php │ │ │ │ ├── Regression │ │ │ │ │ ├── 684 │ │ │ │ │ │ └── Issue684Test.php │ │ │ │ │ └── GitHub │ │ │ │ │ │ ├── 74 │ │ │ │ │ │ └── NewException.php │ │ │ │ │ │ ├── 1216 │ │ │ │ │ │ └── bootstrap1216.php │ │ │ │ │ │ ├── 1265 │ │ │ │ │ │ └── phpunit1265.xml │ │ │ │ │ │ ├── 1330 │ │ │ │ │ │ └── phpunit1330.xml │ │ │ │ │ │ └── 1351 │ │ │ │ │ │ └── ChildProcessClass1351.php │ │ │ │ ├── Fail │ │ │ │ │ └── fail.phpt │ │ │ │ └── bootstrap.php │ │ │ └── .gitattributes │ │ ├── php-timer │ │ │ ├── .gitattributes │ │ │ └── .gitignore │ │ ├── php-code-coverage │ │ │ ├── .gitattributes │ │ │ ├── tests │ │ │ │ └── _files │ │ │ │ │ ├── CoveredFunction.php │ │ │ │ │ └── source_without_ignore.php │ │ │ └── scripts │ │ │ │ └── auto_append.php │ │ ├── php-file-iterator │ │ │ ├── .gitattributes │ │ │ └── .gitignore │ │ ├── php-text-template │ │ │ ├── .gitattributes │ │ │ └── .gitignore │ │ ├── php-token-stream │ │ │ ├── .gitattributes │ │ │ ├── tests │ │ │ │ └── _fixture │ │ │ │ │ ├── issue19.php │ │ │ │ │ ├── classInNamespace.php │ │ │ │ │ ├── issue30.php │ │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ │ └── source2.php │ │ │ └── .gitignore │ │ └── phpunit-mock-objects │ │ │ ├── .gitattributes │ │ │ ├── tests │ │ │ ├── _fixture │ │ │ │ ├── AnInterface.php │ │ │ │ ├── AnotherInterface.php │ │ │ │ ├── TraversableMockTestInterface.php │ │ │ │ ├── Bar.php │ │ │ │ ├── ClassWithStaticMethod.php │ │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ │ └── Foo.php │ │ │ └── bootstrap.php │ │ │ ├── src │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ └── Generator │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ └── wsdl_method.tpl.dist │ │ │ └── .gitignore │ ├── sebastian │ │ ├── version │ │ │ ├── .gitattributes │ │ │ └── tests │ │ │ │ └── bootstrap.php │ │ ├── environment │ │ │ └── .gitignore │ │ ├── global-state │ │ │ └── .gitignore │ │ ├── comparator │ │ │ └── .gitignore │ │ ├── exporter │ │ │ └── .gitignore │ │ └── recursion-context │ │ │ └── .gitignore │ ├── guzzlehttp │ │ ├── ringphp │ │ │ ├── docs │ │ │ │ └── requirements.txt │ │ │ ├── .gitignore │ │ │ └── src │ │ │ │ └── Exception │ │ │ │ └── RingException.php │ │ ├── guzzle │ │ │ ├── docs │ │ │ │ ├── requirements.txt │ │ │ │ └── _static │ │ │ │ │ ├── logo.png │ │ │ │ │ └── guzzle-icon.png │ │ │ └── src │ │ │ │ └── Exception │ │ │ │ ├── ConnectException.php │ │ │ │ ├── StateException.php │ │ │ │ ├── TransferException.php │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ └── CouldNotRewindStreamException.php │ │ └── streams │ │ │ ├── .gitignore │ │ │ └── src │ │ │ └── Exception │ │ │ └── CannotAttachException.php │ ├── fabpot │ │ └── goutte │ │ │ └── .gitignore │ ├── phpdocumentor │ │ └── reflection-docblock │ │ │ └── .gitignore │ ├── twig │ │ └── twig │ │ │ ├── test │ │ │ └── Twig │ │ │ │ └── Tests │ │ │ │ ├── Loader │ │ │ │ └── Fixtures │ │ │ │ │ ├── normal │ │ │ │ │ └── index.html │ │ │ │ │ ├── named │ │ │ │ │ └── index.html │ │ │ │ │ ├── normal_bis │ │ │ │ │ └── index.html │ │ │ │ │ ├── normal_ter │ │ │ │ │ └── index.html │ │ │ │ │ ├── named_bis │ │ │ │ │ └── index.html │ │ │ │ │ ├── named_ter │ │ │ │ │ └── index.html │ │ │ │ │ ├── normal_final │ │ │ │ │ └── index.html │ │ │ │ │ ├── named_final │ │ │ │ │ └── index.html │ │ │ │ │ ├── named_quater │ │ │ │ │ └── named_absolute.html │ │ │ │ │ ├── inheritance │ │ │ │ │ ├── parent.html.twig │ │ │ │ │ ├── spare_parent.html.twig │ │ │ │ │ ├── array_inheritance_empty_parent.html.twig │ │ │ │ │ └── array_inheritance_null_parent.html.twig │ │ │ │ │ └── themes │ │ │ │ │ ├── theme1 │ │ │ │ │ └── blocks.html.twig │ │ │ │ │ └── theme2 │ │ │ │ │ └── blocks.html.twig │ │ │ │ ├── Fixtures │ │ │ │ ├── errors │ │ │ │ │ └── base.html │ │ │ │ ├── tags │ │ │ │ │ └── special_chars.test │ │ │ │ ├── filters │ │ │ │ │ ├── special_chars.test │ │ │ │ │ └── escape.test │ │ │ │ └── functions │ │ │ │ │ └── special_chars.test │ │ │ │ └── Node │ │ │ │ └── Expression │ │ │ │ └── PHP53 │ │ │ │ └── TestInclude.php │ │ │ └── .gitignore │ ├── behat │ │ ├── mink │ │ │ ├── driver-testsuite │ │ │ │ └── web-fixtures │ │ │ │ │ ├── some_file.txt │ │ │ │ │ ├── 404.php │ │ │ │ │ ├── redirector.php │ │ │ │ │ ├── 500.php │ │ │ │ │ ├── sub-folder │ │ │ │ │ └── cookie_page2.php │ │ │ │ │ └── json.php │ │ │ └── .gitignore │ │ ├── mink-browserkit-driver │ │ │ ├── .gitignore │ │ │ └── tests │ │ │ │ └── web-fixtures │ │ │ │ ├── 404.php │ │ │ │ ├── 500.php │ │ │ │ └── redirector.php │ │ └── mink-goutte-driver │ │ │ └── .gitignore │ ├── masterminds │ │ └── html5 │ │ │ ├── .gitignore │ │ │ └── test │ │ │ └── HTML5 │ │ │ └── Parser │ │ │ └── EventStackError.php │ ├── phpspec │ │ └── prophecy │ │ │ └── .gitignore │ ├── react │ │ └── promise │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ └── functions_include.php │ │ │ └── tests │ │ │ └── Stub │ │ │ └── CallableStub.php │ ├── egulias │ │ └── email-validator │ │ │ └── .coveralls.yml │ ├── zendframework │ │ ├── zend-feed │ │ │ └── CONTRIBUTING.md │ │ ├── zend-escaper │ │ │ └── CONTRIBUTING.md │ │ └── zend-stdlib │ │ │ └── CONTRIBUTING.md │ ├── web.config │ └── autoload.php │ ├── assets │ └── vendor │ │ ├── .gitignore │ │ ├── farbtastic │ │ ├── mask.png │ │ ├── wheel.png │ │ └── marker.png │ │ ├── ckeditor │ │ ├── plugins │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── icon-rtl.png │ │ │ │ │ └── icon-rtl.png │ │ │ ├── widget │ │ │ │ └── images │ │ │ │ │ └── handle.png │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ └── showblocks │ │ │ │ └── images │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ ├── block_pre.png │ │ │ │ ├── block_address.png │ │ │ │ └── block_blockquote.png │ │ └── skins │ │ │ └── moono │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ └── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ ├── hidpi │ │ │ ├── close.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── lock-open.png │ │ │ └── lock-open.png │ │ └── classList │ │ └── LICENSE.md │ ├── modules │ ├── simpletest │ │ ├── files │ │ │ ├── translations │ │ │ │ ├── drupal-8.0.0.de.po │ │ │ │ └── drupal-8.0.0-beta2.hu.po │ │ │ ├── html-1.txt │ │ │ ├── html-2.html │ │ │ ├── sql-1.txt │ │ │ ├── sql-2.sql │ │ │ ├── php-2.php │ │ │ ├── php-1.txt │ │ │ ├── javascript-1.txt │ │ │ ├── javascript-2.script │ │ │ ├── image-1.png │ │ │ ├── image-2.jpg │ │ │ ├── image-test.gif │ │ │ ├── image-test.jpg │ │ │ ├── image-test.png │ │ │ ├── image-test-no-transparency.gif │ │ │ └── image-test-transparent-out-of-range.gif │ │ ├── simpletest.permissions.yml │ │ ├── config │ │ │ └── install │ │ │ │ └── simpletest.settings.yml │ │ ├── tests │ │ │ └── fixtures │ │ │ │ ├── select_none_selected.html │ │ │ │ └── select_2nd_selected.html │ │ └── simpletest.services.yml │ ├── system │ │ ├── tests │ │ │ ├── fixtures │ │ │ │ ├── HtaccessTest │ │ │ │ │ ├── access_test.engine │ │ │ │ │ ├── access_test.inc │ │ │ │ │ ├── access_test.make │ │ │ │ │ ├── access_test.module │ │ │ │ │ ├── access_test.po │ │ │ │ │ ├── access_test.sh │ │ │ │ │ ├── access_test.sql │ │ │ │ │ ├── access_test.theme │ │ │ │ │ ├── access_test.twig │ │ │ │ │ ├── access_test.xtmpl │ │ │ │ │ ├── access_test.yml │ │ │ │ │ ├── access_test.install │ │ │ │ │ ├── access_test.module.bak │ │ │ │ │ ├── access_test.module.orig │ │ │ │ │ ├── access_test.module.save │ │ │ │ │ ├── access_test.module.swo │ │ │ │ │ ├── access_test.module.swp │ │ │ │ │ ├── access_test.php.bak │ │ │ │ │ ├── access_test.php.orig │ │ │ │ │ ├── access_test.php.save │ │ │ │ │ ├── access_test.php.swo │ │ │ │ │ ├── access_test.php.swp │ │ │ │ │ ├── access_test.profile │ │ │ │ │ ├── access_test.tpl.php │ │ │ │ │ └── access_test.php-info.txt │ │ │ │ ├── missing_keys.info.txt │ │ │ │ └── update │ │ │ │ │ └── drupal-8.bare.standard.php.gz │ │ │ ├── themes │ │ │ │ ├── test_theme_phptemplate │ │ │ │ │ ├── test_theme_phptemplate.theme │ │ │ │ │ ├── node--1.tpl.php │ │ │ │ │ └── theme_test.template_test.tpl.php │ │ │ │ ├── test_subtheme │ │ │ │ │ ├── config │ │ │ │ │ │ └── install │ │ │ │ │ │ │ └── test_subtheme.settings.yml │ │ │ │ │ └── test_subtheme.libraries.yml │ │ │ │ ├── test_theme │ │ │ │ │ ├── theme_test.template_test.html.twig │ │ │ │ │ ├── test_theme.libraries.yml │ │ │ │ │ ├── node--1.html.twig │ │ │ │ │ └── theme-test-function-template-override.html.twig │ │ │ │ └── test_basetheme │ │ │ │ │ └── config │ │ │ │ │ └── install │ │ │ │ │ └── test_basetheme.settings.yml │ │ │ ├── modules │ │ │ │ ├── menu_test │ │ │ │ │ └── config │ │ │ │ │ │ └── install │ │ │ │ │ │ ├── menu_test.menu_item.yml │ │ │ │ │ │ └── language │ │ │ │ │ │ └── nl │ │ │ │ │ │ └── menu_test.menu_item.yml │ │ │ │ ├── image_test │ │ │ │ │ └── config │ │ │ │ │ │ └── install │ │ │ │ │ │ └── system.image.test_toolkit.yml │ │ │ │ ├── theme_test │ │ │ │ │ └── templates │ │ │ │ │ │ ├── theme-test-render-element.html.twig │ │ │ │ │ │ ├── theme_test.template_test.html.twig │ │ │ │ │ │ ├── theme-test-specific-suggestions.html.twig │ │ │ │ │ │ ├── theme-test-suggestions.html.twig │ │ │ │ │ │ └── theme-test-general-suggestions.html.twig │ │ │ │ ├── update_script_test │ │ │ │ │ └── config │ │ │ │ │ │ └── install │ │ │ │ │ │ └── update_script_test.settings.yml │ │ │ │ ├── module_test │ │ │ │ │ ├── config │ │ │ │ │ │ └── schema │ │ │ │ │ │ │ └── module_test.schema.yml │ │ │ │ │ └── module_test.permissions.yml │ │ │ │ ├── twig_theme_test │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── twig_theme_test.attach_library.html.twig │ │ │ │ │ │ ├── twig_theme_test.url_to_string.html.twig │ │ │ │ │ │ ├── twig-autoescape-test.html.twig │ │ │ │ │ │ ├── twig-registry-loader-test-include.html.twig │ │ │ │ │ │ ├── twig-raw-test.html.twig │ │ │ │ │ │ └── twig_theme_test.file_url.html.twig │ │ │ │ │ ├── modules │ │ │ │ │ │ └── twig_namespace_b │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── test.html.twig │ │ │ │ │ └── twig_theme_test.js │ │ │ │ ├── common_test │ │ │ │ │ ├── common_test.css │ │ │ │ │ └── common_test.print.css │ │ │ │ ├── system_test │ │ │ │ │ └── src │ │ │ │ │ │ └── system_test.permissions.yml │ │ │ │ ├── twig_extension_test │ │ │ │ │ └── templates │ │ │ │ │ │ └── twig_extension_test.filter.html.twig │ │ │ │ ├── entity_test │ │ │ │ │ └── entity_test.links.task.yml │ │ │ │ ├── router_test_directory │ │ │ │ │ └── router_test.permissions.yml │ │ │ │ └── test_page_test │ │ │ │ │ └── test_page_test.links.menu.yml │ │ │ ├── logo.svgz │ │ │ └── css │ │ │ │ └── system.module.css │ │ ├── config │ │ │ └── install │ │ │ │ ├── system.image.yml │ │ │ │ ├── system.image.gd.yml │ │ │ │ ├── system.logging.yml │ │ │ │ ├── system.authorize.yml │ │ │ │ ├── system.theme.yml │ │ │ │ ├── system.mail.yml │ │ │ │ ├── system.diff.yml │ │ │ │ ├── system.cron.yml │ │ │ │ ├── system.rss.yml │ │ │ │ ├── core.date_format.html_date.yml │ │ │ │ ├── core.date_format.html_week.yml │ │ │ │ ├── core.date_format.html_year.yml │ │ │ │ ├── system.file.yml │ │ │ │ ├── core.date_format.html_month.yml │ │ │ │ ├── core.date_format.html_time.yml │ │ │ │ ├── core.date_format.short.yml │ │ │ │ ├── system.maintenance.yml │ │ │ │ ├── system.menu.footer.yml │ │ │ │ ├── core.date_format.long.yml │ │ │ │ ├── system.menu.admin.yml │ │ │ │ ├── core.date_format.fallback.yml │ │ │ │ ├── core.date_format.medium.yml │ │ │ │ ├── system.menu.account.yml │ │ │ │ ├── core.date_format.html_datetime.yml │ │ │ │ ├── core.date_format.html_yearless_date.yml │ │ │ │ ├── system.menu.main.yml │ │ │ │ └── system.menu.tools.yml │ │ ├── images │ │ │ └── no_screenshot.png │ │ └── system.links.action.yml │ ├── dblog │ │ ├── config │ │ │ └── install │ │ │ │ └── dblog.settings.yml │ │ └── dblog.libraries.yml │ ├── action │ │ ├── config │ │ │ └── install │ │ │ │ └── action.settings.yml │ │ ├── action.permissions.yml │ │ └── action.links.task.yml │ ├── field │ │ └── config │ │ │ └── install │ │ │ └── field.settings.yml │ ├── node │ │ ├── config │ │ │ └── install │ │ │ │ ├── node.settings.yml │ │ │ │ ├── core.entity_view_mode.node.rss.yml │ │ │ │ └── core.entity_view_mode.node.teaser.yml │ │ └── tests │ │ │ └── modules │ │ │ └── node_access_test │ │ │ └── node_access_test.permissions.yml │ ├── field_ui │ │ └── config │ │ │ └── install │ │ │ └── field_ui.settings.yml │ ├── text │ │ ├── config │ │ │ └── install │ │ │ │ └── text.settings.yml │ │ └── text.libraries.yml │ ├── tracker │ │ ├── config │ │ │ └── install │ │ │ │ └── tracker.settings.yml │ │ └── tracker.links.menu.yml │ ├── ban │ │ ├── ban.permissions.yml │ │ └── ban.links.menu.yml │ ├── block │ │ ├── block.permissions.yml │ │ └── block.links.contextual.yml │ ├── forum │ │ ├── forum.permissions.yml │ │ ├── forum.libraries.yml │ │ └── icons │ │ │ └── forum-icons.png │ ├── menu_ui │ │ ├── config │ │ │ └── install │ │ │ │ └── menu_ui.settings.yml │ │ ├── menu_ui.permissions.yml │ │ ├── css │ │ │ └── menu_ui.admin.css │ │ └── menu_ui.links.contextual.yml │ ├── shortcut │ │ ├── config │ │ │ └── install │ │ │ │ └── shortcut.set.default.yml │ │ └── shortcut.libraries.yml │ ├── config │ │ ├── tests │ │ │ ├── config_test │ │ │ │ ├── config │ │ │ │ │ └── install │ │ │ │ │ │ ├── config_test.system.yml │ │ │ │ │ │ ├── language │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── config_test.system.yml │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── config_test.system.yml │ │ │ │ │ │ └── fr │ │ │ │ │ │ │ └── config_test.system.yml │ │ │ │ │ │ ├── config_test.no_status.default.yml │ │ │ │ │ │ └── config_test.dynamic.isinstallable.default.yml │ │ │ │ └── config_test.links.task.yml │ │ │ ├── config_integration_test │ │ │ │ └── config │ │ │ │ │ └── install │ │ │ │ │ ├── config_integration_test.settings.yml │ │ │ │ │ └── config_test.dynamic.config_integration_test.yml │ │ │ ├── config_collection_install_test │ │ │ │ └── config │ │ │ │ │ └── install │ │ │ │ │ ├── entity │ │ │ │ │ └── config_test.dynamic.dotted.default.yml │ │ │ │ │ ├── collection │ │ │ │ │ ├── test1 │ │ │ │ │ │ └── config_collection_install_test.test.yml │ │ │ │ │ └── test2 │ │ │ │ │ │ └── config_collection_install_test.test.yml │ │ │ │ │ └── another_collection │ │ │ │ │ └── config_collection_install_test.test.yml │ │ │ ├── config_collection_clash_install_test │ │ │ │ └── config │ │ │ │ │ └── install │ │ │ │ │ ├── entity │ │ │ │ │ └── config_test.dynamic.dotted.default.yml │ │ │ │ │ ├── another_collection │ │ │ │ │ └── config_collection_install_test.test.yml │ │ │ │ │ └── collection │ │ │ │ │ ├── test1 │ │ │ │ │ └── config_collection_install_test.test.yml │ │ │ │ │ └── test2 │ │ │ │ │ └── config_collection_install_test.test.yml │ │ │ ├── config_override_test │ │ │ │ └── config │ │ │ │ │ └── install │ │ │ │ │ └── system.cron.yml │ │ │ ├── config_schema_test │ │ │ │ └── config │ │ │ │ │ └── install │ │ │ │ │ ├── config_schema_test.someschema.somemodule.section_one.subsection.yml │ │ │ │ │ └── config_schema_test.someschema.somemodule.section_two.subsection.yml │ │ │ ├── config_test_language │ │ │ │ └── config │ │ │ │ │ └── install │ │ │ │ │ └── config_test.dynamic.dotted.french.yml │ │ │ ├── config_clash_test_theme │ │ │ │ └── config │ │ │ │ │ └── install │ │ │ │ │ └── language │ │ │ │ │ └── fr │ │ │ │ │ └── config_test.dynamic.dotted.default.yml │ │ │ └── config_install_fail_test │ │ │ │ └── config │ │ │ │ └── install │ │ │ │ └── language │ │ │ │ └── fr │ │ │ │ └── config_test.dynamic.dotted.default.yml │ │ └── config.services.yml │ ├── locale │ │ └── tests │ │ │ └── modules │ │ │ └── locale_test │ │ │ └── config │ │ │ └── install │ │ │ ├── locale_test.no_translation.yml │ │ │ ├── locale_test.translation.yml │ │ │ └── language │ │ │ └── de │ │ │ └── locale_test.translation.yml │ ├── language │ │ ├── language.permissions.yml │ │ ├── tests │ │ │ └── language_config_override_test │ │ │ │ └── config │ │ │ │ └── install │ │ │ │ └── language │ │ │ │ └── de │ │ │ │ └── language_config_override_test.settings.yml │ │ ├── config │ │ │ └── install │ │ │ │ ├── language.entity.en.yml │ │ │ │ ├── language.entity.und.yml │ │ │ │ └── language.entity.zxx.yml │ │ └── language.links.action.yml │ ├── toolbar │ │ └── toolbar.permissions.yml │ ├── quickedit │ │ ├── quickedit.permissions.yml │ │ └── images │ │ │ └── icon-throbber.gif │ ├── rest │ │ ├── rest.permissions.yml │ │ └── rest.routing.yml │ ├── tour │ │ ├── tour.permissions.yml │ │ ├── tour.services.yml │ │ └── tests │ │ │ └── tour_test │ │ │ └── tour_test.links.action.yml │ ├── filter │ │ ├── config │ │ │ └── install │ │ │ │ └── filter.settings.yml │ │ ├── tests │ │ │ └── filter_test │ │ │ │ └── config │ │ │ │ └── install │ │ │ │ └── filter.format.full_html.yml │ │ └── filter.links.action.yml │ ├── image │ │ ├── sample.png │ │ ├── config │ │ │ └── install │ │ │ │ └── image.settings.yml │ │ ├── image.links.action.yml │ │ └── image.permissions.yml │ ├── aggregator │ │ ├── tests │ │ │ └── modules │ │ │ │ └── aggregator_test │ │ │ │ └── config │ │ │ │ └── install │ │ │ │ └── aggregator_test.settings.yml │ │ └── aggregator.permissions.yml │ ├── color │ │ ├── images │ │ │ ├── hook.png │ │ │ ├── lock.png │ │ │ └── hook-rtl.png │ │ └── tests │ │ │ └── modules │ │ │ └── color_test │ │ │ └── themes │ │ │ └── color_test_theme │ │ │ ├── css │ │ │ └── colors.css │ │ │ └── color_test_theme.libraries.yml │ ├── file │ │ ├── icons │ │ │ ├── text-html.png │ │ │ ├── text-plain.png │ │ │ ├── text-x-generic.png │ │ │ ├── text-x-script.png │ │ │ ├── application-pdf.png │ │ │ ├── audio-x-generic.png │ │ │ ├── image-x-generic.png │ │ │ ├── video-x-generic.png │ │ │ ├── package-x-generic.png │ │ │ ├── x-office-document.png │ │ │ ├── x-office-presentation.png │ │ │ ├── x-office-spreadsheet.png │ │ │ ├── application-octet-stream.png │ │ │ └── application-x-executable.png │ │ ├── file.permissions.yml │ │ ├── config │ │ │ └── install │ │ │ │ └── file.settings.yml │ │ └── tests │ │ │ └── file_test │ │ │ └── file_test.routing.yml │ ├── responsive_image │ │ └── responsive_image.permissions.yml │ ├── update │ │ ├── tests │ │ │ ├── modules │ │ │ │ └── update_test │ │ │ │ │ ├── config │ │ │ │ │ └── install │ │ │ │ │ │ └── update_test.settings.yml │ │ │ │ │ └── aaa_update_test.no-releases.xml │ │ │ └── aaa_update_test.tar.gz │ │ └── update.libraries.yml │ ├── user │ │ ├── config │ │ │ └── install │ │ │ │ ├── user.flood.yml │ │ │ │ ├── user.role.anonymous.yml │ │ │ │ ├── core.entity_form_mode.user.register.yml │ │ │ │ └── user.role.authenticated.yml │ │ ├── images │ │ │ ├── icon-user.png │ │ │ └── icon-user-active.png │ │ ├── tests │ │ │ └── modules │ │ │ │ └── user_form_test │ │ │ │ └── user_form_test.permissions.yml │ │ ├── user.links.contextual.yml │ │ └── user.config_translation.yml │ ├── views_ui │ │ ├── images │ │ │ ├── close.png │ │ │ ├── loading.gif │ │ │ ├── sprites.png │ │ │ ├── overridden.gif │ │ │ ├── arrow-active.png │ │ │ ├── status-active.gif │ │ │ └── expanded-options.png │ │ ├── tests │ │ │ └── modules │ │ │ │ └── views_ui_test │ │ │ │ ├── css │ │ │ │ └── views_ui_test.test.css │ │ │ │ └── views_ui_test.libraries.yml │ │ ├── views_ui.links.action.yml │ │ └── views_ui.permissions.yml │ ├── taxonomy │ │ ├── config │ │ │ └── install │ │ │ │ └── taxonomy.settings.yml │ │ └── taxonomy.permissions.yml │ ├── path │ │ ├── path.links.task.yml │ │ ├── path.links.action.yml │ │ ├── path.permissions.yml │ │ ├── config │ │ │ └── schema │ │ │ │ └── path.schema.yml │ │ └── path.libraries.yml │ ├── statistics │ │ ├── config │ │ │ └── install │ │ │ │ └── statistics.settings.yml │ │ └── statistics.permissions.yml │ ├── book │ │ ├── config │ │ │ └── install │ │ │ │ └── book.settings.yml │ │ └── book.libraries.yml │ ├── contact │ │ ├── config │ │ │ └── install │ │ │ │ ├── contact.settings.yml │ │ │ │ └── contact.form.personal.yml │ │ └── contact.links.action.yml │ ├── contextual │ │ ├── images │ │ │ └── gear-select.png │ │ └── contextual.permissions.yml │ ├── views │ │ ├── views.links.task.yml │ │ ├── config │ │ │ └── schema │ │ │ │ └── views.access.schema.yml │ │ └── tests │ │ │ └── modules │ │ │ └── views_test_data │ │ │ ├── views_cache.test.css │ │ │ ├── views_test_data.libraries.yml │ │ │ └── views_test_data.permissions.yml │ ├── ckeditor │ │ ├── js │ │ │ └── plugins │ │ │ │ ├── drupallink │ │ │ │ ├── link.png │ │ │ │ └── unlink.png │ │ │ │ └── drupalimage │ │ │ │ └── image.png │ │ └── ckeditor.services.yml │ ├── search │ │ ├── search.links.task.yml │ │ ├── css │ │ │ └── search.theme.css │ │ └── search.permissions.yml │ ├── syslog │ │ └── config │ │ │ └── install │ │ │ └── syslog.settings.yml │ ├── editor │ │ └── tests │ │ │ └── modules │ │ │ └── editor_test.libraries.yml │ ├── config_translation │ │ └── config_translation.libraries.yml │ ├── menu_link_content │ │ └── tests │ │ │ └── menu_link_content_dynamic_route │ │ │ └── menu_link_content_dynamic_route.routing.yml │ ├── comment │ │ └── comment.links.action.yml │ ├── help │ │ └── help.links.menu.yml │ └── content_translation │ │ └── content_translation.links.task.yml │ ├── config │ └── install │ │ ├── core.extension.yml │ │ └── core.menu.static_menu_link_overrides.yml │ ├── tests │ └── Drupal │ │ └── Tests │ │ ├── Component │ │ └── FileCache │ │ │ └── Fixtures │ │ │ ├── llama-23.txt │ │ │ └── llama-42.txt │ │ └── Core │ │ ├── Asset │ │ ├── js_test_files │ │ │ ├── utf8_bom.js │ │ │ ├── utf8_bom.js.optimized.js │ │ │ ├── latin_9.js.optimized.js │ │ │ ├── utf16_bom.js.optimized.js │ │ │ ├── source_url.min.js.optimized.js │ │ │ ├── source_url_old.min.js.optimized.js │ │ │ ├── source_mapping_url.min.js.optimized.js │ │ │ ├── source_mapping_url_old.min.js.optimized.js │ │ │ ├── source_url.min.js │ │ │ ├── source_url_old.min.js │ │ │ ├── source_mapping_url.min.js │ │ │ ├── source_mapping_url_old.min.js │ │ │ ├── latin_9.js │ │ │ └── utf16_bom.js │ │ ├── css_test_files │ │ │ ├── charset.css.optimized.css │ │ │ ├── charset.css │ │ │ ├── charset_sameline.css │ │ │ ├── css_input_with_bom.css │ │ │ ├── charset_newline.css │ │ │ ├── import2.css │ │ │ └── css_input_with_bom_and_charset.css │ │ └── library_test_files │ │ │ ├── invalid_file.libraries.yml │ │ │ ├── example_module_missing_information.libraries.yml │ │ │ ├── example_theme.libraries.yml │ │ │ ├── js_positive_weight.libraries.yml │ │ │ ├── js.libraries.yml │ │ │ └── example_module.libraries.yml │ │ ├── DrupalKernel │ │ └── fixtures │ │ │ └── custom.yml │ │ ├── Extension │ │ └── modules │ │ │ ├── module_handler_test │ │ │ └── hook_include.inc │ │ │ ├── module_handler_test_all2 │ │ │ └── module_handler_test_all2.module │ │ │ └── module_handler_test_added │ │ │ ├── module_handler_test_added.hook.inc │ │ │ └── module_handler_test_added.module │ │ └── Plugin │ │ └── Discovery │ │ └── Fixtures │ │ ├── test_1 │ │ └── test_1.test.yml │ │ └── test_2 │ │ └── test_2.test.yml │ ├── profiles │ ├── standard │ │ ├── config │ │ │ └── install │ │ │ │ ├── system.theme.yml │ │ │ │ ├── system.cron.yml │ │ │ │ ├── user.role.administrator.yml │ │ │ │ ├── contact.form.feedback.yml │ │ │ │ └── block_content.type.basic.yml │ │ └── standard.links.menu.yml │ ├── testing │ │ └── config │ │ │ └── install │ │ │ └── system.theme.yml │ ├── testing_config_overrides │ │ └── config │ │ │ └── install │ │ │ └── system.cron.yml │ ├── testing_multilingual │ │ └── config │ │ │ └── install │ │ │ ├── language.entity.de.yml │ │ │ └── language.entity.es.yml │ └── testing_multilingual_with_english │ │ └── config │ │ └── install │ │ ├── language.entity.de.yml │ │ └── language.entity.es.yml │ ├── misc │ ├── feed.png │ ├── help.png │ ├── tree.png │ ├── favicon.ico │ ├── loading.gif │ ├── arrow-asc.png │ ├── arrow-desc.png │ ├── druplicon.png │ ├── menu-leaf.png │ ├── loading-small.gif │ ├── menu-expanded.png │ ├── tree-bottom.png │ ├── menu-collapsed.png │ ├── throbber-active.gif │ ├── menu-collapsed-rtl.png │ └── throbber-inactive.png │ └── scripts │ ├── cron-curl.sh │ └── cron-lynx.sh └── .htaccess /drupal/core/themes/stark/css/layout.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /drupal/core/assets/vendor/.gitignore: -------------------------------------------------------------------------------- 1 | ckeditor/samples 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/routing/Tests/Fixtures/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/routing/Tests/Fixtures/foo1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/doctrine/collections/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/routing/Tests/Fixtures/annotated.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/routing/Tests/Fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/empty.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/empty.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/simpletest/files/translations/drupal-8.0.0.de.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/validator/Tests/Constraints/Fixtures/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/simpletest/files/html-1.txt: -------------------------------------------------------------------------------- 1 |

SimpleTest HTML

-------------------------------------------------------------------------------- /drupal/core/modules/simpletest/files/html-2.html: -------------------------------------------------------------------------------- 1 |

SimpleTest HTML

-------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.module: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.theme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.xtmpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/routing/Tests/Fixtures/nonvalid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/serializer/Tests/Fixtures/empty-mapping.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/config/install/core.extension.yml: -------------------------------------------------------------------------------- 1 | module: {} 2 | theme: {} 3 | -------------------------------------------------------------------------------- /drupal/core/modules/simpletest/files/translations/drupal-8.0.0-beta2.hu.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/config/install/system.image.yml: -------------------------------------------------------------------------------- 1 | toolkit: gd 2 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.module.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.module.orig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.module.save: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.module.swo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.module.swp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.php.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.php.orig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.php.save: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.php.swo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.php.swp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.profile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/php-file-iterator/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/php-text-template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dom-crawler/Tests/Fixtures/no-extension: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-kernel/Tests/Fixtures/Bundle1Bundle/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-kernel/Tests/Fixtures/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-kernel/Tests/Fixtures/Bundle2Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/serializer/Tests/Fixtures/invalid-mapping.yml: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/non-valid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/validator/Tests/Mapping/Loader/empty-mapping.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/dblog/config/install/dblog.settings.yml: -------------------------------------------------------------------------------- 1 | row_limit: 1000 2 | -------------------------------------------------------------------------------- /drupal/core/modules/system/config/install/system.image.gd.yml: -------------------------------------------------------------------------------- 1 | jpeg_quality: 75 2 | -------------------------------------------------------------------------------- /drupal/core/modules/system/config/install/system.logging.yml: -------------------------------------------------------------------------------- 1 | error_level: hide 2 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/HtaccessTest/access_test.php-info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Component/FileCache/Fixtures/llama-23.txt: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Component/FileCache/Fixtures/llama-42.txt: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/guzzlehttp/ringphp/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx_rtd_theme 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-foundation/Tests/File/Fixtures/.unknownextension: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-foundation/Tests/File/Fixtures/directory/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-kernel/Tests/Fixtures/BaseBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-kernel/Tests/Fixtures/BaseBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-kernel/Tests/Fixtures/ChildBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-kernel/Tests/Fixtures/Resources/BaseBundle/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-kernel/Tests/Fixtures/Resources/ChildBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-kernel/Tests/Fixtures/Resources/FooBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/routing/Tests/Fixtures/nonvalid2.yml: -------------------------------------------------------------------------------- 1 | route: string 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/resources.ini: -------------------------------------------------------------------------------- 1 | foo="bar" 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /drupal/core/config/install/core.menu.static_menu_link_overrides.yml: -------------------------------------------------------------------------------- 1 | definitions: [] 2 | -------------------------------------------------------------------------------- /drupal/core/modules/action/config/install/action.settings.yml: -------------------------------------------------------------------------------- 1 | recursion_limit: 35 2 | -------------------------------------------------------------------------------- /drupal/core/modules/field/config/install/field.settings.yml: -------------------------------------------------------------------------------- 1 | purge_batch_size: 50 2 | -------------------------------------------------------------------------------- /drupal/core/modules/node/config/install/node.settings.yml: -------------------------------------------------------------------------------- 1 | use_admin_theme: false 2 | -------------------------------------------------------------------------------- /drupal/core/modules/simpletest/files/sql-1.txt: -------------------------------------------------------------------------------- 1 | SELECT invalid_field FROM {invalid_table} -------------------------------------------------------------------------------- /drupal/core/modules/simpletest/files/sql-2.sql: -------------------------------------------------------------------------------- 1 | SELECT invalid_field FROM {invalid_table} -------------------------------------------------------------------------------- /drupal/core/modules/system/config/install/system.authorize.yml: -------------------------------------------------------------------------------- 1 | filetransfer_default: 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/DoctrineExceptionTest.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/fabpot/goutte/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpdocumentor/reflection-docblock/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services1.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-kernel/Tests/Fixtures/Bundle1Bundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-kernel/Tests/Fixtures/ChildBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-kernel/Tests/Fixtures/Resources/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/validator/Tests/Mapping/Loader/nonvalid-mapping.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal/index.html: -------------------------------------------------------------------------------- 1 | path 2 | -------------------------------------------------------------------------------- /drupal/core/modules/field_ui/config/install/field_ui.settings.yml: -------------------------------------------------------------------------------- 1 | field_prefix: field_ 2 | -------------------------------------------------------------------------------- /drupal/core/modules/system/config/install/system.theme.yml: -------------------------------------------------------------------------------- 1 | admin: '' 2 | default: stark 3 | -------------------------------------------------------------------------------- /drupal/core/modules/text/config/install/text.settings.yml: -------------------------------------------------------------------------------- 1 | default_summary_length: 600 2 | -------------------------------------------------------------------------------- /drupal/core/modules/tracker/config/install/tracker.settings.yml: -------------------------------------------------------------------------------- 1 | cron_index_limit: 1000 2 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/js_test_files/utf8_bom.js: -------------------------------------------------------------------------------- 1 | var utf8BOM = '☃'; 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/behat/mink/driver-testsuite/web-fixtures/some_file.txt: -------------------------------------------------------------------------------- 1 | 1 uploaded file 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.json: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/nonvalid2.yml: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named/index.html: -------------------------------------------------------------------------------- 1 | named path 2 | -------------------------------------------------------------------------------- /drupal/core/modules/ban/ban.permissions.yml: -------------------------------------------------------------------------------- 1 | ban IP addresses: 2 | title: 'Ban IP addresses' 3 | -------------------------------------------------------------------------------- /drupal/core/modules/simpletest/files/php-2.php: -------------------------------------------------------------------------------- 1 | Console Tool -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dom-crawler/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/malformed.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo" "bar" 3 | } -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/resourcebundle/corrupted/resources.dat: -------------------------------------------------------------------------------- 1 | XXX -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_bis/index.html: -------------------------------------------------------------------------------- 1 | path (bis) 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_ter/index.html: -------------------------------------------------------------------------------- 1 | path (ter) 2 | -------------------------------------------------------------------------------- /drupal/core/modules/block/block.permissions.yml: -------------------------------------------------------------------------------- 1 | administer blocks: 2 | title: 'Administer blocks' 3 | -------------------------------------------------------------------------------- /drupal/core/modules/forum/forum.permissions.yml: -------------------------------------------------------------------------------- 1 | administer forums: 2 | title: 'Administer forums' 3 | -------------------------------------------------------------------------------- /drupal/core/modules/menu_ui/config/install/menu_ui.settings.yml: -------------------------------------------------------------------------------- 1 | override_parent_selector: false 2 | -------------------------------------------------------------------------------- /drupal/core/modules/shortcut/config/install/shortcut.set.default.yml: -------------------------------------------------------------------------------- 1 | id: default 2 | label: Default 3 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/themes/test_theme_phptemplate/test_theme_phptemplate.theme: -------------------------------------------------------------------------------- 1 | argument_name 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_services.yml: -------------------------------------------------------------------------------- 1 | services: foo 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/nonvalid1.yml: -------------------------------------------------------------------------------- 1 | foo: 2 | bar 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services11.yml: -------------------------------------------------------------------------------- 1 | foobarfoobar: {} 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_bis/index.html: -------------------------------------------------------------------------------- 1 | named path (bis) 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_ter/index.html: -------------------------------------------------------------------------------- 1 | named path (ter) 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_final/index.html: -------------------------------------------------------------------------------- 1 | path (final) 2 | -------------------------------------------------------------------------------- /drupal/core/modules/action/action.permissions.yml: -------------------------------------------------------------------------------- 1 | administer actions: 2 | title: 'Administer actions' 3 | -------------------------------------------------------------------------------- /drupal/core/modules/simpletest/files/php-1.txt: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/modules/menu_test/config/install/menu_test.menu_item.yml: -------------------------------------------------------------------------------- 1 | title: English 2 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/js_test_files/latin_9.js.optimized.js: -------------------------------------------------------------------------------- 1 | var latin9Char = '€'; 2 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/js_test_files/utf16_bom.js.optimized.js: -------------------------------------------------------------------------------- 1 | var utf8BOM = '☃'; 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/behat/mink-browserkit-driver/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | /phpunit.xml 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/behat/mink/.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | *.phar 3 | phpunit.xml 4 | composer.lock 5 | vendor 6 | -------------------------------------------------------------------------------- /drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/_files/global.yml: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/_files/stdClass.yml: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /drupal/core/vendor/guzzlehttp/guzzle/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | Sphinx>=1.2b1 2 | guzzle_sphinx_theme>=0.6.0 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpspec/prophecy/.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | *.phar 3 | bin 4 | vendor 5 | composer.lock 6 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/php-token-stream/tests/_fixture/issue19.php: -------------------------------------------------------------------------------- 1 | -o, --option_name 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Fixtures/errors/base.html: -------------------------------------------------------------------------------- 1 | {% block content %}{% endblock %} 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_final/index.html: -------------------------------------------------------------------------------- 1 | named path (final) 2 | -------------------------------------------------------------------------------- /drupal/core/misc/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/misc/feed.png -------------------------------------------------------------------------------- /drupal/core/misc/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/misc/help.png -------------------------------------------------------------------------------- /drupal/core/misc/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/misc/tree.png -------------------------------------------------------------------------------- /drupal/core/modules/config/tests/config_test/config/install/config_test.system.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | 404: herp 3 | -------------------------------------------------------------------------------- /drupal/core/modules/config/tests/config_test/config/install/language/de/config_test.system.yml: -------------------------------------------------------------------------------- 1 | foo: de bar 2 | -------------------------------------------------------------------------------- /drupal/core/modules/config/tests/config_test/config/install/language/en/config_test.system.yml: -------------------------------------------------------------------------------- 1 | foo: en bar 2 | -------------------------------------------------------------------------------- /drupal/core/modules/config/tests/config_test/config/install/language/fr/config_test.system.yml: -------------------------------------------------------------------------------- 1 | foo: fr bar 2 | -------------------------------------------------------------------------------- /drupal/core/modules/locale/tests/modules/locale_test/config/install/locale_test.no_translation.yml: -------------------------------------------------------------------------------- 1 | test: Test 2 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/themes/test_subtheme/config/install/test_subtheme.settings.yml: -------------------------------------------------------------------------------- 1 | override: sub 2 | -------------------------------------------------------------------------------- /drupal/core/themes/classy/templates/field/field--text-long.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "field--text.html.twig" %} 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/JsonData/arrayObject.json: -------------------------------------------------------------------------------- 1 | ["Mascott", "Tux", "OS", "Linux"] 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/configuration.colors.empty.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/sebastian/version/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/class-loader/Tests/Fixtures/classmap/notAClass.php: -------------------------------------------------------------------------------- 1 | 2 | alert('SimpleTest PHP was executed!'); 3 | 4 | -------------------------------------------------------------------------------- /drupal/core/modules/simpletest/files/javascript-2.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/modules/image_test/config/install/system.image.test_toolkit.yml: -------------------------------------------------------------------------------- 1 | test_parameter: 10 2 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/css_test_files/charset.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8";html{font-family:"sans-serif";} 2 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/js_test_files/source_url.min.js.optimized.js: -------------------------------------------------------------------------------- 1 | (function($) { "use strict"; }) 2 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/DrupalKernel/fixtures/custom.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | test.config: 3 | test: true 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/doctrine/instantiator/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | build 4 | vendor 5 | coverage.clover -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | /dev/null 2>&1 4 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/js_test_files/source_url_old.min.js.optimized.js: -------------------------------------------------------------------------------- 1 | (function($) { "use strict"; }) 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/configuration.colors.invalid.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dependency-injection/Tests/Fixtures/xml/nonvalid.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services7.yml: -------------------------------------------------------------------------------- 1 | services: 2 | foo: { class: BarClass } 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/routing/Tests/Fixtures/withdoctype.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.txt: -------------------------------------------------------------------------------- 1 | en{ 2 | symfony{"Symfony is great"} 3 | } -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.txt: -------------------------------------------------------------------------------- 1 | fr{ 2 | symfony{"Symfony est génial"} 3 | } -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /composer.lock 3 | /ext/twig/autom4te.cache/ 4 | /phpunit.xml 5 | /vendor 6 | -------------------------------------------------------------------------------- /drupal/core/misc/menu-collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/misc/menu-collapsed.png -------------------------------------------------------------------------------- /drupal/core/misc/throbber-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/misc/throbber-active.gif -------------------------------------------------------------------------------- /drupal/core/modules/filter/config/install/filter.settings.yml: -------------------------------------------------------------------------------- 1 | fallback_format: plain_text 2 | always_show_fallback_choice: false 3 | -------------------------------------------------------------------------------- /drupal/core/modules/image/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/modules/image/sample.png -------------------------------------------------------------------------------- /drupal/core/modules/locale/tests/modules/locale_test/config/install/language/de/locale_test.translation.yml: -------------------------------------------------------------------------------- 1 | test: German test 2 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/modules/theme_test/templates/theme-test-render-element.html.twig: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/modules/update_script_test/config/install/update_script_test.settings.yml: -------------------------------------------------------------------------------- 1 | requirement_type: 0 2 | -------------------------------------------------------------------------------- /drupal/core/modules/tracker/tracker.links.menu.yml: -------------------------------------------------------------------------------- 1 | tracker.page: 2 | title: 'Recent content' 3 | route_name: tracker.page 4 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/css_test_files/charset_sameline.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8";html{font-family:"sans-serif";} 2 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/css_test_files/css_input_with_bom.css: -------------------------------------------------------------------------------- 1 | .byte-order-mark-test { 2 | content: "☃"; 3 | } 4 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/js_test_files/source_mapping_url.min.js.optimized.js: -------------------------------------------------------------------------------- 1 | (function($) { "use strict"; }) 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/guzzlehttp/streams/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_STORE 3 | coverage 4 | phpunit.xml 5 | composer.lock 6 | vendor/ 7 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/parent.html.twig: -------------------------------------------------------------------------------- 1 | {% block body %}VALID{% endblock %} 2 | -------------------------------------------------------------------------------- /drupal/core/misc/menu-collapsed-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/misc/menu-collapsed-rtl.png -------------------------------------------------------------------------------- /drupal/core/misc/throbber-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/misc/throbber-inactive.png -------------------------------------------------------------------------------- /drupal/core/modules/aggregator/tests/modules/aggregator_test/config/install/aggregator_test.settings.yml: -------------------------------------------------------------------------------- 1 | items: 2 | dummy_length: 5 3 | -------------------------------------------------------------------------------- /drupal/core/modules/config/tests/config_integration_test/config/install/config_integration_test.settings.yml: -------------------------------------------------------------------------------- 1 | foo: 'default setting' 2 | -------------------------------------------------------------------------------- /drupal/core/modules/node/tests/modules/node_access_test/node_access_test.permissions.yml: -------------------------------------------------------------------------------- 1 | node test view: 2 | title: 'View content' 3 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/css_test_files/charset_newline.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | html{font-family:"sans-serif";} 3 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/js_test_files/source_mapping_url_old.min.js.optimized.js: -------------------------------------------------------------------------------- 1 | (function($) { "use strict"; }) 2 | -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/add.png -------------------------------------------------------------------------------- /drupal/core/themes/seven/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/screenshot.png -------------------------------------------------------------------------------- /drupal/core/themes/stark/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/stark/screenshot.png -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | composer.json merge=ours 3 | src/Runner/Version.php merge=ours 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/DummyException.php: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dependency-injection/Tests/Fixtures/php/simple.php: -------------------------------------------------------------------------------- 1 | setParameter('foo', 'foo'); 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/routing/Tests/Fixtures/incomplete.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | defaults: { _controller: MyBlogBundle:Blog:show } 3 | -------------------------------------------------------------------------------- /drupal/core/modules/color/images/hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/modules/color/images/hook.png -------------------------------------------------------------------------------- /drupal/core/modules/color/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/modules/color/images/lock.png -------------------------------------------------------------------------------- /drupal/core/modules/config/tests/config_collection_install_test/config/install/entity/config_test.dynamic.dotted.default.yml: -------------------------------------------------------------------------------- 1 | label: entity 2 | -------------------------------------------------------------------------------- /drupal/core/modules/menu_ui/css/menu_ui.admin.css: -------------------------------------------------------------------------------- 1 | .menu-enabled { 2 | width: 70px; 3 | } 4 | .menu-label { 5 | font-weight: bold; 6 | } 7 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/library_test_files/invalid_file.libraries.yml: -------------------------------------------------------------------------------- 1 | example: 2 | key1: value1 3 | key2: value2 4 | -------------------------------------------------------------------------------- /drupal/core/themes/bartik/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/bartik/images/add.png -------------------------------------------------------------------------------- /drupal/core/themes/bartik/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/bartik/screenshot.png -------------------------------------------------------------------------------- /drupal/core/themes/classy/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/classy/screenshot.png -------------------------------------------------------------------------------- /drupal/core/themes/stark/stark.libraries.yml: -------------------------------------------------------------------------------- 1 | global-styling: 2 | version: VERSION 3 | css: 4 | base: 5 | css/layout.css: {} 6 | -------------------------------------------------------------------------------- /drupal/core/vendor/behat/mink/driver-testsuite/web-fixtures/404.php: -------------------------------------------------------------------------------- 1 | 2 | Sorry, page not found 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/behat/mink/driver-testsuite/web-fixtures/redirector.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/console/Tests/Fixtures/input_definition_3.txt: -------------------------------------------------------------------------------- 1 | Options: 2 | -o, --option_name 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dependency-injection/Tests/Fixtures/xml/withdoctype.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/routing/Tests/Fixtures/nonvalidkeys.yml: -------------------------------------------------------------------------------- 1 | someroute: 2 | resource: path/to/some.yml 3 | name_prefix: test_ 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/spare_parent.html.twig: -------------------------------------------------------------------------------- 1 | {% block body %}SPARE PARENT{% endblock %} 2 | -------------------------------------------------------------------------------- /drupal/core/modules/config/tests/config_collection_clash_install_test/config/install/entity/config_test.dynamic.dotted.default.yml: -------------------------------------------------------------------------------- 1 | label: entity 2 | -------------------------------------------------------------------------------- /drupal/core/modules/file/icons/text-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/modules/file/icons/text-html.png -------------------------------------------------------------------------------- /drupal/core/modules/filter/tests/filter_test/config/install/filter.format.full_html.yml: -------------------------------------------------------------------------------- 1 | format: full_html 2 | name: 'Full HTML' 3 | weight: 2 4 | -------------------------------------------------------------------------------- /drupal/core/modules/responsive_image/responsive_image.permissions.yml: -------------------------------------------------------------------------------- 1 | administer responsive images: 2 | title: 'Administer responsive images' 3 | -------------------------------------------------------------------------------- /drupal/core/modules/simpletest/simpletest.permissions.yml: -------------------------------------------------------------------------------- 1 | administer unit tests: 2 | title: 'Administer tests' 3 | restrict access: true 4 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/logo.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/modules/system/tests/logo.svgz -------------------------------------------------------------------------------- /drupal/core/profiles/standard/standard.links.menu.yml: -------------------------------------------------------------------------------- 1 | standard.front_page: 2 | title: 'Home' 3 | route_name: '' 4 | menu_name: main 5 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/library_test_files/example_module_missing_information.libraries.yml: -------------------------------------------------------------------------------- 1 | example: 2 | version: VERSION 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/_files/TestEntity.php: -------------------------------------------------------------------------------- 1 | getFieldNames(); -------------------------------------------------------------------------------- /drupal/core/vendor/egulias/email-validator/.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | src_dir: . 3 | coverage_clover: build/logs/clover*.xml 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/CustomPrinter.php: -------------------------------------------------------------------------------- 1 | rendered url: {{ test_url }} 2 | -------------------------------------------------------------------------------- /drupal/core/modules/update/tests/modules/update_test/config/install/update_test.settings.yml: -------------------------------------------------------------------------------- 1 | system_info: [] 2 | update_status: [] 3 | xml_map: [] 4 | -------------------------------------------------------------------------------- /drupal/core/modules/user/config/install/user.flood.yml: -------------------------------------------------------------------------------- 1 | uid_only: false 2 | ip_limit: 50 3 | ip_window: 3600 4 | user_limit: 5 5 | user_window: 21600 6 | -------------------------------------------------------------------------------- /drupal/core/modules/user/images/icon-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/modules/user/images/icon-user.png -------------------------------------------------------------------------------- /drupal/core/modules/user/tests/modules/user_form_test/user_form_test.permissions.yml: -------------------------------------------------------------------------------- 1 | cancel other accounts: 2 | title: 'Cancel other user accounts' 3 | -------------------------------------------------------------------------------- /drupal/core/modules/views_ui/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/modules/views_ui/images/close.png -------------------------------------------------------------------------------- /drupal/core/profiles/testing/config/install/system.theme.yml: -------------------------------------------------------------------------------- 1 | # @todo: Remove this file in https://www.drupal.org/node/2352949 2 | default: classy 3 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/js_test_files/source_url.min.js: -------------------------------------------------------------------------------- 1 | (function($) { "use strict"; }) 2 | //# sourceURL=source_mapping_url.js 3 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/js_test_files/source_url_old.min.js: -------------------------------------------------------------------------------- 1 | (function($) { "use strict"; }) 2 | //@ sourceURL=source_mapping_url.js 3 | -------------------------------------------------------------------------------- /drupal/core/themes/seven/css/layout/layout.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Add spacing to bottom of pages 3 | */ 4 | .page-content { 5 | margin-bottom: 80px; 6 | } 7 | -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/arrow-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/arrow-asc.png -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/arrow-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/arrow-desc.png -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/arrow-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/arrow-next.png -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/arrow-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/arrow-prev.png -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/noise-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/noise-low.png -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/task-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/task-check.png -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/task-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/task-item.png -------------------------------------------------------------------------------- /drupal/core/vendor/behat/mink/driver-testsuite/web-fixtures/500.php: -------------------------------------------------------------------------------- 1 | 2 | Sorry, a server error happened 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/behat/mink/driver-testsuite/web-fixtures/sub-folder/cookie_page2.php: -------------------------------------------------------------------------------- 1 | 2 | Fail: Template not overridden. 3 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/modules/twig_theme_test/modules/twig_namespace_b/templates/test.html.twig: -------------------------------------------------------------------------------- 1 | This line is from twig_namespace_b/templates/test.html.twig 2 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/themes/test_theme/node--1.html.twig: -------------------------------------------------------------------------------- 1 | {# 2 | // node--1.html.twig - Dummy file for finding the template 3 | #} 4 | Node Content Dummy 5 | -------------------------------------------------------------------------------- /drupal/core/modules/tour/tour.services.yml: -------------------------------------------------------------------------------- 1 | services: 2 | plugin.manager.tour.tip: 3 | class: Drupal\tour\TipPluginManager 4 | parent: default_plugin_manager 5 | -------------------------------------------------------------------------------- /drupal/core/modules/update/tests/aaa_update_test.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/modules/update/tests/aaa_update_test.tar.gz -------------------------------------------------------------------------------- /drupal/core/modules/views/views.links.task.yml: -------------------------------------------------------------------------------- 1 | views_view: 2 | class: Drupal\Core\Menu\LocalTaskDefault 3 | deriver: \Drupal\views\Plugin\Derivative\ViewsLocalTask 4 | -------------------------------------------------------------------------------- /drupal/core/modules/views_ui/images/expanded-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/modules/views_ui/images/expanded-options.png -------------------------------------------------------------------------------- /drupal/core/profiles/standard/config/install/user.role.administrator.yml: -------------------------------------------------------------------------------- 1 | id: administrator 2 | label: Administrator 3 | weight: 2 4 | langcode: en 5 | is_admin: true 6 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/js_test_files/source_mapping_url.min.js: -------------------------------------------------------------------------------- 1 | (function($) { "use strict"; }) 2 | //# sourceMappingURL=source_mapping_url.min.map 3 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/js_test_files/source_mapping_url_old.min.js: -------------------------------------------------------------------------------- 1 | (function($) { "use strict"; }) 2 | //@ sourceMappingURL=source_mapping_url.min.map 3 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/library_test_files/js.libraries.yml: -------------------------------------------------------------------------------- 1 | example: 2 | js: 3 | js/unminified.js: {} 4 | js/minified.js: { minified: true } 5 | -------------------------------------------------------------------------------- /drupal/core/themes/seven/css/components/help.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @file 3 | * Seven styles for the help component. 4 | */ 5 | 6 | .help p { 7 | margin: 0 0 10px; 8 | } 9 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/php-timer/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | cache.properties 7 | phpunit.xml 8 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/Regression/GitHub/1265/phpunit1265.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/class-loader/Tests/Fixtures/psr-4/Lets/Go/Deeper/Foo.php: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt: -------------------------------------------------------------------------------- 1 | argument_name multiline 2 | argument description 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/debug/Tests/Fixtures/casemismatch.php: -------------------------------------------------------------------------------- 1 | 2 | {{ message|testfilter }} 3 | 4 | -------------------------------------------------------------------------------- /drupal/core/modules/views/config/schema/views.access.schema.yml: -------------------------------------------------------------------------------- 1 | # Schema for the views access plugins. 2 | 3 | views.access.none: 4 | type: mapping 5 | label: 'None' 6 | -------------------------------------------------------------------------------- /drupal/core/profiles/testing_config_overrides/config/install/system.cron.yml: -------------------------------------------------------------------------------- 1 | threshold: 2 | autorun: 0 3 | requirements_warning: 259200 4 | requirements_error: 1209600 5 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/css_test_files/css_input_with_bom_and_charset.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | .byte-order-mark-charset-test { 3 | content: "☃"; 4 | } 5 | -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/ui-icons-222222-256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/ui-icons-222222-256x240.png -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/ui-icons-454545-256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/ui-icons-454545-256x240.png -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/ui-icons-800000-256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/ui-icons-800000-256x240.png -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/ui-icons-888888-256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/ui-icons-888888-256x240.png -------------------------------------------------------------------------------- /drupal/core/themes/seven/images/ui-icons-ffffff-256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/themes/seven/images/ui-icons-ffffff-256x240.png -------------------------------------------------------------------------------- /drupal/core/vendor/behat/mink-browserkit-driver/tests/web-fixtures/404.php: -------------------------------------------------------------------------------- 1 | 4 | Node Content Dummy 5 | -------------------------------------------------------------------------------- /drupal/core/modules/views_ui/tests/modules/views_ui_test/views_ui_test.libraries.yml: -------------------------------------------------------------------------------- 1 | views_ui_test.test: 2 | css: 3 | component: 4 | css/views_ui_test.test.css: {} 5 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Asset/library_test_files/example_module.libraries.yml: -------------------------------------------------------------------------------- 1 | example: 2 | version: VERSION 3 | css: 4 | theme: 5 | css/example.css: {} 6 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Plugin/Discovery/Fixtures/test_1/test_1.test.yml: -------------------------------------------------------------------------------- 1 | test_1_a: 2 | name: test 3 | test_1_b: 4 | name : test 5 | provider: another_provider_1 6 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Plugin/Discovery/Fixtures/test_2/test_2.test.yml: -------------------------------------------------------------------------------- 1 | test_2_a: 2 | name: test 3 | provider: another_provider_2 4 | test_2_b: 5 | name: test 6 | -------------------------------------------------------------------------------- /drupal/core/themes/bartik/css/components/toolbar.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @file 3 | * Toolbar module overrides for Bartik. 4 | */ 5 | 6 | .toolbar a { 7 | border-bottom: none; 8 | } 9 | -------------------------------------------------------------------------------- /drupal/core/vendor/doctrine/cache/tests/travis/php.ini: -------------------------------------------------------------------------------- 1 | extension="mongo.so" 2 | extension="memcache.so" 3 | extension="memcached.so" 4 | 5 | apc.enabled=1 6 | apc.enable_cli=1 7 | -------------------------------------------------------------------------------- /drupal/core/vendor/guzzlehttp/guzzle/src/Exception/TransferException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/B.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /drupal/core/modules/statistics/statistics.permissions.yml: -------------------------------------------------------------------------------- 1 | administer statistics: 2 | title: 'Administer statistics' 3 | view post access counter: 4 | title: 'View content hits' 5 | -------------------------------------------------------------------------------- /drupal/core/modules/syslog/config/install/syslog.settings.yml: -------------------------------------------------------------------------------- 1 | identity: drupal 2 | facility: '' 3 | format: '!base_url|!timestamp|!type|!ip|!request_uri|!referer|!uid|!link|!message' 4 | -------------------------------------------------------------------------------- /drupal/core/modules/system/config/install/core.date_format.html_month.yml: -------------------------------------------------------------------------------- 1 | id: html_month 2 | label: 'HTML Month' 3 | status: true 4 | langcode: en 5 | locked: true 6 | pattern: Y-m 7 | -------------------------------------------------------------------------------- /drupal/core/modules/system/config/install/core.date_format.html_time.yml: -------------------------------------------------------------------------------- 1 | id: html_time 2 | label: 'HTML Time' 3 | status: true 4 | langcode: en 5 | locked: true 6 | pattern: 'H:i:s' 7 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/modules/router_test_directory/router_test.permissions.yml: -------------------------------------------------------------------------------- 1 | access test7: 2 | title: 'Access test7 route' 3 | description: 'Test permission only.' 4 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/modules/theme_test/templates/theme-test-specific-suggestions.html.twig: -------------------------------------------------------------------------------- 1 | {# Output for Theme API test #} 2 | Template for testing specific theme calls. 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/behat/mink-browserkit-driver/tests/web-fixtures/500.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/console/Tests/Fixtures/input_option_2.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/console/Tests/Fixtures/input_option_4.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description (multiple values allowed) 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/class-loader/Tests/Fixtures/Apc/alpha/Apc/ApcPrefixCollision/A/Bar.php: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME multiline 2 | option description 3 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/http-foundation/Tests/File/Fixtures/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/vendor/symfony/http-foundation/Tests/File/Fixtures/test -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme1/blocks.html.twig: -------------------------------------------------------------------------------- 1 | {% block b1 %}block from theme 1{% endblock %} 2 | 3 | {% block b2 %}block from theme 1{% endblock %} 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme2/blocks.html.twig: -------------------------------------------------------------------------------- 1 | {% use '@default_theme/blocks.html.twig' %} 2 | 3 | {% block b2 %}block from theme 2{% endblock %} 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/web.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /drupal/core/assets/vendor/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/assets/vendor/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /drupal/core/modules/contact/config/install/contact.form.personal.yml: -------------------------------------------------------------------------------- 1 | id: personal 2 | label: 'Personal contact form' 3 | recipients: { } 4 | reply: '' 5 | weight: 0 6 | status: true 7 | langcode: en 8 | -------------------------------------------------------------------------------- /drupal/core/modules/filter/filter.links.action.yml: -------------------------------------------------------------------------------- 1 | filter_format_add_local_action: 2 | route_name: filter.format_add 3 | title: 'Add text format' 4 | appears_on: 5 | - filter.admin_overview 6 | -------------------------------------------------------------------------------- /drupal/core/modules/image/image.links.action.yml: -------------------------------------------------------------------------------- 1 | image_style_add_action: 2 | route_name: image.style_add 3 | title: 'Add image style' 4 | appears_on: 5 | - entity.image_style.collection 6 | -------------------------------------------------------------------------------- /drupal/core/modules/shortcut/shortcut.libraries.yml: -------------------------------------------------------------------------------- 1 | drupal.shortcut: 2 | version: VERSION 3 | css: 4 | theme: 5 | css/shortcut.theme.css: {} 6 | css/shortcut.icons.theme.css: {} 7 | -------------------------------------------------------------------------------- /drupal/core/modules/simpletest/tests/fixtures/select_2nd_selected.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /drupal/core/modules/system/config/install/core.date_format.fallback.yml: -------------------------------------------------------------------------------- 1 | id: fallback 2 | label: 'Fallback date format' 3 | status: true 4 | langcode: en 5 | locked: true 6 | pattern: 'D, m/d/Y - H:i' 7 | -------------------------------------------------------------------------------- /drupal/core/modules/system/config/install/core.date_format.medium.yml: -------------------------------------------------------------------------------- 1 | id: medium 2 | label: 'Default medium date' 3 | status: true 4 | langcode: en 5 | locked: false 6 | pattern: 'D, m/d/Y - H:i' 7 | -------------------------------------------------------------------------------- /drupal/core/modules/system/config/install/system.menu.account.yml: -------------------------------------------------------------------------------- 1 | id: account 2 | label: 'User account menu' 3 | description: 'Links related to the user account.' 4 | langcode: en 5 | locked: true 6 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/missing_keys.info.txt: -------------------------------------------------------------------------------- 1 | # info.yml for testing missing name, description, and type keys. 2 | package: Core 3 | version: VERSION 4 | dependencies: 5 | - field 6 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/modules/theme_test/templates/theme-test-suggestions.html.twig: -------------------------------------------------------------------------------- 1 | {# Output for Theme API test #} 2 | Original template for testing hook_theme_suggestions_HOOK_alter(). 3 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/modules/twig_theme_test/templates/twig-registry-loader-test-include.html.twig: -------------------------------------------------------------------------------- 1 | This line is from twig_theme_test/templates/twig-registry-loader-test-include.html.twig 2 | -------------------------------------------------------------------------------- /drupal/core/modules/user/config/install/user.role.anonymous.yml: -------------------------------------------------------------------------------- 1 | id: anonymous 2 | label: 'Anonymous user' 3 | weight: 0 4 | langcode: en 5 | status: true 6 | is_admin: false 7 | dependencies: { } 8 | -------------------------------------------------------------------------------- /drupal/core/modules/views/tests/modules/views_test_data/views_test_data.libraries.yml: -------------------------------------------------------------------------------- 1 | test: 2 | css: 3 | component: 4 | views_cache.test.css: {} 5 | js: 6 | views_cache.test.js: {} 7 | -------------------------------------------------------------------------------- /drupal/core/profiles/standard/config/install/contact.form.feedback.yml: -------------------------------------------------------------------------------- 1 | id: feedback 2 | label: 'Website feedback' 3 | recipients: { } 4 | reply: '' 5 | weight: 0 6 | status: true 7 | langcode: en 8 | -------------------------------------------------------------------------------- /drupal/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_added/module_handler_test_added.module: -------------------------------------------------------------------------------- 1 | 'val1', 5 | 'key2' => 234, 6 | 'key3' => array(1, 2, 3) 7 | )); 8 | -------------------------------------------------------------------------------- /drupal/core/vendor/guzzlehttp/guzzle/src/Exception/CouldNotRewindStreamException.php: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:command1 3 | alias1 4 | alias2 5 | 6 | Help: 7 | command 1 help 8 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/console/Tests/Fixtures/input_argument_3.json: -------------------------------------------------------------------------------- 1 | {"name":"argument_name","is_required":false,"is_array":false,"description":"argument description","default":"default_value"} 2 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php: -------------------------------------------------------------------------------- 1 | stop(); 3 | 4 | $writer = new PHP_CodeCoverage_Report_HTML; 5 | $writer->process($coverage, '/tmp/coverage'); 6 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit-mock-objects/tests/_fixture/ClassWithStaticMethod.php: -------------------------------------------------------------------------------- 1 | file_url: {{ file_url('core/modules/system/tests/modules/twig_theme_test/twig_theme_test.js') }} 2 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/themes/test_subtheme/test_subtheme.libraries.yml: -------------------------------------------------------------------------------- 1 | global-styling: 2 | version: VERSION 3 | css: 4 | base: 5 | css/sub-add.css: {} 6 | css/samename.css: {} 7 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/themes/test_theme_phptemplate/theme_test.template_test.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /drupal/core/modules/user/config/install/core.entity_form_mode.user.register.yml: -------------------------------------------------------------------------------- 1 | id: user.register 2 | label: Register 3 | status: true 4 | targetEntityType: user 5 | dependencies: 6 | module: 7 | - user 8 | -------------------------------------------------------------------------------- /drupal/core/modules/user/config/install/user.role.authenticated.yml: -------------------------------------------------------------------------------- 1 | id: authenticated 2 | label: 'Authenticated user' 3 | weight: 1 4 | langcode: en 5 | status: true 6 | is_admin: false 7 | dependencies: { } 8 | -------------------------------------------------------------------------------- /drupal/core/profiles/testing_multilingual_with_english/config/install/language.entity.es.yml: -------------------------------------------------------------------------------- 1 | id: es 2 | label: Spanish 3 | direction: 'ltr' 4 | weight: 0 5 | locked: false 6 | status: true 7 | langcode: en 8 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/MockRunner.php: -------------------------------------------------------------------------------- 1 | 7 | * Default: `NULL` 8 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/badtag1.yml: -------------------------------------------------------------------------------- 1 | services: 2 | foo_service: 3 | class: FooClass 4 | # tags is not an array 5 | tags: string 6 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/special_chars.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "§" custom function 3 | --TEMPLATE-- 4 | {{ §('foo') }} 5 | --DATA-- 6 | return array() 7 | --EXPECT-- 8 | §foo§ 9 | -------------------------------------------------------------------------------- /drupal/core/assets/vendor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/assets/vendor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /drupal/core/assets/vendor/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/assets/vendor/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /drupal/core/modules/contact/contact.links.action.yml: -------------------------------------------------------------------------------- 1 | contact.form_add: 2 | route_name: contact.form_add 3 | title: 'Add contact form' 4 | weight: 1 5 | appears_on: 6 | - entity.contact_form.collection 7 | -------------------------------------------------------------------------------- /drupal/core/modules/contextual/contextual.permissions.yml: -------------------------------------------------------------------------------- 1 | access contextual links: 2 | title: 'Use contextual links' 3 | description: 'Use contextual links to perform actions related to elements on a page.' 4 | -------------------------------------------------------------------------------- /drupal/core/modules/help/help.links.menu.yml: -------------------------------------------------------------------------------- 1 | help.main: 2 | title: Help 3 | description: 'Reference for usage, configuration, and modules.' 4 | route_name: help.main 5 | weight: 9 6 | parent: system.admin 7 | -------------------------------------------------------------------------------- /drupal/core/modules/image/image.permissions.yml: -------------------------------------------------------------------------------- 1 | administer image styles: 2 | title: 'Administer image styles' 3 | description: 'Create and modify styles for generating image modifications such as thumbnails.' 4 | -------------------------------------------------------------------------------- /drupal/core/modules/node/config/install/core.entity_view_mode.node.rss.yml: -------------------------------------------------------------------------------- 1 | id: node.rss 2 | label: RSS 3 | status: false 4 | cache: true 5 | targetEntityType: node 6 | dependencies: 7 | module: 8 | - node 9 | -------------------------------------------------------------------------------- /drupal/core/modules/rest/rest.routing.yml: -------------------------------------------------------------------------------- 1 | rest.csrftoken: 2 | path: '/rest/session/token' 3 | defaults: 4 | _controller: '\Drupal\rest\RequestHandler::csrfToken' 5 | requirements: 6 | _access: 'TRUE' 7 | -------------------------------------------------------------------------------- /drupal/core/modules/system/config/install/system.menu.tools.yml: -------------------------------------------------------------------------------- 1 | id: tools 2 | label: Tools 3 | description: 'Contains links for site visitors. Some modules add their links here.' 4 | langcode: en 5 | locked: true 6 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/fixtures/update/drupal-8.bare.standard.php.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/modules/system/tests/fixtures/update/drupal-8.bare.standard.php.gz -------------------------------------------------------------------------------- /drupal/core/modules/taxonomy/taxonomy.permissions.yml: -------------------------------------------------------------------------------- 1 | administer taxonomy: 2 | title: 'Administer vocabularies and terms' 3 | 4 | permission_callbacks: 5 | - Drupal\taxonomy\TaxonomyPermissions::permissions 6 | -------------------------------------------------------------------------------- /drupal/core/modules/user/user.config_translation.yml: -------------------------------------------------------------------------------- 1 | entity.user.admin_form: 2 | title: 'Account settings' 3 | base_route_name: entity.user.admin_form 4 | names: 5 | - user.settings 6 | - user.mail 7 | -------------------------------------------------------------------------------- /drupal/core/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | doSomethingElse(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /drupal/core/vendor/phpunit/phpunit/tests/_files/Failure.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /drupal/core/vendor/react/promise/tests/Stub/CallableStub.php: -------------------------------------------------------------------------------- 1 | "|e }} 5 | --DATA-- 6 | return array() 7 | --EXPECT-- 8 | foo <br /> 9 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_empty_parent.html.twig: -------------------------------------------------------------------------------- 1 | {% extends ['','parent.html.twig'] %} 2 | 3 | {% block body %}{{ parent() }} Child{% endblock %} 4 | -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_null_parent.html.twig: -------------------------------------------------------------------------------- 1 | {% extends [null,'parent.html.twig'] %} 2 | 3 | {% block body %}{{ parent() }} Child{% endblock %} 4 | -------------------------------------------------------------------------------- /drupal/core/assets/vendor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/assets/vendor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /drupal/core/assets/vendor/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/assets/vendor/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /drupal/core/modules/ban/ban.links.menu.yml: -------------------------------------------------------------------------------- 1 | ban.admin_page: 2 | title: 'IP address bans' 3 | description: 'Manage banned IP addresses.' 4 | route_name: ban.admin_page 5 | weight: 10 6 | parent: user.admin_index 7 | -------------------------------------------------------------------------------- /drupal/core/modules/book/book.libraries.yml: -------------------------------------------------------------------------------- 1 | drupal.book: 2 | version: VERSION 3 | js: 4 | book.js: {} 5 | dependencies: 6 | - core/jquery 7 | - core/drupal 8 | - core/drupal.form 9 | 10 | -------------------------------------------------------------------------------- /drupal/core/modules/config/tests/config_clash_test_theme/config/install/language/fr/config_test.dynamic.dotted.default.yml: -------------------------------------------------------------------------------- 1 | # Clashes with default configuration provided by the config_test module. 2 | label: 'Je suis' 3 | -------------------------------------------------------------------------------- /drupal/core/modules/config/tests/config_install_fail_test/config/install/language/fr/config_test.dynamic.dotted.default.yml: -------------------------------------------------------------------------------- 1 | # Clashes with default configuration provided by the config_test module. 2 | label: 'Je suis' 3 | -------------------------------------------------------------------------------- /drupal/core/modules/config/tests/config_test/config_test.links.task.yml: -------------------------------------------------------------------------------- 1 | entity.config_test.edit_form_tab: 2 | route_name: entity.config_test.edit_form 3 | title: 'Edit' 4 | base_route: entity.config_test.edit_form 5 | -------------------------------------------------------------------------------- /drupal/core/modules/content_translation/content_translation.links.task.yml: -------------------------------------------------------------------------------- 1 | content_translation.local_tasks: 2 | deriver: 'Drupal\content_translation\Plugin\Derivative\ContentTranslationLocalTasks' 3 | weight: 100 4 | -------------------------------------------------------------------------------- /drupal/core/modules/file/tests/file_test/file_test.routing.yml: -------------------------------------------------------------------------------- 1 | file.test: 2 | path: '/file-test/upload' 3 | defaults: 4 | _form: 'Drupal\file_test\Form\FileTestForm' 5 | requirements: 6 | _access: 'TRUE' 7 | -------------------------------------------------------------------------------- /drupal/core/modules/node/config/install/core.entity_view_mode.node.teaser.yml: -------------------------------------------------------------------------------- 1 | id: node.teaser 2 | label: Teaser 3 | status: true 4 | cache: true 5 | targetEntityType: node 6 | dependencies: 7 | module: 8 | - node 9 | -------------------------------------------------------------------------------- /drupal/core/modules/system/system.links.action.yml: -------------------------------------------------------------------------------- 1 | system.date_format_add: 2 | route_name: system.date_format_add 3 | title: 'Add format' 4 | weight: -10 5 | appears_on: 6 | - entity.date_format.collection 7 | -------------------------------------------------------------------------------- /drupal/core/modules/system/tests/css/system.module.css: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * This file is for testing CSS file override in 4 | * CascadingStylesheetsTestCase::testRenderOverride(). 5 | * No contents are necessary. 6 | */ 7 | -------------------------------------------------------------------------------- /drupal/core/modules/update/tests/modules/update_test/aaa_update_test.no-releases.xml: -------------------------------------------------------------------------------- 1 | 2 | No release history was found for the requested project (aaa_update_test). 3 | -------------------------------------------------------------------------------- /drupal/core/themes/bartik/css/components/tips.css: -------------------------------------------------------------------------------- 1 | /* ----------------- Tips ----------------- */ 2 | ul.tips { 3 | padding: 0 0 0 1.25em; /* LTR */ 4 | } 5 | [dir="rtl"] ul.tips { 6 | padding: 0 1.25em 0 0; 7 | } 8 | -------------------------------------------------------------------------------- /drupal/core/themes/classy/css/layout.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @file 3 | * Classy layout file. Do NOT delete. Needed for testing. 4 | * 5 | * @see \Drupal\system\Tests\Installer\InstallerTranslationTest::testInstaller() 6 | */ 7 | -------------------------------------------------------------------------------- /drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Reflection/Dummies/NoParent.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | 4 | Options: 5 | -o, --option_name 6 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/badtag4.yml: -------------------------------------------------------------------------------- 1 | services: 2 | foo_service: 3 | class: FooClass 4 | tags: 5 | # tag is not an array 6 | - foo 7 | -------------------------------------------------------------------------------- /drupal/core/vendor/symfony/validator/Tests/Constraints/Fixtures/test_portrait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studioraygun/drupangular/HEAD/drupal/core/vendor/symfony/validator/Tests/Constraints/Fixtures/test_portrait.gif -------------------------------------------------------------------------------- /drupal/core/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/TestInclude.php: -------------------------------------------------------------------------------- 1 | addTest(new Twig_SimpleTest('anonymous', function () {})); 5 | 6 | return $env; 7 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | RewriteBase / 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteCond %{REQUEST_FILENAME} !-d 6 | RewriteRule ^(.*) /index.php/#/$1 7 | --------------------------------------------------------------------------------