├── .ci.ston ├── .github └── workflows │ └── test.yml ├── .project ├── LICENSE ├── README.md ├── doc └── images │ └── screen001.png └── src ├── .properties ├── BaselineOfXMLParser ├── BaselineOfXMLParser.class.st └── package.st ├── XML-Parser-GTExtensions ├── FileReference.extension.st ├── GLMXMLDisabledDocumentHighlighterTextStylerDecorator.class.st ├── GLMXMLDisabledRubricHighlightedTextPresentation.class.st ├── GLMXMLDocumentHighlighterTextStylerDecorator.class.st ├── GLMXMLHighlighterTextStylerDecorator.class.st ├── GLMXMLOuterXMLDocumentHighlighterTextStylerDecorator.class.st ├── SAXPositionHandler.class.st ├── SAXPositionParserDriver.class.st ├── XMLAttribute.extension.st ├── XMLAttributeList.extension.st ├── XMLDeclarationNode.extension.st ├── XMLDoctypeDeclaration.extension.st ├── XMLDocument.extension.st ├── XMLDocumentHighlightDefaults.class.st ├── XMLDocumentHighlighter.class.st ├── XMLElement.extension.st ├── XMLExternalDocumentConverter.class.st ├── XMLHighlight.class.st ├── XMLHighlightDefaults.class.st ├── XMLHighlighter.class.st ├── XMLHighlightingCanonicalWriterFormatter.class.st ├── XMLHighlightingParser.class.st ├── XMLHighlightingPrettyPrintingWriterFormatter.class.st ├── XMLHighlightingPrologPrettyPrintingWriterFormatter.class.st ├── XMLHighlightingWriter.class.st ├── XMLHighlightingWriterFormatter.class.st ├── XMLInternalSubsetList.extension.st ├── XMLLazyAttributeDictionary.extension.st ├── XMLNFAState.extension.st ├── XMLNode.extension.st ├── XMLNodeList.extension.st ├── XMLNodeWithChildren.extension.st ├── XMLNodeWithElements.extension.st ├── XMLOrderedList.extension.st ├── XMLPositionWellFormedParserTokenizer.class.st └── package.st ├── XML-Parser-GemstoneCompatibility ├── CharacterCollection.extension.st ├── Collection.extension.st ├── GsFile.extension.st ├── PositionableStream.extension.st ├── XMLGsFileReadStreamFactory.class.st ├── XMLGsFileWriteStreamFactory.class.st ├── XMLParserGemstoneCompatibility.class.st ├── XMLTransientKeyValueCache.class.st ├── XMLTransientReentrantMutex.class.st └── package.st ├── XML-Parser-Tests-Conformance ├── XMLConformanceCanonicalWriterFormatter.class.st ├── XMLConformanceDoctypeDeclarationWriter.class.st ├── XMLConformanceExpatTest.class.st ├── XMLConformanceFileFinder.class.st ├── XMLConformanceNotationDeclarationWriter.class.st ├── XMLConformanceOasisTest.class.st ├── XMLConformancePIWriter.class.st ├── XMLConformanceSunTest.class.st ├── XMLConformanceTest.class.st ├── XMLConformanceVirtualFileExternalEntityResolver.class.st ├── XMLConformanceWriter.class.st └── package.st ├── XML-Parser-Tests ├── BitmapCharacterSet.extension.st ├── DTDCachingExternalEntityResolverLimitingTest.class.st ├── DTDCachingExternalEntityResolverTest.class.st ├── DTDExternalEntityResolverLimitingTest.class.st ├── DTDExternalEntityResolverTest.class.st ├── DTDStaticExternalEntityResolverLimitingTest.class.st ├── DTDStaticExternalEntityResolverTest.class.st ├── ManifestXMLParserTests.class.st ├── SAX2ElementHandlerParserTest.class.st ├── SAX2HAuthorElementHandler.class.st ├── SAX2HBookElementHandler.class.st ├── SAX2HBooksElementHandler.class.st ├── SAX2HContactsElementHandler.class.st ├── SAX2HDateOfBirthElementHandler.class.st ├── SAX2HEmailElementHandler.class.st ├── SAX2HISBNElementHandler.class.st ├── SAX2HNameElementHandler.class.st ├── SAX2HPersonElementHandler.class.st ├── SAX2HResidenceElementHandler.class.st ├── SAX2HTitleElementHandler.class.st ├── SAX2ParserTest.class.st ├── SAX2SampleBook.class.st ├── SAX2SamplePerson.class.st ├── SAXHandlerTest.class.st ├── SAXInterruptingRecordingPrefixURILocalNameHandler.class.st ├── SAXRecordingHandler.class.st ├── SAXRecordingPrefixURIHandler.class.st ├── SAXRecordingPrefixURILocalNameHandler.class.st ├── SAXTestingMessageRecordingHandler.class.st ├── TestCase.extension.st ├── XMLASCIIStreamConverterTest.class.st ├── XMLAbstractReadStreamTest.class.st ├── XMLAbstractSetTest.class.st ├── XMLAttributeDeclarationTest.class.st ├── XMLAttributeDictionaryTest.class.st ├── XMLAttributeListTest.class.st ├── XMLAttributeSpecTest.class.st ├── XMLAttributeTest.class.st ├── XMLBasicAttributeSpecTest.class.st ├── XMLBasicElementClassMapperTest.class.st ├── XMLCDataTest.class.st ├── XMLCachingAttributeListTest.class.st ├── XMLCachingNodeListTest.class.st ├── XMLCharacterMethodsTest.class.st ├── XMLClassFinderTest.class.st ├── XMLCommentTest.class.st ├── XMLConfigurationTest.class.st ├── XMLDFALimitsTest.class.st ├── XMLDOMConfigurationTest.class.st ├── XMLDOMParserTest.class.st ├── XMLDeclarationNodeTest.class.st ├── XMLDecodingReadStreamAdapterASCIIStringTest.class.st ├── XMLDecodingReadStreamAdapterASCIITest.class.st ├── XMLDecodingReadStreamAdapterLatin1StringTest.class.st ├── XMLDecodingReadStreamAdapterLatin1Test.class.st ├── XMLDecodingReadStreamAdapterStringTest.class.st ├── XMLDecodingReadStreamAdapterTest.class.st ├── XMLDecodingReadStreamAdapterUTF16BEBOMStringTest.class.st ├── XMLDecodingReadStreamAdapterUTF16BEBOMTest.class.st ├── XMLDecodingReadStreamAdapterUTF16BEStringTest.class.st ├── XMLDecodingReadStreamAdapterUTF16BETest.class.st ├── XMLDecodingReadStreamAdapterUTF16LEBOMStringTest.class.st ├── XMLDecodingReadStreamAdapterUTF16LEBOMTest.class.st ├── XMLDecodingReadStreamAdapterUTF16LEStringTest.class.st ├── XMLDecodingReadStreamAdapterUTF16LETest.class.st ├── XMLDecodingReadStreamAdapterUTF32BEBOMStringTest.class.st ├── XMLDecodingReadStreamAdapterUTF32BEBOMTest.class.st ├── XMLDecodingReadStreamAdapterUTF32BEStringTest.class.st ├── XMLDecodingReadStreamAdapterUTF32BETest.class.st ├── XMLDecodingReadStreamAdapterUTF32LEBOMStringTest.class.st ├── XMLDecodingReadStreamAdapterUTF32LEBOMTest.class.st ├── XMLDecodingReadStreamAdapterUTF32LEStringTest.class.st ├── XMLDecodingReadStreamAdapterUTF32LETest.class.st ├── XMLDecodingReadStreamAdapterUTF8BOMStringTest.class.st ├── XMLDecodingReadStreamAdapterUTF8BOMTest.class.st ├── XMLDecodingReadStreamAdapterUTF8StringTest.class.st ├── XMLDecodingReadStreamAdapterUTF8Test.class.st ├── XMLDoctypeDeclarationTest.class.st ├── XMLDocumentTest.class.st ├── XMLDocumentWithCachingNodeList.class.st ├── XMLDocumentWithCachingNodeListTest.class.st ├── XMLElementClassMapperTest.class.st ├── XMLElementDeclarationTest.class.st ├── XMLElementTest.class.st ├── XMLElementWithCachingNodeList.class.st ├── XMLElementWithCachingNodeListTest.class.st ├── XMLElementWithoutCachingAttributeList.class.st ├── XMLElementWithoutCachingAttributeListTest.class.st ├── XMLEncodingDetectorTest.class.st ├── XMLEncodingDetectorUTF16BEStringTest.class.st ├── XMLEncodingDetectorUTF16BETest.class.st ├── XMLEncodingDetectorUTF16LEStringTest.class.st ├── XMLEncodingDetectorUTF16LETest.class.st ├── XMLEncodingDetectorUTF32BEStringTest.class.st ├── XMLEncodingDetectorUTF32BETest.class.st ├── XMLEncodingDetectorUTF32LEStringTest.class.st ├── XMLEncodingDetectorUTF32LETest.class.st ├── XMLEncodingDetectorUTF8StringTest.class.st ├── XMLEncodingDetectorUTF8Test.class.st ├── XMLEncodingTest.class.st ├── XMLEncodingWriteStreamAdapterASCIIStringTest.class.st ├── XMLEncodingWriteStreamAdapterASCIITest.class.st ├── XMLEncodingWriteStreamAdapterLatin1StringTest.class.st ├── XMLEncodingWriteStreamAdapterLatin1Test.class.st ├── XMLEncodingWriteStreamAdapterTest.class.st ├── XMLEncodingWriteStreamAdapterUTF16BEStringTest.class.st ├── XMLEncodingWriteStreamAdapterUTF16BETest.class.st ├── XMLEncodingWriteStreamAdapterUTF16LEStringTest.class.st ├── XMLEncodingWriteStreamAdapterUTF16LETest.class.st ├── XMLEncodingWriteStreamAdapterUTF32BEStringTest.class.st ├── XMLEncodingWriteStreamAdapterUTF32BETest.class.st ├── XMLEncodingWriteStreamAdapterUTF32LEStringTest.class.st ├── XMLEncodingWriteStreamAdapterUTF32LETest.class.st ├── XMLEncodingWriteStreamAdapterUTF8StringTest.class.st ├── XMLEncodingWriteStreamAdapterUTF8Test.class.st ├── XMLEntityDeclarationTest.class.st ├── XMLExceptionRaisingReadStream.class.st ├── XMLExceptionTest.class.st ├── XMLExternalEntityTest.class.st ├── XMLFAttributeList.class.st ├── XMLFCData.class.st ├── XMLFComment.class.st ├── XMLFDateElement.class.st ├── XMLFDocument.class.st ├── XMLFElement.class.st ├── XMLFNodeList.class.st ├── XMLFPI.class.st ├── XMLFRealNameElement.class.st ├── XMLFSerializationFormatElement.class.st ├── XMLFString.class.st ├── XMLFTableElement.class.st ├── XMLFUserElement.class.st ├── XMLFUsernameElement.class.st ├── XMLFWrongElement.class.st ├── XMLFileHandleTest.class.st ├── XMLFileHandleUTF16BETest.class.st ├── XMLFileHandleUTF16LETest.class.st ├── XMLFileHandleUTF32BETest.class.st ├── XMLFileHandleUTF32LETest.class.st ├── XMLFileHandleUTF8Test.class.st ├── XMLGeneralEntityDeclarationTest.class.st ├── XMLHTTPMIMETypeTest.class.st ├── XMLHTTPMessageTest.class.st ├── XMLHTTPRequestTest.class.st ├── XMLHTTPResponseTest.class.st ├── XMLImplicitUTF16BigEndianStreamConverterTest.class.st ├── XMLImplicitUTF16LittleEndianStreamConverterTest.class.st ├── XMLImplicitUTF32BigEndianStreamConverterTest.class.st ├── XMLImplicitUTF32LittleEndianStreamConverterTest.class.st ├── XMLImplicitUTF8StreamConverterTest.class.st ├── XMLIntegerReaderTest.class.st ├── XMLKeyValueCacheTest.class.st ├── XMLLatin1StreamConverterTest.class.st ├── XMLLazyAttributeDictionaryTest.class.st ├── XMLLazyNamespacedAttributeDictionaryTest.class.st ├── XMLLimitedReadStreamAdapterTest.class.st ├── XMLMessageRecorder.class.st ├── XMLNFAStateSetTest.class.st ├── XMLNamespaceScopeTest.class.st ├── XMLNamespacedAttributeDictionaryTest.class.st ├── XMLNestedStreamReaderTest.class.st ├── XMLNodeCanonicalPrintingTest.class.st ├── XMLNodeFactoryTest.class.st ├── XMLNodeListTest.class.st ├── XMLNodeTest.class.st ├── XMLNodeWithChildrenTest.class.st ├── XMLNodeWithElementsTest.class.st ├── XMLNotationDeclarationTest.class.st ├── XMLNullReadStreamTest.class.st ├── XMLNullStreamConverterTest.class.st ├── XMLObservableListTest.class.st ├── XMLOrderedListTest.class.st ├── XMLPITest.class.st ├── XMLParameterEntityDeclarationTest.class.st ├── XMLParserExceptionTest.class.st ├── XMLParserLimitsTest.class.st ├── XMLParserTest.class.st ├── XMLPercentDecodingReadStreamAdapterTest.class.st ├── XMLPercentEncodingWriteStreamAdapterTest.class.st ├── XMLPluggableAttributeSpecTest.class.st ├── XMLPluggableElementFactoryTest.class.st ├── XMLPluggableNodeFactoryTest.class.st ├── XMLReadStreamAdapterTest.class.st ├── XMLRecordingAttributeListObserver.class.st ├── XMLRecordingListObserver.class.st ├── XMLRecordingNodeListObserver.class.st ├── XMLRecordingNodeVisitor.class.st ├── XMLSingleCharacterReadStreamTest.class.st ├── XMLSkippableTest.class.st ├── XMLSmallIntegerReaderTest.class.st ├── XMLStreamAdapterTest.class.st ├── XMLStreamConverterTest.class.st ├── XMLStringMethodsTest.class.st ├── XMLStringReadStreamAdapterBinaryTest.class.st ├── XMLStringReadStreamAdapterTest.class.st ├── XMLStringTest.class.st ├── XMLStubOrderedListCustomCollection.class.st ├── XMLTempFileManager.class.st ├── XMLURITest.class.st ├── XMLUTF16BigEndianStreamConverterTest.class.st ├── XMLUTF16LittleEndianStreamConverterTest.class.st ├── XMLUTF32BigEndianStreamConverterTest.class.st ├── XMLUTF32LittleEndianStreamConverterTest.class.st ├── XMLUTF8StreamConverterTest.class.st ├── XMLWriteStreamAdapterTest.class.st └── package.st ├── XML-Parser-Tools ├── XMLDocument.extension.st ├── XMLElement.extension.st ├── XMLNode.extension.st └── package.st └── XML-Parser ├── Character.extension.st ├── Collection.extension.st ├── DTDAttributeDefinitionParser.class.st ├── DTDCachingExternalEntityResolver.class.st ├── DTDContentModelParser.class.st ├── DTDDecodedResolvedExternalParsedEntityReplacement.class.st ├── DTDDoctypeDefinition.class.st ├── DTDDocumentValidator.class.st ├── DTDElementContentModelParser.class.st ├── DTDEntity.class.st ├── DTDEntityConfiguration.class.st ├── DTDEnumerationListParser.class.st ├── DTDExternalEntityLimits.class.st ├── DTDExternalEntityResolver.class.st ├── DTDExternalEntityResolverLimitingDecorator.class.st ├── DTDExternalGeneralParsedEntity.class.st ├── DTDExternalParameterParsedEntity.class.st ├── DTDExternalParsedEntity.class.st ├── DTDExternalSubsetParserDriver.class.st ├── DTDInternalGeneralParsedEntity.class.st ├── DTDInternalParameterParsedEntity.class.st ├── DTDInternalParsedEntity.class.st ├── DTDLiteralContentModelParser.class.st ├── DTDMixedContentEnumerationListParser.class.st ├── DTDMixedContentModelParser.class.st ├── DTDNotation.class.st ├── DTDNotationEnumerationListParser.class.st ├── DTDParsedEntity.class.st ├── DTDResolvedExternalParsedEntityReplacement.class.st ├── DTDStandaloneExternalAttributeDefinitionParser.class.st ├── DTDStandaloneExternalElementContentModelParser.class.st ├── DTDStandaloneExternalExternalGeneralParsedEntity.class.st ├── DTDStandaloneExternalInternalGeneralParsedEntity.class.st ├── DTDStaticExternalEntityResolver.class.st ├── DTDSubsetParserDriver.class.st ├── DTDUndecodedResolvedExternalParsedEntityReplacement.class.st ├── DTDUnparsedEntity.class.st ├── DTDUnresolvableExternalGeneralParsedEntity.class.st ├── DTDUnresolvableExternalParameterParsedEntity.class.st ├── DTDUnresolvableExternalParsedEntity.class.st ├── DTDUnresolvedExternalParsedEntityReplacement.class.st ├── Error.extension.st ├── ManifestXMLParser.class.st ├── Object.extension.st ├── SAX2ContentHandler.class.st ├── SAX2DeclarationHandler.class.st ├── SAX2ElementCharacterHandler.class.st ├── SAX2ElementHandler.class.st ├── SAX2ElementHandlerFactory.class.st ├── SAX2ElementHandlerFactoryMapper.class.st ├── SAX2ElementParser.class.st ├── SAX2LexicalHandler.class.st ├── SAX2Parser.class.st ├── SAX2PluggableElementHandlerFactory.class.st ├── SAX2PluggableElementHandlerFactoryMapper.class.st ├── SAXHandler.class.st ├── SAXParserDriver.class.st ├── SequenceableCollection.extension.st ├── Stream.extension.st ├── String.extension.st ├── UndefinedObject.extension.st ├── XMLASCIIStreamConverter.class.st ├── XMLAbstractFactory.class.st ├── XMLAbstractReadStream.class.st ├── XMLAbstractReadStreamParser.class.st ├── XMLAnyElementValidator.class.st ├── XMLAttribute.class.st ├── XMLAttributeDeclaration.class.st ├── XMLAttributeDefaultValidator.class.st ├── XMLAttributeDictionary.class.st ├── XMLAttributeFixedValueDefaultValidator.class.st ├── XMLAttributeImpliedDefaultValidator.class.st ├── XMLAttributeList.class.st ├── XMLAttributeRequiredDefaultValidator.class.st ├── XMLAttributeSpec.class.st ├── XMLAttributeValidator.class.st ├── XMLAttributeValueDefaultValidator.class.st ├── XMLBasicAttributeSpec.class.st ├── XMLBasicElementClassMapper.class.st ├── XMLCData.class.st ├── XMLCDataAttributeValidator.class.st ├── XMLCachingAttributeList.class.st ├── XMLCachingNodeList.class.st ├── XMLClassFinder.class.st ├── XMLComment.class.st ├── XMLConfiguration.class.st ├── XMLContentState.class.st ├── XMLDFAElementContentElementValidator.class.st ├── XMLDFAElementValidator.class.st ├── XMLDFAState.class.st ├── XMLDFAStateCache.class.st ├── XMLDOMConfiguration.class.st ├── XMLDOMException.class.st ├── XMLDOMParser.class.st ├── XMLDeclarationNode.class.st ├── XMLDecodingReadStreamAdapter.class.st ├── XMLDoctypeDeclaration.class.st ├── XMLDoctypeDeclarationState.class.st ├── XMLDocument.class.st ├── XMLDocumentValidator.class.st ├── XMLElement.class.st ├── XMLElementClassMapper.class.st ├── XMLElementDeclaration.class.st ├── XMLElementIDValidator.class.st ├── XMLElementNester.class.st ├── XMLElementValidator.class.st ├── XMLEmptyElementValidator.class.st ├── XMLEncodingDetector.class.st ├── XMLEncodingException.class.st ├── XMLEncodingWriteStreamAdapter.class.st ├── XMLEntitiesAttributeValidator.class.st ├── XMLEntityAttributeValidator.class.st ├── XMLEntityDeclaration.class.st ├── XMLEnumerationAttributeValidator.class.st ├── XMLException.class.st ├── XMLExternalSubsetState.class.st ├── XMLExternalSubsetTextDeclarationState.class.st ├── XMLFileDirectoryFileHandle.class.st ├── XMLFileException.class.st ├── XMLFileHandle.class.st ├── XMLFileReadStreamFactory.class.st ├── XMLFileSystemFileHandle.class.st ├── XMLFileWriteStreamFactory.class.st ├── XMLGeneralEntityDeclaration.class.st ├── XMLHTTPDecompressingReadStreamAdapterFactory.class.st ├── XMLHTTPException.class.st ├── XMLHTTPGZipDecompressingReadStreamAdapterFactory.class.st ├── XMLHTTPMIMEType.class.st ├── XMLHTTPMIMETypeParser.class.st ├── XMLHTTPMessage.class.st ├── XMLHTTPRequest.class.st ├── XMLHTTPResponse.class.st ├── XMLHTTPResponseContentReader.class.st ├── XMLHTTPWebClientRequest.class.st ├── XMLHTTPWebClientResponse.class.st ├── XMLHTTPWebClientResponseContentReader.class.st ├── XMLHTTPZincRequest.class.st ├── XMLHTTPZincResponse.class.st ├── XMLHTTPZincResponseContentReader.class.st ├── XMLIDAttributeValidator.class.st ├── XMLIDRefAttributeValidator.class.st ├── XMLIDRefsAttributeValidator.class.st ├── XMLImplicitEncodingDetector.class.st ├── XMLImplicitUTF16BigEndianStreamConverter.class.st ├── XMLImplicitUTF16LittleEndianStreamConverter.class.st ├── XMLImplicitUTF32BigEndianStreamConverter.class.st ├── XMLImplicitUTF32LittleEndianStreamConverter.class.st ├── XMLImplicitUTF8StreamConverter.class.st ├── XMLIntegerReader.class.st ├── XMLInternalSubsetList.class.st ├── XMLInternalSubsetState.class.st ├── XMLKeyValueCache.class.st ├── XMLLatin1StreamConverter.class.st ├── XMLLazyAttributeDictionary.class.st ├── XMLLazyNamespacedAttributeDictionary.class.st ├── XMLLimitException.class.st ├── XMLLimitedReadStreamAdapter.class.st ├── XMLMixedContentElementValidator.class.st ├── XMLMutatingNodeVisitor.class.st ├── XMLNFAAcceptingState.class.st ├── XMLNFABranchingState.class.st ├── XMLNFABuilder.class.st ├── XMLNFAFragment.class.st ├── XMLNFAMatchingState.class.st ├── XMLNFAState.class.st ├── XMLNFAStateSet.class.st ├── XMLNamespaceException.class.st ├── XMLNamespaceScope.class.st ├── XMLNamespaceScopeAllocator.class.st ├── XMLNamespacedAttributeDictionary.class.st ├── XMLNestedStreamReader.class.st ├── XMLNmtokenAttributeValidator.class.st ├── XMLNmtokensAttributeValidator.class.st ├── XMLNode.class.st ├── XMLNodeContentWriteStreamAdapter.class.st ├── XMLNodeFactory.class.st ├── XMLNodeList.class.st ├── XMLNodeVisitor.class.st ├── XMLNodeWithChildren.class.st ├── XMLNodeWithElements.class.st ├── XMLNotationDeclaration.class.st ├── XMLNotationEnumerationAttributeValidator.class.st ├── XMLNullReadStream.class.st ├── XMLNullStreamConverter.class.st ├── XMLObservableList.class.st ├── XMLOrderedList.class.st ├── XMLPI.class.st ├── XMLParameterEntityDeclaration.class.st ├── XMLParser.class.st ├── XMLParserDriver.class.st ├── XMLParserException.class.st ├── XMLParserLimits.class.st ├── XMLParserTokenizer.class.st ├── XMLParsingInterruptException.class.st ├── XMLPercentDecodingReadStreamAdapter.class.st ├── XMLPercentEncodingWriteStreamAdapter.class.st ├── XMLPharoFileReferenceReadStreamFactory.class.st ├── XMLPharoFileReferenceWriteStreamFactory.class.st ├── XMLPluggableAttributeSpec.class.st ├── XMLPluggableElementFactory.class.st ├── XMLPluggableNodeFactory.class.st ├── XMLPostDoctypeDeclarationState.class.st ├── XMLPrologState.class.st ├── XMLPushedBackEntity.class.st ├── XMLPushedBackExternalStream.class.st ├── XMLPushedBackGeneralEntity.class.st ├── XMLPushedBackInternalStream.class.st ├── XMLPushedBackParameterEntity.class.st ├── XMLPushedBackStream.class.st ├── XMLReadStreamAdapter.class.st ├── XMLReentrantMutex.class.st ├── XMLSingleCharacterReadStream.class.st ├── XMLSmallIntegerReader.class.st ├── XMLStandaloneExternalAttributeFixedValueDefaultValidator.class.st ├── XMLStandaloneExternalAttributeValueDefaultValidator.class.st ├── XMLStandaloneExternalCDataAttributeValidator.class.st ├── XMLStandaloneExternalDFAElementContentElementValidator.class.st ├── XMLStandaloneExternalEntitiesAttributeValidator.class.st ├── XMLStandaloneExternalEntityAttributeValidator.class.st ├── XMLStandaloneExternalEnumerationAttributeValidator.class.st ├── XMLStandaloneExternalIDAttributeValidator.class.st ├── XMLStandaloneExternalIDRefAttributeValidator.class.st ├── XMLStandaloneExternalIDRefsAttributeValidator.class.st ├── XMLStandaloneExternalNmtokenAttributeValidator.class.st ├── XMLStandaloneExternalNmtokensAttributeValidator.class.st ├── XMLStandaloneExternalNotationEnumerationAttributeValidator.class.st ├── XMLStandaloneExternalXMLIDAttributeValidator.class.st ├── XMLStandardFileStreamReadStreamFactory.class.st ├── XMLStandardFileStreamWriteStreamFactory.class.st ├── XMLStandardKeyValueCache.class.st ├── XMLStandardReentrantMutex.class.st ├── XMLStatelessStreamConverter.class.st ├── XMLStreamAdapter.class.st ├── XMLStreamConverter.class.st ├── XMLString.class.st ├── XMLStringReadStreamAdapter.class.st ├── XMLStringWriteStreamAdapter.class.st ├── XMLTerminatedState.class.st ├── XMLTokenizerState.class.st ├── XMLURI.class.st ├── XMLURIParser.class.st ├── XMLUTF16BigEndianStreamConverter.class.st ├── XMLUTF16LittleEndianStreamConverter.class.st ├── XMLUTF16StreamConverter.class.st ├── XMLUTF32BigEndianStreamConverter.class.st ├── XMLUTF32LittleEndianStreamConverter.class.st ├── XMLUTF32StreamConverter.class.st ├── XMLUTF8StreamConverter.class.st ├── XMLUTFStreamConverter.class.st ├── XMLUninitializedState.class.st ├── XMLUnparsedEntityValidator.class.st ├── XMLValidatingNodeVisitor.class.st ├── XMLValidationException.class.st ├── XMLWellFormedParserTokenizer.class.st ├── XMLWellFormednessException.class.st ├── XMLWriteStreamAdapter.class.st ├── XMLXMLDeclarationState.class.st ├── XMLXMLIDAttributeValidator.class.st ├── XMLZincByteEncoderStreamConverter.class.st └── package.st /.ci.ston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/.ci.ston -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/README.md -------------------------------------------------------------------------------- /doc/images/screen001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/doc/images/screen001.png -------------------------------------------------------------------------------- /src/.properties: -------------------------------------------------------------------------------- 1 | { 2 | #format : #tonel 3 | } -------------------------------------------------------------------------------- /src/BaselineOfXMLParser/BaselineOfXMLParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/BaselineOfXMLParser/BaselineOfXMLParser.class.st -------------------------------------------------------------------------------- /src/BaselineOfXMLParser/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : #BaselineOfXMLParser } 2 | -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/FileReference.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/FileReference.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/GLMXMLDisabledDocumentHighlighterTextStylerDecorator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/GLMXMLDisabledDocumentHighlighterTextStylerDecorator.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/GLMXMLDisabledRubricHighlightedTextPresentation.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/GLMXMLDisabledRubricHighlightedTextPresentation.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/GLMXMLDocumentHighlighterTextStylerDecorator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/GLMXMLDocumentHighlighterTextStylerDecorator.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/GLMXMLHighlighterTextStylerDecorator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/GLMXMLHighlighterTextStylerDecorator.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/GLMXMLOuterXMLDocumentHighlighterTextStylerDecorator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/GLMXMLOuterXMLDocumentHighlighterTextStylerDecorator.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/SAXPositionHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/SAXPositionHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/SAXPositionParserDriver.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/SAXPositionParserDriver.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLAttribute.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLAttribute.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLAttributeList.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLAttributeList.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLDeclarationNode.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLDeclarationNode.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLDoctypeDeclaration.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLDoctypeDeclaration.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLDocument.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLDocument.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLDocumentHighlightDefaults.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLDocumentHighlightDefaults.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLDocumentHighlighter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLDocumentHighlighter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLElement.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLElement.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLExternalDocumentConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLExternalDocumentConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLHighlight.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLHighlight.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLHighlightDefaults.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLHighlightDefaults.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLHighlighter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLHighlighter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLHighlightingCanonicalWriterFormatter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLHighlightingCanonicalWriterFormatter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLHighlightingParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLHighlightingParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLHighlightingPrettyPrintingWriterFormatter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLHighlightingPrettyPrintingWriterFormatter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLHighlightingPrologPrettyPrintingWriterFormatter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLHighlightingPrologPrettyPrintingWriterFormatter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLHighlightingWriter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLHighlightingWriter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLHighlightingWriterFormatter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLHighlightingWriterFormatter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLInternalSubsetList.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLInternalSubsetList.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLLazyAttributeDictionary.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLLazyAttributeDictionary.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLNFAState.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLNFAState.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLNode.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLNode.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLNodeList.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLNodeList.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLNodeWithChildren.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLNodeWithChildren.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLNodeWithElements.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLNodeWithElements.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLOrderedList.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLOrderedList.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/XMLPositionWellFormedParserTokenizer.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GTExtensions/XMLPositionWellFormedParserTokenizer.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GTExtensions/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : #'XML-Parser-GTExtensions' } 2 | -------------------------------------------------------------------------------- /src/XML-Parser-GemstoneCompatibility/CharacterCollection.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GemstoneCompatibility/CharacterCollection.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GemstoneCompatibility/Collection.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GemstoneCompatibility/Collection.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GemstoneCompatibility/GsFile.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GemstoneCompatibility/GsFile.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GemstoneCompatibility/PositionableStream.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GemstoneCompatibility/PositionableStream.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-GemstoneCompatibility/XMLGsFileReadStreamFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GemstoneCompatibility/XMLGsFileReadStreamFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GemstoneCompatibility/XMLGsFileWriteStreamFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GemstoneCompatibility/XMLGsFileWriteStreamFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GemstoneCompatibility/XMLParserGemstoneCompatibility.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GemstoneCompatibility/XMLParserGemstoneCompatibility.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GemstoneCompatibility/XMLTransientKeyValueCache.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GemstoneCompatibility/XMLTransientKeyValueCache.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GemstoneCompatibility/XMLTransientReentrantMutex.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-GemstoneCompatibility/XMLTransientReentrantMutex.class.st -------------------------------------------------------------------------------- /src/XML-Parser-GemstoneCompatibility/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : #'XML-Parser-GemstoneCompatibility' } 2 | -------------------------------------------------------------------------------- /src/XML-Parser-Tests-Conformance/XMLConformanceCanonicalWriterFormatter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests-Conformance/XMLConformanceCanonicalWriterFormatter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests-Conformance/XMLConformanceDoctypeDeclarationWriter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests-Conformance/XMLConformanceDoctypeDeclarationWriter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests-Conformance/XMLConformanceExpatTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests-Conformance/XMLConformanceExpatTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests-Conformance/XMLConformanceFileFinder.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests-Conformance/XMLConformanceFileFinder.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests-Conformance/XMLConformanceNotationDeclarationWriter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests-Conformance/XMLConformanceNotationDeclarationWriter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests-Conformance/XMLConformanceOasisTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests-Conformance/XMLConformanceOasisTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests-Conformance/XMLConformancePIWriter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests-Conformance/XMLConformancePIWriter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests-Conformance/XMLConformanceSunTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests-Conformance/XMLConformanceSunTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests-Conformance/XMLConformanceTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests-Conformance/XMLConformanceTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests-Conformance/XMLConformanceVirtualFileExternalEntityResolver.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests-Conformance/XMLConformanceVirtualFileExternalEntityResolver.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests-Conformance/XMLConformanceWriter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests-Conformance/XMLConformanceWriter.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests-Conformance/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : #'XML-Parser-Tests-Conformance' } 2 | -------------------------------------------------------------------------------- /src/XML-Parser-Tests/BitmapCharacterSet.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/BitmapCharacterSet.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/DTDCachingExternalEntityResolverLimitingTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/DTDCachingExternalEntityResolverLimitingTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/DTDCachingExternalEntityResolverTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/DTDCachingExternalEntityResolverTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/DTDExternalEntityResolverLimitingTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/DTDExternalEntityResolverLimitingTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/DTDExternalEntityResolverTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/DTDExternalEntityResolverTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/DTDStaticExternalEntityResolverLimitingTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/DTDStaticExternalEntityResolverLimitingTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/DTDStaticExternalEntityResolverTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/DTDStaticExternalEntityResolverTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/ManifestXMLParserTests.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/ManifestXMLParserTests.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2ElementHandlerParserTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2ElementHandlerParserTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2HAuthorElementHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2HAuthorElementHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2HBookElementHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2HBookElementHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2HBooksElementHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2HBooksElementHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2HContactsElementHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2HContactsElementHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2HDateOfBirthElementHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2HDateOfBirthElementHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2HEmailElementHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2HEmailElementHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2HISBNElementHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2HISBNElementHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2HNameElementHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2HNameElementHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2HPersonElementHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2HPersonElementHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2HResidenceElementHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2HResidenceElementHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2HTitleElementHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2HTitleElementHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2ParserTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2ParserTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2SampleBook.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2SampleBook.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAX2SamplePerson.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAX2SamplePerson.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAXHandlerTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAXHandlerTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAXInterruptingRecordingPrefixURILocalNameHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAXInterruptingRecordingPrefixURILocalNameHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAXRecordingHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAXRecordingHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAXRecordingPrefixURIHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAXRecordingPrefixURIHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAXRecordingPrefixURILocalNameHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAXRecordingPrefixURILocalNameHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/SAXTestingMessageRecordingHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/SAXTestingMessageRecordingHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/TestCase.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/TestCase.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLASCIIStreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLASCIIStreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLAbstractReadStreamTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLAbstractReadStreamTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLAbstractSetTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLAbstractSetTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLAttributeDeclarationTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLAttributeDeclarationTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLAttributeDictionaryTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLAttributeDictionaryTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLAttributeListTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLAttributeListTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLAttributeSpecTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLAttributeSpecTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLAttributeTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLAttributeTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLBasicAttributeSpecTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLBasicAttributeSpecTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLBasicElementClassMapperTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLBasicElementClassMapperTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLCDataTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLCDataTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLCachingAttributeListTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLCachingAttributeListTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLCachingNodeListTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLCachingNodeListTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLCharacterMethodsTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLCharacterMethodsTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLClassFinderTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLClassFinderTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLCommentTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLCommentTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLConfigurationTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLConfigurationTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDFALimitsTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDFALimitsTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDOMConfigurationTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDOMConfigurationTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDOMParserTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDOMParserTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDeclarationNodeTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDeclarationNodeTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterASCIIStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterASCIIStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterASCIITest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterASCIITest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterLatin1StringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterLatin1StringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterLatin1Test.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterLatin1Test.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16BEBOMStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16BEBOMStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16BEBOMTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16BEBOMTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16BEStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16BEStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16BETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16BETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16LEBOMStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16LEBOMStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16LEBOMTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16LEBOMTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16LEStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16LEStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16LETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF16LETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32BEBOMStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32BEBOMStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32BEBOMTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32BEBOMTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32BEStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32BEStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32BETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32BETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32LEBOMStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32LEBOMStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32LEBOMTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32LEBOMTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32LEStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32LEStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32LETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF32LETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF8BOMStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF8BOMStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF8BOMTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF8BOMTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF8StringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF8StringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF8Test.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDecodingReadStreamAdapterUTF8Test.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDoctypeDeclarationTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDoctypeDeclarationTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDocumentTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDocumentTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDocumentWithCachingNodeList.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDocumentWithCachingNodeList.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLDocumentWithCachingNodeListTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLDocumentWithCachingNodeListTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLElementClassMapperTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLElementClassMapperTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLElementDeclarationTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLElementDeclarationTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLElementTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLElementTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLElementWithCachingNodeList.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLElementWithCachingNodeList.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLElementWithCachingNodeListTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLElementWithCachingNodeListTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLElementWithoutCachingAttributeList.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLElementWithoutCachingAttributeList.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLElementWithoutCachingAttributeListTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLElementWithoutCachingAttributeListTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingDetectorTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingDetectorTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingDetectorUTF16BEStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingDetectorUTF16BEStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingDetectorUTF16BETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingDetectorUTF16BETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingDetectorUTF16LEStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingDetectorUTF16LEStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingDetectorUTF16LETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingDetectorUTF16LETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingDetectorUTF32BEStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingDetectorUTF32BEStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingDetectorUTF32BETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingDetectorUTF32BETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingDetectorUTF32LEStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingDetectorUTF32LEStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingDetectorUTF32LETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingDetectorUTF32LETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingDetectorUTF8StringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingDetectorUTF8StringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingDetectorUTF8Test.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingDetectorUTF8Test.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterASCIIStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterASCIIStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterASCIITest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterASCIITest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterLatin1StringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterLatin1StringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterLatin1Test.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterLatin1Test.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF16BEStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF16BEStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF16BETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF16BETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF16LEStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF16LEStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF16LETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF16LETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF32BEStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF32BEStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF32BETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF32BETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF32LEStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF32LEStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF32LETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF32LETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF8StringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF8StringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF8Test.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEncodingWriteStreamAdapterUTF8Test.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLEntityDeclarationTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLEntityDeclarationTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLExceptionRaisingReadStream.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLExceptionRaisingReadStream.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLExceptionTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLExceptionTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLExternalEntityTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLExternalEntityTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFAttributeList.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFAttributeList.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFCData.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFCData.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFComment.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFComment.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFDateElement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFDateElement.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFDocument.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFDocument.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFElement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFElement.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFNodeList.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFNodeList.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFPI.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFPI.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFRealNameElement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFRealNameElement.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFSerializationFormatElement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFSerializationFormatElement.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFString.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFString.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFTableElement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFTableElement.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFUserElement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFUserElement.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFUsernameElement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFUsernameElement.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFWrongElement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFWrongElement.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFileHandleTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFileHandleTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFileHandleUTF16BETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFileHandleUTF16BETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFileHandleUTF16LETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFileHandleUTF16LETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFileHandleUTF32BETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFileHandleUTF32BETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFileHandleUTF32LETest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFileHandleUTF32LETest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLFileHandleUTF8Test.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLFileHandleUTF8Test.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLGeneralEntityDeclarationTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLGeneralEntityDeclarationTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLHTTPMIMETypeTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLHTTPMIMETypeTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLHTTPMessageTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLHTTPMessageTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLHTTPRequestTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLHTTPRequestTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLHTTPResponseTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLHTTPResponseTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLImplicitUTF16BigEndianStreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLImplicitUTF16BigEndianStreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLImplicitUTF16LittleEndianStreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLImplicitUTF16LittleEndianStreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLImplicitUTF32BigEndianStreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLImplicitUTF32BigEndianStreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLImplicitUTF32LittleEndianStreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLImplicitUTF32LittleEndianStreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLImplicitUTF8StreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLImplicitUTF8StreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLIntegerReaderTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLIntegerReaderTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLKeyValueCacheTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLKeyValueCacheTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLLatin1StreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLLatin1StreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLLazyAttributeDictionaryTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLLazyAttributeDictionaryTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLLazyNamespacedAttributeDictionaryTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLLazyNamespacedAttributeDictionaryTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLLimitedReadStreamAdapterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLLimitedReadStreamAdapterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLMessageRecorder.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLMessageRecorder.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNFAStateSetTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNFAStateSetTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNamespaceScopeTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNamespaceScopeTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNamespacedAttributeDictionaryTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNamespacedAttributeDictionaryTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNestedStreamReaderTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNestedStreamReaderTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNodeCanonicalPrintingTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNodeCanonicalPrintingTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNodeFactoryTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNodeFactoryTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNodeListTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNodeListTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNodeTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNodeTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNodeWithChildrenTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNodeWithChildrenTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNodeWithElementsTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNodeWithElementsTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNotationDeclarationTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNotationDeclarationTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNullReadStreamTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNullReadStreamTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLNullStreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLNullStreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLObservableListTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLObservableListTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLOrderedListTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLOrderedListTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLPITest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLPITest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLParameterEntityDeclarationTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLParameterEntityDeclarationTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLParserExceptionTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLParserExceptionTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLParserLimitsTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLParserLimitsTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLParserTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLParserTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLPercentDecodingReadStreamAdapterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLPercentDecodingReadStreamAdapterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLPercentEncodingWriteStreamAdapterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLPercentEncodingWriteStreamAdapterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLPluggableAttributeSpecTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLPluggableAttributeSpecTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLPluggableElementFactoryTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLPluggableElementFactoryTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLPluggableNodeFactoryTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLPluggableNodeFactoryTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLReadStreamAdapterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLReadStreamAdapterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLRecordingAttributeListObserver.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLRecordingAttributeListObserver.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLRecordingListObserver.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLRecordingListObserver.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLRecordingNodeListObserver.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLRecordingNodeListObserver.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLRecordingNodeVisitor.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLRecordingNodeVisitor.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLSingleCharacterReadStreamTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLSingleCharacterReadStreamTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLSkippableTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLSkippableTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLSmallIntegerReaderTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLSmallIntegerReaderTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLStreamAdapterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLStreamAdapterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLStreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLStreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLStringMethodsTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLStringMethodsTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLStringReadStreamAdapterBinaryTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLStringReadStreamAdapterBinaryTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLStringReadStreamAdapterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLStringReadStreamAdapterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLStringTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLStubOrderedListCustomCollection.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLStubOrderedListCustomCollection.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLTempFileManager.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLTempFileManager.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLURITest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLURITest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLUTF16BigEndianStreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLUTF16BigEndianStreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLUTF16LittleEndianStreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLUTF16LittleEndianStreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLUTF32BigEndianStreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLUTF32BigEndianStreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLUTF32LittleEndianStreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLUTF32LittleEndianStreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLUTF8StreamConverterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLUTF8StreamConverterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/XMLWriteStreamAdapterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tests/XMLWriteStreamAdapterTest.class.st -------------------------------------------------------------------------------- /src/XML-Parser-Tests/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'XML-Parser-Tests' } 2 | -------------------------------------------------------------------------------- /src/XML-Parser-Tools/XMLDocument.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tools/XMLDocument.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-Tools/XMLElement.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tools/XMLElement.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-Tools/XMLNode.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser-Tools/XMLNode.extension.st -------------------------------------------------------------------------------- /src/XML-Parser-Tools/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'XML-Parser-Tools' } 2 | -------------------------------------------------------------------------------- /src/XML-Parser/Character.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/Character.extension.st -------------------------------------------------------------------------------- /src/XML-Parser/Collection.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/Collection.extension.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDAttributeDefinitionParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDAttributeDefinitionParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDCachingExternalEntityResolver.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDCachingExternalEntityResolver.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDContentModelParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDContentModelParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDDecodedResolvedExternalParsedEntityReplacement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDDecodedResolvedExternalParsedEntityReplacement.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDDoctypeDefinition.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDDoctypeDefinition.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDDocumentValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDDocumentValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDElementContentModelParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDElementContentModelParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDEntityConfiguration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDEntityConfiguration.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDEnumerationListParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDEnumerationListParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDExternalEntityLimits.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDExternalEntityLimits.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDExternalEntityResolver.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDExternalEntityResolver.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDExternalEntityResolverLimitingDecorator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDExternalEntityResolverLimitingDecorator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDExternalGeneralParsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDExternalGeneralParsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDExternalParameterParsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDExternalParameterParsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDExternalParsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDExternalParsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDExternalSubsetParserDriver.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDExternalSubsetParserDriver.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDInternalGeneralParsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDInternalGeneralParsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDInternalParameterParsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDInternalParameterParsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDInternalParsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDInternalParsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDLiteralContentModelParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDLiteralContentModelParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDMixedContentEnumerationListParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDMixedContentEnumerationListParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDMixedContentModelParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDMixedContentModelParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDNotation.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDNotation.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDNotationEnumerationListParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDNotationEnumerationListParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDParsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDParsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDResolvedExternalParsedEntityReplacement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDResolvedExternalParsedEntityReplacement.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDStandaloneExternalAttributeDefinitionParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDStandaloneExternalAttributeDefinitionParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDStandaloneExternalElementContentModelParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDStandaloneExternalElementContentModelParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDStandaloneExternalExternalGeneralParsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDStandaloneExternalExternalGeneralParsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDStandaloneExternalInternalGeneralParsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDStandaloneExternalInternalGeneralParsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDStaticExternalEntityResolver.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDStaticExternalEntityResolver.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDSubsetParserDriver.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDSubsetParserDriver.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDUndecodedResolvedExternalParsedEntityReplacement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDUndecodedResolvedExternalParsedEntityReplacement.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDUnparsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDUnparsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDUnresolvableExternalGeneralParsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDUnresolvableExternalGeneralParsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDUnresolvableExternalParameterParsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDUnresolvableExternalParameterParsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDUnresolvableExternalParsedEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDUnresolvableExternalParsedEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/DTDUnresolvedExternalParsedEntityReplacement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/DTDUnresolvedExternalParsedEntityReplacement.class.st -------------------------------------------------------------------------------- /src/XML-Parser/Error.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/Error.extension.st -------------------------------------------------------------------------------- /src/XML-Parser/ManifestXMLParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/ManifestXMLParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/Object.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/Object.extension.st -------------------------------------------------------------------------------- /src/XML-Parser/SAX2ContentHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAX2ContentHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SAX2DeclarationHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAX2DeclarationHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SAX2ElementCharacterHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAX2ElementCharacterHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SAX2ElementHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAX2ElementHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SAX2ElementHandlerFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAX2ElementHandlerFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SAX2ElementHandlerFactoryMapper.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAX2ElementHandlerFactoryMapper.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SAX2ElementParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAX2ElementParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SAX2LexicalHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAX2LexicalHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SAX2Parser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAX2Parser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SAX2PluggableElementHandlerFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAX2PluggableElementHandlerFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SAX2PluggableElementHandlerFactoryMapper.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAX2PluggableElementHandlerFactoryMapper.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SAXHandler.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAXHandler.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SAXParserDriver.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SAXParserDriver.class.st -------------------------------------------------------------------------------- /src/XML-Parser/SequenceableCollection.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/SequenceableCollection.extension.st -------------------------------------------------------------------------------- /src/XML-Parser/Stream.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/Stream.extension.st -------------------------------------------------------------------------------- /src/XML-Parser/String.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/String.extension.st -------------------------------------------------------------------------------- /src/XML-Parser/UndefinedObject.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/UndefinedObject.extension.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLASCIIStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLASCIIStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAbstractFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAbstractFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAbstractReadStream.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAbstractReadStream.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAbstractReadStreamParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAbstractReadStreamParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAnyElementValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAnyElementValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAttribute.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAttribute.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAttributeDeclaration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAttributeDeclaration.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAttributeDefaultValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAttributeDefaultValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAttributeDictionary.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAttributeDictionary.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAttributeFixedValueDefaultValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAttributeFixedValueDefaultValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAttributeImpliedDefaultValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAttributeImpliedDefaultValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAttributeList.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAttributeList.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAttributeRequiredDefaultValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAttributeRequiredDefaultValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAttributeSpec.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAttributeSpec.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLAttributeValueDefaultValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLAttributeValueDefaultValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLBasicAttributeSpec.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLBasicAttributeSpec.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLBasicElementClassMapper.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLBasicElementClassMapper.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLCData.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLCData.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLCDataAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLCDataAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLCachingAttributeList.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLCachingAttributeList.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLCachingNodeList.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLCachingNodeList.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLClassFinder.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLClassFinder.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLComment.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLComment.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLConfiguration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLConfiguration.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLContentState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLContentState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDFAElementContentElementValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDFAElementContentElementValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDFAElementValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDFAElementValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDFAState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDFAState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDFAStateCache.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDFAStateCache.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDOMConfiguration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDOMConfiguration.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDOMException.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDOMException.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDOMParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDOMParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDeclarationNode.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDeclarationNode.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDecodingReadStreamAdapter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDecodingReadStreamAdapter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDoctypeDeclaration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDoctypeDeclaration.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDoctypeDeclarationState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDoctypeDeclarationState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDocument.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDocument.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLDocumentValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLDocumentValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLElement.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLElement.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLElementClassMapper.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLElementClassMapper.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLElementDeclaration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLElementDeclaration.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLElementIDValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLElementIDValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLElementNester.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLElementNester.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLElementValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLElementValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLEmptyElementValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLEmptyElementValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLEncodingDetector.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLEncodingDetector.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLEncodingException.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLEncodingException.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLEncodingWriteStreamAdapter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLEncodingWriteStreamAdapter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLEntitiesAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLEntitiesAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLEntityAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLEntityAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLEntityDeclaration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLEntityDeclaration.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLEnumerationAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLEnumerationAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLException.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLException.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLExternalSubsetState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLExternalSubsetState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLExternalSubsetTextDeclarationState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLExternalSubsetTextDeclarationState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLFileDirectoryFileHandle.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLFileDirectoryFileHandle.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLFileException.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLFileException.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLFileHandle.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLFileHandle.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLFileReadStreamFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLFileReadStreamFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLFileSystemFileHandle.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLFileSystemFileHandle.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLFileWriteStreamFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLFileWriteStreamFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLGeneralEntityDeclaration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLGeneralEntityDeclaration.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPDecompressingReadStreamAdapterFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPDecompressingReadStreamAdapterFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPException.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPException.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPGZipDecompressingReadStreamAdapterFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPGZipDecompressingReadStreamAdapterFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPMIMEType.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPMIMEType.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPMIMETypeParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPMIMETypeParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPMessage.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPMessage.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPRequest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPRequest.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPResponse.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPResponse.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPResponseContentReader.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPResponseContentReader.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPWebClientRequest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPWebClientRequest.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPWebClientResponse.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPWebClientResponse.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPWebClientResponseContentReader.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPWebClientResponseContentReader.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPZincRequest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPZincRequest.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPZincResponse.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPZincResponse.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLHTTPZincResponseContentReader.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLHTTPZincResponseContentReader.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLIDAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLIDAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLIDRefAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLIDRefAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLIDRefsAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLIDRefsAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLImplicitEncodingDetector.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLImplicitEncodingDetector.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLImplicitUTF16BigEndianStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLImplicitUTF16BigEndianStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLImplicitUTF16LittleEndianStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLImplicitUTF16LittleEndianStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLImplicitUTF32BigEndianStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLImplicitUTF32BigEndianStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLImplicitUTF32LittleEndianStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLImplicitUTF32LittleEndianStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLImplicitUTF8StreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLImplicitUTF8StreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLIntegerReader.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLIntegerReader.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLInternalSubsetList.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLInternalSubsetList.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLInternalSubsetState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLInternalSubsetState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLKeyValueCache.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLKeyValueCache.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLLatin1StreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLLatin1StreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLLazyAttributeDictionary.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLLazyAttributeDictionary.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLLazyNamespacedAttributeDictionary.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLLazyNamespacedAttributeDictionary.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLLimitException.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLLimitException.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLLimitedReadStreamAdapter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLLimitedReadStreamAdapter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLMixedContentElementValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLMixedContentElementValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLMutatingNodeVisitor.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLMutatingNodeVisitor.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNFAAcceptingState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNFAAcceptingState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNFABranchingState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNFABranchingState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNFABuilder.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNFABuilder.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNFAFragment.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNFAFragment.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNFAMatchingState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNFAMatchingState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNFAState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNFAState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNFAStateSet.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNFAStateSet.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNamespaceException.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNamespaceException.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNamespaceScope.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNamespaceScope.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNamespaceScopeAllocator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNamespaceScopeAllocator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNamespacedAttributeDictionary.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNamespacedAttributeDictionary.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNestedStreamReader.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNestedStreamReader.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNmtokenAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNmtokenAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNmtokensAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNmtokensAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNode.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNode.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNodeContentWriteStreamAdapter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNodeContentWriteStreamAdapter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNodeFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNodeFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNodeList.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNodeList.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNodeVisitor.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNodeVisitor.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNodeWithChildren.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNodeWithChildren.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNodeWithElements.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNodeWithElements.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNotationDeclaration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNotationDeclaration.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNotationEnumerationAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNotationEnumerationAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNullReadStream.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNullReadStream.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLNullStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLNullStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLObservableList.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLObservableList.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLOrderedList.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLOrderedList.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPI.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPI.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLParameterEntityDeclaration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLParameterEntityDeclaration.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLParserDriver.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLParserDriver.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLParserException.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLParserException.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLParserLimits.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLParserLimits.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLParserTokenizer.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLParserTokenizer.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLParsingInterruptException.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLParsingInterruptException.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPercentDecodingReadStreamAdapter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPercentDecodingReadStreamAdapter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPercentEncodingWriteStreamAdapter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPercentEncodingWriteStreamAdapter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPharoFileReferenceReadStreamFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPharoFileReferenceReadStreamFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPharoFileReferenceWriteStreamFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPharoFileReferenceWriteStreamFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPluggableAttributeSpec.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPluggableAttributeSpec.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPluggableElementFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPluggableElementFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPluggableNodeFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPluggableNodeFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPostDoctypeDeclarationState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPostDoctypeDeclarationState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPrologState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPrologState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPushedBackEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPushedBackEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPushedBackExternalStream.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPushedBackExternalStream.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPushedBackGeneralEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPushedBackGeneralEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPushedBackInternalStream.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPushedBackInternalStream.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPushedBackParameterEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPushedBackParameterEntity.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLPushedBackStream.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLPushedBackStream.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLReadStreamAdapter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLReadStreamAdapter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLReentrantMutex.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLReentrantMutex.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLSingleCharacterReadStream.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLSingleCharacterReadStream.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLSmallIntegerReader.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLSmallIntegerReader.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalAttributeFixedValueDefaultValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalAttributeFixedValueDefaultValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalAttributeValueDefaultValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalAttributeValueDefaultValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalCDataAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalCDataAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalDFAElementContentElementValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalDFAElementContentElementValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalEntitiesAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalEntitiesAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalEntityAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalEntityAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalEnumerationAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalEnumerationAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalIDAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalIDAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalIDRefAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalIDRefAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalIDRefsAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalIDRefsAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalNmtokenAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalNmtokenAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalNmtokensAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalNmtokensAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalNotationEnumerationAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalNotationEnumerationAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandaloneExternalXMLIDAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandaloneExternalXMLIDAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandardFileStreamReadStreamFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandardFileStreamReadStreamFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandardFileStreamWriteStreamFactory.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandardFileStreamWriteStreamFactory.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandardKeyValueCache.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandardKeyValueCache.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStandardReentrantMutex.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStandardReentrantMutex.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStatelessStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStatelessStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStreamAdapter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStreamAdapter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLString.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLString.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStringReadStreamAdapter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStringReadStreamAdapter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLStringWriteStreamAdapter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLStringWriteStreamAdapter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLTerminatedState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLTerminatedState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLTokenizerState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLTokenizerState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLURI.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLURI.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLURIParser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLURIParser.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLUTF16BigEndianStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLUTF16BigEndianStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLUTF16LittleEndianStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLUTF16LittleEndianStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLUTF16StreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLUTF16StreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLUTF32BigEndianStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLUTF32BigEndianStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLUTF32LittleEndianStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLUTF32LittleEndianStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLUTF32StreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLUTF32StreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLUTF8StreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLUTF8StreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLUTFStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLUTFStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLUninitializedState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLUninitializedState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLUnparsedEntityValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLUnparsedEntityValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLValidatingNodeVisitor.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLValidatingNodeVisitor.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLValidationException.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLValidationException.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLWellFormedParserTokenizer.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLWellFormedParserTokenizer.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLWellFormednessException.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLWellFormednessException.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLWriteStreamAdapter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLWriteStreamAdapter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLXMLDeclarationState.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLXMLDeclarationState.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLXMLIDAttributeValidator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLXMLIDAttributeValidator.class.st -------------------------------------------------------------------------------- /src/XML-Parser/XMLZincByteEncoderStreamConverter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-contributions/XML-XMLParser/HEAD/src/XML-Parser/XMLZincByteEncoderStreamConverter.class.st -------------------------------------------------------------------------------- /src/XML-Parser/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'XML-Parser' } 2 | --------------------------------------------------------------------------------