├── .gitattributes ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── VERSION ├── bin ├── build-all.sh ├── build-examples.sh ├── build-libraries-phar.sh ├── build-phar │ ├── DataLiberationBoxCompactor.php │ ├── box.php │ ├── core.php │ ├── smoke-test.php │ └── truncate-composer-checks.php ├── build-plugins.sh ├── run-server-build.sh ├── run-server-dev.sh └── split-code.sh ├── bootstrap.php ├── components ├── BlockParser │ ├── LICENSE.md │ ├── class-wp-block-parser-block.php │ ├── class-wp-block-parser-frame.php │ ├── class-wp-block-parser.php │ └── composer.json ├── Blueprints │ ├── DataReference │ │ ├── class-absolutelocalpath.php │ │ ├── class-datareference.php │ │ ├── class-datareferenceresolver.php │ │ ├── class-directory.php │ │ ├── class-executioncontextpath.php │ │ ├── class-file.php │ │ ├── class-gitpath.php │ │ ├── class-inlinedirectory.php │ │ ├── class-inlinefile.php │ │ ├── class-remotefile.php │ │ ├── class-urlreference.php │ │ ├── class-wordpressorgplugin.php │ │ └── class-wordpressorgtheme.php │ ├── Exception │ │ ├── class-blueprintexecutionexception.php │ │ ├── class-dataresolutionexception.php │ │ └── class-permissionsexception.php │ ├── LICENSE.md │ ├── Logger │ │ ├── class-clilogger.php │ │ └── class-nooplogger.php │ ├── Progress │ │ ├── class-doneevent.php │ │ ├── class-progressevent.php │ │ ├── class-progresstrackedreadstream.php │ │ └── class-tracker.php │ ├── SiteResolver │ │ ├── class-existingsiteresolver.php │ │ └── class-newsiteresolver.php │ ├── Steps │ │ ├── class-activatepluginstep.php │ │ ├── class-activatethemestep.php │ │ ├── class-cpstep.php │ │ ├── class-defineconstantsstep.php │ │ ├── class-enablemultisitestep.php │ │ ├── class-importcontentstep.php │ │ ├── class-importmediastep.php │ │ ├── class-importthemestartercontentstep.php │ │ ├── class-installpluginstep.php │ │ ├── class-installthemestep.php │ │ ├── class-mkdirstep.php │ │ ├── class-mvstep.php │ │ ├── class-rmdirstep.php │ │ ├── class-rmstep.php │ │ ├── class-runphpstep.php │ │ ├── class-runsqlstep.php │ │ ├── class-setsitelanguagestep.php │ │ ├── class-setsiteoptionsstep.php │ │ ├── class-unzipstep.php │ │ ├── class-wpclistep.php │ │ ├── class-writefilesstep.php │ │ ├── interface-step-interface.php │ │ └── scripts │ │ │ └── import-content.php │ ├── Tests │ │ └── Unit │ │ │ ├── DataReference │ │ │ └── DataReferenceResolverTest.php │ │ │ ├── Steps │ │ │ ├── CpStepTest.php │ │ │ ├── DefineConstantsStepTest.php │ │ │ ├── EnableMultisiteStepTest.php │ │ │ ├── InstallPluginStepTest.php │ │ │ ├── InstallThemeStepTest.php │ │ │ ├── MkdirStepTest.php │ │ │ ├── MvStepTest.php │ │ │ ├── RmDirStepTest.php │ │ │ ├── RmStepTest.php │ │ │ ├── RunPHPStepTest.php │ │ │ ├── RunSQLStepTest.php │ │ │ ├── SetSiteOptionsStepTest.php │ │ │ ├── StepTestCase.php │ │ │ ├── UnzipStepTest.php │ │ │ └── WriteFilesStepTest.php │ │ │ └── Validator │ │ │ ├── HumanFriendlySchemaValidatorTest.php │ │ │ └── fixtures │ │ │ ├── invalid │ │ │ ├── invalid-additional-steps.json │ │ │ ├── invalid-content-type.json │ │ │ ├── invalid-plugin-format.json │ │ │ ├── invalid-post-types.json │ │ │ ├── invalid-url-format.json │ │ │ ├── invalid-version.json │ │ │ └── missing-required.json │ │ │ └── valid │ │ │ ├── full-features.json │ │ │ ├── minimal-valid.json │ │ │ ├── with-additional-steps.json │ │ │ ├── with-content.json │ │ │ ├── with-plugins.json │ │ │ ├── with-post-types.json │ │ │ └── with-steps.json │ ├── Validator │ │ ├── class-humanfriendlyschemavalidator.php │ │ ├── class-symbol.php │ │ ├── class-unsupportedschemaexception.php │ │ └── class-validationerror.php │ ├── VersionStrings │ │ ├── class-phpversion.php │ │ ├── class-version.php │ │ ├── class-versionconstraint.php │ │ └── class-wordpressversion.php │ ├── Versions │ │ ├── Version1 │ │ │ ├── class-v1tov2transpiler.php │ │ │ └── schema-v1.json │ │ └── Version2 │ │ │ └── json-schema │ │ │ ├── regenerate-schema.ts │ │ │ ├── schema-v2.json │ │ │ ├── tsconfig.json │ │ │ └── wsp │ │ │ └── wsp-1-blueprint-v2-schema │ │ │ ├── appendix-A-blueprint-v2-schema.ts │ │ │ ├── appendix-B-data-sources.ts │ │ │ ├── appendix-C-runner-configuration.ts │ │ │ └── proposal.md │ ├── bin │ │ └── blueprint.php │ ├── class-evalresult.php │ ├── class-mediafiledefinition.php │ ├── class-metadata.php │ ├── class-process.php │ ├── class-processfailedexception.php │ ├── class-processoutputstream.php │ ├── class-progressobserver.php │ ├── class-runner.php │ ├── class-runnerconfiguration.php │ ├── class-runtime.php │ ├── composer.json │ └── vendor-patched │ │ ├── log │ │ ├── LICENSE │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ └── NullLogger.php │ │ └── README.md │ │ └── symfony │ │ ├── event-dispatcher │ │ ├── ContainerAwareEventDispatcher.php │ │ ├── Debug │ │ │ ├── TraceableEventDispatcher.php │ │ │ ├── TraceableEventDispatcherInterface.php │ │ │ └── WrappedListener.php │ │ ├── DependencyInjection │ │ │ └── RegisterListenersPass.php │ │ ├── Event.php │ │ ├── EventDispatcher.php │ │ ├── EventDispatcherInterface.php │ │ ├── EventSubscriberInterface.php │ │ ├── GenericEvent.php │ │ ├── ImmutableEventDispatcher.php │ │ └── LICENSE │ │ └── process │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── ProcessFailedException.php │ │ ├── ProcessTimedOutException.php │ │ └── RuntimeException.php │ │ ├── ExecutableFinder.php │ │ ├── InputStream.php │ │ ├── LICENSE │ │ ├── PhpExecutableFinder.php │ │ ├── PhpProcess.php │ │ ├── Pipes │ │ ├── AbstractPipes.php │ │ ├── PipesInterface.php │ │ ├── UnixPipes.php │ │ └── WindowsPipes.php │ │ ├── Process.php │ │ ├── ProcessBuilder.php │ │ ├── ProcessUtils.php │ │ └── phpunit.xml.dist ├── ByteStream │ ├── ByteTransformer │ │ ├── class-bytetransformer.php │ │ ├── class-checksumtransformer.php │ │ ├── class-deflatetransformer.php │ │ └── class-inflatetransformer.php │ ├── LICENSE.md │ ├── ReadStream │ │ ├── class-basebytereadstream.php │ │ ├── class-deflatereadstream.php │ │ ├── class-filereadstream.php │ │ ├── class-inflatereadstream.php │ │ ├── class-limitedbytereadstream.php │ │ ├── class-transformedreadstream.php │ │ └── interface-bytereadstream.php │ ├── Tests │ │ ├── ByteReadStreamTest.php │ │ ├── DeflateReadStreamTest.php │ │ ├── FileReadStreamTest.php │ │ ├── FileReadWriteStreamTest.php │ │ ├── FileWriteStreamTest.php │ │ ├── InflateReadStreamTest.php │ │ ├── TransformedReadStreamTest.php │ │ └── fixtures │ │ │ ├── preface-to-pygmalion.txt │ │ │ └── pygmalion.html │ ├── WriteStream │ │ ├── class-bytewritestream.php │ │ ├── class-filewritestream.php │ │ └── class-transformedwritestream.php │ ├── class-bytepipe.php │ ├── class-bytestreamexception.php │ ├── class-filereadwritestream.php │ ├── class-memorypipe.php │ ├── class-notenoughdataexception.php │ └── composer.json ├── CLI │ ├── LICENSE.md │ ├── class-cli.php │ └── composer.json ├── CORSProxy │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ ├── cors-proxy-functions.php │ ├── cors-proxy.php │ ├── dev.sh │ ├── package.json │ ├── project.json │ ├── test-watch.sh │ ├── test.sh │ └── tests │ │ ├── ProxyFunctionsTests.php │ │ └── bootstrap.php ├── DataLiberation │ ├── BlockMarkup │ │ ├── class-blockmarkupprocessor.php │ │ ├── class-blockmarkupurlprocessor.php │ │ └── class-blockobject.php │ ├── CSS │ │ └── class-cssprocessor.php │ ├── DataFormatConsumer │ │ ├── class-annotatedblockmarkupconsumer.php │ │ ├── class-blockswithmetadata.php │ │ ├── class-markupprocessorconsumer.php │ │ └── interface-data-format-consumer.php │ ├── DataFormatProducer │ │ ├── class-annotatedblockmarkupproducer.php │ │ └── interface-data-format-producer.php │ ├── EntityReader │ │ ├── class-blockswithmetadataentityreader.php │ │ ├── class-databasecontententityreader.php │ │ ├── class-databaserowsentityreader.php │ │ ├── class-entityreaderiterator.php │ │ ├── class-epubentityreader.php │ │ ├── class-filesystementityreader.php │ │ ├── class-htmlentityreader.php │ │ ├── class-wxrentityreader.php │ │ └── interface-entity-reader.php │ ├── EntityWriter │ │ ├── class-mysqldumpwriter.php │ │ ├── class-staticpostfileswriter.php │ │ ├── class-wxrwriter.php │ │ └── interface-entity-writer.php │ ├── Importer │ │ ├── class-attachmentdownloader.php │ │ ├── class-attachmentdownloaderevent.php │ │ ├── class-entityimporter.php │ │ ├── class-entityiteratorchain.php │ │ ├── class-filevisitorevent.php │ │ ├── class-importsession.php │ │ ├── class-importutils.php │ │ ├── class-retryfrontloadingiterator.php │ │ └── class-streamimporter.php │ ├── LICENSE.md │ ├── Tests │ │ ├── BlockMarkupProcessorTest.php │ │ ├── BlockMarkupUrlProcessorTest.php │ │ ├── CSSProcessorTest.php │ │ ├── CSSUrlProcessorTest.php │ │ ├── DatabaseContentEntityReaderTest.php │ │ ├── DatabaseEntityReaderTest.php │ │ ├── EPubEntityReaderTest.php │ │ ├── FilesystemEntityReaderTest.php │ │ ├── HTMLEntityReaderTest.php │ │ ├── MarkupProcessorConsumerTest.php │ │ ├── MySQLDumpWriterTest.php │ │ ├── MySQLExportTest.php │ │ ├── RewriteUrlsTest.php │ │ ├── StaticPostFilesWriterTest.php │ │ ├── StreamImporterTest.php │ │ ├── URLInTextProcessorTest.php │ │ ├── URLInTextProcessorWHATWGComplianceTest.php │ │ ├── URLParserWHATWGComplianceTest.php │ │ ├── UrldecodeNTest.php │ │ ├── WPURLTest.php │ │ ├── WXRReaderTest.php │ │ ├── WXRWriterTest.php │ │ ├── css-test-cases.json │ │ ├── fixtures │ │ │ ├── epub-entity-reader │ │ │ │ └── childrens-literature.epub │ │ │ ├── filesystem-entity-reader │ │ │ │ ├── simple-structure │ │ │ │ │ ├── nested │ │ │ │ │ │ └── page1.html │ │ │ │ │ └── root.html │ │ │ │ └── with-nested-images-directory │ │ │ │ │ ├── nested │ │ │ │ │ ├── images │ │ │ │ │ │ └── screenshot.png │ │ │ │ │ └── page1.html │ │ │ │ │ └── root.html │ │ │ ├── html-to-blocks │ │ │ │ ├── excerpt.input.html │ │ │ │ └── excerpt.output.html │ │ │ ├── wxr-simple-expected.xml │ │ │ └── wxr-simple.xml │ │ ├── import │ │ │ ├── blueprint-import.json │ │ │ └── run.sh │ │ ├── whatwg_url_inline_detection_test_data.json │ │ ├── whatwg_url_test_data.json │ │ └── wxr │ │ │ ├── 10MB.xml │ │ │ ├── a11y-unit-test-data.xml │ │ │ ├── crazy-cdata-escaped.xml │ │ │ ├── crazy-cdata.xml │ │ │ ├── entities-options-and-posts.xml │ │ │ ├── frontloading-1-attachment.xml │ │ │ ├── frontloading-attachments-post-contents-and-404s.xml │ │ │ ├── invalid-version-tag.xml │ │ │ ├── malformed.xml │ │ │ ├── missing-version-tag.xml │ │ │ ├── slashes.xml │ │ │ ├── small-export.xml │ │ │ ├── stylish-press.xml │ │ │ ├── test-serialized-postmeta-no-cdata.xml │ │ │ ├── test-serialized-postmeta-with-cdata.xml │ │ │ ├── test-utw-post-meta-import.xml │ │ │ ├── theme-unit-test-data.xml │ │ │ ├── valid-wxr-1.0.xml │ │ │ ├── valid-wxr-1.1.xml │ │ │ └── woocommerce-demo-products.xml │ ├── URL │ │ ├── class-convertedurl.php │ │ ├── class-cssurlprocessor.php │ │ ├── class-urlintextprocessor.php │ │ ├── class-wpurl.php │ │ ├── functions.php │ │ └── public-suffix-list.php │ ├── bin │ │ ├── import │ │ │ ├── blueprint-import-wxr.json │ │ │ └── import-wxr.sh │ │ ├── regenerate-public-suffix-list.php │ │ └── rewrite-urls.php │ ├── class-dataliberationexception.php │ ├── class-dataliberationhtmlprocessor.php │ ├── class-importentity.php │ ├── composer.json │ ├── plugin-build.sh │ ├── rector.php │ └── vendor-patched │ │ ├── README.md │ │ ├── brick │ │ └── math │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ └── src │ │ │ ├── BigDecimal.php │ │ │ ├── BigInteger.php │ │ │ ├── BigNumber.php │ │ │ ├── BigRational.php │ │ │ ├── Exception │ │ │ ├── DivisionByZeroException.php │ │ │ ├── IntegerOverflowException.php │ │ │ ├── MathException.php │ │ │ ├── NegativeNumberException.php │ │ │ ├── NumberFormatException.php │ │ │ └── RoundingNecessaryException.php │ │ │ ├── Internal │ │ │ ├── Calculator.php │ │ │ └── Calculator │ │ │ │ ├── BcMathCalculator.php │ │ │ │ ├── GmpCalculator.php │ │ │ │ └── NativeCalculator.php │ │ │ └── RoundingMode.php │ │ ├── psr │ │ ├── event-dispatcher │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── src │ │ │ │ ├── EventDispatcherInterface.php │ │ │ │ ├── ListenerProviderInterface.php │ │ │ │ └── StoppableEventInterface.php │ │ └── log │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── src │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ └── NullLogger.php │ │ ├── rowbot │ │ ├── idna │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ ├── Builder.php │ │ │ │ ├── IdnaDataBuilder.php │ │ │ │ ├── RegexBuilder.php │ │ │ │ ├── ViramaDataBuilder.php │ │ │ │ └── generateDataFiles.php │ │ │ ├── phpstan.neon │ │ │ ├── phpunit.xml │ │ │ ├── resources │ │ │ │ ├── DisallowedRanges.php │ │ │ │ ├── Regex.php │ │ │ │ ├── deviation.php │ │ │ │ ├── disallowed.php │ │ │ │ ├── disallowed_STD3_mapped.php │ │ │ │ ├── disallowed_STD3_valid.php │ │ │ │ ├── ignored.php │ │ │ │ ├── mapped.php │ │ │ │ └── virama.php │ │ │ ├── src │ │ │ │ ├── CodePoint.php │ │ │ │ ├── CodePointStatus.php │ │ │ │ ├── DomainInfo.php │ │ │ │ ├── Idna.php │ │ │ │ ├── IdnaResult.php │ │ │ │ └── LabelValidator.php │ │ │ └── tests │ │ │ │ ├── IdnaV2Test.php │ │ │ │ └── IdnaV2TestCase.php │ │ ├── punycode │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── phpstan.neon │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ │ ├── Exception │ │ │ │ │ ├── InvalidInputException.php │ │ │ │ │ ├── OutputSizeExceededException.php │ │ │ │ │ ├── OverflowException.php │ │ │ │ │ └── PunycodeException.php │ │ │ │ └── Punycode.php │ │ │ └── tests │ │ │ │ └── PunycodeTest.php │ │ └── url │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── phpstan.neon │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ ├── APIParserErrorType.php │ │ │ ├── APIParserResult.php │ │ │ ├── BasicURLParser.php │ │ │ ├── Component │ │ │ │ ├── AbstractPath.php │ │ │ │ ├── Host │ │ │ │ │ ├── AbstractHost.php │ │ │ │ │ ├── HostInterface.php │ │ │ │ │ ├── HostParser.php │ │ │ │ │ ├── IPv4Address.php │ │ │ │ │ ├── IPv4AddressParser.php │ │ │ │ │ ├── IPv6Address.php │ │ │ │ │ ├── IPv6AddressParser.php │ │ │ │ │ ├── Math │ │ │ │ │ │ ├── BrickMathAdapter.php │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── MathException.php │ │ │ │ │ │ ├── NativeIntAdapter.php │ │ │ │ │ │ ├── NumberFactory.php │ │ │ │ │ │ └── NumberInterface.php │ │ │ │ │ ├── NullHost.php │ │ │ │ │ ├── Serializer │ │ │ │ │ │ ├── HostSerializerInterface.php │ │ │ │ │ │ ├── IPv4AddressSerializer.php │ │ │ │ │ │ ├── IPv6AddressSerializer.php │ │ │ │ │ │ └── StringHostSerializer.php │ │ │ │ │ └── StringHost.php │ │ │ │ ├── OpaqueOrigin.php │ │ │ │ ├── OpaquePath.php │ │ │ │ ├── PathInterface.php │ │ │ │ ├── PathList.php │ │ │ │ ├── PathSegment.php │ │ │ │ ├── QueryList.php │ │ │ │ ├── Scheme.php │ │ │ │ └── TupleOrigin.php │ │ │ ├── Exception │ │ │ │ ├── TypeError.php │ │ │ │ ├── URLException.php │ │ │ │ └── UnsupportedOperationException.php │ │ │ ├── Origin.php │ │ │ ├── ParserContext.php │ │ │ ├── ParserState.php │ │ │ ├── State │ │ │ │ ├── AbstractHostState.php │ │ │ │ ├── AuthorityState.php │ │ │ │ ├── FileHostState.php │ │ │ │ ├── FileSlashState.php │ │ │ │ ├── FileState.php │ │ │ │ ├── FragmentState.php │ │ │ │ ├── HostState.php │ │ │ │ ├── HostnameState.php │ │ │ │ ├── NoSchemeState.php │ │ │ │ ├── OpaquePathState.php │ │ │ │ ├── PathOrAuthorityState.php │ │ │ │ ├── PathStartState.php │ │ │ │ ├── PathState.php │ │ │ │ ├── PortState.php │ │ │ │ ├── QueryState.php │ │ │ │ ├── RelativeSlashState.php │ │ │ │ ├── RelativeState.php │ │ │ │ ├── SchemeStartState.php │ │ │ │ ├── SchemeState.php │ │ │ │ ├── SpecialAuthorityIgnoreSlashesState.php │ │ │ │ ├── SpecialAuthoritySlashesState.php │ │ │ │ ├── SpecialRelativeOrAuthorityState.php │ │ │ │ ├── State.php │ │ │ │ └── StatusCode.php │ │ │ ├── String │ │ │ │ ├── AbstractStringBuffer.php │ │ │ │ ├── AbstractStringList.php │ │ │ │ ├── AbstractUSVString.php │ │ │ │ ├── CodePoint.php │ │ │ │ ├── EncodeSet.php │ │ │ │ ├── Exception │ │ │ │ │ ├── EncodingException.php │ │ │ │ │ ├── RegexException.php │ │ │ │ │ └── UndefinedIndexException.php │ │ │ │ ├── PercentEncoder.php │ │ │ │ ├── StringBuffer.php │ │ │ │ ├── StringBufferInterface.php │ │ │ │ ├── StringIteratorInterface.php │ │ │ │ ├── StringList.php │ │ │ │ ├── StringListInterface.php │ │ │ │ ├── USVStringInterface.php │ │ │ │ ├── Utf8String.php │ │ │ │ └── Utf8StringIterator.php │ │ │ ├── Support │ │ │ │ └── EncodingHelper.php │ │ │ ├── URL.php │ │ │ ├── URLRecord.php │ │ │ └── URLSearchParams.php │ │ │ └── tests │ │ │ ├── EncodingHelperTest.php │ │ │ ├── HostParserTest.php │ │ │ ├── Math │ │ │ ├── BrickMathAdapterTest.php │ │ │ ├── MathTestCase.php │ │ │ └── NativeIntAdapterTest.php │ │ │ ├── NullHostTest.php │ │ │ ├── OriginTest.php │ │ │ ├── PathTest.php │ │ │ ├── QueryListTest.php │ │ │ ├── QueryStateTest.php │ │ │ ├── SchemeTest.php │ │ │ ├── StringsTest.php │ │ │ ├── URLRecordTest.php │ │ │ ├── URLSearchParamsTest.php │ │ │ ├── URLTest.php │ │ │ ├── ValidationErrorLogger.php │ │ │ └── WhatWg │ │ │ ├── FailureTest.php │ │ │ ├── PercentEncodingTest.php │ │ │ ├── ToASCIIWindowTest.php │ │ │ ├── URLConstructorTest.php │ │ │ ├── URLEncodedParserTest.php │ │ │ ├── URLOriginTest.php │ │ │ ├── URLSearchParamsAppendTest.php │ │ │ ├── URLSearchParamsConstructorTest.php │ │ │ ├── URLSearchParamsDeleteTest.php │ │ │ ├── URLSearchParamsForeachTest.php │ │ │ ├── URLSearchParamsGetAllTest.php │ │ │ ├── URLSearchParamsGetTest.php │ │ │ ├── URLSearchParamsHasTest.php │ │ │ ├── URLSearchParamsSetTest.php │ │ │ ├── URLSearchParamsSizeTest.php │ │ │ ├── URLSearchParamsSortTest.php │ │ │ ├── URLSearchParamsStringifierTest.php │ │ │ ├── URLSearchParamsTest.php │ │ │ ├── URLSettersTest.php │ │ │ ├── URLStaticsCanParseTest.php │ │ │ ├── URLToJSONTest.php │ │ │ └── WhatwgTestCase.php │ │ └── symfony │ │ ├── deprecation-contracts │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── function.php │ │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── bootstrap80.php │ │ ├── polyfill-intl-normalizer │ │ ├── LICENSE │ │ ├── Normalizer.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── stubs │ │ │ │ └── Normalizer.php │ │ │ └── unidata │ │ │ │ ├── canonicalComposition.php │ │ │ │ ├── canonicalDecomposition.php │ │ │ │ ├── combiningClass.php │ │ │ │ └── compatibilityDecomposition.php │ │ ├── bootstrap.php │ │ └── bootstrap80.php │ │ └── polyfill-php80 │ │ ├── LICENSE │ │ ├── Php80.php │ │ ├── PhpToken.php │ │ ├── README.md │ │ ├── Resources │ │ └── stubs │ │ │ ├── Attribute.php │ │ │ ├── PhpToken.php │ │ │ ├── Stringable.php │ │ │ ├── UnhandledMatchError.php │ │ │ └── ValueError.php │ │ └── bootstrap.php ├── Encoding │ ├── LICENSE.md │ ├── compat-utf8.php │ ├── composer.json │ ├── utf8-encoder.php │ └── utf8.php ├── Filesystem │ ├── ByteStream │ │ └── class-filesystemwritestream.php │ ├── LICENSE.md │ ├── Layer │ │ ├── class-chrootlayer.php │ │ └── class-layer.php │ ├── Mixin │ │ ├── Interfaces │ │ │ └── interface-internalizedwritestream.php │ │ ├── trait-bufferedwritestreamviaputcontents.php │ │ ├── trait-copydirectoryrecursive.php │ │ ├── trait-copyfileviastreaming.php │ │ ├── trait-copyrecursiveviastreaming.php │ │ ├── trait-getcontentsviareadstream.php │ │ ├── trait-internalizewritestream.php │ │ ├── trait-mkdirrecursive.php │ │ ├── trait-putcontentsviawritestream.php │ │ ├── trait-readonlyfilesystem.php │ │ ├── trait-renamefileviacopyandrm.php │ │ └── trait-rmdirrecursive.php │ ├── Path │ │ └── class-windowspath.php │ ├── Tests │ │ ├── FilesystemTestCase.php │ │ ├── FunctionsTest.php │ │ ├── InMemoryFilesystemTest.php │ │ ├── LocalFilesystemTest.php │ │ ├── SQLiteFilesystemTest.php │ │ └── UploadedFilesystemTest.php │ ├── Visitor │ │ ├── class-filesystemvisitor.php │ │ └── class-filevisitorevent.php │ ├── class-filesystemexception.php │ ├── class-inmemoryfilesystem.php │ ├── class-localfilesystem.php │ ├── class-sqlitefilesystem.php │ ├── class-uploadedfilesystem.php │ ├── composer.json │ ├── functions.php │ └── interface-filesystem.php ├── Git │ ├── LICENSE.md │ ├── Model │ │ ├── class-commit.php │ │ ├── class-tree.php │ │ └── class-treeentry.php │ ├── Protocol │ │ ├── Parser │ │ │ ├── class-commitparser.php │ │ │ ├── class-deltaresolver.php │ │ │ ├── class-gitprotocoldecoder.php │ │ │ ├── class-packetparser.php │ │ │ ├── class-packparser.php │ │ │ ├── class-protocoldemultiplexer.php │ │ │ └── class-treeparser.php │ │ ├── class-gitprotocolencoderpipe.php │ │ └── class-packfileencoderreadstream.php │ ├── Tests │ │ ├── CommitParserTest.php │ │ ├── DeltaResolverTest.php │ │ ├── GitFilesystemTest.php │ │ ├── GitObjectReadStreamTest.php │ │ ├── GitObjectWriteStreamTest.php │ │ ├── GitProtocolDecoderTest.php │ │ ├── GitProtocolEncoderPipeTest.php │ │ ├── GitRepositoryTest.php │ │ ├── GitServerTest.php │ │ ├── GitTreeParserTest.php │ │ ├── PackParserTest.php │ │ ├── PacketParserTest.php │ │ ├── ProtocolDemultiplexerTest.php │ │ └── fixtures │ │ │ ├── pack-simple.pack │ │ │ ├── pack-tree.pack │ │ │ ├── preface-to-pygmalion.txt │ │ │ ├── woocommerce-response.bin │ │ │ ├── wordpress-develop-response-full.bin │ │ │ └── wordpress-develop-response-no-blobs.bin │ ├── class-gitendpoint.php │ ├── class-gitexception.php │ ├── class-gitfilesystem.php │ ├── class-gitobjectdecoder.php │ ├── class-gitobjectencoder.php │ ├── class-gitpathdoesnotexistexception.php │ ├── class-gitremote.php │ ├── class-gitremoteexception.php │ ├── class-gitrepository.php │ ├── composer.json │ └── functions.php ├── HTML │ ├── LICENSE.md │ ├── class-wp-html-active-formatting-elements.php │ ├── class-wp-html-attribute-token.php │ ├── class-wp-html-decoder.php │ ├── class-wp-html-doctype-info.php │ ├── class-wp-html-open-elements.php │ ├── class-wp-html-processor-state.php │ ├── class-wp-html-processor.php │ ├── class-wp-html-span.php │ ├── class-wp-html-stack-event.php │ ├── class-wp-html-tag-processor.php │ ├── class-wp-html-text-replacement.php │ ├── class-wp-html-token.php │ ├── class-wp-html-unsupported-exception.php │ ├── class-wp-token-map.php │ ├── composer.json │ └── html5-named-character-references.php ├── HttpClient │ ├── ByteStream │ │ ├── class-chunkeddecoderreadstream.php │ │ ├── class-chunkedencoderbytetransformer.php │ │ ├── class-requestreadstream.php │ │ └── class-seekablerequestreadstream.php │ ├── LICENSE.md │ ├── Middleware │ │ ├── class-cachemiddleware.php │ │ ├── class-httpmiddleware.php │ │ ├── class-redirectionmiddleware.php │ │ └── middleware-interface.php │ ├── README.md │ ├── Tests │ │ ├── CacheMiddlewareIntegrationTest.php │ │ ├── CacheMiddlewareTest.php │ │ ├── ClientTestBase.php │ │ ├── CurlTransportTest.php │ │ ├── RequestReadStreamTest.php │ │ ├── SeekableRequestReadStreamTest.php │ │ ├── SocketTransportTest.php │ │ ├── WithServerTrait.php │ │ ├── fixtures │ │ │ └── preface-to-pygmalion.txt │ │ └── test-server │ │ │ └── run.php │ ├── Transport │ │ ├── class-curltransport.php │ │ ├── class-sockettransport.php │ │ └── interface-transportinterface.php │ ├── class-client.php │ ├── class-clientstate.php │ ├── class-connection.php │ ├── class-crawler.php │ ├── class-httpclientexception.php │ ├── class-httperror.php │ ├── class-request.php │ ├── class-response.php │ ├── composer.json │ └── examples │ │ ├── concurrent-downloads.php │ │ └── http-proxy.php ├── HttpServer │ ├── LICENSE.md │ ├── Response │ │ ├── class-bufferingresponsewriter.php │ │ ├── class-responsewritestream.php │ │ ├── class-streamingresponsewriter.php │ │ └── class-tcpresponsewritestream.php │ ├── class-incomingrequest.php │ ├── class-statuscode.php │ ├── class-tcpserver.php │ └── composer.json ├── Markdown │ ├── LICENSE.md │ ├── Tests │ │ ├── MarkdownConsumerTest.php │ │ └── MarkdownProducerTest.php │ ├── bin │ │ ├── build │ │ │ ├── DataLiberationBoxCompactor.php │ │ │ ├── box.php │ │ │ ├── core.php │ │ │ ├── smoke-test.php │ │ │ └── truncate-composer-checks.php │ │ └── phar-build.sh │ ├── box.json │ ├── class-markdownconsumer.php │ ├── class-markdownimporter.php │ ├── class-markdownproducer.php │ ├── composer.json │ ├── plugin.php │ ├── project.json │ └── vendor-patched │ │ ├── autoload.php │ │ ├── bin │ │ └── yaml-lint │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ ├── installed.php │ │ └── platform_check.php │ │ ├── dflydev │ │ └── dot-access-data │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── src │ │ │ ├── Data.php │ │ │ ├── DataInterface.php │ │ │ ├── Exception │ │ │ ├── DataException.php │ │ │ ├── InvalidPathException.php │ │ │ └── MissingPathException.php │ │ │ └── Util.php │ │ ├── league │ │ ├── commonmark │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── src │ │ │ │ ├── CommonMarkConverter.php │ │ │ │ ├── ConverterInterface.php │ │ │ │ ├── Delimiter │ │ │ │ ├── Bracket.php │ │ │ │ ├── Delimiter.php │ │ │ │ ├── DelimiterInterface.php │ │ │ │ ├── DelimiterParser.php │ │ │ │ ├── DelimiterStack.php │ │ │ │ └── Processor │ │ │ │ │ ├── CacheableDelimiterProcessorInterface.php │ │ │ │ │ ├── DelimiterProcessorCollection.php │ │ │ │ │ ├── DelimiterProcessorCollectionInterface.php │ │ │ │ │ ├── DelimiterProcessorInterface.php │ │ │ │ │ └── StaggeredDelimiterProcessor.php │ │ │ │ ├── Environment │ │ │ │ ├── Environment.php │ │ │ │ ├── EnvironmentAwareInterface.php │ │ │ │ ├── EnvironmentBuilderInterface.php │ │ │ │ └── EnvironmentInterface.php │ │ │ │ ├── Event │ │ │ │ ├── AbstractEvent.php │ │ │ │ ├── DocumentParsedEvent.php │ │ │ │ ├── DocumentPreParsedEvent.php │ │ │ │ ├── DocumentPreRenderEvent.php │ │ │ │ ├── DocumentRenderedEvent.php │ │ │ │ └── ListenerData.php │ │ │ │ ├── Exception │ │ │ │ ├── AlreadyInitializedException.php │ │ │ │ ├── CommonMarkException.php │ │ │ │ ├── IOException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── MissingDependencyException.php │ │ │ │ └── UnexpectedEncodingException.php │ │ │ │ ├── Extension │ │ │ │ ├── Attributes │ │ │ │ │ ├── AttributesExtension.php │ │ │ │ │ ├── Event │ │ │ │ │ │ └── AttributesListener.php │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── Attributes.php │ │ │ │ │ │ └── AttributesInline.php │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── AttributesBlockContinueParser.php │ │ │ │ │ │ ├── AttributesBlockStartParser.php │ │ │ │ │ │ └── AttributesInlineParser.php │ │ │ │ │ └── Util │ │ │ │ │ │ └── AttributesHelper.php │ │ │ │ ├── Autolink │ │ │ │ │ ├── AutolinkExtension.php │ │ │ │ │ ├── EmailAutolinkParser.php │ │ │ │ │ └── UrlAutolinkParser.php │ │ │ │ ├── CommonMark │ │ │ │ │ ├── CommonMarkCoreExtension.php │ │ │ │ │ ├── Delimiter │ │ │ │ │ │ └── Processor │ │ │ │ │ │ │ └── EmphasisDelimiterProcessor.php │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── Block │ │ │ │ │ │ │ ├── BlockQuote.php │ │ │ │ │ │ │ ├── FencedCode.php │ │ │ │ │ │ │ ├── Heading.php │ │ │ │ │ │ │ ├── HtmlBlock.php │ │ │ │ │ │ │ ├── IndentedCode.php │ │ │ │ │ │ │ ├── ListBlock.php │ │ │ │ │ │ │ ├── ListData.php │ │ │ │ │ │ │ ├── ListItem.php │ │ │ │ │ │ │ └── ThematicBreak.php │ │ │ │ │ │ └── Inline │ │ │ │ │ │ │ ├── AbstractWebResource.php │ │ │ │ │ │ │ ├── Code.php │ │ │ │ │ │ │ ├── Emphasis.php │ │ │ │ │ │ │ ├── HtmlInline.php │ │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ │ ├── Link.php │ │ │ │ │ │ │ └── Strong.php │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── Block │ │ │ │ │ │ │ ├── BlockQuoteParser.php │ │ │ │ │ │ │ ├── BlockQuoteStartParser.php │ │ │ │ │ │ │ ├── FencedCodeParser.php │ │ │ │ │ │ │ ├── FencedCodeStartParser.php │ │ │ │ │ │ │ ├── HeadingParser.php │ │ │ │ │ │ │ ├── HeadingStartParser.php │ │ │ │ │ │ │ ├── HtmlBlockParser.php │ │ │ │ │ │ │ ├── HtmlBlockStartParser.php │ │ │ │ │ │ │ ├── IndentedCodeParser.php │ │ │ │ │ │ │ ├── IndentedCodeStartParser.php │ │ │ │ │ │ │ ├── ListBlockParser.php │ │ │ │ │ │ │ ├── ListBlockStartParser.php │ │ │ │ │ │ │ ├── ListItemParser.php │ │ │ │ │ │ │ ├── ThematicBreakParser.php │ │ │ │ │ │ │ └── ThematicBreakStartParser.php │ │ │ │ │ │ └── Inline │ │ │ │ │ │ │ ├── AutolinkParser.php │ │ │ │ │ │ │ ├── BacktickParser.php │ │ │ │ │ │ │ ├── BangParser.php │ │ │ │ │ │ │ ├── CloseBracketParser.php │ │ │ │ │ │ │ ├── EntityParser.php │ │ │ │ │ │ │ ├── EscapableParser.php │ │ │ │ │ │ │ ├── HtmlInlineParser.php │ │ │ │ │ │ │ └── OpenBracketParser.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── BlockQuoteRenderer.php │ │ │ │ │ │ ├── FencedCodeRenderer.php │ │ │ │ │ │ ├── HeadingRenderer.php │ │ │ │ │ │ ├── HtmlBlockRenderer.php │ │ │ │ │ │ ├── IndentedCodeRenderer.php │ │ │ │ │ │ ├── ListBlockRenderer.php │ │ │ │ │ │ ├── ListItemRenderer.php │ │ │ │ │ │ └── ThematicBreakRenderer.php │ │ │ │ │ │ └── Inline │ │ │ │ │ │ ├── CodeRenderer.php │ │ │ │ │ │ ├── EmphasisRenderer.php │ │ │ │ │ │ ├── HtmlInlineRenderer.php │ │ │ │ │ │ ├── ImageRenderer.php │ │ │ │ │ │ ├── LinkRenderer.php │ │ │ │ │ │ └── StrongRenderer.php │ │ │ │ ├── ConfigurableExtensionInterface.php │ │ │ │ ├── DefaultAttributes │ │ │ │ │ ├── ApplyDefaultAttributesProcessor.php │ │ │ │ │ └── DefaultAttributesExtension.php │ │ │ │ ├── DescriptionList │ │ │ │ │ ├── DescriptionListExtension.php │ │ │ │ │ ├── Event │ │ │ │ │ │ ├── ConsecutiveDescriptionListMerger.php │ │ │ │ │ │ └── LooseDescriptionHandler.php │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── Description.php │ │ │ │ │ │ ├── DescriptionList.php │ │ │ │ │ │ └── DescriptionTerm.php │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── DescriptionContinueParser.php │ │ │ │ │ │ ├── DescriptionListContinueParser.php │ │ │ │ │ │ ├── DescriptionStartParser.php │ │ │ │ │ │ └── DescriptionTermContinueParser.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── DescriptionListRenderer.php │ │ │ │ │ │ ├── DescriptionRenderer.php │ │ │ │ │ │ └── DescriptionTermRenderer.php │ │ │ │ ├── DisallowedRawHtml │ │ │ │ │ ├── DisallowedRawHtmlExtension.php │ │ │ │ │ └── DisallowedRawHtmlRenderer.php │ │ │ │ ├── Embed │ │ │ │ │ ├── Bridge │ │ │ │ │ │ └── OscaroteroEmbedAdapter.php │ │ │ │ │ ├── DomainFilteringAdapter.php │ │ │ │ │ ├── Embed.php │ │ │ │ │ ├── EmbedAdapterInterface.php │ │ │ │ │ ├── EmbedExtension.php │ │ │ │ │ ├── EmbedParser.php │ │ │ │ │ ├── EmbedProcessor.php │ │ │ │ │ ├── EmbedRenderer.php │ │ │ │ │ └── EmbedStartParser.php │ │ │ │ ├── ExtensionInterface.php │ │ │ │ ├── ExternalLink │ │ │ │ │ ├── ExternalLinkExtension.php │ │ │ │ │ └── ExternalLinkProcessor.php │ │ │ │ ├── Footnote │ │ │ │ │ ├── Event │ │ │ │ │ │ ├── AnonymousFootnotesListener.php │ │ │ │ │ │ ├── FixOrphanedFootnotesAndRefsListener.php │ │ │ │ │ │ ├── GatherFootnotesListener.php │ │ │ │ │ │ └── NumberFootnotesListener.php │ │ │ │ │ ├── FootnoteExtension.php │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── Footnote.php │ │ │ │ │ │ ├── FootnoteBackref.php │ │ │ │ │ │ ├── FootnoteContainer.php │ │ │ │ │ │ └── FootnoteRef.php │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── AnonymousFootnoteRefParser.php │ │ │ │ │ │ ├── FootnoteParser.php │ │ │ │ │ │ ├── FootnoteRefParser.php │ │ │ │ │ │ └── FootnoteStartParser.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── FootnoteBackrefRenderer.php │ │ │ │ │ │ ├── FootnoteContainerRenderer.php │ │ │ │ │ │ ├── FootnoteRefRenderer.php │ │ │ │ │ │ └── FootnoteRenderer.php │ │ │ │ ├── FrontMatter │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── FrontMatterDataParserInterface.php │ │ │ │ │ │ ├── LibYamlFrontMatterParser.php │ │ │ │ │ │ └── SymfonyYamlFrontMatterParser.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── InvalidFrontMatterException.php │ │ │ │ │ ├── FrontMatterExtension.php │ │ │ │ │ ├── FrontMatterParser.php │ │ │ │ │ ├── FrontMatterParserInterface.php │ │ │ │ │ ├── FrontMatterProviderInterface.php │ │ │ │ │ ├── Input │ │ │ │ │ │ └── MarkdownInputWithFrontMatter.php │ │ │ │ │ ├── Listener │ │ │ │ │ │ ├── FrontMatterPostRenderListener.php │ │ │ │ │ │ └── FrontMatterPreParser.php │ │ │ │ │ └── Output │ │ │ │ │ │ └── RenderedContentWithFrontMatter.php │ │ │ │ ├── GithubFlavoredMarkdownExtension.php │ │ │ │ ├── HeadingPermalink │ │ │ │ │ ├── HeadingPermalink.php │ │ │ │ │ ├── HeadingPermalinkExtension.php │ │ │ │ │ ├── HeadingPermalinkProcessor.php │ │ │ │ │ └── HeadingPermalinkRenderer.php │ │ │ │ ├── InlinesOnly │ │ │ │ │ ├── ChildRenderer.php │ │ │ │ │ └── InlinesOnlyExtension.php │ │ │ │ ├── Mention │ │ │ │ │ ├── Generator │ │ │ │ │ │ ├── CallbackGenerator.php │ │ │ │ │ │ ├── MentionGeneratorInterface.php │ │ │ │ │ │ └── StringTemplateLinkGenerator.php │ │ │ │ │ ├── Mention.php │ │ │ │ │ ├── MentionExtension.php │ │ │ │ │ └── MentionParser.php │ │ │ │ ├── SmartPunct │ │ │ │ │ ├── DashParser.php │ │ │ │ │ ├── EllipsesParser.php │ │ │ │ │ ├── Quote.php │ │ │ │ │ ├── QuoteParser.php │ │ │ │ │ ├── QuoteProcessor.php │ │ │ │ │ ├── ReplaceUnpairedQuotesListener.php │ │ │ │ │ └── SmartPunctExtension.php │ │ │ │ ├── Strikethrough │ │ │ │ │ ├── Strikethrough.php │ │ │ │ │ ├── StrikethroughDelimiterProcessor.php │ │ │ │ │ ├── StrikethroughExtension.php │ │ │ │ │ └── StrikethroughRenderer.php │ │ │ │ ├── Table │ │ │ │ │ ├── Table.php │ │ │ │ │ ├── TableCell.php │ │ │ │ │ ├── TableCellRenderer.php │ │ │ │ │ ├── TableExtension.php │ │ │ │ │ ├── TableParser.php │ │ │ │ │ ├── TableRenderer.php │ │ │ │ │ ├── TableRow.php │ │ │ │ │ ├── TableRowRenderer.php │ │ │ │ │ ├── TableSection.php │ │ │ │ │ ├── TableSectionRenderer.php │ │ │ │ │ └── TableStartParser.php │ │ │ │ ├── TableOfContents │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── TableOfContents.php │ │ │ │ │ │ └── TableOfContentsPlaceholder.php │ │ │ │ │ ├── Normalizer │ │ │ │ │ │ ├── AsIsNormalizerStrategy.php │ │ │ │ │ │ ├── FlatNormalizerStrategy.php │ │ │ │ │ │ ├── NormalizerStrategyInterface.php │ │ │ │ │ │ └── RelativeNormalizerStrategy.php │ │ │ │ │ ├── TableOfContentsBuilder.php │ │ │ │ │ ├── TableOfContentsExtension.php │ │ │ │ │ ├── TableOfContentsGenerator.php │ │ │ │ │ ├── TableOfContentsGeneratorInterface.php │ │ │ │ │ ├── TableOfContentsPlaceholderParser.php │ │ │ │ │ ├── TableOfContentsPlaceholderRenderer.php │ │ │ │ │ └── TableOfContentsRenderer.php │ │ │ │ └── TaskList │ │ │ │ │ ├── TaskListExtension.php │ │ │ │ │ ├── TaskListItemMarker.php │ │ │ │ │ ├── TaskListItemMarkerParser.php │ │ │ │ │ └── TaskListItemMarkerRenderer.php │ │ │ │ ├── GithubFlavoredMarkdownConverter.php │ │ │ │ ├── Input │ │ │ │ ├── MarkdownInput.php │ │ │ │ └── MarkdownInputInterface.php │ │ │ │ ├── MarkdownConverter.php │ │ │ │ ├── MarkdownConverterInterface.php │ │ │ │ ├── Node │ │ │ │ ├── Block │ │ │ │ │ ├── AbstractBlock.php │ │ │ │ │ ├── Document.php │ │ │ │ │ ├── Paragraph.php │ │ │ │ │ └── TightBlockInterface.php │ │ │ │ ├── Inline │ │ │ │ │ ├── AbstractInline.php │ │ │ │ │ ├── AbstractStringContainer.php │ │ │ │ │ ├── AdjacentTextMerger.php │ │ │ │ │ ├── DelimitedInterface.php │ │ │ │ │ ├── Newline.php │ │ │ │ │ └── Text.php │ │ │ │ ├── Node.php │ │ │ │ ├── NodeIterator.php │ │ │ │ ├── NodeWalker.php │ │ │ │ ├── NodeWalkerEvent.php │ │ │ │ ├── Query.php │ │ │ │ ├── Query │ │ │ │ │ ├── AndExpr.php │ │ │ │ │ ├── ExpressionInterface.php │ │ │ │ │ └── OrExpr.php │ │ │ │ ├── RawMarkupContainerInterface.php │ │ │ │ ├── StringContainerHelper.php │ │ │ │ └── StringContainerInterface.php │ │ │ │ ├── Normalizer │ │ │ │ ├── SlugNormalizer.php │ │ │ │ ├── TextNormalizer.php │ │ │ │ ├── TextNormalizerInterface.php │ │ │ │ ├── UniqueSlugNormalizer.php │ │ │ │ └── UniqueSlugNormalizerInterface.php │ │ │ │ ├── Output │ │ │ │ ├── RenderedContent.php │ │ │ │ └── RenderedContentInterface.php │ │ │ │ ├── Parser │ │ │ │ ├── Block │ │ │ │ │ ├── AbstractBlockContinueParser.php │ │ │ │ │ ├── BlockContinue.php │ │ │ │ │ ├── BlockContinueParserInterface.php │ │ │ │ │ ├── BlockContinueParserWithInlinesInterface.php │ │ │ │ │ ├── BlockStart.php │ │ │ │ │ ├── BlockStartParserInterface.php │ │ │ │ │ ├── DocumentBlockParser.php │ │ │ │ │ ├── ParagraphParser.php │ │ │ │ │ └── SkipLinesStartingWithLettersParser.php │ │ │ │ ├── Cursor.php │ │ │ │ ├── CursorState.php │ │ │ │ ├── Inline │ │ │ │ │ ├── InlineParserInterface.php │ │ │ │ │ ├── InlineParserMatch.php │ │ │ │ │ └── NewlineParser.php │ │ │ │ ├── InlineParserContext.php │ │ │ │ ├── InlineParserEngine.php │ │ │ │ ├── InlineParserEngineInterface.php │ │ │ │ ├── MarkdownParser.php │ │ │ │ ├── MarkdownParserInterface.php │ │ │ │ ├── MarkdownParserState.php │ │ │ │ ├── MarkdownParserStateInterface.php │ │ │ │ └── ParserLogicException.php │ │ │ │ ├── Reference │ │ │ │ ├── MemoryLimitedReferenceMap.php │ │ │ │ ├── Reference.php │ │ │ │ ├── ReferenceInterface.php │ │ │ │ ├── ReferenceMap.php │ │ │ │ ├── ReferenceMapInterface.php │ │ │ │ ├── ReferenceParser.php │ │ │ │ └── ReferenceableInterface.php │ │ │ │ ├── Renderer │ │ │ │ ├── Block │ │ │ │ │ ├── DocumentRenderer.php │ │ │ │ │ └── ParagraphRenderer.php │ │ │ │ ├── ChildNodeRendererInterface.php │ │ │ │ ├── DocumentRendererInterface.php │ │ │ │ ├── HtmlDecorator.php │ │ │ │ ├── HtmlRenderer.php │ │ │ │ ├── Inline │ │ │ │ │ ├── NewlineRenderer.php │ │ │ │ │ └── TextRenderer.php │ │ │ │ ├── MarkdownRendererInterface.php │ │ │ │ ├── NoMatchingRendererException.php │ │ │ │ └── NodeRendererInterface.php │ │ │ │ ├── Util │ │ │ │ ├── ArrayCollection.php │ │ │ │ ├── Html5EntityDecoder.php │ │ │ │ ├── HtmlElement.php │ │ │ │ ├── HtmlFilter.php │ │ │ │ ├── LinkParserHelper.php │ │ │ │ ├── PrioritizedList.php │ │ │ │ ├── RegexHelper.php │ │ │ │ ├── SpecReader.php │ │ │ │ ├── UrlEncoder.php │ │ │ │ └── Xml.php │ │ │ │ └── Xml │ │ │ │ ├── FallbackNodeXmlRenderer.php │ │ │ │ ├── MarkdownToXmlConverter.php │ │ │ │ ├── XmlNodeRendererInterface.php │ │ │ │ └── XmlRenderer.php │ │ └── config │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── src │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationAwareInterface.php │ │ │ ├── ConfigurationBuilderInterface.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProviderInterface.php │ │ │ ├── Exception │ │ │ ├── ConfigurationExceptionInterface.php │ │ │ ├── InvalidConfigurationException.php │ │ │ ├── UnknownOptionException.php │ │ │ └── ValidationException.php │ │ │ ├── MutableConfigurationInterface.php │ │ │ ├── ReadOnlyConfiguration.php │ │ │ └── SchemaBuilderInterface.php │ │ ├── nette │ │ ├── schema │ │ │ ├── license.md │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── Schema │ │ │ │ ├── Context.php │ │ │ │ ├── DynamicParameter.php │ │ │ │ ├── Elements │ │ │ │ ├── AnyOf.php │ │ │ │ ├── Base.php │ │ │ │ ├── Structure.php │ │ │ │ └── Type.php │ │ │ │ ├── Expect.php │ │ │ │ ├── Helpers.php │ │ │ │ ├── Message.php │ │ │ │ ├── Processor.php │ │ │ │ ├── Schema.php │ │ │ │ └── ValidationException.php │ │ └── utils │ │ │ ├── license.md │ │ │ ├── readme.md │ │ │ └── src │ │ │ ├── HtmlStringable.php │ │ │ ├── Iterators │ │ │ ├── CachingIterator.php │ │ │ └── Mapper.php │ │ │ ├── SmartObject.php │ │ │ ├── StaticClass.php │ │ │ ├── Translator.php │ │ │ ├── Utils │ │ │ ├── ArrayHash.php │ │ │ ├── ArrayList.php │ │ │ ├── Arrays.php │ │ │ ├── Callback.php │ │ │ ├── DateTime.php │ │ │ ├── FileInfo.php │ │ │ ├── FileSystem.php │ │ │ ├── Finder.php │ │ │ ├── Floats.php │ │ │ ├── Helpers.php │ │ │ ├── Html.php │ │ │ ├── Image.php │ │ │ ├── ImageColor.php │ │ │ ├── ImageType.php │ │ │ ├── Iterables.php │ │ │ ├── Json.php │ │ │ ├── ObjectHelpers.php │ │ │ ├── Paginator.php │ │ │ ├── Random.php │ │ │ ├── Reflection.php │ │ │ ├── ReflectionMethod.php │ │ │ ├── Strings.php │ │ │ ├── Type.php │ │ │ ├── Validators.php │ │ │ └── exceptions.php │ │ │ ├── compatibility.php │ │ │ └── exceptions.php │ │ ├── psr │ │ └── event-dispatcher │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── src │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── ListenerProviderInterface.php │ │ │ └── StoppableEventInterface.php │ │ ├── symfony │ │ ├── deprecation-contracts │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── function.php │ │ ├── polyfill-ctype │ │ │ ├── Ctype.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bootstrap.php │ │ │ └── bootstrap80.php │ │ ├── polyfill-php80 │ │ │ ├── LICENSE │ │ │ ├── Php80.php │ │ │ ├── PhpToken.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── stubs │ │ │ │ │ ├── Attribute.php │ │ │ │ │ ├── PhpToken.php │ │ │ │ │ ├── Stringable.php │ │ │ │ │ ├── UnhandledMatchError.php │ │ │ │ │ └── ValueError.php │ │ │ └── bootstrap.php │ │ └── yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── Command │ │ │ └── LintCommand.php │ │ │ ├── Dumper.php │ │ │ ├── Escaper.php │ │ │ ├── Exception │ │ │ ├── DumpException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── ParseException.php │ │ │ └── RuntimeException.php │ │ │ ├── Inline.php │ │ │ ├── LICENSE │ │ │ ├── Parser.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ └── bin │ │ │ │ └── yaml-lint │ │ │ ├── Tag │ │ │ └── TaggedValue.php │ │ │ ├── Unescaper.php │ │ │ └── Yaml.php │ │ └── webuni │ │ └── front-matter │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compose.yaml │ │ ├── sonar-project.properties │ │ └── src │ │ ├── Document.php │ │ ├── FrontMatter.php │ │ ├── FrontMatterChain.php │ │ ├── FrontMatterInterface.php │ │ ├── Haml │ │ └── FrontMatterFilter.php │ │ ├── Markdown │ │ └── FrontMatterLeagueCommonMarkExtension.php │ │ ├── Processor │ │ ├── JsonProcessor.php │ │ ├── JsonWithoutBracesProcessor.php │ │ ├── NeonProcessor.php │ │ ├── ProcessorDecorator.php │ │ ├── ProcessorInterface.php │ │ ├── TomlProcessor.php │ │ └── YamlProcessor.php │ │ ├── Pug │ │ └── PugCommentFrontMatter.php │ │ └── Twig │ │ ├── DataToTwigConvertor.php │ │ ├── FrontMatterLoader.php │ │ └── TwigCommentFrontMatter.php ├── Merge │ ├── Diff │ │ ├── class-diff.php │ │ ├── class-differ.php │ │ ├── class-linediffer.php │ │ └── class-myersdiffer.php │ ├── LICENSE.md │ ├── Merge │ │ ├── class-chunk.php │ │ ├── class-chunkmerger.php │ │ ├── class-linemerger.php │ │ ├── class-mergeconflict.php │ │ ├── class-merger.php │ │ └── class-mergeresult.php │ ├── Tests │ │ ├── BlockMarkupMergeTest.php │ │ ├── BlockMarkupMergeValidatorTest.php │ │ ├── DiffTest.php │ │ ├── LineDifferTest.php │ │ └── test-data │ │ │ ├── clean-resolution │ │ │ ├── A_and_B_both_change_title_to_the_same_value_changeA.html │ │ │ ├── A_and_B_both_change_title_to_the_same_value_changeB.html │ │ │ ├── A_and_B_both_change_title_to_the_same_value_merge_result.html │ │ │ ├── A_and_B_both_change_title_to_the_same_value_parent.html │ │ │ ├── A_deletes_first_para_B_deletes_second_para_changeA.html │ │ │ ├── A_deletes_first_para_B_deletes_second_para_changeB.html │ │ │ ├── A_deletes_first_para_B_deletes_second_para_merge_result.html │ │ │ ├── A_deletes_first_para_B_deletes_second_para_parent.html │ │ │ ├── A_stays_the_same_B_adds_para_changeA.html │ │ │ ├── A_stays_the_same_B_adds_para_changeB.html │ │ │ ├── A_stays_the_same_B_adds_para_merge_result.html │ │ │ ├── A_stays_the_same_B_adds_para_parent.html │ │ │ ├── A_stays_the_same_B_appends_text_changeA.html │ │ │ ├── A_stays_the_same_B_appends_text_changeB.html │ │ │ ├── A_stays_the_same_B_appends_text_merge_result.html │ │ │ ├── A_stays_the_same_B_appends_text_parent.html │ │ │ ├── add_text_at_both_sides_of_a_block_changeA.html │ │ │ ├── add_text_at_both_sides_of_a_block_changeB.html │ │ │ ├── add_text_at_both_sides_of_a_block_merge_result.html │ │ │ ├── add_text_at_both_sides_of_a_block_parent.html │ │ │ ├── identical_documents_changeA.html │ │ │ ├── identical_documents_changeB.html │ │ │ ├── identical_documents_merge_result.html │ │ │ ├── identical_documents_parent.html │ │ │ ├── internet_history_changeA.html │ │ │ ├── internet_history_changeB.html │ │ │ ├── internet_history_merge_result.html │ │ │ ├── internet_history_parent.html │ │ │ ├── markdown_case_1_changeA.md │ │ │ ├── markdown_case_1_changeB.md │ │ │ ├── markdown_case_1_merge_result.md │ │ │ ├── markdown_case_1_parent.md │ │ │ ├── remove_paragraph_update_heading_changeA.html │ │ │ ├── remove_paragraph_update_heading_changeB.html │ │ │ ├── remove_paragraph_update_heading_merge_result.html │ │ │ ├── remove_paragraph_update_heading_parent.html │ │ │ ├── sleep_is_essential_changeA.md │ │ │ ├── sleep_is_essential_changeB.md │ │ │ ├── sleep_is_essential_merge_result.md │ │ │ ├── sleep_is_essential_parent.md │ │ │ ├── test_case_1_changeA.txt │ │ │ ├── test_case_1_changeB.txt │ │ │ ├── test_case_1_merge_result.txt │ │ │ ├── test_case_1_parent.txt │ │ │ ├── test_case_2_changeA.md │ │ │ ├── test_case_2_changeB.md │ │ │ ├── test_case_2_merge_result.md │ │ │ ├── test_case_2_parent.md │ │ │ ├── test_case_3_changeA.html │ │ │ ├── test_case_3_changeB.html │ │ │ ├── test_case_3_merge_result.html │ │ │ ├── test_case_3_parent.html │ │ │ ├── wporg_page_changeA.html │ │ │ ├── wporg_page_changeB.html │ │ │ ├── wporg_page_merge_result.html │ │ │ └── wporg_page_parent.html │ │ │ ├── conflicts-during-resolution │ │ │ ├── html_case_1_changeA.html │ │ │ ├── html_case_1_changeB.html │ │ │ ├── html_case_1_merge_result.html │ │ │ ├── html_case_1_parent.html │ │ │ ├── sleep_is_essential_changeA.html │ │ │ ├── sleep_is_essential_changeB.html │ │ │ ├── sleep_is_essential_merge_result.html │ │ │ ├── text_case_2_changeA.txt │ │ │ ├── text_case_2_changeB.txt │ │ │ ├── text_case_2_merge_result.txt │ │ │ └── text_case_2_parent.txt │ │ │ ├── corrupted-merge-results │ │ │ ├── a_in_a.html │ │ │ ├── p_across_block_boundary.html │ │ │ └── unclosed_p.html │ │ │ └── corrupted-resolution │ │ │ ├── corrupted_p_changeA.html │ │ │ ├── corrupted_p_changeB.html │ │ │ ├── corrupted_p_merge_result.html │ │ │ ├── corrupted_p_parent.html │ │ │ ├── tricky_cross_block_text_reshuffle_changeA.html │ │ │ ├── tricky_cross_block_text_reshuffle_changeB.html │ │ │ ├── tricky_cross_block_text_reshuffle_merge_result.html │ │ │ └── tricky_cross_block_text_reshuffle_parent.html │ ├── Validate │ │ ├── class-blockmarkupmergevalidator.php │ │ ├── class-invalidmergeexception.php │ │ └── class-mergevalidator.php │ ├── class-diffmatchpatchmergedriver.php │ ├── class-mergeexception.php │ ├── class-mergestrategy.php │ ├── composer.json │ ├── functions.php │ ├── rector.php │ └── vendor-patched │ │ └── yetanotherape │ │ └── diff-match-patch │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── phpunit.xml.dist │ │ ├── src │ │ ├── Diff.php │ │ ├── DiffMatchPatch.php │ │ ├── DiffToolkit.php │ │ ├── Matcher.php │ │ ├── Patch.php │ │ ├── PatchObject.php │ │ └── Utils.php │ │ └── tests │ │ ├── ChrBenchmark.php │ │ ├── DiffMatchPatchTest.php │ │ ├── DiffTest.php │ │ ├── DiffToolkitTest.php │ │ ├── MatchTest.php │ │ ├── PatchTest.php │ │ ├── PerformanceTest.php │ │ ├── SimpleDiffBenchmark.php │ │ ├── UtilsTest.php │ │ ├── bootstrap.php │ │ └── fixtures │ │ ├── L_performance1.txt │ │ ├── L_performance2.txt │ │ ├── M_performance1.txt │ │ ├── M_performance2.txt │ │ ├── S_performance1.txt │ │ └── S_performance2.txt ├── Polyfill │ ├── LICENSE.md │ ├── composer.json │ ├── mbstring.php │ ├── php-functions.php │ └── wordpress.php ├── ToolkitCodingStandards │ ├── LICENSE.md │ └── WordPressToolkitCodingStandards │ │ ├── Sniffs │ │ └── PHP │ │ │ ├── DisallowShortTernarySniff.php │ │ │ └── EnforceYodaComparisonSniff.php │ │ └── ruleset.xml ├── XML │ ├── LICENSE.md │ ├── Tests │ │ ├── W3C-XML-Test-Suite │ │ │ ├── eduni │ │ │ │ ├── errata-2e │ │ │ │ │ ├── E14.dtd │ │ │ │ │ ├── E14.xml │ │ │ │ │ ├── E15a.xml │ │ │ │ │ ├── E15b.xml │ │ │ │ │ ├── E15c.xml │ │ │ │ │ ├── E15d.xml │ │ │ │ │ ├── E15e.xml │ │ │ │ │ ├── E15f.xml │ │ │ │ │ ├── E15g.xml │ │ │ │ │ ├── E15h.xml │ │ │ │ │ ├── E15i.xml │ │ │ │ │ ├── E15j.xml │ │ │ │ │ ├── E15k.xml │ │ │ │ │ ├── E15l.xml │ │ │ │ │ ├── E18-ent │ │ │ │ │ ├── E18.xml │ │ │ │ │ ├── E19.dtd │ │ │ │ │ ├── E19.xml │ │ │ │ │ ├── E20.xml │ │ │ │ │ ├── E22.xml │ │ │ │ │ ├── E24.xml │ │ │ │ │ ├── E27.xml │ │ │ │ │ ├── E29.xml │ │ │ │ │ ├── E2a.xml │ │ │ │ │ ├── E2b.xml │ │ │ │ │ ├── E34.xml │ │ │ │ │ ├── E36.dtd │ │ │ │ │ ├── E36.xml │ │ │ │ │ ├── E38.ent │ │ │ │ │ ├── E38.xml │ │ │ │ │ ├── E41.xml │ │ │ │ │ ├── E48.xml │ │ │ │ │ ├── E50.xml │ │ │ │ │ ├── E55.xml │ │ │ │ │ ├── E57.xml │ │ │ │ │ ├── E60.ent │ │ │ │ │ ├── E60.xml │ │ │ │ │ ├── E61.xml │ │ │ │ │ ├── E9a.xml │ │ │ │ │ ├── E9b.xml │ │ │ │ │ ├── errata2e.xml │ │ │ │ │ ├── out │ │ │ │ │ │ ├── E18.xml │ │ │ │ │ │ ├── E19.xml │ │ │ │ │ │ └── E24.xml │ │ │ │ │ ├── subdir1 │ │ │ │ │ │ ├── E18-ent │ │ │ │ │ │ └── E18-pe │ │ │ │ │ ├── subdir2 │ │ │ │ │ │ ├── E18-ent │ │ │ │ │ │ └── E18-extpe │ │ │ │ │ ├── testcases.dtd │ │ │ │ │ └── xmlconf.xml │ │ │ │ ├── errata-3e │ │ │ │ │ ├── E05a.xml │ │ │ │ │ ├── E05b.xml │ │ │ │ │ ├── E06a.xml │ │ │ │ │ ├── E06b.xml │ │ │ │ │ ├── E06c.xml │ │ │ │ │ ├── E06d.xml │ │ │ │ │ ├── E06e.xml │ │ │ │ │ ├── E06f.xml │ │ │ │ │ ├── E06g.xml │ │ │ │ │ ├── E06h.xml │ │ │ │ │ ├── E06i.xml │ │ │ │ │ ├── E12.xml │ │ │ │ │ ├── E13.xml │ │ │ │ │ ├── errata3e.xml │ │ │ │ │ ├── testcases.dtd │ │ │ │ │ └── xmlconf.xml │ │ │ │ ├── errata-4e │ │ │ │ │ ├── 008.xml │ │ │ │ │ ├── 014.xml │ │ │ │ │ ├── 014a.xml │ │ │ │ │ ├── 016.xml │ │ │ │ │ ├── 019.xml │ │ │ │ │ ├── 140.xml │ │ │ │ │ ├── 141.xml │ │ │ │ │ ├── 8bom.xml │ │ │ │ │ ├── 8bombom.xml │ │ │ │ │ ├── 8bomboom.xml │ │ │ │ │ ├── bom_be.xml │ │ │ │ │ ├── bom_le.xml │ │ │ │ │ ├── bombom_be.xml │ │ │ │ │ ├── bombom_le.xml │ │ │ │ │ ├── bomboom_be.xml │ │ │ │ │ ├── bomboom_le.xml │ │ │ │ │ ├── errata4e.xml │ │ │ │ │ ├── ibm04an01.xml │ │ │ │ │ ├── ibm04an02.xml │ │ │ │ │ ├── ibm04an03.xml │ │ │ │ │ ├── ibm04an04.xml │ │ │ │ │ ├── ibm04an05.xml │ │ │ │ │ ├── ibm04an06.xml │ │ │ │ │ ├── ibm04an07.xml │ │ │ │ │ ├── ibm04an08.xml │ │ │ │ │ ├── ibm04an09.xml │ │ │ │ │ ├── ibm04an10.xml │ │ │ │ │ ├── ibm04an11.xml │ │ │ │ │ ├── ibm04an12.xml │ │ │ │ │ ├── ibm04an13.xml │ │ │ │ │ ├── ibm04an14.xml │ │ │ │ │ ├── ibm04an15.xml │ │ │ │ │ ├── ibm04an16.xml │ │ │ │ │ ├── ibm04an17.xml │ │ │ │ │ ├── ibm04an18.xml │ │ │ │ │ ├── ibm04an19.xml │ │ │ │ │ ├── ibm04an20.xml │ │ │ │ │ ├── ibm04an21.xml │ │ │ │ │ ├── ibm04an22.xml │ │ │ │ │ ├── ibm04an23.xml │ │ │ │ │ ├── ibm04an24.xml │ │ │ │ │ ├── ibm04an25.xml │ │ │ │ │ ├── ibm04an26.xml │ │ │ │ │ ├── ibm04an27.xml │ │ │ │ │ ├── ibm04an28.xml │ │ │ │ │ ├── ibm04av01.xml │ │ │ │ │ ├── ibm04n02.xml │ │ │ │ │ ├── ibm04n03.xml │ │ │ │ │ ├── ibm04n04.xml │ │ │ │ │ ├── ibm04n05.xml │ │ │ │ │ ├── ibm04n06.xml │ │ │ │ │ ├── ibm04n07.xml │ │ │ │ │ ├── ibm04n08.xml │ │ │ │ │ ├── ibm04n09.xml │ │ │ │ │ ├── ibm04n10.xml │ │ │ │ │ ├── ibm04n11.xml │ │ │ │ │ ├── ibm04n12.xml │ │ │ │ │ ├── ibm04n13.xml │ │ │ │ │ ├── ibm04n14.xml │ │ │ │ │ ├── ibm04n15.xml │ │ │ │ │ ├── ibm04n16.xml │ │ │ │ │ ├── ibm04n17.xml │ │ │ │ │ ├── ibm04n18.xml │ │ │ │ │ ├── ibm04n19.xml │ │ │ │ │ ├── ibm04n20.xml │ │ │ │ │ ├── ibm04n21.xml │ │ │ │ │ ├── ibm04n22.xml │ │ │ │ │ ├── ibm04n23.xml │ │ │ │ │ ├── ibm04n24.xml │ │ │ │ │ ├── ibm04n25.xml │ │ │ │ │ ├── ibm04n26.xml │ │ │ │ │ ├── ibm04n27.xml │ │ │ │ │ ├── ibm04n28.xml │ │ │ │ │ ├── ibm04v01.xml │ │ │ │ │ ├── ibm05n01.xml │ │ │ │ │ ├── ibm05n02.xml │ │ │ │ │ ├── ibm05n03.xml │ │ │ │ │ ├── ibm05n04.xml │ │ │ │ │ ├── ibm05n05.xml │ │ │ │ │ ├── ibm05n06.xml │ │ │ │ │ ├── ibm05v01.xml │ │ │ │ │ ├── ibm05v02.xml │ │ │ │ │ ├── ibm05v03.xml │ │ │ │ │ ├── ibm05v04.xml │ │ │ │ │ ├── ibm05v05.xml │ │ │ │ │ ├── ibm07v01.xml │ │ │ │ │ ├── ibm85n03.xml │ │ │ │ │ ├── ibm85n04.xml │ │ │ │ │ ├── ibm85n05.xml │ │ │ │ │ ├── ibm85n06.xml │ │ │ │ │ ├── ibm85n07.xml │ │ │ │ │ ├── ibm85n08.xml │ │ │ │ │ ├── ibm85n09.xml │ │ │ │ │ ├── ibm85n10.xml │ │ │ │ │ ├── ibm85n100.xml │ │ │ │ │ ├── ibm85n101.xml │ │ │ │ │ ├── ibm85n102.xml │ │ │ │ │ ├── ibm85n103.xml │ │ │ │ │ ├── ibm85n104.xml │ │ │ │ │ ├── ibm85n105.xml │ │ │ │ │ ├── ibm85n106.xml │ │ │ │ │ ├── ibm85n107.xml │ │ │ │ │ ├── ibm85n108.xml │ │ │ │ │ ├── ibm85n109.xml │ │ │ │ │ ├── ibm85n11.xml │ │ │ │ │ ├── ibm85n110.xml │ │ │ │ │ ├── ibm85n111.xml │ │ │ │ │ ├── ibm85n112.xml │ │ │ │ │ ├── ibm85n113.xml │ │ │ │ │ ├── ibm85n114.xml │ │ │ │ │ ├── ibm85n115.xml │ │ │ │ │ ├── ibm85n116.xml │ │ │ │ │ ├── ibm85n117.xml │ │ │ │ │ ├── ibm85n118.xml │ │ │ │ │ ├── ibm85n119.xml │ │ │ │ │ ├── ibm85n12.xml │ │ │ │ │ ├── ibm85n120.xml │ │ │ │ │ ├── ibm85n121.xml │ │ │ │ │ ├── ibm85n122.xml │ │ │ │ │ ├── ibm85n123.xml │ │ │ │ │ ├── ibm85n124.xml │ │ │ │ │ ├── ibm85n125.xml │ │ │ │ │ ├── ibm85n126.xml │ │ │ │ │ ├── ibm85n127.xml │ │ │ │ │ ├── ibm85n128.xml │ │ │ │ │ ├── ibm85n129.xml │ │ │ │ │ ├── ibm85n13.xml │ │ │ │ │ ├── ibm85n130.xml │ │ │ │ │ ├── ibm85n131.xml │ │ │ │ │ ├── ibm85n132.xml │ │ │ │ │ ├── ibm85n133.xml │ │ │ │ │ ├── ibm85n134.xml │ │ │ │ │ ├── ibm85n135.xml │ │ │ │ │ ├── ibm85n136.xml │ │ │ │ │ ├── ibm85n137.xml │ │ │ │ │ ├── ibm85n138.xml │ │ │ │ │ ├── ibm85n139.xml │ │ │ │ │ ├── ibm85n14.xml │ │ │ │ │ ├── ibm85n140.xml │ │ │ │ │ ├── ibm85n141.xml │ │ │ │ │ ├── ibm85n142.xml │ │ │ │ │ ├── ibm85n143.xml │ │ │ │ │ ├── ibm85n144.xml │ │ │ │ │ ├── ibm85n145.xml │ │ │ │ │ ├── ibm85n146.xml │ │ │ │ │ ├── ibm85n147.xml │ │ │ │ │ ├── ibm85n148.xml │ │ │ │ │ ├── ibm85n149.xml │ │ │ │ │ ├── ibm85n15.xml │ │ │ │ │ ├── ibm85n150.xml │ │ │ │ │ ├── ibm85n151.xml │ │ │ │ │ ├── ibm85n152.xml │ │ │ │ │ ├── ibm85n153.xml │ │ │ │ │ ├── ibm85n154.xml │ │ │ │ │ ├── ibm85n155.xml │ │ │ │ │ ├── ibm85n156.xml │ │ │ │ │ ├── ibm85n157.xml │ │ │ │ │ ├── ibm85n158.xml │ │ │ │ │ ├── ibm85n159.xml │ │ │ │ │ ├── ibm85n16.xml │ │ │ │ │ ├── ibm85n160.xml │ │ │ │ │ ├── ibm85n161.xml │ │ │ │ │ ├── ibm85n162.xml │ │ │ │ │ ├── ibm85n163.xml │ │ │ │ │ ├── ibm85n164.xml │ │ │ │ │ ├── ibm85n165.xml │ │ │ │ │ ├── ibm85n166.xml │ │ │ │ │ ├── ibm85n167.xml │ │ │ │ │ ├── ibm85n168.xml │ │ │ │ │ ├── ibm85n169.xml │ │ │ │ │ ├── ibm85n17.xml │ │ │ │ │ ├── ibm85n170.xml │ │ │ │ │ ├── ibm85n171.xml │ │ │ │ │ ├── ibm85n172.xml │ │ │ │ │ ├── ibm85n173.xml │ │ │ │ │ ├── ibm85n174.xml │ │ │ │ │ ├── ibm85n175.xml │ │ │ │ │ ├── ibm85n176.xml │ │ │ │ │ ├── ibm85n177.xml │ │ │ │ │ ├── ibm85n178.xml │ │ │ │ │ ├── ibm85n179.xml │ │ │ │ │ ├── ibm85n18.xml │ │ │ │ │ ├── ibm85n180.xml │ │ │ │ │ ├── ibm85n181.xml │ │ │ │ │ ├── ibm85n182.xml │ │ │ │ │ ├── ibm85n183.xml │ │ │ │ │ ├── ibm85n184.xml │ │ │ │ │ ├── ibm85n185.xml │ │ │ │ │ ├── ibm85n186.xml │ │ │ │ │ ├── ibm85n187.xml │ │ │ │ │ ├── ibm85n188.xml │ │ │ │ │ ├── ibm85n189.xml │ │ │ │ │ ├── ibm85n19.xml │ │ │ │ │ ├── ibm85n190.xml │ │ │ │ │ ├── ibm85n191.xml │ │ │ │ │ ├── ibm85n192.xml │ │ │ │ │ ├── ibm85n193.xml │ │ │ │ │ ├── ibm85n194.xml │ │ │ │ │ ├── ibm85n195.xml │ │ │ │ │ ├── ibm85n196.xml │ │ │ │ │ ├── ibm85n197.xml │ │ │ │ │ ├── ibm85n198.xml │ │ │ │ │ ├── ibm85n20.xml │ │ │ │ │ ├── ibm85n21.xml │ │ │ │ │ ├── ibm85n22.xml │ │ │ │ │ ├── ibm85n23.xml │ │ │ │ │ ├── ibm85n24.xml │ │ │ │ │ ├── ibm85n25.xml │ │ │ │ │ ├── ibm85n26.xml │ │ │ │ │ ├── ibm85n27.xml │ │ │ │ │ ├── ibm85n28.xml │ │ │ │ │ ├── ibm85n29.xml │ │ │ │ │ ├── ibm85n30.xml │ │ │ │ │ ├── ibm85n31.xml │ │ │ │ │ ├── ibm85n32.xml │ │ │ │ │ ├── ibm85n33.xml │ │ │ │ │ ├── ibm85n34.xml │ │ │ │ │ ├── ibm85n35.xml │ │ │ │ │ ├── ibm85n36.xml │ │ │ │ │ ├── ibm85n37.xml │ │ │ │ │ ├── ibm85n38.xml │ │ │ │ │ ├── ibm85n39.xml │ │ │ │ │ ├── ibm85n40.xml │ │ │ │ │ ├── ibm85n41.xml │ │ │ │ │ ├── ibm85n42.xml │ │ │ │ │ ├── ibm85n43.xml │ │ │ │ │ ├── ibm85n44.xml │ │ │ │ │ ├── ibm85n45.xml │ │ │ │ │ ├── ibm85n46.xml │ │ │ │ │ ├── ibm85n47.xml │ │ │ │ │ ├── ibm85n48.xml │ │ │ │ │ ├── ibm85n49.xml │ │ │ │ │ ├── ibm85n50.xml │ │ │ │ │ ├── ibm85n51.xml │ │ │ │ │ ├── ibm85n52.xml │ │ │ │ │ ├── ibm85n53.xml │ │ │ │ │ ├── ibm85n54.xml │ │ │ │ │ ├── ibm85n55.xml │ │ │ │ │ ├── ibm85n56.xml │ │ │ │ │ ├── ibm85n57.xml │ │ │ │ │ ├── ibm85n58.xml │ │ │ │ │ ├── ibm85n59.xml │ │ │ │ │ ├── ibm85n60.xml │ │ │ │ │ ├── ibm85n61.xml │ │ │ │ │ ├── ibm85n62.xml │ │ │ │ │ ├── ibm85n63.xml │ │ │ │ │ ├── ibm85n64.xml │ │ │ │ │ ├── ibm85n65.xml │ │ │ │ │ ├── ibm85n66.xml │ │ │ │ │ ├── ibm85n67.xml │ │ │ │ │ ├── ibm85n68.xml │ │ │ │ │ ├── ibm85n69.xml │ │ │ │ │ ├── ibm85n70.xml │ │ │ │ │ ├── ibm85n71.xml │ │ │ │ │ ├── ibm85n72.xml │ │ │ │ │ ├── ibm85n73.xml │ │ │ │ │ ├── ibm85n74.xml │ │ │ │ │ ├── ibm85n75.xml │ │ │ │ │ ├── ibm85n76.xml │ │ │ │ │ ├── ibm85n77.xml │ │ │ │ │ ├── ibm85n78.xml │ │ │ │ │ ├── ibm85n79.xml │ │ │ │ │ ├── ibm85n80.xml │ │ │ │ │ ├── ibm85n81.xml │ │ │ │ │ ├── ibm85n82.xml │ │ │ │ │ ├── ibm85n83.xml │ │ │ │ │ ├── ibm85n84.xml │ │ │ │ │ ├── ibm85n85.xml │ │ │ │ │ ├── ibm85n86.xml │ │ │ │ │ ├── ibm85n87.xml │ │ │ │ │ ├── ibm85n88.xml │ │ │ │ │ ├── ibm85n89.xml │ │ │ │ │ ├── ibm85n90.xml │ │ │ │ │ ├── ibm85n91.xml │ │ │ │ │ ├── ibm85n92.xml │ │ │ │ │ ├── ibm85n93.xml │ │ │ │ │ ├── ibm85n94.xml │ │ │ │ │ ├── ibm85n95.xml │ │ │ │ │ ├── ibm85n96.xml │ │ │ │ │ ├── ibm85n97.xml │ │ │ │ │ ├── ibm85n98.xml │ │ │ │ │ ├── ibm85n99.xml │ │ │ │ │ ├── ibm86n01.xml │ │ │ │ │ ├── ibm86n02.xml │ │ │ │ │ ├── ibm86n03.xml │ │ │ │ │ ├── ibm86n04.xml │ │ │ │ │ ├── ibm87n01.xml │ │ │ │ │ ├── ibm87n02.xml │ │ │ │ │ ├── ibm87n03.xml │ │ │ │ │ ├── ibm87n04.xml │ │ │ │ │ ├── ibm87n05.xml │ │ │ │ │ ├── ibm87n06.xml │ │ │ │ │ ├── ibm87n07.xml │ │ │ │ │ ├── ibm87n08.xml │ │ │ │ │ ├── ibm87n09.xml │ │ │ │ │ ├── ibm87n10.xml │ │ │ │ │ ├── ibm87n11.xml │ │ │ │ │ ├── ibm87n12.xml │ │ │ │ │ ├── ibm87n13.xml │ │ │ │ │ ├── ibm87n14.xml │ │ │ │ │ ├── ibm87n15.xml │ │ │ │ │ ├── ibm87n16.xml │ │ │ │ │ ├── ibm87n17.xml │ │ │ │ │ ├── ibm87n18.xml │ │ │ │ │ ├── ibm87n19.xml │ │ │ │ │ ├── ibm87n20.xml │ │ │ │ │ ├── ibm87n21.xml │ │ │ │ │ ├── ibm87n22.xml │ │ │ │ │ ├── ibm87n23.xml │ │ │ │ │ ├── ibm87n24.xml │ │ │ │ │ ├── ibm87n25.xml │ │ │ │ │ ├── ibm87n26.xml │ │ │ │ │ ├── ibm87n27.xml │ │ │ │ │ ├── ibm87n28.xml │ │ │ │ │ ├── ibm87n29.xml │ │ │ │ │ ├── ibm87n30.xml │ │ │ │ │ ├── ibm87n31.xml │ │ │ │ │ ├── ibm87n32.xml │ │ │ │ │ ├── ibm87n33.xml │ │ │ │ │ ├── ibm87n34.xml │ │ │ │ │ ├── ibm87n35.xml │ │ │ │ │ ├── ibm87n36.xml │ │ │ │ │ ├── ibm87n37.xml │ │ │ │ │ ├── ibm87n38.xml │ │ │ │ │ ├── ibm87n39.xml │ │ │ │ │ ├── ibm87n40.xml │ │ │ │ │ ├── ibm87n41.xml │ │ │ │ │ ├── ibm87n42.xml │ │ │ │ │ ├── ibm87n43.xml │ │ │ │ │ ├── ibm87n44.xml │ │ │ │ │ ├── ibm87n45.xml │ │ │ │ │ ├── ibm87n46.xml │ │ │ │ │ ├── ibm87n47.xml │ │ │ │ │ ├── ibm87n48.xml │ │ │ │ │ ├── ibm87n49.xml │ │ │ │ │ ├── ibm87n50.xml │ │ │ │ │ ├── ibm87n51.xml │ │ │ │ │ ├── ibm87n52.xml │ │ │ │ │ ├── ibm87n53.xml │ │ │ │ │ ├── ibm87n54.xml │ │ │ │ │ ├── ibm87n55.xml │ │ │ │ │ ├── ibm87n56.xml │ │ │ │ │ ├── ibm87n57.xml │ │ │ │ │ ├── ibm87n58.xml │ │ │ │ │ ├── ibm87n59.xml │ │ │ │ │ ├── ibm87n60.xml │ │ │ │ │ ├── ibm87n61.xml │ │ │ │ │ ├── ibm87n62.xml │ │ │ │ │ ├── ibm87n63.xml │ │ │ │ │ ├── ibm87n64.xml │ │ │ │ │ ├── ibm87n66.xml │ │ │ │ │ ├── ibm87n67.xml │ │ │ │ │ ├── ibm87n68.xml │ │ │ │ │ ├── ibm87n69.xml │ │ │ │ │ ├── ibm87n70.xml │ │ │ │ │ ├── ibm87n71.xml │ │ │ │ │ ├── ibm87n72.xml │ │ │ │ │ ├── ibm87n73.xml │ │ │ │ │ ├── ibm87n74.xml │ │ │ │ │ ├── ibm87n75.xml │ │ │ │ │ ├── ibm87n76.xml │ │ │ │ │ ├── ibm87n77.xml │ │ │ │ │ ├── ibm87n78.xml │ │ │ │ │ ├── ibm87n79.xml │ │ │ │ │ ├── ibm87n80.xml │ │ │ │ │ ├── ibm87n81.xml │ │ │ │ │ ├── ibm87n82.xml │ │ │ │ │ ├── ibm87n83.xml │ │ │ │ │ ├── ibm87n84.xml │ │ │ │ │ ├── ibm87n85.xml │ │ │ │ │ ├── ibm88n03.xml │ │ │ │ │ ├── ibm88n04.xml │ │ │ │ │ ├── ibm88n05.xml │ │ │ │ │ ├── ibm88n06.xml │ │ │ │ │ ├── ibm88n08.xml │ │ │ │ │ ├── ibm88n09.xml │ │ │ │ │ ├── ibm88n10.xml │ │ │ │ │ ├── ibm88n11.xml │ │ │ │ │ ├── ibm88n12.xml │ │ │ │ │ ├── ibm88n13.xml │ │ │ │ │ ├── ibm88n14.xml │ │ │ │ │ ├── ibm88n15.xml │ │ │ │ │ ├── ibm88n16.xml │ │ │ │ │ ├── ibm89n03.xml │ │ │ │ │ ├── ibm89n04.xml │ │ │ │ │ ├── ibm89n05.xml │ │ │ │ │ ├── ibm89n06.xml │ │ │ │ │ ├── ibm89n07.xml │ │ │ │ │ ├── ibm89n08.xml │ │ │ │ │ ├── ibm89n09.xml │ │ │ │ │ ├── ibm89n10.xml │ │ │ │ │ ├── ibm89n11.xml │ │ │ │ │ ├── ibm89n12.xml │ │ │ │ │ ├── incl8bom.xml │ │ │ │ │ ├── incl8bombom.xml │ │ │ │ │ ├── incl8bomboom.xml │ │ │ │ │ ├── inclbom_be.xml │ │ │ │ │ ├── inclbom_le.xml │ │ │ │ │ ├── inclbom_out.xml │ │ │ │ │ ├── inclbombom_be.xml │ │ │ │ │ ├── inclbombom_le.xml │ │ │ │ │ ├── inclbombom_out.xml │ │ │ │ │ ├── inclbomboom_be.xml │ │ │ │ │ ├── inclbomboom_le.xml │ │ │ │ │ ├── testcases.dtd │ │ │ │ │ └── xmlconf.xml │ │ │ │ ├── misc │ │ │ │ │ ├── 001.xml │ │ │ │ │ ├── 002.xml │ │ │ │ │ ├── 003.xml │ │ │ │ │ ├── 004.xml │ │ │ │ │ ├── 005.xml │ │ │ │ │ ├── 006.xml │ │ │ │ │ ├── 007.xml │ │ │ │ │ ├── 008.xml │ │ │ │ │ ├── 009.xml │ │ │ │ │ ├── ht-bh.xml │ │ │ │ │ └── xmlconf.xml │ │ │ │ ├── namespaces │ │ │ │ │ ├── 1.0 │ │ │ │ │ │ ├── 001.xml │ │ │ │ │ │ ├── 002.xml │ │ │ │ │ │ ├── 003.xml │ │ │ │ │ │ ├── 004.xml │ │ │ │ │ │ ├── 005.xml │ │ │ │ │ │ ├── 006.xml │ │ │ │ │ │ ├── 007.xml │ │ │ │ │ │ ├── 008.xml │ │ │ │ │ │ ├── 009.xml │ │ │ │ │ │ ├── 010.xml │ │ │ │ │ │ ├── 011.xml │ │ │ │ │ │ ├── 012.xml │ │ │ │ │ │ ├── 013.xml │ │ │ │ │ │ ├── 014.xml │ │ │ │ │ │ ├── 015.xml │ │ │ │ │ │ ├── 016.xml │ │ │ │ │ │ ├── 017.xml │ │ │ │ │ │ ├── 018.xml │ │ │ │ │ │ ├── 019.xml │ │ │ │ │ │ ├── 020.xml │ │ │ │ │ │ ├── 021.xml │ │ │ │ │ │ ├── 022.xml │ │ │ │ │ │ ├── 023.xml │ │ │ │ │ │ ├── 024.xml │ │ │ │ │ │ ├── 025.xml │ │ │ │ │ │ ├── 026.xml │ │ │ │ │ │ ├── 027.xml │ │ │ │ │ │ ├── 028.xml │ │ │ │ │ │ ├── 029.xml │ │ │ │ │ │ ├── 030.xml │ │ │ │ │ │ ├── 031.xml │ │ │ │ │ │ ├── 032.xml │ │ │ │ │ │ ├── 033.xml │ │ │ │ │ │ ├── 034.xml │ │ │ │ │ │ ├── 035.xml │ │ │ │ │ │ ├── 036.xml │ │ │ │ │ │ ├── 037.xml │ │ │ │ │ │ ├── 038.xml │ │ │ │ │ │ ├── 039.xml │ │ │ │ │ │ ├── 040.xml │ │ │ │ │ │ ├── 041.xml │ │ │ │ │ │ ├── 042.xml │ │ │ │ │ │ ├── 043.xml │ │ │ │ │ │ ├── 044.xml │ │ │ │ │ │ ├── 045.xml │ │ │ │ │ │ ├── 046.xml │ │ │ │ │ │ ├── 047.xml │ │ │ │ │ │ ├── 048.xml │ │ │ │ │ │ └── rmt-ns10.xml │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ ├── 001.xml │ │ │ │ │ │ ├── 002.xml │ │ │ │ │ │ ├── 003.xml │ │ │ │ │ │ ├── 004.xml │ │ │ │ │ │ ├── 005.xml │ │ │ │ │ │ ├── 006.xml │ │ │ │ │ │ ├── 007.xml │ │ │ │ │ │ ├── 008.xml │ │ │ │ │ │ └── rmt-ns11.xml │ │ │ │ │ ├── errata-1e │ │ │ │ │ │ ├── NE13a.xml │ │ │ │ │ │ ├── NE13b.xml │ │ │ │ │ │ ├── NE13c.xml │ │ │ │ │ │ ├── errata1e.xml │ │ │ │ │ │ ├── testcases.dtd │ │ │ │ │ │ └── xmlconf.xml │ │ │ │ │ ├── testcases.dtd │ │ │ │ │ └── xmlconf.xml │ │ │ │ ├── xml-1.1 │ │ │ │ │ ├── 001.dtd │ │ │ │ │ ├── 001.xml │ │ │ │ │ ├── 002.pe │ │ │ │ │ ├── 002.xml │ │ │ │ │ ├── 003.ent │ │ │ │ │ ├── 003.xml │ │ │ │ │ ├── 004.ent │ │ │ │ │ ├── 004.xml │ │ │ │ │ ├── 005.xml │ │ │ │ │ ├── 005_1.ent │ │ │ │ │ ├── 005_2.ent │ │ │ │ │ ├── 006.xml │ │ │ │ │ ├── 006_1.ent │ │ │ │ │ ├── 006_2.ent │ │ │ │ │ ├── 007.xml │ │ │ │ │ ├── 008.xml │ │ │ │ │ ├── 009.ent │ │ │ │ │ ├── 009.xml │ │ │ │ │ ├── 010.xml │ │ │ │ │ ├── 011.xml │ │ │ │ │ ├── 012.xml │ │ │ │ │ ├── 013.xml │ │ │ │ │ ├── 014.xml │ │ │ │ │ ├── 015.xml │ │ │ │ │ ├── 016.xml │ │ │ │ │ ├── 017.xml │ │ │ │ │ ├── 018.xml │ │ │ │ │ ├── 019.xml │ │ │ │ │ ├── 020.xml │ │ │ │ │ ├── 021.xml │ │ │ │ │ ├── 022.xml │ │ │ │ │ ├── 023.xml │ │ │ │ │ ├── 024.xml │ │ │ │ │ ├── 025.xml │ │ │ │ │ ├── 026.xml │ │ │ │ │ ├── 027.xml │ │ │ │ │ ├── 028.xml │ │ │ │ │ ├── 029.xml │ │ │ │ │ ├── 030.xml │ │ │ │ │ ├── 031.xml │ │ │ │ │ ├── 032.xml │ │ │ │ │ ├── 033.xml │ │ │ │ │ ├── 034.xml │ │ │ │ │ ├── 035.xml │ │ │ │ │ ├── 036.xml │ │ │ │ │ ├── 037.xml │ │ │ │ │ ├── 038.xml │ │ │ │ │ ├── 039.xml │ │ │ │ │ ├── 040.xml │ │ │ │ │ ├── 041.xml │ │ │ │ │ ├── 042.xml │ │ │ │ │ ├── 043.xml │ │ │ │ │ ├── 044.xml │ │ │ │ │ ├── 045.xml │ │ │ │ │ ├── 046.xml │ │ │ │ │ ├── 047.xml │ │ │ │ │ ├── 048.xml │ │ │ │ │ ├── 049.xml │ │ │ │ │ ├── 050.xml │ │ │ │ │ ├── 051.xml │ │ │ │ │ ├── 052.xml │ │ │ │ │ ├── 053.xml │ │ │ │ │ ├── 054.xml │ │ │ │ │ ├── 055.xml │ │ │ │ │ ├── 056.xml │ │ │ │ │ ├── 057.xml │ │ │ │ │ ├── out │ │ │ │ │ │ ├── 006.xml │ │ │ │ │ │ ├── 007.xml │ │ │ │ │ │ ├── 010.xml │ │ │ │ │ │ ├── 012.xml │ │ │ │ │ │ ├── 015.xml │ │ │ │ │ │ ├── 017.xml │ │ │ │ │ │ ├── 018.xml │ │ │ │ │ │ ├── 022.xml │ │ │ │ │ │ ├── 023.xml │ │ │ │ │ │ ├── 024.xml │ │ │ │ │ │ ├── 025.xml │ │ │ │ │ │ ├── 026.xml │ │ │ │ │ │ ├── 027.xml │ │ │ │ │ │ ├── 028.xml │ │ │ │ │ │ ├── 029.xml │ │ │ │ │ │ ├── 030.xml │ │ │ │ │ │ ├── 031.xml │ │ │ │ │ │ ├── 032.xml │ │ │ │ │ │ ├── 033.xml │ │ │ │ │ │ ├── 034.xml │ │ │ │ │ │ ├── 035.xml │ │ │ │ │ │ ├── 036.xml │ │ │ │ │ │ ├── 037.xml │ │ │ │ │ │ ├── 040.xml │ │ │ │ │ │ ├── 043.xml │ │ │ │ │ │ ├── 044.xml │ │ │ │ │ │ ├── 045.xml │ │ │ │ │ │ ├── 046.xml │ │ │ │ │ │ ├── 047.xml │ │ │ │ │ │ ├── 048.xml │ │ │ │ │ │ ├── 049.xml │ │ │ │ │ │ ├── 050.xml │ │ │ │ │ │ ├── 051.xml │ │ │ │ │ │ ├── 052.xml │ │ │ │ │ │ ├── 053.xml │ │ │ │ │ │ └── 054.xml │ │ │ │ │ ├── testcases.dtd │ │ │ │ │ ├── xml11.xml │ │ │ │ │ └── xmlconf.xml │ │ │ │ └── xmlconf.xml │ │ │ ├── files │ │ │ │ ├── a_oasis-logo.gif │ │ │ │ ├── committee.css │ │ │ │ └── top3.jpe │ │ │ ├── ibm │ │ │ │ ├── ibm_oasis_invalid.xml │ │ │ │ ├── ibm_oasis_not-wf.xml │ │ │ │ ├── ibm_oasis_readme.txt │ │ │ │ ├── ibm_oasis_valid.xml │ │ │ │ ├── invalid │ │ │ │ │ ├── P28 │ │ │ │ │ │ ├── ibm28i01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm28i01.xml │ │ │ │ │ ├── P32 │ │ │ │ │ │ ├── ibm32i01.dtd │ │ │ │ │ │ ├── ibm32i01.xml │ │ │ │ │ │ ├── ibm32i03.dtd │ │ │ │ │ │ ├── ibm32i03.xml │ │ │ │ │ │ ├── ibm32i04.dtd │ │ │ │ │ │ ├── ibm32i04.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm32i01.xml │ │ │ │ │ │ │ ├── ibm32i03.xml │ │ │ │ │ │ │ └── ibm32i04.xml │ │ │ │ │ ├── P39 │ │ │ │ │ │ ├── ibm39i01.xml │ │ │ │ │ │ ├── ibm39i02.xml │ │ │ │ │ │ ├── ibm39i03.xml │ │ │ │ │ │ ├── ibm39i04.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm39i01.xml │ │ │ │ │ │ │ ├── ibm39i02.xml │ │ │ │ │ │ │ ├── ibm39i03.xml │ │ │ │ │ │ │ └── ibm39i04.xml │ │ │ │ │ ├── P41 │ │ │ │ │ │ ├── ibm41i01.xml │ │ │ │ │ │ ├── ibm41i02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm41i01.xml │ │ │ │ │ │ │ └── ibm41i02.xml │ │ │ │ │ ├── P45 │ │ │ │ │ │ ├── ibm45i01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm45i01.xml │ │ │ │ │ ├── P49 │ │ │ │ │ │ ├── ibm49i01.dtd │ │ │ │ │ │ ├── ibm49i01.xml │ │ │ │ │ │ ├── ibm49i02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm49i01.xml │ │ │ │ │ │ │ └── ibm49i02.xml │ │ │ │ │ ├── P50 │ │ │ │ │ │ ├── ibm50i01.dtd │ │ │ │ │ │ ├── ibm50i01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm50i01.xml │ │ │ │ │ ├── P51 │ │ │ │ │ │ ├── ibm51i01.dtd │ │ │ │ │ │ ├── ibm51i01.xml │ │ │ │ │ │ ├── ibm51i03.dtd │ │ │ │ │ │ ├── ibm51i03.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm51i01.xml │ │ │ │ │ │ │ ├── ibm51i02.xml │ │ │ │ │ │ │ └── ibm51i03.xml │ │ │ │ │ ├── P56 │ │ │ │ │ │ ├── ibm56i01.xml │ │ │ │ │ │ ├── ibm56i02.xml │ │ │ │ │ │ ├── ibm56i03.xml │ │ │ │ │ │ ├── ibm56i05.xml │ │ │ │ │ │ ├── ibm56i06.xml │ │ │ │ │ │ ├── ibm56i07.xml │ │ │ │ │ │ ├── ibm56i08.xml │ │ │ │ │ │ ├── ibm56i09.xml │ │ │ │ │ │ ├── ibm56i10.xml │ │ │ │ │ │ ├── ibm56i11.xml │ │ │ │ │ │ ├── ibm56i12.xml │ │ │ │ │ │ ├── ibm56i13.xml │ │ │ │ │ │ ├── ibm56i14.xml │ │ │ │ │ │ ├── ibm56i15.xml │ │ │ │ │ │ ├── ibm56i16.xml │ │ │ │ │ │ ├── ibm56i17.xml │ │ │ │ │ │ ├── ibm56i18.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm56i01.xml │ │ │ │ │ │ │ ├── ibm56i02.xml │ │ │ │ │ │ │ ├── ibm56i03.xml │ │ │ │ │ │ │ ├── ibm56i05.xml │ │ │ │ │ │ │ ├── ibm56i06.xml │ │ │ │ │ │ │ ├── ibm56i07.xml │ │ │ │ │ │ │ ├── ibm56i08.xml │ │ │ │ │ │ │ ├── ibm56i09.xml │ │ │ │ │ │ │ ├── ibm56i10.xml │ │ │ │ │ │ │ ├── ibm56i11.xml │ │ │ │ │ │ │ ├── ibm56i12.xml │ │ │ │ │ │ │ ├── ibm56i13.xml │ │ │ │ │ │ │ ├── ibm56i14.xml │ │ │ │ │ │ │ ├── ibm56i15.xml │ │ │ │ │ │ │ ├── ibm56i16.xml │ │ │ │ │ │ │ ├── ibm56i17.xml │ │ │ │ │ │ │ └── ibm56i18.xml │ │ │ │ │ ├── P58 │ │ │ │ │ │ ├── ibm58i01.xml │ │ │ │ │ │ ├── ibm58i02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm58i01.xml │ │ │ │ │ │ │ └── ibm58i02.xml │ │ │ │ │ ├── P59 │ │ │ │ │ │ ├── ibm59i01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm59i01.xml │ │ │ │ │ ├── P60 │ │ │ │ │ │ ├── ibm60i01.xml │ │ │ │ │ │ ├── ibm60i02.xml │ │ │ │ │ │ ├── ibm60i03.xml │ │ │ │ │ │ ├── ibm60i04.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm60i01.xml │ │ │ │ │ │ │ ├── ibm60i02.xml │ │ │ │ │ │ │ ├── ibm60i03.xml │ │ │ │ │ │ │ └── ibm60i04.xml │ │ │ │ │ ├── P68 │ │ │ │ │ │ ├── ibm68i01.dtd │ │ │ │ │ │ ├── ibm68i01.xml │ │ │ │ │ │ ├── ibm68i02.dtd │ │ │ │ │ │ ├── ibm68i02.xml │ │ │ │ │ │ ├── ibm68i03.ent │ │ │ │ │ │ ├── ibm68i03.xml │ │ │ │ │ │ ├── ibm68i04.ent │ │ │ │ │ │ ├── ibm68i04.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm68i01.xml │ │ │ │ │ │ │ ├── ibm68i02.xml │ │ │ │ │ │ │ ├── ibm68i03.xml │ │ │ │ │ │ │ └── ibm68i04.xml │ │ │ │ │ ├── P69 │ │ │ │ │ │ ├── ibm69i01.dtd │ │ │ │ │ │ ├── ibm69i01.xml │ │ │ │ │ │ ├── ibm69i02.dtd │ │ │ │ │ │ ├── ibm69i02.xml │ │ │ │ │ │ ├── ibm69i03.ent │ │ │ │ │ │ ├── ibm69i03.xml │ │ │ │ │ │ ├── ibm69i04.ent │ │ │ │ │ │ ├── ibm69i04.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm69i01.xml │ │ │ │ │ │ │ ├── ibm69i02.xml │ │ │ │ │ │ │ ├── ibm69i03.xml │ │ │ │ │ │ │ └── ibm69i04.xml │ │ │ │ │ └── P76 │ │ │ │ │ │ ├── ibm76i01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ └── ibm76i01.xml │ │ │ │ ├── not-wf │ │ │ │ │ ├── P01 │ │ │ │ │ │ ├── ibm01n01.xml │ │ │ │ │ │ ├── ibm01n02.xml │ │ │ │ │ │ └── ibm01n03.xml │ │ │ │ │ ├── P02 │ │ │ │ │ │ ├── ibm02n01.xml │ │ │ │ │ │ ├── ibm02n02.xml │ │ │ │ │ │ ├── ibm02n03.xml │ │ │ │ │ │ ├── ibm02n04.xml │ │ │ │ │ │ ├── ibm02n05.xml │ │ │ │ │ │ ├── ibm02n06.xml │ │ │ │ │ │ ├── ibm02n07.xml │ │ │ │ │ │ ├── ibm02n08.xml │ │ │ │ │ │ ├── ibm02n09.xml │ │ │ │ │ │ ├── ibm02n10.xml │ │ │ │ │ │ ├── ibm02n11.xml │ │ │ │ │ │ ├── ibm02n12.xml │ │ │ │ │ │ ├── ibm02n13.xml │ │ │ │ │ │ ├── ibm02n14.xml │ │ │ │ │ │ ├── ibm02n15.xml │ │ │ │ │ │ ├── ibm02n16.xml │ │ │ │ │ │ ├── ibm02n17.xml │ │ │ │ │ │ ├── ibm02n18.xml │ │ │ │ │ │ ├── ibm02n19.xml │ │ │ │ │ │ ├── ibm02n20.xml │ │ │ │ │ │ ├── ibm02n21.xml │ │ │ │ │ │ ├── ibm02n22.xml │ │ │ │ │ │ ├── ibm02n23.xml │ │ │ │ │ │ ├── ibm02n24.xml │ │ │ │ │ │ ├── ibm02n25.xml │ │ │ │ │ │ ├── ibm02n26.xml │ │ │ │ │ │ ├── ibm02n27.xml │ │ │ │ │ │ ├── ibm02n28.xml │ │ │ │ │ │ ├── ibm02n29.xml │ │ │ │ │ │ ├── ibm02n30.xml │ │ │ │ │ │ ├── ibm02n31.xml │ │ │ │ │ │ ├── ibm02n32.xml │ │ │ │ │ │ └── ibm02n33.xml │ │ │ │ │ ├── P03 │ │ │ │ │ │ └── ibm03n01.xml │ │ │ │ │ ├── P04 │ │ │ │ │ │ ├── ibm04n01.xml │ │ │ │ │ │ ├── ibm04n02.xml │ │ │ │ │ │ ├── ibm04n03.xml │ │ │ │ │ │ ├── ibm04n04.xml │ │ │ │ │ │ ├── ibm04n05.xml │ │ │ │ │ │ ├── ibm04n06.xml │ │ │ │ │ │ ├── ibm04n07.xml │ │ │ │ │ │ ├── ibm04n08.xml │ │ │ │ │ │ ├── ibm04n09.xml │ │ │ │ │ │ ├── ibm04n10.xml │ │ │ │ │ │ ├── ibm04n11.xml │ │ │ │ │ │ ├── ibm04n12.xml │ │ │ │ │ │ ├── ibm04n13.xml │ │ │ │ │ │ ├── ibm04n14.xml │ │ │ │ │ │ ├── ibm04n15.xml │ │ │ │ │ │ ├── ibm04n16.xml │ │ │ │ │ │ ├── ibm04n17.xml │ │ │ │ │ │ └── ibm04n18.xml │ │ │ │ │ ├── P05 │ │ │ │ │ │ ├── ibm05n01.xml │ │ │ │ │ │ ├── ibm05n02.xml │ │ │ │ │ │ ├── ibm05n03.xml │ │ │ │ │ │ ├── ibm05n04.xml │ │ │ │ │ │ └── ibm05n05.xml │ │ │ │ │ ├── P09 │ │ │ │ │ │ ├── ibm09n01.xml │ │ │ │ │ │ ├── ibm09n02.xml │ │ │ │ │ │ ├── ibm09n03.xml │ │ │ │ │ │ └── ibm09n04.xml │ │ │ │ │ ├── P10 │ │ │ │ │ │ ├── ibm10n01.xml │ │ │ │ │ │ ├── ibm10n02.xml │ │ │ │ │ │ ├── ibm10n03.xml │ │ │ │ │ │ ├── ibm10n04.xml │ │ │ │ │ │ ├── ibm10n05.xml │ │ │ │ │ │ ├── ibm10n06.xml │ │ │ │ │ │ ├── ibm10n07.xml │ │ │ │ │ │ └── ibm10n08.xml │ │ │ │ │ ├── P11 │ │ │ │ │ │ ├── ibm11n01.xml │ │ │ │ │ │ ├── ibm11n02.xml │ │ │ │ │ │ ├── ibm11n03.xml │ │ │ │ │ │ └── ibm11n04.xml │ │ │ │ │ ├── P12 │ │ │ │ │ │ ├── ibm12n01.xml │ │ │ │ │ │ ├── ibm12n02.xml │ │ │ │ │ │ └── ibm12n03.xml │ │ │ │ │ ├── P13 │ │ │ │ │ │ ├── ibm13n01.xml │ │ │ │ │ │ ├── ibm13n02.xml │ │ │ │ │ │ ├── ibm13n03.xml │ │ │ │ │ │ └── student.dtd │ │ │ │ │ ├── P14 │ │ │ │ │ │ ├── ibm14n01.xml │ │ │ │ │ │ ├── ibm14n02.xml │ │ │ │ │ │ └── ibm14n03.xml │ │ │ │ │ ├── P15 │ │ │ │ │ │ ├── ibm15n01.xml │ │ │ │ │ │ ├── ibm15n02.xml │ │ │ │ │ │ ├── ibm15n03.xml │ │ │ │ │ │ └── ibm15n04.xml │ │ │ │ │ ├── P16 │ │ │ │ │ │ ├── ibm16n01.xml │ │ │ │ │ │ ├── ibm16n02.xml │ │ │ │ │ │ ├── ibm16n03.xml │ │ │ │ │ │ └── ibm16n04.xml │ │ │ │ │ ├── P17 │ │ │ │ │ │ ├── ibm17n01.xml │ │ │ │ │ │ ├── ibm17n02.xml │ │ │ │ │ │ ├── ibm17n03.xml │ │ │ │ │ │ └── ibm17n04.xml │ │ │ │ │ ├── P18 │ │ │ │ │ │ ├── ibm18n01.xml │ │ │ │ │ │ └── ibm18n02.xml │ │ │ │ │ ├── P19 │ │ │ │ │ │ ├── ibm19n01.xml │ │ │ │ │ │ ├── ibm19n02.xml │ │ │ │ │ │ └── ibm19n03.xml │ │ │ │ │ ├── P20 │ │ │ │ │ │ └── ibm20n01.xml │ │ │ │ │ ├── P21 │ │ │ │ │ │ ├── ibm21n01.xml │ │ │ │ │ │ ├── ibm21n02.xml │ │ │ │ │ │ └── ibm21n03.xml │ │ │ │ │ ├── P22 │ │ │ │ │ │ ├── ibm22n01.xml │ │ │ │ │ │ ├── ibm22n02.xml │ │ │ │ │ │ └── ibm22n03.xml │ │ │ │ │ ├── P23 │ │ │ │ │ │ ├── ibm23n01.xml │ │ │ │ │ │ ├── ibm23n02.xml │ │ │ │ │ │ ├── ibm23n03.xml │ │ │ │ │ │ ├── ibm23n04.xml │ │ │ │ │ │ ├── ibm23n05.xml │ │ │ │ │ │ └── ibm23n06.xml │ │ │ │ │ ├── P24 │ │ │ │ │ │ ├── ibm24n01.xml │ │ │ │ │ │ ├── ibm24n02.xml │ │ │ │ │ │ ├── ibm24n03.xml │ │ │ │ │ │ ├── ibm24n04.xml │ │ │ │ │ │ ├── ibm24n05.xml │ │ │ │ │ │ ├── ibm24n06.xml │ │ │ │ │ │ ├── ibm24n07.xml │ │ │ │ │ │ ├── ibm24n08.xml │ │ │ │ │ │ └── ibm24n09.xml │ │ │ │ │ ├── P25 │ │ │ │ │ │ ├── ibm25n01.xml │ │ │ │ │ │ └── ibm25n02.xml │ │ │ │ │ ├── P26 │ │ │ │ │ │ └── ibm26n01.xml │ │ │ │ │ ├── P27 │ │ │ │ │ │ └── ibm27n01.xml │ │ │ │ │ ├── P28 │ │ │ │ │ │ ├── ibm28n01.dtd │ │ │ │ │ │ ├── ibm28n01.xml │ │ │ │ │ │ ├── ibm28n02.xml │ │ │ │ │ │ ├── ibm28n03.xml │ │ │ │ │ │ ├── ibm28n04.xml │ │ │ │ │ │ ├── ibm28n05.xml │ │ │ │ │ │ ├── ibm28n06.xml │ │ │ │ │ │ ├── ibm28n07.xml │ │ │ │ │ │ └── ibm28n08.xml │ │ │ │ │ ├── P29 │ │ │ │ │ │ ├── cat.txt │ │ │ │ │ │ ├── ibm29n01.xml │ │ │ │ │ │ ├── ibm29n02.xml │ │ │ │ │ │ ├── ibm29n03.xml │ │ │ │ │ │ ├── ibm29n04.xml │ │ │ │ │ │ ├── ibm29n05.xml │ │ │ │ │ │ ├── ibm29n06.xml │ │ │ │ │ │ └── ibm29n07.xml │ │ │ │ │ ├── P30 │ │ │ │ │ │ ├── ibm30n01.dtd │ │ │ │ │ │ └── ibm30n01.xml │ │ │ │ │ ├── P31 │ │ │ │ │ │ ├── ibm31n01.dtd │ │ │ │ │ │ └── ibm31n01.xml │ │ │ │ │ ├── P32 │ │ │ │ │ │ ├── ibm32n01.xml │ │ │ │ │ │ ├── ibm32n02.xml │ │ │ │ │ │ ├── ibm32n03.xml │ │ │ │ │ │ ├── ibm32n04.xml │ │ │ │ │ │ ├── ibm32n05.xml │ │ │ │ │ │ ├── ibm32n06.dtd │ │ │ │ │ │ ├── ibm32n06.xml │ │ │ │ │ │ ├── ibm32n07.xml │ │ │ │ │ │ ├── ibm32n08.xml │ │ │ │ │ │ ├── ibm32n09.dtd │ │ │ │ │ │ └── ibm32n09.xml │ │ │ │ │ ├── P39 │ │ │ │ │ │ ├── ibm39n01.xml │ │ │ │ │ │ ├── ibm39n02.xml │ │ │ │ │ │ ├── ibm39n03.xml │ │ │ │ │ │ ├── ibm39n04.xml │ │ │ │ │ │ ├── ibm39n05.xml │ │ │ │ │ │ └── ibm39n06.xml │ │ │ │ │ ├── P40 │ │ │ │ │ │ ├── ibm40n01.xml │ │ │ │ │ │ ├── ibm40n02.xml │ │ │ │ │ │ ├── ibm40n03.xml │ │ │ │ │ │ ├── ibm40n04.xml │ │ │ │ │ │ └── ibm40n05.xml │ │ │ │ │ ├── P41 │ │ │ │ │ │ ├── ibm41n.ent │ │ │ │ │ │ ├── ibm41n01.xml │ │ │ │ │ │ ├── ibm41n02.xml │ │ │ │ │ │ ├── ibm41n03.xml │ │ │ │ │ │ ├── ibm41n04.xml │ │ │ │ │ │ ├── ibm41n05.xml │ │ │ │ │ │ ├── ibm41n06.xml │ │ │ │ │ │ ├── ibm41n07.xml │ │ │ │ │ │ ├── ibm41n08.xml │ │ │ │ │ │ ├── ibm41n09.xml │ │ │ │ │ │ ├── ibm41n10.ent │ │ │ │ │ │ ├── ibm41n10.xml │ │ │ │ │ │ ├── ibm41n11.ent │ │ │ │ │ │ ├── ibm41n11.xml │ │ │ │ │ │ ├── ibm41n12.xml │ │ │ │ │ │ ├── ibm41n13.xml │ │ │ │ │ │ └── ibm41n14.xml │ │ │ │ │ ├── P42 │ │ │ │ │ │ ├── ibm42n01.xml │ │ │ │ │ │ ├── ibm42n02.xml │ │ │ │ │ │ ├── ibm42n03.xml │ │ │ │ │ │ ├── ibm42n04.xml │ │ │ │ │ │ └── ibm42n05.xml │ │ │ │ │ ├── P43 │ │ │ │ │ │ ├── ibm43n01.xml │ │ │ │ │ │ ├── ibm43n02.xml │ │ │ │ │ │ ├── ibm43n04.xml │ │ │ │ │ │ └── ibm43n05.xml │ │ │ │ │ ├── P44 │ │ │ │ │ │ ├── ibm44n01.xml │ │ │ │ │ │ ├── ibm44n02.xml │ │ │ │ │ │ ├── ibm44n03.xml │ │ │ │ │ │ └── ibm44n04.xml │ │ │ │ │ ├── P45 │ │ │ │ │ │ ├── ibm45n01.xml │ │ │ │ │ │ ├── ibm45n02.xml │ │ │ │ │ │ ├── ibm45n03.xml │ │ │ │ │ │ ├── ibm45n04.xml │ │ │ │ │ │ ├── ibm45n05.xml │ │ │ │ │ │ ├── ibm45n06.xml │ │ │ │ │ │ ├── ibm45n07.xml │ │ │ │ │ │ ├── ibm45n08.xml │ │ │ │ │ │ └── ibm45n09.xml │ │ │ │ │ ├── P46 │ │ │ │ │ │ ├── ibm46n01.xml │ │ │ │ │ │ ├── ibm46n02.xml │ │ │ │ │ │ ├── ibm46n03.xml │ │ │ │ │ │ ├── ibm46n04.xml │ │ │ │ │ │ └── ibm46n05.xml │ │ │ │ │ ├── P47 │ │ │ │ │ │ ├── ibm47n01.xml │ │ │ │ │ │ ├── ibm47n02.xml │ │ │ │ │ │ ├── ibm47n03.xml │ │ │ │ │ │ ├── ibm47n04.xml │ │ │ │ │ │ ├── ibm47n05.xml │ │ │ │ │ │ └── ibm47n06.xml │ │ │ │ │ ├── P48 │ │ │ │ │ │ ├── ibm48n01.xml │ │ │ │ │ │ ├── ibm48n02.xml │ │ │ │ │ │ ├── ibm48n03.xml │ │ │ │ │ │ ├── ibm48n04.xml │ │ │ │ │ │ ├── ibm48n05.xml │ │ │ │ │ │ ├── ibm48n06.xml │ │ │ │ │ │ └── ibm48n07.xml │ │ │ │ │ ├── P49 │ │ │ │ │ │ ├── ibm49n01.xml │ │ │ │ │ │ ├── ibm49n02.xml │ │ │ │ │ │ ├── ibm49n03.xml │ │ │ │ │ │ ├── ibm49n04.xml │ │ │ │ │ │ ├── ibm49n05.xml │ │ │ │ │ │ └── ibm49n06.xml │ │ │ │ │ ├── P50 │ │ │ │ │ │ ├── ibm50n01.xml │ │ │ │ │ │ ├── ibm50n02.xml │ │ │ │ │ │ ├── ibm50n03.xml │ │ │ │ │ │ ├── ibm50n04.xml │ │ │ │ │ │ ├── ibm50n05.xml │ │ │ │ │ │ ├── ibm50n06.xml │ │ │ │ │ │ └── ibm50n07.xml │ │ │ │ │ ├── P51 │ │ │ │ │ │ ├── ibm51n01.xml │ │ │ │ │ │ ├── ibm51n02.xml │ │ │ │ │ │ ├── ibm51n03.xml │ │ │ │ │ │ ├── ibm51n04.xml │ │ │ │ │ │ ├── ibm51n05.xml │ │ │ │ │ │ ├── ibm51n06.xml │ │ │ │ │ │ └── ibm51n07.xml │ │ │ │ │ ├── P52 │ │ │ │ │ │ ├── ibm52n01.xml │ │ │ │ │ │ ├── ibm52n02.xml │ │ │ │ │ │ ├── ibm52n03.xml │ │ │ │ │ │ ├── ibm52n04.xml │ │ │ │ │ │ ├── ibm52n05.xml │ │ │ │ │ │ └── ibm52n06.xml │ │ │ │ │ ├── P53 │ │ │ │ │ │ ├── ibm53n01.xml │ │ │ │ │ │ ├── ibm53n02.xml │ │ │ │ │ │ ├── ibm53n03.xml │ │ │ │ │ │ ├── ibm53n04.xml │ │ │ │ │ │ ├── ibm53n05.xml │ │ │ │ │ │ ├── ibm53n06.xml │ │ │ │ │ │ ├── ibm53n07.xml │ │ │ │ │ │ └── ibm53n08.xml │ │ │ │ │ ├── P54 │ │ │ │ │ │ ├── ibm54n01.xml │ │ │ │ │ │ └── ibm54n02.xml │ │ │ │ │ ├── P55 │ │ │ │ │ │ ├── ibm55n01.xml │ │ │ │ │ │ ├── ibm55n02.xml │ │ │ │ │ │ └── ibm55n03.xml │ │ │ │ │ ├── P56 │ │ │ │ │ │ ├── ibm56n01.xml │ │ │ │ │ │ ├── ibm56n02.xml │ │ │ │ │ │ ├── ibm56n03.xml │ │ │ │ │ │ ├── ibm56n04.xml │ │ │ │ │ │ ├── ibm56n05.xml │ │ │ │ │ │ ├── ibm56n06.xml │ │ │ │ │ │ └── ibm56n07.xml │ │ │ │ │ ├── P57 │ │ │ │ │ │ └── ibm57n01.xml │ │ │ │ │ ├── P58 │ │ │ │ │ │ ├── ibm58n01.xml │ │ │ │ │ │ ├── ibm58n02.xml │ │ │ │ │ │ ├── ibm58n03.xml │ │ │ │ │ │ ├── ibm58n04.xml │ │ │ │ │ │ ├── ibm58n05.xml │ │ │ │ │ │ ├── ibm58n06.xml │ │ │ │ │ │ ├── ibm58n07.xml │ │ │ │ │ │ └── ibm58n08.xml │ │ │ │ │ ├── P59 │ │ │ │ │ │ ├── ibm59n01.xml │ │ │ │ │ │ ├── ibm59n02.xml │ │ │ │ │ │ ├── ibm59n03.xml │ │ │ │ │ │ ├── ibm59n04.xml │ │ │ │ │ │ ├── ibm59n05.xml │ │ │ │ │ │ └── ibm59n06.xml │ │ │ │ │ ├── P60 │ │ │ │ │ │ ├── ibm60n01.xml │ │ │ │ │ │ ├── ibm60n02.xml │ │ │ │ │ │ ├── ibm60n03.xml │ │ │ │ │ │ ├── ibm60n04.xml │ │ │ │ │ │ ├── ibm60n05.xml │ │ │ │ │ │ ├── ibm60n06.xml │ │ │ │ │ │ ├── ibm60n07.xml │ │ │ │ │ │ └── ibm60n08.xml │ │ │ │ │ ├── P61 │ │ │ │ │ │ ├── ibm61n01.dtd │ │ │ │ │ │ └── ibm61n01.xml │ │ │ │ │ ├── P62 │ │ │ │ │ │ ├── ibm62n01.dtd │ │ │ │ │ │ ├── ibm62n01.xml │ │ │ │ │ │ ├── ibm62n02.dtd │ │ │ │ │ │ ├── ibm62n02.xml │ │ │ │ │ │ ├── ibm62n03.dtd │ │ │ │ │ │ ├── ibm62n03.xml │ │ │ │ │ │ ├── ibm62n04.dtd │ │ │ │ │ │ ├── ibm62n04.xml │ │ │ │ │ │ ├── ibm62n05.dtd │ │ │ │ │ │ ├── ibm62n05.xml │ │ │ │ │ │ ├── ibm62n06.dtd │ │ │ │ │ │ ├── ibm62n06.xml │ │ │ │ │ │ ├── ibm62n07.dtd │ │ │ │ │ │ ├── ibm62n07.xml │ │ │ │ │ │ ├── ibm62n08.dtd │ │ │ │ │ │ └── ibm62n08.xml │ │ │ │ │ ├── P63 │ │ │ │ │ │ ├── ibm63n01.dtd │ │ │ │ │ │ ├── ibm63n01.xml │ │ │ │ │ │ ├── ibm63n02.dtd │ │ │ │ │ │ ├── ibm63n02.xml │ │ │ │ │ │ ├── ibm63n03.dtd │ │ │ │ │ │ ├── ibm63n03.xml │ │ │ │ │ │ ├── ibm63n04.dtd │ │ │ │ │ │ ├── ibm63n04.xml │ │ │ │ │ │ ├── ibm63n05.dtd │ │ │ │ │ │ ├── ibm63n05.xml │ │ │ │ │ │ ├── ibm63n06.dtd │ │ │ │ │ │ ├── ibm63n06.xml │ │ │ │ │ │ ├── ibm63n07.dtd │ │ │ │ │ │ └── ibm63n07.xml │ │ │ │ │ ├── P64 │ │ │ │ │ │ ├── ibm64n01.dtd │ │ │ │ │ │ ├── ibm64n01.xml │ │ │ │ │ │ ├── ibm64n02.dtd │ │ │ │ │ │ ├── ibm64n02.xml │ │ │ │ │ │ ├── ibm64n03.dtd │ │ │ │ │ │ └── ibm64n03.xml │ │ │ │ │ ├── P65 │ │ │ │ │ │ ├── ibm65n01.dtd │ │ │ │ │ │ ├── ibm65n01.xml │ │ │ │ │ │ ├── ibm65n02.dtd │ │ │ │ │ │ └── ibm65n02.xml │ │ │ │ │ ├── P66 │ │ │ │ │ │ ├── ibm66n01.xml │ │ │ │ │ │ ├── ibm66n02.xml │ │ │ │ │ │ ├── ibm66n03.xml │ │ │ │ │ │ ├── ibm66n04.xml │ │ │ │ │ │ ├── ibm66n05.xml │ │ │ │ │ │ ├── ibm66n06.xml │ │ │ │ │ │ ├── ibm66n07.xml │ │ │ │ │ │ ├── ibm66n08.xml │ │ │ │ │ │ ├── ibm66n09.xml │ │ │ │ │ │ ├── ibm66n10.xml │ │ │ │ │ │ ├── ibm66n11.xml │ │ │ │ │ │ ├── ibm66n12.xml │ │ │ │ │ │ ├── ibm66n13.xml │ │ │ │ │ │ ├── ibm66n14.xml │ │ │ │ │ │ └── ibm66n15.xml │ │ │ │ │ ├── P68 │ │ │ │ │ │ ├── ibm68n01.xml │ │ │ │ │ │ ├── ibm68n02.xml │ │ │ │ │ │ ├── ibm68n03.xml │ │ │ │ │ │ ├── ibm68n04.xml │ │ │ │ │ │ ├── ibm68n05.xml │ │ │ │ │ │ ├── ibm68n06.dtd │ │ │ │ │ │ ├── ibm68n06.xml │ │ │ │ │ │ ├── ibm68n07.xml │ │ │ │ │ │ ├── ibm68n08.xml │ │ │ │ │ │ ├── ibm68n09.xml │ │ │ │ │ │ └── ibm68n10.xml │ │ │ │ │ ├── P69 │ │ │ │ │ │ ├── ibm69n01.xml │ │ │ │ │ │ ├── ibm69n02.xml │ │ │ │ │ │ ├── ibm69n03.xml │ │ │ │ │ │ ├── ibm69n04.xml │ │ │ │ │ │ ├── ibm69n05.xml │ │ │ │ │ │ ├── ibm69n06.xml │ │ │ │ │ │ └── ibm69n07.xml │ │ │ │ │ ├── P71 │ │ │ │ │ │ ├── ibm70n01.xml │ │ │ │ │ │ ├── ibm71n01.xml │ │ │ │ │ │ ├── ibm71n02.xml │ │ │ │ │ │ ├── ibm71n03.xml │ │ │ │ │ │ ├── ibm71n04.xml │ │ │ │ │ │ ├── ibm71n05.xml │ │ │ │ │ │ ├── ibm71n06.xml │ │ │ │ │ │ ├── ibm71n07.xml │ │ │ │ │ │ └── ibm71n08.xml │ │ │ │ │ ├── P72 │ │ │ │ │ │ ├── ibm72n01.xml │ │ │ │ │ │ ├── ibm72n02.xml │ │ │ │ │ │ ├── ibm72n03.xml │ │ │ │ │ │ ├── ibm72n04.xml │ │ │ │ │ │ ├── ibm72n05.xml │ │ │ │ │ │ ├── ibm72n06.xml │ │ │ │ │ │ ├── ibm72n07.xml │ │ │ │ │ │ ├── ibm72n08.xml │ │ │ │ │ │ └── ibm72n09.xml │ │ │ │ │ ├── P73 │ │ │ │ │ │ ├── ibm73n01.xml │ │ │ │ │ │ └── ibm73n03.xml │ │ │ │ │ ├── P74 │ │ │ │ │ │ └── ibm74n01.xml │ │ │ │ │ ├── P75 │ │ │ │ │ │ ├── empty.dtd │ │ │ │ │ │ ├── ibm75n01.xml │ │ │ │ │ │ ├── ibm75n02.xml │ │ │ │ │ │ ├── ibm75n03.xml │ │ │ │ │ │ ├── ibm75n04.xml │ │ │ │ │ │ ├── ibm75n05.xml │ │ │ │ │ │ ├── ibm75n06.xml │ │ │ │ │ │ ├── ibm75n07.xml │ │ │ │ │ │ ├── ibm75n08.xml │ │ │ │ │ │ ├── ibm75n09.xml │ │ │ │ │ │ ├── ibm75n10.xml │ │ │ │ │ │ ├── ibm75n11.xml │ │ │ │ │ │ ├── ibm75n12.xml │ │ │ │ │ │ └── ibm75n13.xml │ │ │ │ │ ├── P76 │ │ │ │ │ │ ├── ibm76n01.xml │ │ │ │ │ │ ├── ibm76n02.xml │ │ │ │ │ │ ├── ibm76n03.xml │ │ │ │ │ │ ├── ibm76n04.xml │ │ │ │ │ │ ├── ibm76n05.xml │ │ │ │ │ │ ├── ibm76n06.xml │ │ │ │ │ │ └── ibm76n07.xml │ │ │ │ │ ├── P77 │ │ │ │ │ │ ├── ibm77n01.ent │ │ │ │ │ │ ├── ibm77n01.xml │ │ │ │ │ │ ├── ibm77n02.ent │ │ │ │ │ │ ├── ibm77n02.xml │ │ │ │ │ │ ├── ibm77n03.ent │ │ │ │ │ │ ├── ibm77n03.xml │ │ │ │ │ │ ├── ibm77n04.ent │ │ │ │ │ │ └── ibm77n04.xml │ │ │ │ │ ├── P78 │ │ │ │ │ │ ├── ibm78n01.ent │ │ │ │ │ │ ├── ibm78n01.xml │ │ │ │ │ │ ├── ibm78n02.ent │ │ │ │ │ │ └── ibm78n02.xml │ │ │ │ │ ├── P79 │ │ │ │ │ │ ├── ibm79n01.ent │ │ │ │ │ │ ├── ibm79n01.xml │ │ │ │ │ │ ├── ibm79n02.ent │ │ │ │ │ │ └── ibm79n02.xml │ │ │ │ │ ├── P80 │ │ │ │ │ │ ├── ibm80n01.xml │ │ │ │ │ │ ├── ibm80n02.xml │ │ │ │ │ │ ├── ibm80n03.xml │ │ │ │ │ │ ├── ibm80n04.xml │ │ │ │ │ │ ├── ibm80n05.xml │ │ │ │ │ │ └── ibm80n06.xml │ │ │ │ │ ├── P81 │ │ │ │ │ │ ├── ibm81n01.xml │ │ │ │ │ │ ├── ibm81n02.xml │ │ │ │ │ │ ├── ibm81n03.xml │ │ │ │ │ │ ├── ibm81n04.xml │ │ │ │ │ │ ├── ibm81n05.xml │ │ │ │ │ │ ├── ibm81n06.xml │ │ │ │ │ │ ├── ibm81n07.xml │ │ │ │ │ │ ├── ibm81n08.xml │ │ │ │ │ │ └── ibm81n09.xml │ │ │ │ │ ├── P82 │ │ │ │ │ │ ├── ibm82n01.xml │ │ │ │ │ │ ├── ibm82n02.xml │ │ │ │ │ │ ├── ibm82n03.xml │ │ │ │ │ │ ├── ibm82n04.xml │ │ │ │ │ │ ├── ibm82n05.xml │ │ │ │ │ │ ├── ibm82n06.xml │ │ │ │ │ │ ├── ibm82n07.xml │ │ │ │ │ │ └── ibm82n08.xml │ │ │ │ │ ├── P83 │ │ │ │ │ │ ├── ibm83n01.xml │ │ │ │ │ │ ├── ibm83n02.xml │ │ │ │ │ │ ├── ibm83n03.xml │ │ │ │ │ │ ├── ibm83n04.xml │ │ │ │ │ │ ├── ibm83n05.xml │ │ │ │ │ │ └── ibm83n06.xml │ │ │ │ │ ├── P85 │ │ │ │ │ │ ├── ibm85n01.xml │ │ │ │ │ │ ├── ibm85n02.xml │ │ │ │ │ │ ├── ibm85n03.xml │ │ │ │ │ │ ├── ibm85n04.xml │ │ │ │ │ │ ├── ibm85n05.xml │ │ │ │ │ │ ├── ibm85n06.xml │ │ │ │ │ │ ├── ibm85n07.xml │ │ │ │ │ │ ├── ibm85n08.xml │ │ │ │ │ │ ├── ibm85n09.xml │ │ │ │ │ │ ├── ibm85n10.xml │ │ │ │ │ │ ├── ibm85n100.xml │ │ │ │ │ │ ├── ibm85n101.xml │ │ │ │ │ │ ├── ibm85n102.xml │ │ │ │ │ │ ├── ibm85n103.xml │ │ │ │ │ │ ├── ibm85n104.xml │ │ │ │ │ │ ├── ibm85n105.xml │ │ │ │ │ │ ├── ibm85n106.xml │ │ │ │ │ │ ├── ibm85n107.xml │ │ │ │ │ │ ├── ibm85n108.xml │ │ │ │ │ │ ├── ibm85n109.xml │ │ │ │ │ │ ├── ibm85n11.xml │ │ │ │ │ │ ├── ibm85n110.xml │ │ │ │ │ │ ├── ibm85n111.xml │ │ │ │ │ │ ├── ibm85n112.xml │ │ │ │ │ │ ├── ibm85n113.xml │ │ │ │ │ │ ├── ibm85n114.xml │ │ │ │ │ │ ├── ibm85n115.xml │ │ │ │ │ │ ├── ibm85n116.xml │ │ │ │ │ │ ├── ibm85n117.xml │ │ │ │ │ │ ├── ibm85n118.xml │ │ │ │ │ │ ├── ibm85n119.xml │ │ │ │ │ │ ├── ibm85n12.xml │ │ │ │ │ │ ├── ibm85n120.xml │ │ │ │ │ │ ├── ibm85n121.xml │ │ │ │ │ │ ├── ibm85n122.xml │ │ │ │ │ │ ├── ibm85n123.xml │ │ │ │ │ │ ├── ibm85n124.xml │ │ │ │ │ │ ├── ibm85n125.xml │ │ │ │ │ │ ├── ibm85n126.xml │ │ │ │ │ │ ├── ibm85n127.xml │ │ │ │ │ │ ├── ibm85n128.xml │ │ │ │ │ │ ├── ibm85n129.xml │ │ │ │ │ │ ├── ibm85n13.xml │ │ │ │ │ │ ├── ibm85n130.xml │ │ │ │ │ │ ├── ibm85n131.xml │ │ │ │ │ │ ├── ibm85n132.xml │ │ │ │ │ │ ├── ibm85n133.xml │ │ │ │ │ │ ├── ibm85n134.xml │ │ │ │ │ │ ├── ibm85n135.xml │ │ │ │ │ │ ├── ibm85n136.xml │ │ │ │ │ │ ├── ibm85n137.xml │ │ │ │ │ │ ├── ibm85n138.xml │ │ │ │ │ │ ├── ibm85n139.xml │ │ │ │ │ │ ├── ibm85n14.xml │ │ │ │ │ │ ├── ibm85n140.xml │ │ │ │ │ │ ├── ibm85n141.xml │ │ │ │ │ │ ├── ibm85n142.xml │ │ │ │ │ │ ├── ibm85n143.xml │ │ │ │ │ │ ├── ibm85n144.xml │ │ │ │ │ │ ├── ibm85n145.xml │ │ │ │ │ │ ├── ibm85n146.xml │ │ │ │ │ │ ├── ibm85n147.xml │ │ │ │ │ │ ├── ibm85n148.xml │ │ │ │ │ │ ├── ibm85n149.xml │ │ │ │ │ │ ├── ibm85n15.xml │ │ │ │ │ │ ├── ibm85n150.xml │ │ │ │ │ │ ├── ibm85n151.xml │ │ │ │ │ │ ├── ibm85n152.xml │ │ │ │ │ │ ├── ibm85n153.xml │ │ │ │ │ │ ├── ibm85n154.xml │ │ │ │ │ │ ├── ibm85n155.xml │ │ │ │ │ │ ├── ibm85n156.xml │ │ │ │ │ │ ├── ibm85n157.xml │ │ │ │ │ │ ├── ibm85n158.xml │ │ │ │ │ │ ├── ibm85n159.xml │ │ │ │ │ │ ├── ibm85n16.xml │ │ │ │ │ │ ├── ibm85n160.xml │ │ │ │ │ │ ├── ibm85n161.xml │ │ │ │ │ │ ├── ibm85n162.xml │ │ │ │ │ │ ├── ibm85n163.xml │ │ │ │ │ │ ├── ibm85n164.xml │ │ │ │ │ │ ├── ibm85n165.xml │ │ │ │ │ │ ├── ibm85n166.xml │ │ │ │ │ │ ├── ibm85n167.xml │ │ │ │ │ │ ├── ibm85n168.xml │ │ │ │ │ │ ├── ibm85n169.xml │ │ │ │ │ │ ├── ibm85n17.xml │ │ │ │ │ │ ├── ibm85n170.xml │ │ │ │ │ │ ├── ibm85n171.xml │ │ │ │ │ │ ├── ibm85n172.xml │ │ │ │ │ │ ├── ibm85n173.xml │ │ │ │ │ │ ├── ibm85n174.xml │ │ │ │ │ │ ├── ibm85n175.xml │ │ │ │ │ │ ├── ibm85n176.xml │ │ │ │ │ │ ├── ibm85n177.xml │ │ │ │ │ │ ├── ibm85n178.xml │ │ │ │ │ │ ├── ibm85n179.xml │ │ │ │ │ │ ├── ibm85n18.xml │ │ │ │ │ │ ├── ibm85n180.xml │ │ │ │ │ │ ├── ibm85n181.xml │ │ │ │ │ │ ├── ibm85n182.xml │ │ │ │ │ │ ├── ibm85n183.xml │ │ │ │ │ │ ├── ibm85n184.xml │ │ │ │ │ │ ├── ibm85n185.xml │ │ │ │ │ │ ├── ibm85n186.xml │ │ │ │ │ │ ├── ibm85n187.xml │ │ │ │ │ │ ├── ibm85n188.xml │ │ │ │ │ │ ├── ibm85n189.xml │ │ │ │ │ │ ├── ibm85n19.xml │ │ │ │ │ │ ├── ibm85n190.xml │ │ │ │ │ │ ├── ibm85n191.xml │ │ │ │ │ │ ├── ibm85n192.xml │ │ │ │ │ │ ├── ibm85n193.xml │ │ │ │ │ │ ├── ibm85n194.xml │ │ │ │ │ │ ├── ibm85n195.xml │ │ │ │ │ │ ├── ibm85n196.xml │ │ │ │ │ │ ├── ibm85n197.xml │ │ │ │ │ │ ├── ibm85n198.xml │ │ │ │ │ │ ├── ibm85n20.xml │ │ │ │ │ │ ├── ibm85n21.xml │ │ │ │ │ │ ├── ibm85n22.xml │ │ │ │ │ │ ├── ibm85n23.xml │ │ │ │ │ │ ├── ibm85n24.xml │ │ │ │ │ │ ├── ibm85n25.xml │ │ │ │ │ │ ├── ibm85n26.xml │ │ │ │ │ │ ├── ibm85n27.xml │ │ │ │ │ │ ├── ibm85n28.xml │ │ │ │ │ │ ├── ibm85n29.xml │ │ │ │ │ │ ├── ibm85n30.xml │ │ │ │ │ │ ├── ibm85n31.xml │ │ │ │ │ │ ├── ibm85n32.xml │ │ │ │ │ │ ├── ibm85n33.xml │ │ │ │ │ │ ├── ibm85n34.xml │ │ │ │ │ │ ├── ibm85n35.xml │ │ │ │ │ │ ├── ibm85n36.xml │ │ │ │ │ │ ├── ibm85n37.xml │ │ │ │ │ │ ├── ibm85n38.xml │ │ │ │ │ │ ├── ibm85n39.xml │ │ │ │ │ │ ├── ibm85n40.xml │ │ │ │ │ │ ├── ibm85n41.xml │ │ │ │ │ │ ├── ibm85n42.xml │ │ │ │ │ │ ├── ibm85n43.xml │ │ │ │ │ │ ├── ibm85n44.xml │ │ │ │ │ │ ├── ibm85n45.xml │ │ │ │ │ │ ├── ibm85n46.xml │ │ │ │ │ │ ├── ibm85n47.xml │ │ │ │ │ │ ├── ibm85n48.xml │ │ │ │ │ │ ├── ibm85n49.xml │ │ │ │ │ │ ├── ibm85n50.xml │ │ │ │ │ │ ├── ibm85n51.xml │ │ │ │ │ │ ├── ibm85n52.xml │ │ │ │ │ │ ├── ibm85n53.xml │ │ │ │ │ │ ├── ibm85n54.xml │ │ │ │ │ │ ├── ibm85n55.xml │ │ │ │ │ │ ├── ibm85n56.xml │ │ │ │ │ │ ├── ibm85n57.xml │ │ │ │ │ │ ├── ibm85n58.xml │ │ │ │ │ │ ├── ibm85n59.xml │ │ │ │ │ │ ├── ibm85n60.xml │ │ │ │ │ │ ├── ibm85n61.xml │ │ │ │ │ │ ├── ibm85n62.xml │ │ │ │ │ │ ├── ibm85n63.xml │ │ │ │ │ │ ├── ibm85n64.xml │ │ │ │ │ │ ├── ibm85n65.xml │ │ │ │ │ │ ├── ibm85n66.xml │ │ │ │ │ │ ├── ibm85n67.xml │ │ │ │ │ │ ├── ibm85n68.xml │ │ │ │ │ │ ├── ibm85n69.xml │ │ │ │ │ │ ├── ibm85n70.xml │ │ │ │ │ │ ├── ibm85n71.xml │ │ │ │ │ │ ├── ibm85n72.xml │ │ │ │ │ │ ├── ibm85n73.xml │ │ │ │ │ │ ├── ibm85n74.xml │ │ │ │ │ │ ├── ibm85n75.xml │ │ │ │ │ │ ├── ibm85n76.xml │ │ │ │ │ │ ├── ibm85n77.xml │ │ │ │ │ │ ├── ibm85n78.xml │ │ │ │ │ │ ├── ibm85n79.xml │ │ │ │ │ │ ├── ibm85n80.xml │ │ │ │ │ │ ├── ibm85n81.xml │ │ │ │ │ │ ├── ibm85n82.xml │ │ │ │ │ │ ├── ibm85n83.xml │ │ │ │ │ │ ├── ibm85n84.xml │ │ │ │ │ │ ├── ibm85n85.xml │ │ │ │ │ │ ├── ibm85n86.xml │ │ │ │ │ │ ├── ibm85n87.xml │ │ │ │ │ │ ├── ibm85n88.xml │ │ │ │ │ │ ├── ibm85n89.xml │ │ │ │ │ │ ├── ibm85n90.xml │ │ │ │ │ │ ├── ibm85n91.xml │ │ │ │ │ │ ├── ibm85n92.xml │ │ │ │ │ │ ├── ibm85n93.xml │ │ │ │ │ │ ├── ibm85n94.xml │ │ │ │ │ │ ├── ibm85n95.xml │ │ │ │ │ │ ├── ibm85n96.xml │ │ │ │ │ │ ├── ibm85n97.xml │ │ │ │ │ │ ├── ibm85n98.xml │ │ │ │ │ │ └── ibm85n99.xml │ │ │ │ │ ├── P86 │ │ │ │ │ │ ├── ibm86n01.xml │ │ │ │ │ │ ├── ibm86n02.xml │ │ │ │ │ │ ├── ibm86n03.xml │ │ │ │ │ │ └── ibm86n04.xml │ │ │ │ │ ├── P87 │ │ │ │ │ │ ├── ibm87n01.xml │ │ │ │ │ │ ├── ibm87n02.xml │ │ │ │ │ │ ├── ibm87n03.xml │ │ │ │ │ │ ├── ibm87n04.xml │ │ │ │ │ │ ├── ibm87n05.xml │ │ │ │ │ │ ├── ibm87n06.xml │ │ │ │ │ │ ├── ibm87n07.xml │ │ │ │ │ │ ├── ibm87n08.xml │ │ │ │ │ │ ├── ibm87n09.xml │ │ │ │ │ │ ├── ibm87n10.xml │ │ │ │ │ │ ├── ibm87n11.xml │ │ │ │ │ │ ├── ibm87n12.xml │ │ │ │ │ │ ├── ibm87n13.xml │ │ │ │ │ │ ├── ibm87n14.xml │ │ │ │ │ │ ├── ibm87n15.xml │ │ │ │ │ │ ├── ibm87n16.xml │ │ │ │ │ │ ├── ibm87n17.xml │ │ │ │ │ │ ├── ibm87n18.xml │ │ │ │ │ │ ├── ibm87n19.xml │ │ │ │ │ │ ├── ibm87n20.xml │ │ │ │ │ │ ├── ibm87n21.xml │ │ │ │ │ │ ├── ibm87n22.xml │ │ │ │ │ │ ├── ibm87n23.xml │ │ │ │ │ │ ├── ibm87n24.xml │ │ │ │ │ │ ├── ibm87n25.xml │ │ │ │ │ │ ├── ibm87n26.xml │ │ │ │ │ │ ├── ibm87n27.xml │ │ │ │ │ │ ├── ibm87n28.xml │ │ │ │ │ │ ├── ibm87n29.xml │ │ │ │ │ │ ├── ibm87n30.xml │ │ │ │ │ │ ├── ibm87n31.xml │ │ │ │ │ │ ├── ibm87n32.xml │ │ │ │ │ │ ├── ibm87n33.xml │ │ │ │ │ │ ├── ibm87n34.xml │ │ │ │ │ │ ├── ibm87n35.xml │ │ │ │ │ │ ├── ibm87n36.xml │ │ │ │ │ │ ├── ibm87n37.xml │ │ │ │ │ │ ├── ibm87n38.xml │ │ │ │ │ │ ├── ibm87n39.xml │ │ │ │ │ │ ├── ibm87n40.xml │ │ │ │ │ │ ├── ibm87n41.xml │ │ │ │ │ │ ├── ibm87n42.xml │ │ │ │ │ │ ├── ibm87n43.xml │ │ │ │ │ │ ├── ibm87n44.xml │ │ │ │ │ │ ├── ibm87n45.xml │ │ │ │ │ │ ├── ibm87n46.xml │ │ │ │ │ │ ├── ibm87n47.xml │ │ │ │ │ │ ├── ibm87n48.xml │ │ │ │ │ │ ├── ibm87n49.xml │ │ │ │ │ │ ├── ibm87n50.xml │ │ │ │ │ │ ├── ibm87n51.xml │ │ │ │ │ │ ├── ibm87n52.xml │ │ │ │ │ │ ├── ibm87n53.xml │ │ │ │ │ │ ├── ibm87n54.xml │ │ │ │ │ │ ├── ibm87n55.xml │ │ │ │ │ │ ├── ibm87n56.xml │ │ │ │ │ │ ├── ibm87n57.xml │ │ │ │ │ │ ├── ibm87n58.xml │ │ │ │ │ │ ├── ibm87n59.xml │ │ │ │ │ │ ├── ibm87n60.xml │ │ │ │ │ │ ├── ibm87n61.xml │ │ │ │ │ │ ├── ibm87n62.xml │ │ │ │ │ │ ├── ibm87n63.xml │ │ │ │ │ │ ├── ibm87n64.xml │ │ │ │ │ │ ├── ibm87n66.xml │ │ │ │ │ │ ├── ibm87n67.xml │ │ │ │ │ │ ├── ibm87n68.xml │ │ │ │ │ │ ├── ibm87n69.xml │ │ │ │ │ │ ├── ibm87n70.xml │ │ │ │ │ │ ├── ibm87n71.xml │ │ │ │ │ │ ├── ibm87n72.xml │ │ │ │ │ │ ├── ibm87n73.xml │ │ │ │ │ │ ├── ibm87n74.xml │ │ │ │ │ │ ├── ibm87n75.xml │ │ │ │ │ │ ├── ibm87n76.xml │ │ │ │ │ │ ├── ibm87n77.xml │ │ │ │ │ │ ├── ibm87n78.xml │ │ │ │ │ │ ├── ibm87n79.xml │ │ │ │ │ │ ├── ibm87n80.xml │ │ │ │ │ │ ├── ibm87n81.xml │ │ │ │ │ │ ├── ibm87n82.xml │ │ │ │ │ │ ├── ibm87n83.xml │ │ │ │ │ │ ├── ibm87n84.xml │ │ │ │ │ │ └── ibm87n85.xml │ │ │ │ │ ├── P88 │ │ │ │ │ │ ├── ibm88n01.xml │ │ │ │ │ │ ├── ibm88n02.xml │ │ │ │ │ │ ├── ibm88n03.xml │ │ │ │ │ │ ├── ibm88n04.xml │ │ │ │ │ │ ├── ibm88n05.xml │ │ │ │ │ │ ├── ibm88n06.xml │ │ │ │ │ │ ├── ibm88n08.xml │ │ │ │ │ │ ├── ibm88n09.xml │ │ │ │ │ │ ├── ibm88n10.xml │ │ │ │ │ │ ├── ibm88n11.xml │ │ │ │ │ │ ├── ibm88n12.xml │ │ │ │ │ │ ├── ibm88n13.xml │ │ │ │ │ │ ├── ibm88n14.xml │ │ │ │ │ │ ├── ibm88n15.xml │ │ │ │ │ │ └── ibm88n16.xml │ │ │ │ │ ├── P89 │ │ │ │ │ │ ├── ibm89n01.xml │ │ │ │ │ │ ├── ibm89n02.xml │ │ │ │ │ │ ├── ibm89n03.xml │ │ │ │ │ │ ├── ibm89n04.xml │ │ │ │ │ │ ├── ibm89n05.xml │ │ │ │ │ │ ├── ibm89n06.xml │ │ │ │ │ │ ├── ibm89n07.xml │ │ │ │ │ │ ├── ibm89n08.xml │ │ │ │ │ │ ├── ibm89n09.xml │ │ │ │ │ │ ├── ibm89n10.xml │ │ │ │ │ │ ├── ibm89n11.xml │ │ │ │ │ │ └── ibm89n12.xml │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── 432gewf.xml │ │ │ │ │ │ ├── ltinentval.xml │ │ │ │ │ │ └── simpleltinentval.xml │ │ │ │ │ └── p28a │ │ │ │ │ │ ├── ibm28an01.dtd │ │ │ │ │ │ └── ibm28an01.xml │ │ │ │ ├── valid │ │ │ │ │ ├── P01 │ │ │ │ │ │ ├── ibm01v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm01v01.xml │ │ │ │ │ ├── P02 │ │ │ │ │ │ ├── ibm02v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm02v01.xml │ │ │ │ │ ├── P03 │ │ │ │ │ │ ├── ibm03v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm03v01.xml │ │ │ │ │ ├── P09 │ │ │ │ │ │ ├── ibm09v01.xml │ │ │ │ │ │ ├── ibm09v02.xml │ │ │ │ │ │ ├── ibm09v03.dtd │ │ │ │ │ │ ├── ibm09v03.xml │ │ │ │ │ │ ├── ibm09v04.xml │ │ │ │ │ │ ├── ibm09v05.xml │ │ │ │ │ │ ├── out │ │ │ │ │ │ │ ├── ibm09v01.xml │ │ │ │ │ │ │ ├── ibm09v02.xml │ │ │ │ │ │ │ ├── ibm09v03.xml │ │ │ │ │ │ │ ├── ibm09v04.xml │ │ │ │ │ │ │ └── ibm09v05.xml │ │ │ │ │ │ └── student.dtd │ │ │ │ │ ├── P10 │ │ │ │ │ │ ├── ibm10v01.xml │ │ │ │ │ │ ├── ibm10v02.xml │ │ │ │ │ │ ├── ibm10v03.xml │ │ │ │ │ │ ├── ibm10v04.xml │ │ │ │ │ │ ├── ibm10v05.xml │ │ │ │ │ │ ├── ibm10v06.xml │ │ │ │ │ │ ├── ibm10v07.xml │ │ │ │ │ │ ├── ibm10v08.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm10v01.xml │ │ │ │ │ │ │ ├── ibm10v02.xml │ │ │ │ │ │ │ ├── ibm10v03.xml │ │ │ │ │ │ │ ├── ibm10v04.xml │ │ │ │ │ │ │ ├── ibm10v05.xml │ │ │ │ │ │ │ ├── ibm10v06.xml │ │ │ │ │ │ │ ├── ibm10v07.xml │ │ │ │ │ │ │ └── ibm10v08.xml │ │ │ │ │ ├── P11 │ │ │ │ │ │ ├── ibm11v01.xml │ │ │ │ │ │ ├── ibm11v02.xml │ │ │ │ │ │ ├── ibm11v03.xml │ │ │ │ │ │ ├── ibm11v04.xml │ │ │ │ │ │ ├── out │ │ │ │ │ │ │ ├── ibm11v01.xml │ │ │ │ │ │ │ ├── ibm11v02.xml │ │ │ │ │ │ │ ├── ibm11v03.xml │ │ │ │ │ │ │ └── ibm11v04.xml │ │ │ │ │ │ └── student.dtd │ │ │ │ │ ├── P12 │ │ │ │ │ │ ├── ibm12v01.xml │ │ │ │ │ │ ├── ibm12v02.xml │ │ │ │ │ │ ├── ibm12v03.xml │ │ │ │ │ │ ├── ibm12v04.xml │ │ │ │ │ │ ├── out │ │ │ │ │ │ │ ├── ibm12v01.xml │ │ │ │ │ │ │ ├── ibm12v02.xml │ │ │ │ │ │ │ ├── ibm12v03.xml │ │ │ │ │ │ │ └── ibm12v04.xml │ │ │ │ │ │ └── student.dtd │ │ │ │ │ ├── P13 │ │ │ │ │ │ ├── ibm13v01.xml │ │ │ │ │ │ ├── out │ │ │ │ │ │ │ └── ibm13v01.xml │ │ │ │ │ │ └── student.dtd │ │ │ │ │ ├── P14 │ │ │ │ │ │ ├── ibm14v01.xml │ │ │ │ │ │ ├── ibm14v02.xml │ │ │ │ │ │ ├── ibm14v03.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm14v01.xml │ │ │ │ │ │ │ ├── ibm14v02.xml │ │ │ │ │ │ │ └── ibm14v03.xml │ │ │ │ │ ├── P15 │ │ │ │ │ │ ├── ibm15v01.xml │ │ │ │ │ │ ├── ibm15v02.xml │ │ │ │ │ │ ├── ibm15v03.xml │ │ │ │ │ │ ├── ibm15v04.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm15v01.xml │ │ │ │ │ │ │ ├── ibm15v02.xml │ │ │ │ │ │ │ ├── ibm15v03.xml │ │ │ │ │ │ │ └── ibm15v04.xml │ │ │ │ │ ├── P16 │ │ │ │ │ │ ├── ibm16v01.xml │ │ │ │ │ │ ├── ibm16v02.xml │ │ │ │ │ │ ├── ibm16v03.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm16v01.xml │ │ │ │ │ │ │ ├── ibm16v02.xml │ │ │ │ │ │ │ └── ibm16v03.xml │ │ │ │ │ ├── P17 │ │ │ │ │ │ ├── ibm17v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm17v01.xml │ │ │ │ │ ├── P18 │ │ │ │ │ │ ├── ibm18v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm18v01.xml │ │ │ │ │ ├── P19 │ │ │ │ │ │ ├── ibm19v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm19v01.xml │ │ │ │ │ ├── P20 │ │ │ │ │ │ ├── ibm20v01.xml │ │ │ │ │ │ ├── ibm20v02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm20v01.xml │ │ │ │ │ │ │ └── ibm20v02.xml │ │ │ │ │ ├── P21 │ │ │ │ │ │ ├── ibm21v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm21v01.xml │ │ │ │ │ ├── P22 │ │ │ │ │ │ ├── ibm22v01.xml │ │ │ │ │ │ ├── ibm22v02.xml │ │ │ │ │ │ ├── ibm22v03.xml │ │ │ │ │ │ ├── ibm22v04.xml │ │ │ │ │ │ ├── ibm22v05.xml │ │ │ │ │ │ ├── ibm22v06.xml │ │ │ │ │ │ ├── ibm22v07.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm22v01.xml │ │ │ │ │ │ │ ├── ibm22v02.xml │ │ │ │ │ │ │ ├── ibm22v03.xml │ │ │ │ │ │ │ ├── ibm22v04.xml │ │ │ │ │ │ │ ├── ibm22v05.xml │ │ │ │ │ │ │ ├── ibm22v06.xml │ │ │ │ │ │ │ └── ibm22v07.xml │ │ │ │ │ ├── P23 │ │ │ │ │ │ ├── ibm23v01.xml │ │ │ │ │ │ ├── ibm23v02.xml │ │ │ │ │ │ ├── ibm23v03.xml │ │ │ │ │ │ ├── ibm23v04.xml │ │ │ │ │ │ ├── ibm23v05.xml │ │ │ │ │ │ ├── ibm23v06.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm23v01.xml │ │ │ │ │ │ │ ├── ibm23v02.xml │ │ │ │ │ │ │ ├── ibm23v03.xml │ │ │ │ │ │ │ ├── ibm23v04.xml │ │ │ │ │ │ │ ├── ibm23v05.xml │ │ │ │ │ │ │ └── ibm23v06.xml │ │ │ │ │ ├── P24 │ │ │ │ │ │ ├── ibm24v01.xml │ │ │ │ │ │ ├── ibm24v02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm24v01.xml │ │ │ │ │ │ │ └── ibm24v02.xml │ │ │ │ │ ├── P25 │ │ │ │ │ │ ├── ibm25v01.xml │ │ │ │ │ │ ├── ibm25v02.xml │ │ │ │ │ │ ├── ibm25v03.xml │ │ │ │ │ │ ├── ibm25v04.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm25v01.xml │ │ │ │ │ │ │ ├── ibm25v02.xml │ │ │ │ │ │ │ ├── ibm25v03.xml │ │ │ │ │ │ │ └── ibm25v04.xml │ │ │ │ │ ├── P26 │ │ │ │ │ │ ├── ibm26v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm26v01.xml │ │ │ │ │ ├── P27 │ │ │ │ │ │ ├── ibm27v01.xml │ │ │ │ │ │ ├── ibm27v02.xml │ │ │ │ │ │ ├── ibm27v03.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm27v01.xml │ │ │ │ │ │ │ ├── ibm27v02.xml │ │ │ │ │ │ │ └── ibm27v03.xml │ │ │ │ │ ├── P28 │ │ │ │ │ │ ├── ibm28v01.xml │ │ │ │ │ │ ├── ibm28v02.dtd │ │ │ │ │ │ ├── ibm28v02.txt │ │ │ │ │ │ ├── ibm28v02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm28v01.xml │ │ │ │ │ │ │ └── ibm28v02.xml │ │ │ │ │ ├── P29 │ │ │ │ │ │ ├── ibm29v01.txt │ │ │ │ │ │ ├── ibm29v01.xml │ │ │ │ │ │ ├── ibm29v02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm29v01.xml │ │ │ │ │ │ │ └── ibm29v02.xml │ │ │ │ │ ├── P30 │ │ │ │ │ │ ├── ibm30v01.dtd │ │ │ │ │ │ ├── ibm30v01.xml │ │ │ │ │ │ ├── ibm30v02.dtd │ │ │ │ │ │ ├── ibm30v02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm30v01.xml │ │ │ │ │ │ │ └── ibm30v02.xml │ │ │ │ │ ├── P31 │ │ │ │ │ │ ├── ibm31v01.dtd │ │ │ │ │ │ ├── ibm31v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm31v01.xml │ │ │ │ │ ├── P32 │ │ │ │ │ │ ├── ibm32v01.dtd │ │ │ │ │ │ ├── ibm32v01.xml │ │ │ │ │ │ ├── ibm32v02.dtd │ │ │ │ │ │ ├── ibm32v02.xml │ │ │ │ │ │ ├── ibm32v03.dtd │ │ │ │ │ │ ├── ibm32v03.xml │ │ │ │ │ │ ├── ibm32v04.dtd │ │ │ │ │ │ ├── ibm32v04.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm32v01.xml │ │ │ │ │ │ │ ├── ibm32v02.xml │ │ │ │ │ │ │ ├── ibm32v03.xml │ │ │ │ │ │ │ └── ibm32v04.xml │ │ │ │ │ ├── P33 │ │ │ │ │ │ ├── ibm33v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm33v01.xml │ │ │ │ │ ├── P34 │ │ │ │ │ │ ├── ibm34v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm34v01.xml │ │ │ │ │ ├── P35 │ │ │ │ │ │ ├── ibm35v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm35v01.xml │ │ │ │ │ ├── P36 │ │ │ │ │ │ ├── ibm36v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm36v01.xml │ │ │ │ │ ├── P37 │ │ │ │ │ │ ├── ibm37v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm37v01.xml │ │ │ │ │ ├── P38 │ │ │ │ │ │ ├── ibm38v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm38v01.xml │ │ │ │ │ ├── P39 │ │ │ │ │ │ ├── ibm39v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm39v01.xml │ │ │ │ │ ├── P40 │ │ │ │ │ │ ├── ibm40v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm40v01.xml │ │ │ │ │ ├── P41 │ │ │ │ │ │ ├── ibm41v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm41v01.xml │ │ │ │ │ ├── P42 │ │ │ │ │ │ ├── ibm42v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm42v01.xml │ │ │ │ │ ├── P43 │ │ │ │ │ │ ├── ibm43v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm43v01.xml │ │ │ │ │ ├── P44 │ │ │ │ │ │ ├── ibm44v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm44v01.xml │ │ │ │ │ ├── P45 │ │ │ │ │ │ ├── ibm45v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm45v01.xml │ │ │ │ │ ├── P47 │ │ │ │ │ │ ├── ibm47v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm47v01.xml │ │ │ │ │ ├── P49 │ │ │ │ │ │ ├── ibm49v01.dtd │ │ │ │ │ │ ├── ibm49v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm49v01.xml │ │ │ │ │ ├── P50 │ │ │ │ │ │ ├── ibm50v01.dtd │ │ │ │ │ │ ├── ibm50v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm50v01.xml │ │ │ │ │ ├── P51 │ │ │ │ │ │ ├── ibm51v01.xml │ │ │ │ │ │ ├── ibm51v02.dtd │ │ │ │ │ │ ├── ibm51v02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm51v01.xml │ │ │ │ │ │ │ └── ibm51v02.xml │ │ │ │ │ ├── P52 │ │ │ │ │ │ ├── ibm52v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm52v01.xml │ │ │ │ │ ├── P54 │ │ │ │ │ │ ├── ibm54v01.xml │ │ │ │ │ │ ├── ibm54v02.xml │ │ │ │ │ │ ├── ibm54v03.xml │ │ │ │ │ │ ├── ibmlogo.gif │ │ │ │ │ │ ├── out │ │ │ │ │ │ │ ├── ibm54v01.xml │ │ │ │ │ │ │ ├── ibm54v02.xml │ │ │ │ │ │ │ └── ibm54v03.xml │ │ │ │ │ │ └── xmltech.gif │ │ │ │ │ ├── P55 │ │ │ │ │ │ ├── ibm55v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm55v01.xml │ │ │ │ │ ├── P56 │ │ │ │ │ │ ├── ibm56v01.xml │ │ │ │ │ │ ├── ibm56v02.xml │ │ │ │ │ │ ├── ibm56v03.xml │ │ │ │ │ │ ├── ibm56v04.xml │ │ │ │ │ │ ├── ibm56v05.xml │ │ │ │ │ │ ├── ibm56v06.xml │ │ │ │ │ │ ├── ibm56v07.xml │ │ │ │ │ │ ├── ibm56v08.xml │ │ │ │ │ │ ├── ibm56v09.xml │ │ │ │ │ │ ├── ibm56v10.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm56v01.xml │ │ │ │ │ │ │ ├── ibm56v02.xml │ │ │ │ │ │ │ ├── ibm56v03.xml │ │ │ │ │ │ │ ├── ibm56v04.xml │ │ │ │ │ │ │ ├── ibm56v05.xml │ │ │ │ │ │ │ ├── ibm56v06.xml │ │ │ │ │ │ │ ├── ibm56v07.xml │ │ │ │ │ │ │ ├── ibm56v08.xml │ │ │ │ │ │ │ ├── ibm56v09.xml │ │ │ │ │ │ │ └── ibm56v10.xml │ │ │ │ │ ├── P57 │ │ │ │ │ │ ├── ibm57v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm57v01.xml │ │ │ │ │ ├── P58 │ │ │ │ │ │ ├── ibm58v01.xml │ │ │ │ │ │ ├── ibm58v02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm58v01.xml │ │ │ │ │ │ │ └── ibm58v02.xml │ │ │ │ │ ├── P59 │ │ │ │ │ │ ├── ibm59v01.xml │ │ │ │ │ │ ├── ibm59v02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm59v01.xml │ │ │ │ │ │ │ └── ibm59v02.xml │ │ │ │ │ ├── P60 │ │ │ │ │ │ ├── ibm60v01.xml │ │ │ │ │ │ ├── ibm60v02.xml │ │ │ │ │ │ ├── ibm60v03.xml │ │ │ │ │ │ ├── ibm60v04.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm60v01.xml │ │ │ │ │ │ │ ├── ibm60v02.xml │ │ │ │ │ │ │ ├── ibm60v03.xml │ │ │ │ │ │ │ └── ibm60v04.xml │ │ │ │ │ ├── P61 │ │ │ │ │ │ ├── ibm61v01.dtd │ │ │ │ │ │ ├── ibm61v01.xml │ │ │ │ │ │ ├── ibm61v02.dtd │ │ │ │ │ │ ├── ibm61v02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm61v01.xml │ │ │ │ │ │ │ └── ibm61v02.xml │ │ │ │ │ ├── P62 │ │ │ │ │ │ ├── ibm62v01.dtd │ │ │ │ │ │ ├── ibm62v01.xml │ │ │ │ │ │ ├── ibm62v02.dtd │ │ │ │ │ │ ├── ibm62v02.xml │ │ │ │ │ │ ├── ibm62v03.dtd │ │ │ │ │ │ ├── ibm62v03.xml │ │ │ │ │ │ ├── ibm62v04.dtd │ │ │ │ │ │ ├── ibm62v04.xml │ │ │ │ │ │ ├── ibm62v05.dtd │ │ │ │ │ │ ├── ibm62v05.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm62v01.xml │ │ │ │ │ │ │ ├── ibm62v02.xml │ │ │ │ │ │ │ ├── ibm62v03.xml │ │ │ │ │ │ │ ├── ibm62v04.xml │ │ │ │ │ │ │ └── ibm62v05.xml │ │ │ │ │ ├── P63 │ │ │ │ │ │ ├── ibm63v01.dtd │ │ │ │ │ │ ├── ibm63v01.xml │ │ │ │ │ │ ├── ibm63v02.dtd │ │ │ │ │ │ ├── ibm63v02.xml │ │ │ │ │ │ ├── ibm63v03.dtd │ │ │ │ │ │ ├── ibm63v03.xml │ │ │ │ │ │ ├── ibm63v04.dtd │ │ │ │ │ │ ├── ibm63v04.xml │ │ │ │ │ │ ├── ibm63v05.dtd │ │ │ │ │ │ ├── ibm63v05.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm63v01.xml │ │ │ │ │ │ │ ├── ibm63v02.xml │ │ │ │ │ │ │ ├── ibm63v03.xml │ │ │ │ │ │ │ ├── ibm63v04.xml │ │ │ │ │ │ │ └── ibm63v05.xml │ │ │ │ │ ├── P64 │ │ │ │ │ │ ├── ibm64v01.dtd │ │ │ │ │ │ ├── ibm64v01.xml │ │ │ │ │ │ ├── ibm64v02.dtd │ │ │ │ │ │ ├── ibm64v02.xml │ │ │ │ │ │ ├── ibm64v03.dtd │ │ │ │ │ │ ├── ibm64v03.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm64v01.xml │ │ │ │ │ │ │ ├── ibm64v02.xml │ │ │ │ │ │ │ └── ibm64v03.xml │ │ │ │ │ ├── P65 │ │ │ │ │ │ ├── ibm65v01.dtd │ │ │ │ │ │ ├── ibm65v01.xml │ │ │ │ │ │ ├── ibm65v02.dtd │ │ │ │ │ │ ├── ibm65v02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm65v01.xml │ │ │ │ │ │ │ └── ibm65v02.xml │ │ │ │ │ ├── P66 │ │ │ │ │ │ ├── ibm66v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm66v01.xml │ │ │ │ │ ├── P67 │ │ │ │ │ │ ├── ibm67v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm67v01.xml │ │ │ │ │ ├── P68 │ │ │ │ │ │ ├── ibm68v01.dtd │ │ │ │ │ │ ├── ibm68v01.xml │ │ │ │ │ │ ├── ibm68v02.ent │ │ │ │ │ │ ├── ibm68v02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm68v01.xml │ │ │ │ │ │ │ └── ibm68v02.xml │ │ │ │ │ ├── P69 │ │ │ │ │ │ ├── ibm69v01.dtd │ │ │ │ │ │ ├── ibm69v01.xml │ │ │ │ │ │ ├── ibm69v02.ent │ │ │ │ │ │ ├── ibm69v02.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ ├── ibm69v01.xml │ │ │ │ │ │ │ └── ibm69v02.xml │ │ │ │ │ ├── P70 │ │ │ │ │ │ ├── ibm70v01.ent │ │ │ │ │ │ ├── ibm70v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm70v01.xml │ │ │ │ │ ├── P78 │ │ │ │ │ │ ├── ibm78v01.ent │ │ │ │ │ │ ├── ibm78v01.xml │ │ │ │ │ │ ├── ibm78v02.ent │ │ │ │ │ │ ├── ibm78v03.ent │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm78v01.xml │ │ │ │ │ ├── P79 │ │ │ │ │ │ ├── ibm79v01.ent │ │ │ │ │ │ ├── ibm79v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm79v01.xml │ │ │ │ │ ├── P82 │ │ │ │ │ │ ├── ibm82v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm82v01.xml │ │ │ │ │ ├── P85 │ │ │ │ │ │ ├── ibm85v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm85v01.xml │ │ │ │ │ ├── P86 │ │ │ │ │ │ ├── ibm86v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm86v01.xml │ │ │ │ │ ├── P87 │ │ │ │ │ │ ├── ibm87v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm87v01.xml │ │ │ │ │ ├── P88 │ │ │ │ │ │ ├── ibm88v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── ibm88v01.xml │ │ │ │ │ └── P89 │ │ │ │ │ │ ├── ibm89v01.xml │ │ │ │ │ │ └── out │ │ │ │ │ │ └── ibm89v01.xml │ │ │ │ └── xml-1.1 │ │ │ │ │ ├── ibm_invalid.xml │ │ │ │ │ ├── ibm_not-wf.xml │ │ │ │ │ ├── ibm_valid.xml │ │ │ │ │ ├── invalid │ │ │ │ │ └── P46 │ │ │ │ │ │ ├── ibm46i01.xml │ │ │ │ │ │ └── ibm46i02.xml │ │ │ │ │ ├── not-wf │ │ │ │ │ ├── P02 │ │ │ │ │ │ ├── ibm02n01.xml │ │ │ │ │ │ ├── ibm02n02.xml │ │ │ │ │ │ ├── ibm02n03.xml │ │ │ │ │ │ ├── ibm02n04.xml │ │ │ │ │ │ ├── ibm02n05.xml │ │ │ │ │ │ ├── ibm02n06.xml │ │ │ │ │ │ ├── ibm02n07.xml │ │ │ │ │ │ ├── ibm02n08.xml │ │ │ │ │ │ ├── ibm02n09.xml │ │ │ │ │ │ ├── ibm02n10.xml │ │ │ │ │ │ ├── ibm02n11.xml │ │ │ │ │ │ ├── ibm02n12.xml │ │ │ │ │ │ ├── ibm02n13.xml │ │ │ │ │ │ ├── ibm02n14.xml │ │ │ │ │ │ ├── ibm02n15.xml │ │ │ │ │ │ ├── ibm02n16.xml │ │ │ │ │ │ ├── ibm02n17.xml │ │ │ │ │ │ ├── ibm02n18.xml │ │ │ │ │ │ ├── ibm02n19.xml │ │ │ │ │ │ ├── ibm02n20.xml │ │ │ │ │ │ ├── ibm02n21.xml │ │ │ │ │ │ ├── ibm02n22.xml │ │ │ │ │ │ ├── ibm02n23.xml │ │ │ │ │ │ ├── ibm02n24.xml │ │ │ │ │ │ ├── ibm02n25.xml │ │ │ │ │ │ ├── ibm02n26.xml │ │ │ │ │ │ ├── ibm02n27.xml │ │ │ │ │ │ ├── ibm02n28.xml │ │ │ │ │ │ ├── ibm02n29.xml │ │ │ │ │ │ ├── ibm02n30.xml │ │ │ │ │ │ ├── ibm02n31.xml │ │ │ │ │ │ ├── ibm02n32.xml │ │ │ │ │ │ ├── ibm02n33.xml │ │ │ │ │ │ ├── ibm02n34.xml │ │ │ │ │ │ ├── ibm02n35.xml │ │ │ │ │ │ ├── ibm02n36.xml │ │ │ │ │ │ ├── ibm02n37.xml │ │ │ │ │ │ ├── ibm02n38.xml │ │ │ │ │ │ ├── ibm02n39.xml │ │ │ │ │ │ ├── ibm02n40.xml │ │ │ │ │ │ ├── ibm02n41.xml │ │ │ │ │ │ ├── ibm02n42.xml │ │ │ │ │ │ ├── ibm02n43.xml │ │ │ │ │ │ ├── ibm02n44.xml │ │ │ │ │ │ ├── ibm02n45.xml │ │ │ │ │ │ ├── ibm02n46.xml │ │ │ │ │ │ ├── ibm02n47.xml │ │ │ │ │ │ ├── ibm02n48.xml │ │ │ │ │ │ ├── ibm02n49.xml │ │ │ │ │ │ ├── ibm02n50.xml │ │ │ │ │ │ ├── ibm02n51.xml │ │ │ │ │ │ ├── ibm02n52.xml │ │ │ │ │ │ ├── ibm02n53.xml │ │ │ │ │ │ ├── ibm02n54.xml │ │ │ │ │ │ ├── ibm02n55.xml │ │ │ │ │ │ ├── ibm02n56.xml │ │ │ │ │ │ ├── ibm02n57.xml │ │ │ │ │ │ ├── ibm02n58.xml │ │ │ │ │ │ ├── ibm02n59.xml │ │ │ │ │ │ ├── ibm02n60.xml │ │ │ │ │ │ ├── ibm02n61.xml │ │ │ │ │ │ ├── ibm02n62.xml │ │ │ │ │ │ ├── ibm02n63.xml │ │ │ │ │ │ ├── ibm02n64.ent │ │ │ │ │ │ ├── ibm02n64.xml │ │ │ │ │ │ ├── ibm02n65.ent │ │ │ │ │ │ ├── ibm02n65.xml │ │ │ │ │ │ ├── ibm02n66.ent │ │ │ │ │ │ ├── ibm02n66.xml │ │ │ │ │ │ ├── ibm02n67.xml │ │ │ │ │ │ ├── ibm02n68.xml │ │ │ │ │ │ ├── ibm02n69.xml │ │ │ │ │ │ ├── ibm02n70.xml │ │ │ │ │ │ └── ibm02n71.xml │ │ │ │ │ ├── P04 │ │ │ │ │ │ ├── ibm04n01.xml │ │ │ │ │ │ ├── ibm04n02.xml │ │ │ │ │ │ ├── ibm04n03.xml │ │ │ │ │ │ ├── ibm04n04.xml │ │ │ │ │ │ ├── ibm04n05.xml │ │ │ │ │ │ ├── ibm04n06.xml │ │ │ │ │ │ ├── ibm04n07.xml │ │ │ │ │ │ ├── ibm04n08.xml │ │ │ │ │ │ ├── ibm04n09.xml │ │ │ │ │ │ ├── ibm04n10.xml │ │ │ │ │ │ ├── ibm04n11.xml │ │ │ │ │ │ ├── ibm04n12.xml │ │ │ │ │ │ ├── ibm04n13.xml │ │ │ │ │ │ ├── ibm04n14.xml │ │ │ │ │ │ ├── ibm04n15.xml │ │ │ │ │ │ ├── ibm04n16.xml │ │ │ │ │ │ ├── ibm04n17.xml │ │ │ │ │ │ ├── ibm04n18.xml │ │ │ │ │ │ ├── ibm04n19.xml │ │ │ │ │ │ ├── ibm04n20.xml │ │ │ │ │ │ ├── ibm04n21.xml │ │ │ │ │ │ ├── ibm04n22.xml │ │ │ │ │ │ ├── ibm04n23.xml │ │ │ │ │ │ ├── ibm04n24.xml │ │ │ │ │ │ ├── ibm04n25.xml │ │ │ │ │ │ ├── ibm04n26.xml │ │ │ │ │ │ ├── ibm04n27.xml │ │ │ │ │ │ └── ibm04n28.xml │ │ │ │ │ ├── P04a │ │ │ │ │ │ ├── ibm04an01.xml │ │ │ │ │ │ ├── ibm04an02.xml │ │ │ │ │ │ ├── ibm04an03.xml │ │ │ │ │ │ ├── ibm04an04.xml │ │ │ │ │ │ ├── ibm04an05.xml │ │ │ │ │ │ ├── ibm04an06.xml │ │ │ │ │ │ ├── ibm04an07.xml │ │ │ │ │ │ ├── ibm04an08.xml │ │ │ │ │ │ ├── ibm04an09.xml │ │ │ │ │ │ ├── ibm04an10.xml │ │ │ │ │ │ ├── ibm04an11.xml │ │ │ │ │ │ ├── ibm04an12.xml │ │ │ │ │ │ ├── ibm04an13.xml │ │ │ │ │ │ ├── ibm04an14.xml │ │ │ │ │ │ ├── ibm04an15.xml │ │ │ │ │ │ ├── ibm04an16.xml │ │ │ │ │ │ ├── ibm04an17.xml │ │ │ │ │ │ ├── ibm04an18.xml │ │ │ │ │ │ ├── ibm04an19.xml │ │ │ │ │ │ ├── ibm04an20.xml │ │ │ │ │ │ ├── ibm04an21.xml │ │ │ │ │ │ ├── ibm04an22.xml │ │ │ │ │ │ ├── ibm04an23.xml │ │ │ │ │ │ ├── ibm04an24.xml │ │ │ │ │ │ ├── ibm04an25.xml │ │ │ │ │ │ ├── ibm04an26.xml │ │ │ │ │ │ ├── ibm04an27.xml │ │ │ │ │ │ └── ibm04an28.xml │ │ │ │ │ ├── P05 │ │ │ │ │ │ ├── ibm05n01.xml │ │ │ │ │ │ ├── ibm05n02.xml │ │ │ │ │ │ ├── ibm05n03.xml │ │ │ │ │ │ ├── ibm05n04.xml │ │ │ │ │ │ ├── ibm05n05.xml │ │ │ │ │ │ └── ibm05n06.xml │ │ │ │ │ └── P77 │ │ │ │ │ │ ├── ibm77n01.dtd │ │ │ │ │ │ ├── ibm77n01.xml │ │ │ │ │ │ ├── ibm77n02.dtd │ │ │ │ │ │ ├── ibm77n02.xml │ │ │ │ │ │ ├── ibm77n03.dtd │ │ │ │ │ │ ├── ibm77n03.xml │ │ │ │ │ │ ├── ibm77n04.ent │ │ │ │ │ │ ├── ibm77n04.xml │ │ │ │ │ │ ├── ibm77n05.ent │ │ │ │ │ │ ├── ibm77n05.xml │ │ │ │ │ │ ├── ibm77n06.ent │ │ │ │ │ │ ├── ibm77n06.xml │ │ │ │ │ │ ├── ibm77n07.dtd │ │ │ │ │ │ ├── ibm77n07.xml │ │ │ │ │ │ ├── ibm77n08.dtd │ │ │ │ │ │ ├── ibm77n08.xml │ │ │ │ │ │ ├── ibm77n09.dtd │ │ │ │ │ │ ├── ibm77n09.xml │ │ │ │ │ │ ├── ibm77n10.ent │ │ │ │ │ │ ├── ibm77n10.xml │ │ │ │ │ │ ├── ibm77n11.ent │ │ │ │ │ │ ├── ibm77n11.xml │ │ │ │ │ │ ├── ibm77n12.ent │ │ │ │ │ │ ├── ibm77n12.xml │ │ │ │ │ │ ├── ibm77n13.dtd │ │ │ │ │ │ ├── ibm77n13.ent │ │ │ │ │ │ ├── ibm77n13.xml │ │ │ │ │ │ ├── ibm77n14.dtd │ │ │ │ │ │ ├── ibm77n14.xml │ │ │ │ │ │ ├── ibm77n15.dtd │ │ │ │ │ │ ├── ibm77n15.ent │ │ │ │ │ │ ├── ibm77n15.xml │ │ │ │ │ │ ├── ibm77n16.ent │ │ │ │ │ │ ├── ibm77n16.xml │ │ │ │ │ │ ├── ibm77n17.ent │ │ │ │ │ │ ├── ibm77n17.xml │ │ │ │ │ │ ├── ibm77n18.ent │ │ │ │ │ │ ├── ibm77n18.xml │ │ │ │ │ │ ├── ibm77n19.dtd │ │ │ │ │ │ ├── ibm77n19.ent │ │ │ │ │ │ ├── ibm77n19.xml │ │ │ │ │ │ ├── ibm77n20.dtd │ │ │ │ │ │ ├── ibm77n20.ent │ │ │ │ │ │ ├── ibm77n20.xml │ │ │ │ │ │ ├── ibm77n21.dtd │ │ │ │ │ │ ├── ibm77n21.ent │ │ │ │ │ │ └── ibm77n21.xml │ │ │ │ │ └── valid │ │ │ │ │ ├── P02 │ │ │ │ │ ├── ibm02v01.xml │ │ │ │ │ ├── ibm02v02.xml │ │ │ │ │ ├── ibm02v03.xml │ │ │ │ │ ├── ibm02v04.xml │ │ │ │ │ ├── ibm02v05.xml │ │ │ │ │ ├── ibm02v06.ent │ │ │ │ │ └── ibm02v06.xml │ │ │ │ │ ├── P03 │ │ │ │ │ ├── ibm03v01.ent │ │ │ │ │ ├── ibm03v01.xml │ │ │ │ │ ├── ibm03v02.ent │ │ │ │ │ ├── ibm03v02.xml │ │ │ │ │ ├── ibm03v03.ent │ │ │ │ │ ├── ibm03v03.xml │ │ │ │ │ ├── ibm03v04.ent │ │ │ │ │ ├── ibm03v04.xml │ │ │ │ │ ├── ibm03v05.xml │ │ │ │ │ ├── ibm03v06.xml │ │ │ │ │ ├── ibm03v07.xml │ │ │ │ │ ├── ibm03v08.xml │ │ │ │ │ ├── ibm03v09.ent │ │ │ │ │ ├── ibm03v09.xml │ │ │ │ │ └── out │ │ │ │ │ │ ├── ibm03v01.xml │ │ │ │ │ │ ├── ibm03v02.xml │ │ │ │ │ │ ├── ibm03v03.xml │ │ │ │ │ │ ├── ibm03v04.xml │ │ │ │ │ │ ├── ibm03v05.xml │ │ │ │ │ │ ├── ibm03v06.xml │ │ │ │ │ │ ├── ibm03v07.xml │ │ │ │ │ │ ├── ibm03v08.xml │ │ │ │ │ │ └── ibm03v09.xml │ │ │ │ │ ├── P04 │ │ │ │ │ └── ibm04v01.xml │ │ │ │ │ ├── P04a │ │ │ │ │ └── ibm04av01.xml │ │ │ │ │ ├── P05 │ │ │ │ │ ├── ibm05v01.xml │ │ │ │ │ ├── ibm05v02.xml │ │ │ │ │ ├── ibm05v03.xml │ │ │ │ │ ├── ibm05v04.xml │ │ │ │ │ └── ibm05v05.xml │ │ │ │ │ ├── P07 │ │ │ │ │ └── ibm07v01.xml │ │ │ │ │ └── P77 │ │ │ │ │ ├── ibm77v01.dtd │ │ │ │ │ ├── ibm77v01.xml │ │ │ │ │ ├── ibm77v02.dtd │ │ │ │ │ ├── ibm77v02.xml │ │ │ │ │ ├── ibm77v03.dtd │ │ │ │ │ ├── ibm77v03.xml │ │ │ │ │ ├── ibm77v04.ent │ │ │ │ │ ├── ibm77v04.xml │ │ │ │ │ ├── ibm77v05.ent │ │ │ │ │ ├── ibm77v05.xml │ │ │ │ │ ├── ibm77v06.ent │ │ │ │ │ ├── ibm77v06.xml │ │ │ │ │ ├── ibm77v07.dtd │ │ │ │ │ ├── ibm77v07.xml │ │ │ │ │ ├── ibm77v08.dtd │ │ │ │ │ ├── ibm77v08.xml │ │ │ │ │ ├── ibm77v09.dtd │ │ │ │ │ ├── ibm77v09.xml │ │ │ │ │ ├── ibm77v10.ent │ │ │ │ │ ├── ibm77v10.xml │ │ │ │ │ ├── ibm77v11.ent │ │ │ │ │ ├── ibm77v11.xml │ │ │ │ │ ├── ibm77v12.ent │ │ │ │ │ ├── ibm77v12.xml │ │ │ │ │ ├── ibm77v13.dtd │ │ │ │ │ ├── ibm77v13.xml │ │ │ │ │ ├── ibm77v14.dtd │ │ │ │ │ ├── ibm77v14.xml │ │ │ │ │ ├── ibm77v15.dtd │ │ │ │ │ ├── ibm77v15.xml │ │ │ │ │ ├── ibm77v16.ent │ │ │ │ │ ├── ibm77v16.xml │ │ │ │ │ ├── ibm77v17.ent │ │ │ │ │ ├── ibm77v17.xml │ │ │ │ │ ├── ibm77v18.ent │ │ │ │ │ ├── ibm77v18.xml │ │ │ │ │ ├── ibm77v19.dtd │ │ │ │ │ ├── ibm77v19.xml │ │ │ │ │ ├── ibm77v20.dtd │ │ │ │ │ ├── ibm77v20.xml │ │ │ │ │ ├── ibm77v21.dtd │ │ │ │ │ ├── ibm77v21.xml │ │ │ │ │ ├── ibm77v22.ent │ │ │ │ │ ├── ibm77v22.xml │ │ │ │ │ ├── ibm77v23.ent │ │ │ │ │ ├── ibm77v23.xml │ │ │ │ │ ├── ibm77v24.ent │ │ │ │ │ ├── ibm77v24.xml │ │ │ │ │ ├── ibm77v25.dtd │ │ │ │ │ ├── ibm77v25.xml │ │ │ │ │ ├── ibm77v26.dtd │ │ │ │ │ ├── ibm77v26.xml │ │ │ │ │ ├── ibm77v27.dtd │ │ │ │ │ ├── ibm77v27.xml │ │ │ │ │ ├── ibm77v28.ent │ │ │ │ │ ├── ibm77v28.xml │ │ │ │ │ ├── ibm77v29.ent │ │ │ │ │ ├── ibm77v29.xml │ │ │ │ │ ├── ibm77v30.ent │ │ │ │ │ └── ibm77v30.xml │ │ │ ├── japanese │ │ │ │ ├── japanese.xml │ │ │ │ ├── pr-xml-euc-jp.xml │ │ │ │ ├── pr-xml-iso-2022-jp.xml │ │ │ │ ├── pr-xml-little-endian.xml │ │ │ │ ├── pr-xml-shift_jis.xml │ │ │ │ ├── pr-xml-utf-16.xml │ │ │ │ ├── pr-xml-utf-8.xml │ │ │ │ ├── spec.dtd │ │ │ │ ├── weekly-euc-jp.dtd │ │ │ │ ├── weekly-euc-jp.xml │ │ │ │ ├── weekly-iso-2022-jp.dtd │ │ │ │ ├── weekly-iso-2022-jp.xml │ │ │ │ ├── weekly-little-endian.xml │ │ │ │ ├── weekly-shift_jis.dtd │ │ │ │ ├── weekly-shift_jis.xml │ │ │ │ ├── weekly-utf-16.dtd │ │ │ │ ├── weekly-utf-16.xml │ │ │ │ ├── weekly-utf-8.dtd │ │ │ │ └── weekly-utf-8.xml │ │ │ ├── oasis │ │ │ │ ├── e2.xml │ │ │ │ ├── oasis.xml │ │ │ │ ├── p01fail1.xml │ │ │ │ ├── p01fail2.xml │ │ │ │ ├── p01fail3.xml │ │ │ │ ├── p01fail4.xml │ │ │ │ ├── p01pass1.xml │ │ │ │ ├── p01pass2.xml │ │ │ │ ├── p01pass3.xml │ │ │ │ ├── p02fail1.xml │ │ │ │ ├── p02fail10.xml │ │ │ │ ├── p02fail11.xml │ │ │ │ ├── p02fail12.xml │ │ │ │ ├── p02fail13.xml │ │ │ │ ├── p02fail14.xml │ │ │ │ ├── p02fail15.xml │ │ │ │ ├── p02fail16.xml │ │ │ │ ├── p02fail17.xml │ │ │ │ ├── p02fail18.xml │ │ │ │ ├── p02fail19.xml │ │ │ │ ├── p02fail2.xml │ │ │ │ ├── p02fail20.xml │ │ │ │ ├── p02fail21.xml │ │ │ │ ├── p02fail22.xml │ │ │ │ ├── p02fail23.xml │ │ │ │ ├── p02fail24.xml │ │ │ │ ├── p02fail25.xml │ │ │ │ ├── p02fail26.xml │ │ │ │ ├── p02fail27.xml │ │ │ │ ├── p02fail28.xml │ │ │ │ ├── p02fail29.xml │ │ │ │ ├── p02fail3.xml │ │ │ │ ├── p02fail30.xml │ │ │ │ ├── p02fail31.xml │ │ │ │ ├── p02fail4.xml │ │ │ │ ├── p02fail5.xml │ │ │ │ ├── p02fail6.xml │ │ │ │ ├── p02fail7.xml │ │ │ │ ├── p02fail8.xml │ │ │ │ ├── p02fail9.xml │ │ │ │ ├── p03fail1.xml │ │ │ │ ├── p03fail10.xml │ │ │ │ ├── p03fail11.xml │ │ │ │ ├── p03fail12.xml │ │ │ │ ├── p03fail13.xml │ │ │ │ ├── p03fail14.xml │ │ │ │ ├── p03fail15.xml │ │ │ │ ├── p03fail16.xml │ │ │ │ ├── p03fail17.xml │ │ │ │ ├── p03fail18.xml │ │ │ │ ├── p03fail19.xml │ │ │ │ ├── p03fail2.xml │ │ │ │ ├── p03fail20.xml │ │ │ │ ├── p03fail21.xml │ │ │ │ ├── p03fail22.xml │ │ │ │ ├── p03fail23.xml │ │ │ │ ├── p03fail24.xml │ │ │ │ ├── p03fail25.xml │ │ │ │ ├── p03fail26.xml │ │ │ │ ├── p03fail27.xml │ │ │ │ ├── p03fail28.xml │ │ │ │ ├── p03fail29.xml │ │ │ │ ├── p03fail3.xml │ │ │ │ ├── p03fail4.xml │ │ │ │ ├── p03fail5.xml │ │ │ │ ├── p03fail7.xml │ │ │ │ ├── p03fail8.xml │ │ │ │ ├── p03fail9.xml │ │ │ │ ├── p03pass1.xml │ │ │ │ ├── p04fail1.xml │ │ │ │ ├── p04fail2.xml │ │ │ │ ├── p04fail3.xml │ │ │ │ ├── p04pass1.xml │ │ │ │ ├── p05fail1.xml │ │ │ │ ├── p05fail2.xml │ │ │ │ ├── p05fail3.xml │ │ │ │ ├── p05fail4.xml │ │ │ │ ├── p05fail5.xml │ │ │ │ ├── p05pass1.xml │ │ │ │ ├── p06fail1.xml │ │ │ │ ├── p06pass1.xml │ │ │ │ ├── p07pass1.xml │ │ │ │ ├── p08fail1.xml │ │ │ │ ├── p08fail2.xml │ │ │ │ ├── p08pass1.xml │ │ │ │ ├── p09fail1.dtd │ │ │ │ ├── p09fail1.xml │ │ │ │ ├── p09fail2.dtd │ │ │ │ ├── p09fail2.xml │ │ │ │ ├── p09fail3.xml │ │ │ │ ├── p09fail4.xml │ │ │ │ ├── p09fail5.xml │ │ │ │ ├── p09pass1.dtd │ │ │ │ ├── p09pass1.xml │ │ │ │ ├── p10fail1.xml │ │ │ │ ├── p10fail2.xml │ │ │ │ ├── p10fail3.xml │ │ │ │ ├── p10pass1.xml │ │ │ │ ├── p11fail1.xml │ │ │ │ ├── p11fail2.xml │ │ │ │ ├── p11pass1.xml │ │ │ │ ├── p12fail1.xml │ │ │ │ ├── p12fail2.xml │ │ │ │ ├── p12fail3.xml │ │ │ │ ├── p12fail4.xml │ │ │ │ ├── p12fail5.xml │ │ │ │ ├── p12fail6.xml │ │ │ │ ├── p12fail7.xml │ │ │ │ ├── p12pass1.xml │ │ │ │ ├── p14fail1.xml │ │ │ │ ├── p14fail2.xml │ │ │ │ ├── p14fail3.xml │ │ │ │ ├── p14pass1.xml │ │ │ │ ├── p15fail1.xml │ │ │ │ ├── p15fail2.xml │ │ │ │ ├── p15fail3.xml │ │ │ │ ├── p15pass1.xml │ │ │ │ ├── p16fail1.xml │ │ │ │ ├── p16fail2.xml │ │ │ │ ├── p16fail3.xml │ │ │ │ ├── p16pass1.xml │ │ │ │ ├── p16pass2.xml │ │ │ │ ├── p16pass3.xml │ │ │ │ ├── p18fail1.xml │ │ │ │ ├── p18fail2.xml │ │ │ │ ├── p18fail3.xml │ │ │ │ ├── p18pass1.xml │ │ │ │ ├── p22fail1.xml │ │ │ │ ├── p22fail2.xml │ │ │ │ ├── p22pass1.xml │ │ │ │ ├── p22pass2.xml │ │ │ │ ├── p22pass3.xml │ │ │ │ ├── p22pass4.xml │ │ │ │ ├── p22pass5.xml │ │ │ │ ├── p22pass6.xml │ │ │ │ ├── p23fail1.xml │ │ │ │ ├── p23fail2.xml │ │ │ │ ├── p23fail3.xml │ │ │ │ ├── p23fail4.xml │ │ │ │ ├── p23fail5.xml │ │ │ │ ├── p23pass1.xml │ │ │ │ ├── p23pass2.xml │ │ │ │ ├── p23pass3.xml │ │ │ │ ├── p23pass4.xml │ │ │ │ ├── p24fail1.xml │ │ │ │ ├── p24fail2.xml │ │ │ │ ├── p24pass1.xml │ │ │ │ ├── p24pass2.xml │ │ │ │ ├── p24pass3.xml │ │ │ │ ├── p24pass4.xml │ │ │ │ ├── p25fail1.xml │ │ │ │ ├── p25pass1.xml │ │ │ │ ├── p25pass2.xml │ │ │ │ ├── p26fail1.xml │ │ │ │ ├── p26fail2.xml │ │ │ │ ├── p26pass1.xml │ │ │ │ ├── p27fail1.xml │ │ │ │ ├── p27pass1.xml │ │ │ │ ├── p27pass2.xml │ │ │ │ ├── p27pass3.xml │ │ │ │ ├── p27pass4.xml │ │ │ │ ├── p28fail1.xml │ │ │ │ ├── p28pass1.xml │ │ │ │ ├── p28pass2.xml │ │ │ │ ├── p28pass3.xml │ │ │ │ ├── p28pass4.dtd │ │ │ │ ├── p28pass4.xml │ │ │ │ ├── p28pass5.dtd │ │ │ │ ├── p28pass5.xml │ │ │ │ ├── p29fail1.xml │ │ │ │ ├── p29pass1.xml │ │ │ │ ├── p30fail1.dtd │ │ │ │ ├── p30fail1.xml │ │ │ │ ├── p30pass1.dtd │ │ │ │ ├── p30pass1.xml │ │ │ │ ├── p30pass2.dtd │ │ │ │ ├── p30pass2.xml │ │ │ │ ├── p31fail1.dtd │ │ │ │ ├── p31fail1.xml │ │ │ │ ├── p31pass1.dtd │ │ │ │ ├── p31pass1.xml │ │ │ │ ├── p31pass2.dtd │ │ │ │ ├── p31pass2.xml │ │ │ │ ├── p32fail1.xml │ │ │ │ ├── p32fail2.xml │ │ │ │ ├── p32fail3.xml │ │ │ │ ├── p32fail4.xml │ │ │ │ ├── p32fail5.xml │ │ │ │ ├── p32pass1.xml │ │ │ │ ├── p32pass2.xml │ │ │ │ ├── p39fail1.xml │ │ │ │ ├── p39fail2.xml │ │ │ │ ├── p39fail3.xml │ │ │ │ ├── p39fail4.xml │ │ │ │ ├── p39fail5.xml │ │ │ │ ├── p39pass1.xml │ │ │ │ ├── p39pass2.xml │ │ │ │ ├── p40fail1.xml │ │ │ │ ├── p40fail2.xml │ │ │ │ ├── p40fail3.xml │ │ │ │ ├── p40fail4.xml │ │ │ │ ├── p40pass1.xml │ │ │ │ ├── p40pass2.xml │ │ │ │ ├── p40pass3.xml │ │ │ │ ├── p40pass4.xml │ │ │ │ ├── p41fail1.xml │ │ │ │ ├── p41fail2.xml │ │ │ │ ├── p41fail3.xml │ │ │ │ ├── p41pass1.xml │ │ │ │ ├── p41pass2.xml │ │ │ │ ├── p42fail1.xml │ │ │ │ ├── p42fail2.xml │ │ │ │ ├── p42fail3.xml │ │ │ │ ├── p42pass1.xml │ │ │ │ ├── p42pass2.xml │ │ │ │ ├── p43fail1.xml │ │ │ │ ├── p43fail2.xml │ │ │ │ ├── p43fail3.xml │ │ │ │ ├── p43pass1.xml │ │ │ │ ├── p44fail1.xml │ │ │ │ ├── p44fail2.xml │ │ │ │ ├── p44fail3.xml │ │ │ │ ├── p44fail4.xml │ │ │ │ ├── p44fail5.xml │ │ │ │ ├── p44pass1.xml │ │ │ │ ├── p44pass2.xml │ │ │ │ ├── p44pass3.xml │ │ │ │ ├── p44pass4.xml │ │ │ │ ├── p44pass5.xml │ │ │ │ ├── p45fail1.xml │ │ │ │ ├── p45fail2.xml │ │ │ │ ├── p45fail3.xml │ │ │ │ ├── p45fail4.xml │ │ │ │ ├── p45pass1.xml │ │ │ │ ├── p46fail1.xml │ │ │ │ ├── p46fail2.xml │ │ │ │ ├── p46fail3.xml │ │ │ │ ├── p46fail4.xml │ │ │ │ ├── p46fail5.xml │ │ │ │ ├── p46fail6.xml │ │ │ │ ├── p46pass1.xml │ │ │ │ ├── p47fail1.xml │ │ │ │ ├── p47fail2.xml │ │ │ │ ├── p47fail3.xml │ │ │ │ ├── p47fail4.xml │ │ │ │ ├── p47pass1.xml │ │ │ │ ├── p48fail1.xml │ │ │ │ ├── p48fail2.xml │ │ │ │ ├── p48pass1.xml │ │ │ │ ├── p49fail1.xml │ │ │ │ ├── p49pass1.xml │ │ │ │ ├── p50fail1.xml │ │ │ │ ├── p50pass1.xml │ │ │ │ ├── p51fail1.xml │ │ │ │ ├── p51fail2.xml │ │ │ │ ├── p51fail3.xml │ │ │ │ ├── p51fail4.xml │ │ │ │ ├── p51fail5.xml │ │ │ │ ├── p51fail6.xml │ │ │ │ ├── p51fail7.xml │ │ │ │ ├── p51pass1.xml │ │ │ │ ├── p52fail1.xml │ │ │ │ ├── p52fail2.xml │ │ │ │ ├── p52pass1.xml │ │ │ │ ├── p53fail1.xml │ │ │ │ ├── p53fail2.xml │ │ │ │ ├── p53fail3.xml │ │ │ │ ├── p53fail4.xml │ │ │ │ ├── p53fail5.xml │ │ │ │ ├── p53pass1.xml │ │ │ │ ├── p54fail1.xml │ │ │ │ ├── p54pass1.xml │ │ │ │ ├── p55fail1.xml │ │ │ │ ├── p55pass1.xml │ │ │ │ ├── p56fail1.xml │ │ │ │ ├── p56fail2.xml │ │ │ │ ├── p56fail3.xml │ │ │ │ ├── p56fail4.xml │ │ │ │ ├── p56fail5.xml │ │ │ │ ├── p56pass1.xml │ │ │ │ ├── p57fail1.xml │ │ │ │ ├── p57pass1.xml │ │ │ │ ├── p58fail1.xml │ │ │ │ ├── p58fail2.xml │ │ │ │ ├── p58fail3.xml │ │ │ │ ├── p58fail4.xml │ │ │ │ ├── p58fail5.xml │ │ │ │ ├── p58fail6.xml │ │ │ │ ├── p58fail7.xml │ │ │ │ ├── p58fail8.xml │ │ │ │ ├── p58pass1.xml │ │ │ │ ├── p59fail1.xml │ │ │ │ ├── p59fail2.xml │ │ │ │ ├── p59fail3.xml │ │ │ │ ├── p59pass1.xml │ │ │ │ ├── p60fail1.xml │ │ │ │ ├── p60fail2.xml │ │ │ │ ├── p60fail3.xml │ │ │ │ ├── p60fail4.xml │ │ │ │ ├── p60fail5.xml │ │ │ │ ├── p60pass1.xml │ │ │ │ ├── p61fail1.dtd │ │ │ │ ├── p61fail1.xml │ │ │ │ ├── p61pass1.dtd │ │ │ │ ├── p61pass1.xml │ │ │ │ ├── p62fail1.dtd │ │ │ │ ├── p62fail1.xml │ │ │ │ ├── p62fail2.dtd │ │ │ │ ├── p62fail2.xml │ │ │ │ ├── p62pass1.dtd │ │ │ │ ├── p62pass1.xml │ │ │ │ ├── p63fail1.dtd │ │ │ │ ├── p63fail1.xml │ │ │ │ ├── p63fail2.dtd │ │ │ │ ├── p63fail2.xml │ │ │ │ ├── p63pass1.dtd │ │ │ │ ├── p63pass1.xml │ │ │ │ ├── p64fail1.dtd │ │ │ │ ├── p64fail1.xml │ │ │ │ ├── p64fail2.dtd │ │ │ │ ├── p64fail2.xml │ │ │ │ ├── p64pass1.dtd │ │ │ │ ├── p64pass1.xml │ │ │ │ ├── p66fail1.xml │ │ │ │ ├── p66fail2.xml │ │ │ │ ├── p66fail3.xml │ │ │ │ ├── p66fail4.xml │ │ │ │ ├── p66fail5.xml │ │ │ │ ├── p66fail6.xml │ │ │ │ ├── p66pass1.xml │ │ │ │ ├── p68fail1.xml │ │ │ │ ├── p68fail2.xml │ │ │ │ ├── p68fail3.xml │ │ │ │ ├── p68pass1.xml │ │ │ │ ├── p69fail1.xml │ │ │ │ ├── p69fail2.xml │ │ │ │ ├── p69fail3.xml │ │ │ │ ├── p69pass1.xml │ │ │ │ ├── p70fail1.xml │ │ │ │ ├── p70pass1.xml │ │ │ │ ├── p71fail1.xml │ │ │ │ ├── p71fail2.xml │ │ │ │ ├── p71fail3.xml │ │ │ │ ├── p71fail4.xml │ │ │ │ ├── p71pass1.xml │ │ │ │ ├── p72fail1.xml │ │ │ │ ├── p72fail2.xml │ │ │ │ ├── p72fail3.xml │ │ │ │ ├── p72fail4.xml │ │ │ │ ├── p72pass1.xml │ │ │ │ ├── p73fail1.xml │ │ │ │ ├── p73fail2.xml │ │ │ │ ├── p73fail3.xml │ │ │ │ ├── p73fail4.xml │ │ │ │ ├── p73fail5.xml │ │ │ │ ├── p73pass1.xml │ │ │ │ ├── p74fail1.xml │ │ │ │ ├── p74fail2.xml │ │ │ │ ├── p74fail3.xml │ │ │ │ ├── p74pass1.xml │ │ │ │ ├── p75fail1.xml │ │ │ │ ├── p75fail2.xml │ │ │ │ ├── p75fail3.xml │ │ │ │ ├── p75fail4.xml │ │ │ │ ├── p75fail5.xml │ │ │ │ ├── p75fail6.xml │ │ │ │ ├── p75pass1.xml │ │ │ │ ├── p76fail1.xml │ │ │ │ ├── p76fail2.xml │ │ │ │ ├── p76fail3.xml │ │ │ │ ├── p76fail4.xml │ │ │ │ └── p76pass1.xml │ │ │ ├── sun │ │ │ │ ├── cxml.html │ │ │ │ ├── invalid │ │ │ │ │ ├── attr01.xml │ │ │ │ │ ├── attr02.xml │ │ │ │ │ ├── attr03.xml │ │ │ │ │ ├── attr04.xml │ │ │ │ │ ├── attr05.xml │ │ │ │ │ ├── attr06.xml │ │ │ │ │ ├── attr07.xml │ │ │ │ │ ├── attr08.xml │ │ │ │ │ ├── attr09.xml │ │ │ │ │ ├── attr10.xml │ │ │ │ │ ├── attr11.xml │ │ │ │ │ ├── attr12.xml │ │ │ │ │ ├── attr13.xml │ │ │ │ │ ├── attr14.xml │ │ │ │ │ ├── attr15.xml │ │ │ │ │ ├── attr16.xml │ │ │ │ │ ├── dtd01.xml │ │ │ │ │ ├── dtd02.xml │ │ │ │ │ ├── dtd03.xml │ │ │ │ │ ├── dtd06.xml │ │ │ │ │ ├── el01.xml │ │ │ │ │ ├── el02.xml │ │ │ │ │ ├── el03.xml │ │ │ │ │ ├── el04.xml │ │ │ │ │ ├── el05.xml │ │ │ │ │ ├── el06.xml │ │ │ │ │ ├── empty.xml │ │ │ │ │ ├── id01.xml │ │ │ │ │ ├── id02.xml │ │ │ │ │ ├── id03.xml │ │ │ │ │ ├── id04.xml │ │ │ │ │ ├── id05.xml │ │ │ │ │ ├── id06.xml │ │ │ │ │ ├── id07.xml │ │ │ │ │ ├── id08.xml │ │ │ │ │ ├── id09.xml │ │ │ │ │ ├── not-sa01.xml │ │ │ │ │ ├── not-sa02.xml │ │ │ │ │ ├── not-sa04.xml │ │ │ │ │ ├── not-sa05.xml │ │ │ │ │ ├── not-sa06.xml │ │ │ │ │ ├── not-sa07.xml │ │ │ │ │ ├── not-sa08.xml │ │ │ │ │ ├── not-sa09.xml │ │ │ │ │ ├── not-sa10.xml │ │ │ │ │ ├── not-sa11.xml │ │ │ │ │ ├── not-sa12.xml │ │ │ │ │ ├── not-sa13.xml │ │ │ │ │ ├── not-sa14.xml │ │ │ │ │ ├── optional01.xml │ │ │ │ │ ├── optional02.xml │ │ │ │ │ ├── optional03.xml │ │ │ │ │ ├── optional04.xml │ │ │ │ │ ├── optional05.xml │ │ │ │ │ ├── optional06.xml │ │ │ │ │ ├── optional07.xml │ │ │ │ │ ├── optional08.xml │ │ │ │ │ ├── optional09.xml │ │ │ │ │ ├── optional10.xml │ │ │ │ │ ├── optional11.xml │ │ │ │ │ ├── optional12.xml │ │ │ │ │ ├── optional13.xml │ │ │ │ │ ├── optional14.xml │ │ │ │ │ ├── optional20.xml │ │ │ │ │ ├── optional21.xml │ │ │ │ │ ├── optional22.xml │ │ │ │ │ ├── optional23.xml │ │ │ │ │ ├── optional24.xml │ │ │ │ │ ├── optional25.xml │ │ │ │ │ ├── required00.xml │ │ │ │ │ ├── required01.xml │ │ │ │ │ ├── required02.xml │ │ │ │ │ ├── root.xml │ │ │ │ │ ├── utf16b.xml │ │ │ │ │ └── utf16l.xml │ │ │ │ ├── not-wf │ │ │ │ │ ├── attlist01.xml │ │ │ │ │ ├── attlist02.xml │ │ │ │ │ ├── attlist03.xml │ │ │ │ │ ├── attlist04.xml │ │ │ │ │ ├── attlist05.xml │ │ │ │ │ ├── attlist06.xml │ │ │ │ │ ├── attlist07.xml │ │ │ │ │ ├── attlist08.xml │ │ │ │ │ ├── attlist09.xml │ │ │ │ │ ├── attlist10.xml │ │ │ │ │ ├── attlist11.xml │ │ │ │ │ ├── cond.dtd │ │ │ │ │ ├── cond01.xml │ │ │ │ │ ├── cond02.xml │ │ │ │ │ ├── content01.xml │ │ │ │ │ ├── content02.xml │ │ │ │ │ ├── content03.xml │ │ │ │ │ ├── decl01.ent │ │ │ │ │ ├── decl01.xml │ │ │ │ │ ├── dtd00.xml │ │ │ │ │ ├── dtd01.xml │ │ │ │ │ ├── dtd02.xml │ │ │ │ │ ├── dtd03.xml │ │ │ │ │ ├── dtd04.xml │ │ │ │ │ ├── dtd05.xml │ │ │ │ │ ├── dtd07.dtd │ │ │ │ │ ├── dtd07.xml │ │ │ │ │ ├── element00.xml │ │ │ │ │ ├── element01.xml │ │ │ │ │ ├── element02.xml │ │ │ │ │ ├── element03.xml │ │ │ │ │ ├── element04.xml │ │ │ │ │ ├── encoding01.xml │ │ │ │ │ ├── encoding02.xml │ │ │ │ │ ├── encoding03.xml │ │ │ │ │ ├── encoding04.xml │ │ │ │ │ ├── encoding05.xml │ │ │ │ │ ├── encoding06.xml │ │ │ │ │ ├── encoding07.xml │ │ │ │ │ ├── not-sa03.xml │ │ │ │ │ ├── pi.xml │ │ │ │ │ ├── pubid01.xml │ │ │ │ │ ├── pubid02.xml │ │ │ │ │ ├── pubid03.xml │ │ │ │ │ ├── pubid04.xml │ │ │ │ │ ├── pubid05.xml │ │ │ │ │ ├── sgml01.xml │ │ │ │ │ ├── sgml02.xml │ │ │ │ │ ├── sgml03.xml │ │ │ │ │ ├── sgml04.xml │ │ │ │ │ ├── sgml05.xml │ │ │ │ │ ├── sgml06.xml │ │ │ │ │ ├── sgml07.xml │ │ │ │ │ ├── sgml08.xml │ │ │ │ │ ├── sgml09.xml │ │ │ │ │ ├── sgml10.xml │ │ │ │ │ ├── sgml11.xml │ │ │ │ │ ├── sgml12.xml │ │ │ │ │ ├── sgml13.xml │ │ │ │ │ └── uri01.xml │ │ │ │ ├── sun-error.xml │ │ │ │ ├── sun-invalid.xml │ │ │ │ ├── sun-not-wf.xml │ │ │ │ ├── sun-valid.xml │ │ │ │ └── valid │ │ │ │ │ ├── dtd00.xml │ │ │ │ │ ├── dtd01.xml │ │ │ │ │ ├── dtdtest.dtd │ │ │ │ │ ├── element.xml │ │ │ │ │ ├── ext01.ent │ │ │ │ │ ├── ext01.xml │ │ │ │ │ ├── ext02.xml │ │ │ │ │ ├── not-sa01.xml │ │ │ │ │ ├── not-sa02.xml │ │ │ │ │ ├── not-sa03.xml │ │ │ │ │ ├── not-sa04.xml │ │ │ │ │ ├── notation01.dtd │ │ │ │ │ ├── notation01.xml │ │ │ │ │ ├── null.ent │ │ │ │ │ ├── optional.xml │ │ │ │ │ ├── out │ │ │ │ │ ├── dtd00.xml │ │ │ │ │ ├── dtd01.xml │ │ │ │ │ ├── element.xml │ │ │ │ │ ├── ext01.xml │ │ │ │ │ ├── ext02.xml │ │ │ │ │ ├── not-sa01.xml │ │ │ │ │ ├── not-sa02.xml │ │ │ │ │ ├── not-sa03.xml │ │ │ │ │ ├── not-sa04.xml │ │ │ │ │ ├── notation01.xml │ │ │ │ │ ├── optional.xml │ │ │ │ │ ├── pe00.xml │ │ │ │ │ ├── pe02.xml │ │ │ │ │ ├── pe03.xml │ │ │ │ │ ├── required00.xml │ │ │ │ │ ├── sa01.xml │ │ │ │ │ ├── sa02.xml │ │ │ │ │ ├── sa03.xml │ │ │ │ │ ├── sa04.xml │ │ │ │ │ ├── sa05.xml │ │ │ │ │ ├── sgml01.xml │ │ │ │ │ ├── v-lang01.xml │ │ │ │ │ ├── v-lang02.xml │ │ │ │ │ ├── v-lang03.xml │ │ │ │ │ ├── v-lang04.xml │ │ │ │ │ ├── v-lang05.xml │ │ │ │ │ └── v-lang06.xml │ │ │ │ │ ├── pe00.dtd │ │ │ │ │ ├── pe00.xml │ │ │ │ │ ├── pe01.dtd │ │ │ │ │ ├── pe01.ent │ │ │ │ │ ├── pe01.xml │ │ │ │ │ ├── pe02.xml │ │ │ │ │ ├── pe03.xml │ │ │ │ │ ├── required00.xml │ │ │ │ │ ├── sa.dtd │ │ │ │ │ ├── sa01.xml │ │ │ │ │ ├── sa02.xml │ │ │ │ │ ├── sa03.xml │ │ │ │ │ ├── sa04.xml │ │ │ │ │ ├── sa05.xml │ │ │ │ │ ├── sgml01.xml │ │ │ │ │ ├── v-lang01.xml │ │ │ │ │ ├── v-lang02.xml │ │ │ │ │ ├── v-lang03.xml │ │ │ │ │ ├── v-lang04.xml │ │ │ │ │ ├── v-lang05.xml │ │ │ │ │ └── v-lang06.xml │ │ │ ├── testcases.dtd │ │ │ ├── xmlconf.xml │ │ │ └── xmltest │ │ │ │ ├── canonxml.html │ │ │ │ ├── invalid │ │ │ │ ├── 002.ent │ │ │ │ ├── 002.xml │ │ │ │ ├── 005.ent │ │ │ │ ├── 005.xml │ │ │ │ ├── 006.ent │ │ │ │ ├── 006.xml │ │ │ │ └── not-sa │ │ │ │ │ ├── 022.ent │ │ │ │ │ ├── 022.xml │ │ │ │ │ └── out │ │ │ │ │ └── 022.xml │ │ │ │ ├── not-wf │ │ │ │ ├── ext-sa │ │ │ │ │ ├── 001.ent │ │ │ │ │ ├── 001.xml │ │ │ │ │ ├── 002.ent │ │ │ │ │ ├── 002.xml │ │ │ │ │ ├── 003.ent │ │ │ │ │ └── 003.xml │ │ │ │ ├── not-sa │ │ │ │ │ ├── 001.ent │ │ │ │ │ ├── 001.xml │ │ │ │ │ ├── 002.xml │ │ │ │ │ ├── 003.ent │ │ │ │ │ ├── 003.xml │ │ │ │ │ ├── 004.ent │ │ │ │ │ ├── 004.xml │ │ │ │ │ ├── 005.ent │ │ │ │ │ ├── 005.xml │ │ │ │ │ ├── 006.ent │ │ │ │ │ ├── 006.xml │ │ │ │ │ ├── 007.ent │ │ │ │ │ ├── 007.xml │ │ │ │ │ ├── 008.ent │ │ │ │ │ ├── 008.xml │ │ │ │ │ ├── 009.ent │ │ │ │ │ ├── 009.xml │ │ │ │ │ ├── 010.ent │ │ │ │ │ ├── 010.xml │ │ │ │ │ ├── 011.ent │ │ │ │ │ └── 011.xml │ │ │ │ └── sa │ │ │ │ │ ├── 001.xml │ │ │ │ │ ├── 002.xml │ │ │ │ │ ├── 003.xml │ │ │ │ │ ├── 004.xml │ │ │ │ │ ├── 005.xml │ │ │ │ │ ├── 006.xml │ │ │ │ │ ├── 007.xml │ │ │ │ │ ├── 008.xml │ │ │ │ │ ├── 009.xml │ │ │ │ │ ├── 010.xml │ │ │ │ │ ├── 011.xml │ │ │ │ │ ├── 012.xml │ │ │ │ │ ├── 013.xml │ │ │ │ │ ├── 014.xml │ │ │ │ │ ├── 015.xml │ │ │ │ │ ├── 016.xml │ │ │ │ │ ├── 017.xml │ │ │ │ │ ├── 018.xml │ │ │ │ │ ├── 019.xml │ │ │ │ │ ├── 020.xml │ │ │ │ │ ├── 021.xml │ │ │ │ │ ├── 022.xml │ │ │ │ │ ├── 023.xml │ │ │ │ │ ├── 024.xml │ │ │ │ │ ├── 025.xml │ │ │ │ │ ├── 026.xml │ │ │ │ │ ├── 027.xml │ │ │ │ │ ├── 028.xml │ │ │ │ │ ├── 029.xml │ │ │ │ │ ├── 030.xml │ │ │ │ │ ├── 031.xml │ │ │ │ │ ├── 032.xml │ │ │ │ │ ├── 033.xml │ │ │ │ │ ├── 034.xml │ │ │ │ │ ├── 035.xml │ │ │ │ │ ├── 036.xml │ │ │ │ │ ├── 037.xml │ │ │ │ │ ├── 038.xml │ │ │ │ │ ├── 039.xml │ │ │ │ │ ├── 040.xml │ │ │ │ │ ├── 041.xml │ │ │ │ │ ├── 042.xml │ │ │ │ │ ├── 043.xml │ │ │ │ │ ├── 044.xml │ │ │ │ │ ├── 045.xml │ │ │ │ │ ├── 046.xml │ │ │ │ │ ├── 047.xml │ │ │ │ │ ├── 048.xml │ │ │ │ │ ├── 049.xml │ │ │ │ │ ├── 050.xml │ │ │ │ │ ├── 051.xml │ │ │ │ │ ├── 052.xml │ │ │ │ │ ├── 053.xml │ │ │ │ │ ├── 054.xml │ │ │ │ │ ├── 055.xml │ │ │ │ │ ├── 056.xml │ │ │ │ │ ├── 057.xml │ │ │ │ │ ├── 058.xml │ │ │ │ │ ├── 059.xml │ │ │ │ │ ├── 060.xml │ │ │ │ │ ├── 061.xml │ │ │ │ │ ├── 062.xml │ │ │ │ │ ├── 063.xml │ │ │ │ │ ├── 064.xml │ │ │ │ │ ├── 065.xml │ │ │ │ │ ├── 066.xml │ │ │ │ │ ├── 067.xml │ │ │ │ │ ├── 068.xml │ │ │ │ │ ├── 069.xml │ │ │ │ │ ├── 070.xml │ │ │ │ │ ├── 071.xml │ │ │ │ │ ├── 072.xml │ │ │ │ │ ├── 073.xml │ │ │ │ │ ├── 074.xml │ │ │ │ │ ├── 075.xml │ │ │ │ │ ├── 076.xml │ │ │ │ │ ├── 077.xml │ │ │ │ │ ├── 078.xml │ │ │ │ │ ├── 079.xml │ │ │ │ │ ├── 080.xml │ │ │ │ │ ├── 081.xml │ │ │ │ │ ├── 082.xml │ │ │ │ │ ├── 083.xml │ │ │ │ │ ├── 084.xml │ │ │ │ │ ├── 085.xml │ │ │ │ │ ├── 086.xml │ │ │ │ │ ├── 087.xml │ │ │ │ │ ├── 088.xml │ │ │ │ │ ├── 089.xml │ │ │ │ │ ├── 090.xml │ │ │ │ │ ├── 091.xml │ │ │ │ │ ├── 092.xml │ │ │ │ │ ├── 093.xml │ │ │ │ │ ├── 094.xml │ │ │ │ │ ├── 095.xml │ │ │ │ │ ├── 096.xml │ │ │ │ │ ├── 097.xml │ │ │ │ │ ├── 098.xml │ │ │ │ │ ├── 099.xml │ │ │ │ │ ├── 100.xml │ │ │ │ │ ├── 101.xml │ │ │ │ │ ├── 102.xml │ │ │ │ │ ├── 103.xml │ │ │ │ │ ├── 104.xml │ │ │ │ │ ├── 105.xml │ │ │ │ │ ├── 106.xml │ │ │ │ │ ├── 107.xml │ │ │ │ │ ├── 108.xml │ │ │ │ │ ├── 109.xml │ │ │ │ │ ├── 110.xml │ │ │ │ │ ├── 111.xml │ │ │ │ │ ├── 112.xml │ │ │ │ │ ├── 113.xml │ │ │ │ │ ├── 114.xml │ │ │ │ │ ├── 115.xml │ │ │ │ │ ├── 116.xml │ │ │ │ │ ├── 117.xml │ │ │ │ │ ├── 118.xml │ │ │ │ │ ├── 119.xml │ │ │ │ │ ├── 120.xml │ │ │ │ │ ├── 121.xml │ │ │ │ │ ├── 122.xml │ │ │ │ │ ├── 123.xml │ │ │ │ │ ├── 124.xml │ │ │ │ │ ├── 125.xml │ │ │ │ │ ├── 126.xml │ │ │ │ │ ├── 127.xml │ │ │ │ │ ├── 128.xml │ │ │ │ │ ├── 129.xml │ │ │ │ │ ├── 130.xml │ │ │ │ │ ├── 131.xml │ │ │ │ │ ├── 132.xml │ │ │ │ │ ├── 133.xml │ │ │ │ │ ├── 134.xml │ │ │ │ │ ├── 135.xml │ │ │ │ │ ├── 136.xml │ │ │ │ │ ├── 137.xml │ │ │ │ │ ├── 138.xml │ │ │ │ │ ├── 139.xml │ │ │ │ │ ├── 140.xml │ │ │ │ │ ├── 141.xml │ │ │ │ │ ├── 142.xml │ │ │ │ │ ├── 143.xml │ │ │ │ │ ├── 144.xml │ │ │ │ │ ├── 145.xml │ │ │ │ │ ├── 146.xml │ │ │ │ │ ├── 147.xml │ │ │ │ │ ├── 148.xml │ │ │ │ │ ├── 149.xml │ │ │ │ │ ├── 150.xml │ │ │ │ │ ├── 151.xml │ │ │ │ │ ├── 152.xml │ │ │ │ │ ├── 153.xml │ │ │ │ │ ├── 154.xml │ │ │ │ │ ├── 155.xml │ │ │ │ │ ├── 156.xml │ │ │ │ │ ├── 157.xml │ │ │ │ │ ├── 158.xml │ │ │ │ │ ├── 159.xml │ │ │ │ │ ├── 160.xml │ │ │ │ │ ├── 161.xml │ │ │ │ │ ├── 162.xml │ │ │ │ │ ├── 163.xml │ │ │ │ │ ├── 164.xml │ │ │ │ │ ├── 165.xml │ │ │ │ │ ├── 166.xml │ │ │ │ │ ├── 167.xml │ │ │ │ │ ├── 168.xml │ │ │ │ │ ├── 169.xml │ │ │ │ │ ├── 170.xml │ │ │ │ │ ├── 171.xml │ │ │ │ │ ├── 172.xml │ │ │ │ │ ├── 173.xml │ │ │ │ │ ├── 174.xml │ │ │ │ │ ├── 175.xml │ │ │ │ │ ├── 176.xml │ │ │ │ │ ├── 177.xml │ │ │ │ │ ├── 178.xml │ │ │ │ │ ├── 179.xml │ │ │ │ │ ├── 180.xml │ │ │ │ │ ├── 181.xml │ │ │ │ │ ├── 182.xml │ │ │ │ │ ├── 183.xml │ │ │ │ │ ├── 184.xml │ │ │ │ │ ├── 185.ent │ │ │ │ │ ├── 185.xml │ │ │ │ │ ├── 186.xml │ │ │ │ │ └── null.ent │ │ │ │ ├── readme.html │ │ │ │ ├── valid │ │ │ │ ├── ext-sa │ │ │ │ │ ├── 001.ent │ │ │ │ │ ├── 001.xml │ │ │ │ │ ├── 002.ent │ │ │ │ │ ├── 002.xml │ │ │ │ │ ├── 003.ent │ │ │ │ │ ├── 003.xml │ │ │ │ │ ├── 004.ent │ │ │ │ │ ├── 004.xml │ │ │ │ │ ├── 005.ent │ │ │ │ │ ├── 005.xml │ │ │ │ │ ├── 006.ent │ │ │ │ │ ├── 006.xml │ │ │ │ │ ├── 007.ent │ │ │ │ │ ├── 007.xml │ │ │ │ │ ├── 008.ent │ │ │ │ │ ├── 008.xml │ │ │ │ │ ├── 009.ent │ │ │ │ │ ├── 009.xml │ │ │ │ │ ├── 010.ent │ │ │ │ │ ├── 010.xml │ │ │ │ │ ├── 011.ent │ │ │ │ │ ├── 011.xml │ │ │ │ │ ├── 012.ent │ │ │ │ │ ├── 012.xml │ │ │ │ │ ├── 013.ent │ │ │ │ │ ├── 013.xml │ │ │ │ │ ├── 014.ent │ │ │ │ │ ├── 014.xml │ │ │ │ │ └── out │ │ │ │ │ │ ├── 001.xml │ │ │ │ │ │ ├── 002.xml │ │ │ │ │ │ ├── 003.xml │ │ │ │ │ │ ├── 004.xml │ │ │ │ │ │ ├── 005.xml │ │ │ │ │ │ ├── 006.xml │ │ │ │ │ │ ├── 007.xml │ │ │ │ │ │ ├── 008.xml │ │ │ │ │ │ ├── 009.xml │ │ │ │ │ │ ├── 010.xml │ │ │ │ │ │ ├── 011.xml │ │ │ │ │ │ ├── 012.xml │ │ │ │ │ │ ├── 013.xml │ │ │ │ │ │ └── 014.xml │ │ │ │ ├── not-sa │ │ │ │ │ ├── 001.ent │ │ │ │ │ ├── 001.xml │ │ │ │ │ ├── 002.ent │ │ │ │ │ ├── 002.xml │ │ │ │ │ ├── 003-1.ent │ │ │ │ │ ├── 003-2.ent │ │ │ │ │ ├── 003.xml │ │ │ │ │ ├── 004-1.ent │ │ │ │ │ ├── 004-2.ent │ │ │ │ │ ├── 004.xml │ │ │ │ │ ├── 005-1.ent │ │ │ │ │ ├── 005-2.ent │ │ │ │ │ ├── 005.xml │ │ │ │ │ ├── 006.ent │ │ │ │ │ ├── 006.xml │ │ │ │ │ ├── 007.ent │ │ │ │ │ ├── 007.xml │ │ │ │ │ ├── 008.ent │ │ │ │ │ ├── 008.xml │ │ │ │ │ ├── 009.ent │ │ │ │ │ ├── 009.xml │ │ │ │ │ ├── 010.ent │ │ │ │ │ ├── 010.xml │ │ │ │ │ ├── 011.ent │ │ │ │ │ ├── 011.xml │ │ │ │ │ ├── 012.ent │ │ │ │ │ ├── 012.xml │ │ │ │ │ ├── 013.ent │ │ │ │ │ ├── 013.xml │ │ │ │ │ ├── 014.ent │ │ │ │ │ ├── 014.xml │ │ │ │ │ ├── 015.ent │ │ │ │ │ ├── 015.xml │ │ │ │ │ ├── 016.ent │ │ │ │ │ ├── 016.xml │ │ │ │ │ ├── 017.ent │ │ │ │ │ ├── 017.xml │ │ │ │ │ ├── 018.ent │ │ │ │ │ ├── 018.xml │ │ │ │ │ ├── 019.ent │ │ │ │ │ ├── 019.xml │ │ │ │ │ ├── 020.ent │ │ │ │ │ ├── 020.xml │ │ │ │ │ ├── 021.ent │ │ │ │ │ ├── 021.xml │ │ │ │ │ ├── 023.ent │ │ │ │ │ ├── 023.xml │ │ │ │ │ ├── 024.ent │ │ │ │ │ ├── 024.xml │ │ │ │ │ ├── 025.ent │ │ │ │ │ ├── 025.xml │ │ │ │ │ ├── 026.ent │ │ │ │ │ ├── 026.xml │ │ │ │ │ ├── 027.ent │ │ │ │ │ ├── 027.xml │ │ │ │ │ ├── 028.ent │ │ │ │ │ ├── 028.xml │ │ │ │ │ ├── 029.ent │ │ │ │ │ ├── 029.xml │ │ │ │ │ ├── 030.ent │ │ │ │ │ ├── 030.xml │ │ │ │ │ ├── 031-1.ent │ │ │ │ │ ├── 031-2.ent │ │ │ │ │ ├── 031.xml │ │ │ │ │ └── out │ │ │ │ │ │ ├── 001.xml │ │ │ │ │ │ ├── 002.xml │ │ │ │ │ │ ├── 003.xml │ │ │ │ │ │ ├── 004.xml │ │ │ │ │ │ ├── 005.xml │ │ │ │ │ │ ├── 006.xml │ │ │ │ │ │ ├── 007.xml │ │ │ │ │ │ ├── 008.xml │ │ │ │ │ │ ├── 009.xml │ │ │ │ │ │ ├── 010.xml │ │ │ │ │ │ ├── 011.xml │ │ │ │ │ │ ├── 012.xml │ │ │ │ │ │ ├── 013.xml │ │ │ │ │ │ ├── 014.xml │ │ │ │ │ │ ├── 015.xml │ │ │ │ │ │ ├── 016.xml │ │ │ │ │ │ ├── 017.xml │ │ │ │ │ │ ├── 018.xml │ │ │ │ │ │ ├── 019.xml │ │ │ │ │ │ ├── 020.xml │ │ │ │ │ │ ├── 021.xml │ │ │ │ │ │ ├── 022.xml │ │ │ │ │ │ ├── 023.xml │ │ │ │ │ │ ├── 024.xml │ │ │ │ │ │ ├── 025.xml │ │ │ │ │ │ ├── 026.xml │ │ │ │ │ │ ├── 027.xml │ │ │ │ │ │ ├── 028.xml │ │ │ │ │ │ ├── 029.xml │ │ │ │ │ │ ├── 030.xml │ │ │ │ │ │ └── 031.xml │ │ │ │ └── sa │ │ │ │ │ ├── 001.xml │ │ │ │ │ ├── 002.xml │ │ │ │ │ ├── 003.xml │ │ │ │ │ ├── 004.xml │ │ │ │ │ ├── 005.xml │ │ │ │ │ ├── 006.xml │ │ │ │ │ ├── 007.xml │ │ │ │ │ ├── 008.xml │ │ │ │ │ ├── 009.xml │ │ │ │ │ ├── 010.xml │ │ │ │ │ ├── 011.xml │ │ │ │ │ ├── 012.xml │ │ │ │ │ ├── 013.xml │ │ │ │ │ ├── 014.xml │ │ │ │ │ ├── 015.xml │ │ │ │ │ ├── 016.xml │ │ │ │ │ ├── 017.xml │ │ │ │ │ ├── 017a.xml │ │ │ │ │ ├── 018.xml │ │ │ │ │ ├── 019.xml │ │ │ │ │ ├── 020.xml │ │ │ │ │ ├── 021.xml │ │ │ │ │ ├── 022.xml │ │ │ │ │ ├── 023.xml │ │ │ │ │ ├── 024.xml │ │ │ │ │ ├── 025.xml │ │ │ │ │ ├── 026.xml │ │ │ │ │ ├── 027.xml │ │ │ │ │ ├── 028.xml │ │ │ │ │ ├── 029.xml │ │ │ │ │ ├── 030.xml │ │ │ │ │ ├── 031.xml │ │ │ │ │ ├── 032.xml │ │ │ │ │ ├── 033.xml │ │ │ │ │ ├── 034.xml │ │ │ │ │ ├── 035.xml │ │ │ │ │ ├── 036.xml │ │ │ │ │ ├── 037.xml │ │ │ │ │ ├── 038.xml │ │ │ │ │ ├── 039.xml │ │ │ │ │ ├── 040.xml │ │ │ │ │ ├── 041.xml │ │ │ │ │ ├── 042.xml │ │ │ │ │ ├── 043.xml │ │ │ │ │ ├── 044.xml │ │ │ │ │ ├── 045.xml │ │ │ │ │ ├── 046.xml │ │ │ │ │ ├── 047.xml │ │ │ │ │ ├── 048.xml │ │ │ │ │ ├── 049.xml │ │ │ │ │ ├── 050.xml │ │ │ │ │ ├── 051.xml │ │ │ │ │ ├── 052.xml │ │ │ │ │ ├── 053.xml │ │ │ │ │ ├── 054.xml │ │ │ │ │ ├── 055.xml │ │ │ │ │ ├── 056.xml │ │ │ │ │ ├── 057.xml │ │ │ │ │ ├── 058.xml │ │ │ │ │ ├── 059.xml │ │ │ │ │ ├── 060.xml │ │ │ │ │ ├── 061.xml │ │ │ │ │ ├── 062.xml │ │ │ │ │ ├── 063.xml │ │ │ │ │ ├── 064.xml │ │ │ │ │ ├── 065.xml │ │ │ │ │ ├── 066.xml │ │ │ │ │ ├── 067.xml │ │ │ │ │ ├── 068.xml │ │ │ │ │ ├── 069.xml │ │ │ │ │ ├── 070.xml │ │ │ │ │ ├── 071.xml │ │ │ │ │ ├── 072.xml │ │ │ │ │ ├── 073.xml │ │ │ │ │ ├── 074.xml │ │ │ │ │ ├── 075.xml │ │ │ │ │ ├── 076.xml │ │ │ │ │ ├── 077.xml │ │ │ │ │ ├── 078.xml │ │ │ │ │ ├── 079.xml │ │ │ │ │ ├── 080.xml │ │ │ │ │ ├── 081.xml │ │ │ │ │ ├── 082.xml │ │ │ │ │ ├── 083.xml │ │ │ │ │ ├── 084.xml │ │ │ │ │ ├── 085.xml │ │ │ │ │ ├── 086.xml │ │ │ │ │ ├── 087.xml │ │ │ │ │ ├── 088.xml │ │ │ │ │ ├── 089.xml │ │ │ │ │ ├── 090.xml │ │ │ │ │ ├── 091.xml │ │ │ │ │ ├── 092.xml │ │ │ │ │ ├── 093.xml │ │ │ │ │ ├── 094.xml │ │ │ │ │ ├── 095.xml │ │ │ │ │ ├── 096.xml │ │ │ │ │ ├── 097.ent │ │ │ │ │ ├── 097.xml │ │ │ │ │ ├── 098.xml │ │ │ │ │ ├── 099.xml │ │ │ │ │ ├── 100.xml │ │ │ │ │ ├── 101.xml │ │ │ │ │ ├── 102.xml │ │ │ │ │ ├── 103.xml │ │ │ │ │ ├── 104.xml │ │ │ │ │ ├── 105.xml │ │ │ │ │ ├── 106.xml │ │ │ │ │ ├── 107.xml │ │ │ │ │ ├── 108.xml │ │ │ │ │ ├── 109.xml │ │ │ │ │ ├── 110.xml │ │ │ │ │ ├── 111.xml │ │ │ │ │ ├── 112.xml │ │ │ │ │ ├── 113.xml │ │ │ │ │ ├── 114.xml │ │ │ │ │ ├── 115.xml │ │ │ │ │ ├── 116.xml │ │ │ │ │ ├── 117.xml │ │ │ │ │ ├── 118.xml │ │ │ │ │ ├── 119.xml │ │ │ │ │ └── out │ │ │ │ │ ├── 001.xml │ │ │ │ │ ├── 002.xml │ │ │ │ │ ├── 003.xml │ │ │ │ │ ├── 004.xml │ │ │ │ │ ├── 005.xml │ │ │ │ │ ├── 006.xml │ │ │ │ │ ├── 007.xml │ │ │ │ │ ├── 008.xml │ │ │ │ │ ├── 009.xml │ │ │ │ │ ├── 010.xml │ │ │ │ │ ├── 011.xml │ │ │ │ │ ├── 012.xml │ │ │ │ │ ├── 013.xml │ │ │ │ │ ├── 014.xml │ │ │ │ │ ├── 015.xml │ │ │ │ │ ├── 016.xml │ │ │ │ │ ├── 017.xml │ │ │ │ │ ├── 017a.xml │ │ │ │ │ ├── 018.xml │ │ │ │ │ ├── 019.xml │ │ │ │ │ ├── 020.xml │ │ │ │ │ ├── 021.xml │ │ │ │ │ ├── 022.xml │ │ │ │ │ ├── 023.xml │ │ │ │ │ ├── 024.xml │ │ │ │ │ ├── 025.xml │ │ │ │ │ ├── 026.xml │ │ │ │ │ ├── 027.xml │ │ │ │ │ ├── 028.xml │ │ │ │ │ ├── 029.xml │ │ │ │ │ ├── 030.xml │ │ │ │ │ ├── 031.xml │ │ │ │ │ ├── 032.xml │ │ │ │ │ ├── 033.xml │ │ │ │ │ ├── 034.xml │ │ │ │ │ ├── 035.xml │ │ │ │ │ ├── 036.xml │ │ │ │ │ ├── 037.xml │ │ │ │ │ ├── 038.xml │ │ │ │ │ ├── 039.xml │ │ │ │ │ ├── 040.xml │ │ │ │ │ ├── 041.xml │ │ │ │ │ ├── 042.xml │ │ │ │ │ ├── 043.xml │ │ │ │ │ ├── 044.xml │ │ │ │ │ ├── 045.xml │ │ │ │ │ ├── 046.xml │ │ │ │ │ ├── 047.xml │ │ │ │ │ ├── 048.xml │ │ │ │ │ ├── 049.xml │ │ │ │ │ ├── 050.xml │ │ │ │ │ ├── 051.xml │ │ │ │ │ ├── 052.xml │ │ │ │ │ ├── 053.xml │ │ │ │ │ ├── 054.xml │ │ │ │ │ ├── 055.xml │ │ │ │ │ ├── 056.xml │ │ │ │ │ ├── 057.xml │ │ │ │ │ ├── 058.xml │ │ │ │ │ ├── 059.xml │ │ │ │ │ ├── 060.xml │ │ │ │ │ ├── 061.xml │ │ │ │ │ ├── 062.xml │ │ │ │ │ ├── 063.xml │ │ │ │ │ ├── 064.xml │ │ │ │ │ ├── 065.xml │ │ │ │ │ ├── 066.xml │ │ │ │ │ ├── 067.xml │ │ │ │ │ ├── 068.xml │ │ │ │ │ ├── 069.xml │ │ │ │ │ ├── 070.xml │ │ │ │ │ ├── 071.xml │ │ │ │ │ ├── 072.xml │ │ │ │ │ ├── 073.xml │ │ │ │ │ ├── 074.xml │ │ │ │ │ ├── 075.xml │ │ │ │ │ ├── 076.xml │ │ │ │ │ ├── 077.xml │ │ │ │ │ ├── 078.xml │ │ │ │ │ ├── 079.xml │ │ │ │ │ ├── 080.xml │ │ │ │ │ ├── 081.xml │ │ │ │ │ ├── 082.xml │ │ │ │ │ ├── 083.xml │ │ │ │ │ ├── 084.xml │ │ │ │ │ ├── 085.xml │ │ │ │ │ ├── 086.xml │ │ │ │ │ ├── 087.xml │ │ │ │ │ ├── 088.xml │ │ │ │ │ ├── 089.xml │ │ │ │ │ ├── 090.xml │ │ │ │ │ ├── 091.xml │ │ │ │ │ ├── 092.xml │ │ │ │ │ ├── 093.xml │ │ │ │ │ ├── 094.xml │ │ │ │ │ ├── 095.xml │ │ │ │ │ ├── 096.xml │ │ │ │ │ ├── 097.xml │ │ │ │ │ ├── 098.xml │ │ │ │ │ ├── 099.xml │ │ │ │ │ ├── 100.xml │ │ │ │ │ ├── 101.xml │ │ │ │ │ ├── 102.xml │ │ │ │ │ ├── 103.xml │ │ │ │ │ ├── 104.xml │ │ │ │ │ ├── 105.xml │ │ │ │ │ ├── 106.xml │ │ │ │ │ ├── 107.xml │ │ │ │ │ ├── 108.xml │ │ │ │ │ ├── 109.xml │ │ │ │ │ ├── 110.xml │ │ │ │ │ ├── 111.xml │ │ │ │ │ ├── 112.xml │ │ │ │ │ ├── 113.xml │ │ │ │ │ ├── 114.xml │ │ │ │ │ ├── 115.xml │ │ │ │ │ ├── 116.xml │ │ │ │ │ ├── 117.xml │ │ │ │ │ ├── 118.xml │ │ │ │ │ └── 119.xml │ │ │ │ ├── xmlconf.xml │ │ │ │ └── xmltest.xml │ │ ├── W3CXMLConformanceTest.php │ │ └── XMLProcessorTest.php │ ├── class-xmlattributetoken.php │ ├── class-xmldecoder.php │ ├── class-xmlelement.php │ ├── class-xmlprocessor.php │ ├── class-xmlunsupportedexception.php │ └── composer.json └── Zip │ ├── LICENSE.md │ ├── Tests │ ├── ZipEncoderTest.php │ ├── ZipFilesystemTest.php │ ├── fixtures │ │ └── childrens-literature.zip │ └── test-server │ │ ├── childrens-literature.zip │ │ └── run.php │ ├── class-centraldirectoryentry.php │ ├── class-endcentraldirectoryentry.php │ ├── class-fileentry.php │ ├── class-zipdecoder.php │ ├── class-zipencoder.php │ ├── class-zipfilesystem.php │ ├── composer.json │ └── functions.php ├── composer-ci-matrix-tests.json ├── composer.json ├── composer.lock ├── monorepo-builder.php ├── package.json ├── phar-blueprints.json ├── phar-libraries.json ├── phpcs.xml ├── phpunit.xml └── rector.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.4.0 2 | -------------------------------------------------------------------------------- /bin/build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bin/build-all.sh -------------------------------------------------------------------------------- /bin/build-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bin/build-examples.sh -------------------------------------------------------------------------------- /bin/build-libraries-phar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bin/build-libraries-phar.sh -------------------------------------------------------------------------------- /bin/build-phar/DataLiberationBoxCompactor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bin/build-phar/DataLiberationBoxCompactor.php -------------------------------------------------------------------------------- /bin/build-phar/box.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bin/build-phar/box.php -------------------------------------------------------------------------------- /bin/build-phar/core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bin/build-phar/core.php -------------------------------------------------------------------------------- /bin/build-phar/smoke-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bin/build-phar/smoke-test.php -------------------------------------------------------------------------------- /bin/build-phar/truncate-composer-checks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bin/build-phar/truncate-composer-checks.php -------------------------------------------------------------------------------- /bin/build-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bin/build-plugins.sh -------------------------------------------------------------------------------- /bin/run-server-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bin/run-server-build.sh -------------------------------------------------------------------------------- /bin/run-server-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bin/run-server-dev.sh -------------------------------------------------------------------------------- /bin/split-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bin/split-code.sh -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/bootstrap.php -------------------------------------------------------------------------------- /components/BlockParser/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/BlockParser/LICENSE.md -------------------------------------------------------------------------------- /components/BlockParser/class-wp-block-parser-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/BlockParser/class-wp-block-parser-block.php -------------------------------------------------------------------------------- /components/BlockParser/class-wp-block-parser-frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/BlockParser/class-wp-block-parser-frame.php -------------------------------------------------------------------------------- /components/BlockParser/class-wp-block-parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/BlockParser/class-wp-block-parser.php -------------------------------------------------------------------------------- /components/BlockParser/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/BlockParser/composer.json -------------------------------------------------------------------------------- /components/Blueprints/DataReference/class-directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/DataReference/class-directory.php -------------------------------------------------------------------------------- /components/Blueprints/DataReference/class-file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/DataReference/class-file.php -------------------------------------------------------------------------------- /components/Blueprints/DataReference/class-gitpath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/DataReference/class-gitpath.php -------------------------------------------------------------------------------- /components/Blueprints/DataReference/class-inlinefile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/DataReference/class-inlinefile.php -------------------------------------------------------------------------------- /components/Blueprints/DataReference/class-remotefile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/DataReference/class-remotefile.php -------------------------------------------------------------------------------- /components/Blueprints/DataReference/class-urlreference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/DataReference/class-urlreference.php -------------------------------------------------------------------------------- /components/Blueprints/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/LICENSE.md -------------------------------------------------------------------------------- /components/Blueprints/Logger/class-clilogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Logger/class-clilogger.php -------------------------------------------------------------------------------- /components/Blueprints/Logger/class-nooplogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Logger/class-nooplogger.php -------------------------------------------------------------------------------- /components/Blueprints/Progress/class-doneevent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Progress/class-doneevent.php -------------------------------------------------------------------------------- /components/Blueprints/Progress/class-progressevent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Progress/class-progressevent.php -------------------------------------------------------------------------------- /components/Blueprints/Progress/class-tracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Progress/class-tracker.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-activatepluginstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-activatepluginstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-activatethemestep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-activatethemestep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-cpstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-cpstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-defineconstantsstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-defineconstantsstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-enablemultisitestep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-enablemultisitestep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-importcontentstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-importcontentstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-importmediastep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-importmediastep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-installpluginstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-installpluginstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-installthemestep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-installthemestep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-mkdirstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-mkdirstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-mvstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-mvstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-rmdirstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-rmdirstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-rmstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-rmstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-runphpstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-runphpstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-runsqlstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-runsqlstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-setsitelanguagestep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-setsitelanguagestep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-setsiteoptionsstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-setsiteoptionsstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-unzipstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-unzipstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-wpclistep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-wpclistep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/class-writefilesstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/class-writefilesstep.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/interface-step-interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/interface-step-interface.php -------------------------------------------------------------------------------- /components/Blueprints/Steps/scripts/import-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Steps/scripts/import-content.php -------------------------------------------------------------------------------- /components/Blueprints/Tests/Unit/Steps/CpStepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Tests/Unit/Steps/CpStepTest.php -------------------------------------------------------------------------------- /components/Blueprints/Tests/Unit/Steps/MkdirStepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Tests/Unit/Steps/MkdirStepTest.php -------------------------------------------------------------------------------- /components/Blueprints/Tests/Unit/Steps/MvStepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Tests/Unit/Steps/MvStepTest.php -------------------------------------------------------------------------------- /components/Blueprints/Tests/Unit/Steps/RmDirStepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Tests/Unit/Steps/RmDirStepTest.php -------------------------------------------------------------------------------- /components/Blueprints/Tests/Unit/Steps/RmStepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Tests/Unit/Steps/RmStepTest.php -------------------------------------------------------------------------------- /components/Blueprints/Tests/Unit/Steps/RunPHPStepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Tests/Unit/Steps/RunPHPStepTest.php -------------------------------------------------------------------------------- /components/Blueprints/Tests/Unit/Steps/RunSQLStepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Tests/Unit/Steps/RunSQLStepTest.php -------------------------------------------------------------------------------- /components/Blueprints/Tests/Unit/Steps/StepTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Tests/Unit/Steps/StepTestCase.php -------------------------------------------------------------------------------- /components/Blueprints/Tests/Unit/Steps/UnzipStepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Tests/Unit/Steps/UnzipStepTest.php -------------------------------------------------------------------------------- /components/Blueprints/Validator/class-symbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Validator/class-symbol.php -------------------------------------------------------------------------------- /components/Blueprints/Validator/class-validationerror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Validator/class-validationerror.php -------------------------------------------------------------------------------- /components/Blueprints/VersionStrings/class-phpversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/VersionStrings/class-phpversion.php -------------------------------------------------------------------------------- /components/Blueprints/VersionStrings/class-version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/VersionStrings/class-version.php -------------------------------------------------------------------------------- /components/Blueprints/Versions/Version1/schema-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/Versions/Version1/schema-v1.json -------------------------------------------------------------------------------- /components/Blueprints/bin/blueprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/bin/blueprint.php -------------------------------------------------------------------------------- /components/Blueprints/class-evalresult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/class-evalresult.php -------------------------------------------------------------------------------- /components/Blueprints/class-mediafiledefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/class-mediafiledefinition.php -------------------------------------------------------------------------------- /components/Blueprints/class-metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/class-metadata.php -------------------------------------------------------------------------------- /components/Blueprints/class-process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/class-process.php -------------------------------------------------------------------------------- /components/Blueprints/class-processfailedexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/class-processfailedexception.php -------------------------------------------------------------------------------- /components/Blueprints/class-processoutputstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/class-processoutputstream.php -------------------------------------------------------------------------------- /components/Blueprints/class-progressobserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/class-progressobserver.php -------------------------------------------------------------------------------- /components/Blueprints/class-runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/class-runner.php -------------------------------------------------------------------------------- /components/Blueprints/class-runnerconfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/class-runnerconfiguration.php -------------------------------------------------------------------------------- /components/Blueprints/class-runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/class-runtime.php -------------------------------------------------------------------------------- /components/Blueprints/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/composer.json -------------------------------------------------------------------------------- /components/Blueprints/vendor-patched/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/vendor-patched/log/LICENSE -------------------------------------------------------------------------------- /components/Blueprints/vendor-patched/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Blueprints/vendor-patched/log/README.md -------------------------------------------------------------------------------- /components/ByteStream/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/LICENSE.md -------------------------------------------------------------------------------- /components/ByteStream/ReadStream/class-filereadstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/ReadStream/class-filereadstream.php -------------------------------------------------------------------------------- /components/ByteStream/Tests/ByteReadStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/Tests/ByteReadStreamTest.php -------------------------------------------------------------------------------- /components/ByteStream/Tests/DeflateReadStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/Tests/DeflateReadStreamTest.php -------------------------------------------------------------------------------- /components/ByteStream/Tests/FileReadStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/Tests/FileReadStreamTest.php -------------------------------------------------------------------------------- /components/ByteStream/Tests/FileReadWriteStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/Tests/FileReadWriteStreamTest.php -------------------------------------------------------------------------------- /components/ByteStream/Tests/FileWriteStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/Tests/FileWriteStreamTest.php -------------------------------------------------------------------------------- /components/ByteStream/Tests/InflateReadStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/Tests/InflateReadStreamTest.php -------------------------------------------------------------------------------- /components/ByteStream/Tests/TransformedReadStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/Tests/TransformedReadStreamTest.php -------------------------------------------------------------------------------- /components/ByteStream/Tests/fixtures/pygmalion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/Tests/fixtures/pygmalion.html -------------------------------------------------------------------------------- /components/ByteStream/class-bytepipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/class-bytepipe.php -------------------------------------------------------------------------------- /components/ByteStream/class-bytestreamexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/class-bytestreamexception.php -------------------------------------------------------------------------------- /components/ByteStream/class-filereadwritestream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/class-filereadwritestream.php -------------------------------------------------------------------------------- /components/ByteStream/class-memorypipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/class-memorypipe.php -------------------------------------------------------------------------------- /components/ByteStream/class-notenoughdataexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/class-notenoughdataexception.php -------------------------------------------------------------------------------- /components/ByteStream/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/ByteStream/composer.json -------------------------------------------------------------------------------- /components/CLI/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CLI/LICENSE.md -------------------------------------------------------------------------------- /components/CLI/class-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CLI/class-cli.php -------------------------------------------------------------------------------- /components/CLI/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CLI/composer.json -------------------------------------------------------------------------------- /components/CORSProxy/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CORSProxy/LICENSE.md -------------------------------------------------------------------------------- /components/CORSProxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CORSProxy/README.md -------------------------------------------------------------------------------- /components/CORSProxy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CORSProxy/composer.json -------------------------------------------------------------------------------- /components/CORSProxy/cors-proxy-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CORSProxy/cors-proxy-functions.php -------------------------------------------------------------------------------- /components/CORSProxy/cors-proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CORSProxy/cors-proxy.php -------------------------------------------------------------------------------- /components/CORSProxy/dev.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | php -S 127.0.0.1:5263 4 | -------------------------------------------------------------------------------- /components/CORSProxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CORSProxy/package.json -------------------------------------------------------------------------------- /components/CORSProxy/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CORSProxy/project.json -------------------------------------------------------------------------------- /components/CORSProxy/test-watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CORSProxy/test-watch.sh -------------------------------------------------------------------------------- /components/CORSProxy/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CORSProxy/test.sh -------------------------------------------------------------------------------- /components/CORSProxy/tests/ProxyFunctionsTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/CORSProxy/tests/ProxyFunctionsTests.php -------------------------------------------------------------------------------- /components/CORSProxy/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/errata-2e/E18-ent: -------------------------------------------------------------------------------- 1 | entity from main dir, right! -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/errata-2e/E38.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/errata-2e/E61.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/errata-2e/out/E18.xml: -------------------------------------------------------------------------------- 1 | entity from main dir, right! -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/errata-2e/out/E19.xml: -------------------------------------------------------------------------------- 1 | hello ! goodbye -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/errata-2e/subdir1/E18-ent: -------------------------------------------------------------------------------- 1 | entity from subdir1, wrong! -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/errata-2e/subdir2/E18-ent: -------------------------------------------------------------------------------- 1 | entity from subdir2, wrong! -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/errata-2e/subdir2/E18-extpe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/errata-4e/8bom.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/errata-4e/8bombom.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/errata-4e/8bomboom.xml: -------------------------------------------------------------------------------- 1 | ￾ -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/001.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/002.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/003.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/005.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/005.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/006.xml: -------------------------------------------------------------------------------- 1 | ]> 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/007.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/008.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/008.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/009.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/eduni/misc/009.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/namespaces/1.0/014.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/namespaces/1.0/015.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | <:foo /> 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/namespaces/1.0/017.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/namespaces/1.0/025.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/001.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/002.pe: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/003.ent: -------------------------------------------------------------------------------- 1 | 2 | some text 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/004.ent: -------------------------------------------------------------------------------- 1 | 2 | some text 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/005_1.ent: -------------------------------------------------------------------------------- 1 | 2 | &ent2; 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/005_2.ent: -------------------------------------------------------------------------------- 1 | 2 | some text 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/006_1.ent: -------------------------------------------------------------------------------- 1 | 2 | &ent2; 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/006_2.ent: -------------------------------------------------------------------------------- 1 | 2 | some text 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/009.ent: -------------------------------------------------------------------------------- 1 | 2 | some text 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/056.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/057.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/024.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/026.xml: -------------------------------------------------------------------------------- 1 | … -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/028.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/030.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/031.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/032.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/033.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/034.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/035.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/036.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/037.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/048.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/052.xml: -------------------------------------------------------------------------------- 1 | abc…def -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xml-1.1/out/053.xml: -------------------------------------------------------------------------------- 1 | abc…def -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/eduni/xmlconf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/eduni/xmlconf.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/files/top3.jpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/files/top3.jpe -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/invalid/P32/ibm32i01.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/invalid/P32/ibm32i03.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/invalid/P49/out/ibm49i02.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/invalid/P76/out/ibm76i01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P28/ibm28n01.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P29/cat.txt: -------------------------------------------------------------------------------- 1 | This is a text book about cat. -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P32/ibm32n06.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P32/ibm32n09.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P41/ibm41n.ent: -------------------------------------------------------------------------------- 1 | 2 | any -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P41/ibm41n10.ent: -------------------------------------------------------------------------------- 1 | 2 | any -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P41/ibm41n11.ent: -------------------------------------------------------------------------------- 1 | 2 | any -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P68/ibm68n06.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P75/empty.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P77/ibm77n02.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | ANY CONTENT 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P77/ibm77n03.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P79/ibm79n01.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/not-wf/P79/ibm79n02.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P27/out/ibm27v03.xml: -------------------------------------------------------------------------------- 1 | S is in the following Misc -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P28/ibm28v02.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P29/ibm29v01.txt: -------------------------------------------------------------------------------- 1 | This animal calss includes tiger, leopard, and cat. -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P30/ibm30v01.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P30/ibm30v02.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P33/out/ibm33v01.xml: -------------------------------------------------------------------------------- 1 | It is written in English -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P34/out/ibm34v01.xml: -------------------------------------------------------------------------------- 1 | It is written in English -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P35/out/ibm35v01.xml: -------------------------------------------------------------------------------- 1 | It is written in English -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P36/out/ibm36v01.xml: -------------------------------------------------------------------------------- 1 | It is written in English -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P37/out/ibm37v01.xml: -------------------------------------------------------------------------------- 1 | It is written in English -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P38/out/ibm38v01.xml: -------------------------------------------------------------------------------- 1 | It is written in English -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P70/ibm70v01.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/valid/P78/ibm78v03.ent: -------------------------------------------------------------------------------- 1 | anything legal as PCDATA.... 2 | e.g. 12345678E-33, "hello" -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n04.ent: -------------------------------------------------------------------------------- 1 | 2 | ‰ -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n05.ent: -------------------------------------------------------------------------------- 1 | 2 | ” -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n06.ent: -------------------------------------------------------------------------------- 1 | 2 | Ÿ -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n09.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n10.ent: -------------------------------------------------------------------------------- 1 | 2 | „ -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n11.ent: -------------------------------------------------------------------------------- 1 | ˆ -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n12.ent: -------------------------------------------------------------------------------- 1 | Ž -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n13.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n15.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n17.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n19.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n20.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/not-wf/P77/ibm77n21.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/valid/P03/ibm03v01.ent: -------------------------------------------------------------------------------- 1 | Data … -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/valid/P03/ibm03v02.ent: -------------------------------------------------------------------------------- 1 | Data… -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/valid/P03/ibm03v03.ent: -------------------------------------------------------------------------------- 1 | … -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/valid/P03/ibm03v04.ent: -------------------------------------------------------------------------------- 1 | … -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/valid/P03/ibm03v09.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/valid/P77/ibm77v22.ent: -------------------------------------------------------------------------------- 1 | 2 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/valid/P77/ibm77v23.ent: -------------------------------------------------------------------------------- 1 | 2 | € -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/ibm/xml-1.1/valid/P77/ibm77v24.ent: -------------------------------------------------------------------------------- 1 | 2 | Ÿ -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/japanese/spec.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/japanese/spec.dtd -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/e2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/e2.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/oasis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/oasis.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p01fail1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p01fail1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p01fail2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p01fail2.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p01fail3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p01fail3.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p01fail4.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p01pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p01pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p01pass2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p01pass2.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p01pass3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p01pass3.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail2.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail3.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail4.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail5.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail6.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail7.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail8.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p02fail9.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail10.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail11.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail12.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail13.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail14.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail15.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail16.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail17.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail18.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail19.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail2.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail20.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail21.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail22.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail23.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail24.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail25.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail26.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail27.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail28.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail29.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail3.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail4.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail5.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail7.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail8.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03fail9.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p03pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p04fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p04fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p04fail3.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p04pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p04pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p05fail1.xml: -------------------------------------------------------------------------------- 1 | <0A/> -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p05fail2.xml: -------------------------------------------------------------------------------- 1 | <.A/> -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p05fail3.xml: -------------------------------------------------------------------------------- 1 | <-A/> -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p05fail4.xml: -------------------------------------------------------------------------------- 1 | <̀A/> -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p05fail5.xml: -------------------------------------------------------------------------------- 1 | <·A/> -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p05pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p05pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p06fail1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p06fail1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p06pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p06pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p07pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p07pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p08fail1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p08fail1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p08fail2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p08fail2.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p08pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p08pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p09fail1.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p09fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p09fail2.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p09fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p09fail3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p09fail3.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p09fail4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p09fail4.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p09fail5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p09fail5.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p09pass1.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p09pass1.dtd -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p09pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p10fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p10fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p10fail3.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p16pass3.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p18fail1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p18fail2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p18fail3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p18fail3.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p18pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p18pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p22fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p22fail2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p22fail2.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p22pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p22pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p22pass3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p22pass4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p22pass4.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p22pass5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p22pass5.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p22pass6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p22pass6.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p23fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p23fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p23fail3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p23fail4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p23fail5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p23pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p23pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p23pass3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p23pass4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p24fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p24fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p24pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p24pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p24pass3.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p24pass4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p25fail1.xml: -------------------------------------------------------------------------------- 1 | ="1.0"?> 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p25pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p25pass2.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p26fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p26fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p26pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p26pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p27fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p27pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p27pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p27pass2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p27pass2.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p27pass3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p27pass4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p27pass4.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p28fail1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p28fail1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p28pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p28pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p28pass2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p28pass2.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p28pass3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p28pass3.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p28pass4.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p28pass4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p28pass5.dtd: -------------------------------------------------------------------------------- 1 | %rootdecl; 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p28pass5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p28pass5.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p29fail1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p29fail1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p29pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p29pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p30fail1.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p30fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p30pass1.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p30pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p30pass2.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p30pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p31fail1.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p31fail1.dtd -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p31fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p31pass1.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p31pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p31pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p31pass2.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p31pass2.dtd -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p31pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p32fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p32fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p32fail3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p32fail4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p32fail5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p32pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p32pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p39fail1.xml: -------------------------------------------------------------------------------- 1 | content -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p39fail2.xml: -------------------------------------------------------------------------------- 1 | content -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p39fail3.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p39fail4.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p39fail5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p39fail5.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p39pass1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p39pass2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p39pass2.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p40fail1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p40fail1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p40fail2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p40fail2.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p40fail3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p40fail3.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p40fail4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p40fail4.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p40pass1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/oasis/p40pass1.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p40pass2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p40pass3.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p41fail3.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p41pass1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p41pass2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p42fail2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p42pass2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p44fail1.xml: -------------------------------------------------------------------------------- 1 | < doc/> -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p44fail2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p44fail3.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p44pass1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p44pass2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p44pass3.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p44pass4.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p61fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p61pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p62fail1.dtd: -------------------------------------------------------------------------------- 1 | 3 | ]]> 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p62fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p62fail2.dtd: -------------------------------------------------------------------------------- 1 | 3 | ] ]> 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p62fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p62pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p63fail1.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p63fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p63fail2.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p63fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p63pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p64fail1.dtd: -------------------------------------------------------------------------------- 1 | 2 | ]]> -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p64fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p64fail2.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p64fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p64pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p74fail3.xml: -------------------------------------------------------------------------------- 1 | " SYSTEM "nop.ent"> 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p75fail1.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p75fail3.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p75fail4.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p75fail5.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/oasis/p75fail6.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/cxml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/sun/cxml.html -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/not-wf/element00.xml: -------------------------------------------------------------------------------- 1 | 2 | Incomplete end tag. 3 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/not-wf/encoding02.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/not-wf/encoding03.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/not-wf/encoding04.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/valid/null.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/valid/out/required00.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/valid/out/v-lang01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/valid/out/v-lang02.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/valid/out/v-lang03.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/valid/out/v-lang04.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/valid/out/v-lang05.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/valid/out/v-lang06.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/sun/valid/pe01.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/testcases.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/testcases.dtd -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmlconf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3C-XML-Test-Suite/xmlconf.xml -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/invalid/002.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/invalid/005.ent: -------------------------------------------------------------------------------- 1 | "> 2 | "> 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/ext-sa/001.ent: -------------------------------------------------------------------------------- 1 | &e; -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/ext-sa/002.ent: -------------------------------------------------------------------------------- 1 | 2 | data 3 | 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/not-sa/001.ent: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/not-sa/003.ent: -------------------------------------------------------------------------------- 1 | 2 | 2 | 2 | %e; 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/not-sa/006.ent: -------------------------------------------------------------------------------- 1 | 3 | ]]> 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/not-sa/008.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/not-sa/009.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | %e; --> 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/not-sa/010.ent: -------------------------------------------------------------------------------- 1 | 2 | %e; doc (#PCDATA)> 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/004.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/005.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/007.xml: -------------------------------------------------------------------------------- 1 | & no refc 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/011.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/012.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/013.xml: -------------------------------------------------------------------------------- 1 | "> 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/015.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/016.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/018.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/019.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/020.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/021.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/022.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/023.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/030.xml: -------------------------------------------------------------------------------- 1 | A form feed ( ) is not legal in data 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/035.xml: -------------------------------------------------------------------------------- 1 | 1 < 2 but not in XML 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/043.xml: -------------------------------------------------------------------------------- 1 | 2 | Illegal data 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/050.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/053.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/076.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/166.xml: -------------------------------------------------------------------------------- 1 | ￿ 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/167.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/171.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/172.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/173.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/174.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/185.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/not-wf/sa/null.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/ext-sa/001.ent: -------------------------------------------------------------------------------- 1 | Data 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/ext-sa/002.ent: -------------------------------------------------------------------------------- 1 | Data -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/ext-sa/003.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/ext-sa/004.ent: -------------------------------------------------------------------------------- 1 | Data -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/ext-sa/009.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/ext-sa/010.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/ext-sa/011.ent: -------------------------------------------------------------------------------- 1 | xyzzy 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/ext-sa/012.ent: -------------------------------------------------------------------------------- 1 | &e4; -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/ext-sa/013.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/ext-sa/out/014.xml: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/001.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/002.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/003-2.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/004-2.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/005-1.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | %e; 4 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/005-2.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/026.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/027.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/031-2.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/003.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/004.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/005.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/006.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/007.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/008.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/010.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/011.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/012.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/013.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/014.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/015.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/016.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/017.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/018.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/019.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/020.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/021.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/022.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/023.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/024.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/025.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/026.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/028.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/not-sa/out/029.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/097.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/004.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/005.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/006.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/010.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/012.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/013.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/014.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/015.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/017a.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/018.xml: -------------------------------------------------------------------------------- 1 | <foo> -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/020.xml: -------------------------------------------------------------------------------- 1 | <&]>] -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/041.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/043.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/045.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/049.xml: -------------------------------------------------------------------------------- 1 | £ -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/050.xml: -------------------------------------------------------------------------------- 1 | เจมส์ -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/052.xml: -------------------------------------------------------------------------------- 1 | 𐀀􏿽 -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/058.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/061.xml: -------------------------------------------------------------------------------- 1 | £ -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/062.xml: -------------------------------------------------------------------------------- 1 | เจมส์ -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/064.xml: -------------------------------------------------------------------------------- 1 | 𐀀􏿽 -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/066.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/078.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/079.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/080.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/088.xml: -------------------------------------------------------------------------------- 1 | <foo> -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/094.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/095.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/096.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/097.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/102.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/104.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/105.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/106.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/107.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/108.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/109.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/110.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3C-XML-Test-Suite/xmltest/valid/sa/out/111.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/XML/Tests/W3CXMLConformanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/W3CXMLConformanceTest.php -------------------------------------------------------------------------------- /components/XML/Tests/XMLProcessorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/Tests/XMLProcessorTest.php -------------------------------------------------------------------------------- /components/XML/class-xmlattributetoken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/class-xmlattributetoken.php -------------------------------------------------------------------------------- /components/XML/class-xmldecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/class-xmldecoder.php -------------------------------------------------------------------------------- /components/XML/class-xmlelement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/class-xmlelement.php -------------------------------------------------------------------------------- /components/XML/class-xmlprocessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/class-xmlprocessor.php -------------------------------------------------------------------------------- /components/XML/class-xmlunsupportedexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/class-xmlunsupportedexception.php -------------------------------------------------------------------------------- /components/XML/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/XML/composer.json -------------------------------------------------------------------------------- /components/Zip/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/LICENSE.md -------------------------------------------------------------------------------- /components/Zip/Tests/ZipEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/Tests/ZipEncoderTest.php -------------------------------------------------------------------------------- /components/Zip/Tests/ZipFilesystemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/Tests/ZipFilesystemTest.php -------------------------------------------------------------------------------- /components/Zip/Tests/fixtures/childrens-literature.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/Tests/fixtures/childrens-literature.zip -------------------------------------------------------------------------------- /components/Zip/Tests/test-server/run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/Tests/test-server/run.php -------------------------------------------------------------------------------- /components/Zip/class-centraldirectoryentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/class-centraldirectoryentry.php -------------------------------------------------------------------------------- /components/Zip/class-endcentraldirectoryentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/class-endcentraldirectoryentry.php -------------------------------------------------------------------------------- /components/Zip/class-fileentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/class-fileentry.php -------------------------------------------------------------------------------- /components/Zip/class-zipdecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/class-zipdecoder.php -------------------------------------------------------------------------------- /components/Zip/class-zipencoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/class-zipencoder.php -------------------------------------------------------------------------------- /components/Zip/class-zipfilesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/class-zipfilesystem.php -------------------------------------------------------------------------------- /components/Zip/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/composer.json -------------------------------------------------------------------------------- /components/Zip/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/components/Zip/functions.php -------------------------------------------------------------------------------- /composer-ci-matrix-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/composer-ci-matrix-tests.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/composer.lock -------------------------------------------------------------------------------- /monorepo-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/monorepo-builder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /phar-blueprints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/phar-blueprints.json -------------------------------------------------------------------------------- /phar-libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/phar-libraries.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/phpunit.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/php-toolkit/HEAD/rector.php --------------------------------------------------------------------------------