├── .github └── workflows │ ├── CI_build.yml │ └── codeql-analysis.yml ├── .gitignore ├── AboutBoxDlg.cpp ├── AboutBoxDlg.h ├── CMyPropertyGridCtrl.cpp ├── CMyPropertyGridCtrl.h ├── Changes.log ├── Config.cpp ├── Config.h ├── Debug.cpp ├── Debug.h ├── DebugDlg.cpp ├── DebugDlg.h ├── HowtoUseDlg.cpp ├── HowtoUseDlg.h ├── InputDlg.cpp ├── InputDlg.h ├── LICENSE ├── MSXMLHelper.cpp ├── MSXMLHelper.h ├── MSXMLWrapper.cpp ├── MSXMLWrapper.h ├── MessageDlg.cpp ├── MessageDlg.h ├── Notepad_plus_msgs.h ├── OptionsDlg.cpp ├── OptionsDlg.h ├── PluginInterface.h ├── QuickXmlLib ├── QuickXml │ ├── QuickXml.vcxproj │ ├── QuickXml.vcxproj.filters │ ├── QuickXml.vcxproj.user │ └── src │ │ ├── XmlFormater.cpp │ │ ├── XmlFormater.h │ │ ├── XmlParser.cpp │ │ └── XmlParser.h └── QuickXmlTests │ ├── QuickXmlTests.vcxproj │ ├── QuickXmlTests.vcxproj.filters │ ├── QuickXmlTests.vcxproj.user │ └── src │ └── QuickXmlTests.cpp ├── README.md ├── Report.cpp ├── Report.h ├── Sci_Position.h ├── Scintilla.h ├── ScintillaDoc.h ├── SelectFileDlg.cpp ├── SelectFileDlg.h ├── SimpleXmlLib ├── SimpleXml │ ├── SimpleXml.vcxproj │ ├── SimpleXml.vcxproj.filters │ ├── SimpleXml.vcxproj.user │ └── src │ │ ├── ChunkedStream.cpp │ │ ├── ChunkedStream.h │ │ ├── ErrorList.h │ │ ├── Lexer.cpp │ │ ├── Lexer.h │ │ ├── PrettyPrinter.cpp │ │ ├── PrettyPrinter.h │ │ ├── SimpleXml.cpp │ │ ├── SimpleXml.h │ │ ├── TextEncoding.cpp │ │ ├── TextEncoding.h │ │ └── XMLAttribute.h └── SimpleXmlTests │ ├── Resource.aps │ ├── SimpleXmlTests.vcxproj │ ├── SimpleXmlTests.vcxproj.filters │ ├── SimpleXmlTests.vcxproj.user │ ├── TestFiles │ ├── PrettyPrint │ │ ├── AutoCloseEmptyElement.in.xml │ │ ├── AutoCloseEmptyElement.out.xml │ │ ├── AutoCloseEmptyElement_child.in.xml │ │ ├── AutoCloseEmptyElement_child.out.xml │ │ ├── Comment_After_PI.in.xml │ │ ├── Comment_After_PI.out.xml │ │ ├── FullTest.in.xml │ │ ├── FullTest.out.xml │ │ ├── Test1.in.xml │ │ ├── Test1.out.xml │ │ ├── markupdecl.in.xml │ │ ├── markupdecl.out.xml │ │ ├── xmltag_not_closed.in.xml │ │ └── xmltag_not_closed.out.xml │ ├── PrettyPrintIndentAttributes │ │ ├── space-indented.in.xml │ │ ├── space-indented.out.xml │ │ ├── tab-indented.in.xml │ │ └── tab-indented.out.xml │ └── PrettyPrintIndentOnly │ │ ├── Test1.in.xml │ │ └── Test1.out.xml │ ├── packages.config │ └── src │ ├── ChunkedStreamTests.cpp │ ├── EmbeddedResources.cpp │ ├── EmbeddedResources.h │ ├── LexerTests.cpp │ ├── PrettyPrinterTests.cpp │ ├── Resource.rc │ └── resource.h ├── StdAfx.cpp ├── StdAfx.h ├── StringXmlLib ├── StringXml │ ├── StringXml.vcxproj │ ├── StringXml.vcxproj.filters │ ├── StringXml.vcxproj.user │ └── src │ │ ├── StringXml.cpp │ │ └── StringXml.h └── StringXmlTests │ ├── StringXmlTests.vcxproj │ ├── StringXmlTests.vcxproj.filters │ ├── StringXmlTests.vcxproj.user │ └── src │ └── StringXmlTests.cpp ├── ToolsComment.cpp ├── ToolsConvert.cpp ├── ToolsEditor.cpp ├── ToolsErrors.cpp ├── ToolsPrettyPrintFast.cpp ├── ToolsXLSTransform.cpp ├── ToolsXPath.cpp ├── ToolsXmlValidate.cpp ├── XMLTools.clw ├── XMLTools.cpp ├── XMLTools.def ├── XMLTools.h ├── XMLTools.rc ├── XMLTools.sln ├── XMLTools.vcxproj ├── XMLTools.vcxproj.filters ├── XMLTools.vcxproj.user ├── XMLToolsTests ├── XMLToolsTests.cpp ├── XMLToolsTests.vcxproj ├── XMLToolsTests.vcxproj.filters └── XMLToolsTests.vcxproj.user ├── XPathEvalDlg.cpp ├── XPathEvalDlg.h ├── XSLTransformDlg.cpp ├── XSLTransformDlg.h ├── XmlWrapperInterface.h ├── _BugsToFix.txt ├── appveyor.yml ├── install └── ReadMe.txt ├── menuCmdID.h ├── nppHelpers.cpp ├── nppHelpers.h ├── nppMenu.cpp ├── nppMenu.h ├── res ├── CheckXml.bmp ├── CheckXml.ico ├── CheckXml_DM.ico ├── Comment.bmp ├── Comment.ico ├── Comment_DM.ico ├── CurrentXPath.bmp ├── CurrentXPath.ico ├── CurrentXPathNS.bmp ├── CurrentXPathNS.ico ├── CurrentXPathNS_DM.ico ├── CurrentXPath_DM.ico ├── EscapeXml.bmp ├── EscapeXml.ico ├── EscapeXml_DM.ico ├── EvaluateXPath.bmp ├── EvaluateXPath.ico ├── EvaluateXPath_DM.ico ├── First.bmp ├── First.ico ├── First_DM.ico ├── Last.bmp ├── Last.ico ├── Last_DM.ico ├── Linearize.bmp ├── Linearize.ico ├── Linearize_DM.ico ├── Next.bmp ├── Next.ico ├── Next_DM.ico ├── Options.bmp ├── Options.ico ├── Options_DM.ico ├── PrettyPrint.bmp ├── PrettyPrint.ico ├── PrettyPrintAttr.bmp ├── PrettyPrintAttr.ico ├── PrettyPrintAttr_DM.ico ├── PrettyPrintIndentOnly.bmp ├── PrettyPrintIndentOnly.ico ├── PrettyPrintIndentOnly_DM.ico ├── PrettyPrint_DM.ico ├── Previous.bmp ├── Previous.ico ├── Previous_DM.ico ├── Uncomment.bmp ├── Uncomment.ico ├── Uncomment_DM.ico ├── UnescapeXml.bmp ├── UnescapeXml.ico ├── UnescapeXml_DM.ico ├── ValidateXml.bmp ├── ValidateXml.ico ├── ValidateXml_DM.ico ├── XMLTools.rc2 ├── XslTransform.bmp ├── XslTransform.ico ├── XslTransform_DM.ico ├── empty.bmp ├── empty.ico └── empty_DM.ico ├── resource.h └── tests ├── bug232.xml ├── quote.xml ├── simple.xml ├── slideSample01.xml ├── test.xml ├── test.xsd ├── testutf8.xml ├── testutf8.xsl └── testxxe.xml /.github/workflows/CI_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/.github/workflows/CI_build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/.gitignore -------------------------------------------------------------------------------- /AboutBoxDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/AboutBoxDlg.cpp -------------------------------------------------------------------------------- /AboutBoxDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/AboutBoxDlg.h -------------------------------------------------------------------------------- /CMyPropertyGridCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/CMyPropertyGridCtrl.cpp -------------------------------------------------------------------------------- /CMyPropertyGridCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/CMyPropertyGridCtrl.h -------------------------------------------------------------------------------- /Changes.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/Changes.log -------------------------------------------------------------------------------- /Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/Config.cpp -------------------------------------------------------------------------------- /Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/Config.h -------------------------------------------------------------------------------- /Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/Debug.cpp -------------------------------------------------------------------------------- /Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/Debug.h -------------------------------------------------------------------------------- /DebugDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/DebugDlg.cpp -------------------------------------------------------------------------------- /DebugDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/DebugDlg.h -------------------------------------------------------------------------------- /HowtoUseDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/HowtoUseDlg.cpp -------------------------------------------------------------------------------- /HowtoUseDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/HowtoUseDlg.h -------------------------------------------------------------------------------- /InputDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/InputDlg.cpp -------------------------------------------------------------------------------- /InputDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/InputDlg.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/LICENSE -------------------------------------------------------------------------------- /MSXMLHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/MSXMLHelper.cpp -------------------------------------------------------------------------------- /MSXMLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/MSXMLHelper.h -------------------------------------------------------------------------------- /MSXMLWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/MSXMLWrapper.cpp -------------------------------------------------------------------------------- /MSXMLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/MSXMLWrapper.h -------------------------------------------------------------------------------- /MessageDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/MessageDlg.cpp -------------------------------------------------------------------------------- /MessageDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/MessageDlg.h -------------------------------------------------------------------------------- /Notepad_plus_msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/Notepad_plus_msgs.h -------------------------------------------------------------------------------- /OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/OptionsDlg.cpp -------------------------------------------------------------------------------- /OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/OptionsDlg.h -------------------------------------------------------------------------------- /PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/PluginInterface.h -------------------------------------------------------------------------------- /QuickXmlLib/QuickXml/QuickXml.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/QuickXmlLib/QuickXml/QuickXml.vcxproj -------------------------------------------------------------------------------- /QuickXmlLib/QuickXml/QuickXml.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/QuickXmlLib/QuickXml/QuickXml.vcxproj.filters -------------------------------------------------------------------------------- /QuickXmlLib/QuickXml/QuickXml.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/QuickXmlLib/QuickXml/QuickXml.vcxproj.user -------------------------------------------------------------------------------- /QuickXmlLib/QuickXml/src/XmlFormater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/QuickXmlLib/QuickXml/src/XmlFormater.cpp -------------------------------------------------------------------------------- /QuickXmlLib/QuickXml/src/XmlFormater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/QuickXmlLib/QuickXml/src/XmlFormater.h -------------------------------------------------------------------------------- /QuickXmlLib/QuickXml/src/XmlParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/QuickXmlLib/QuickXml/src/XmlParser.cpp -------------------------------------------------------------------------------- /QuickXmlLib/QuickXml/src/XmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/QuickXmlLib/QuickXml/src/XmlParser.h -------------------------------------------------------------------------------- /QuickXmlLib/QuickXmlTests/QuickXmlTests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/QuickXmlLib/QuickXmlTests/QuickXmlTests.vcxproj -------------------------------------------------------------------------------- /QuickXmlLib/QuickXmlTests/QuickXmlTests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/QuickXmlLib/QuickXmlTests/QuickXmlTests.vcxproj.filters -------------------------------------------------------------------------------- /QuickXmlLib/QuickXmlTests/QuickXmlTests.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/QuickXmlLib/QuickXmlTests/QuickXmlTests.vcxproj.user -------------------------------------------------------------------------------- /QuickXmlLib/QuickXmlTests/src/QuickXmlTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/QuickXmlLib/QuickXmlTests/src/QuickXmlTests.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/README.md -------------------------------------------------------------------------------- /Report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/Report.cpp -------------------------------------------------------------------------------- /Report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/Report.h -------------------------------------------------------------------------------- /Sci_Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/Sci_Position.h -------------------------------------------------------------------------------- /Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/Scintilla.h -------------------------------------------------------------------------------- /ScintillaDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/ScintillaDoc.h -------------------------------------------------------------------------------- /SelectFileDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SelectFileDlg.cpp -------------------------------------------------------------------------------- /SelectFileDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SelectFileDlg.h -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/SimpleXml.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/SimpleXml.vcxproj -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/SimpleXml.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/SimpleXml.vcxproj.filters -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/SimpleXml.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/SimpleXml.vcxproj.user -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/src/ChunkedStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/src/ChunkedStream.cpp -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/src/ChunkedStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/src/ChunkedStream.h -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/src/ErrorList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/src/ErrorList.h -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/src/Lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/src/Lexer.cpp -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/src/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/src/Lexer.h -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/src/PrettyPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/src/PrettyPrinter.cpp -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/src/PrettyPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/src/PrettyPrinter.h -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/src/SimpleXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/src/SimpleXml.cpp -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/src/SimpleXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/src/SimpleXml.h -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/src/TextEncoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/src/TextEncoding.cpp -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/src/TextEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/src/TextEncoding.h -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXml/src/XMLAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXml/src/XMLAttribute.h -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/Resource.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/Resource.aps -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/SimpleXmlTests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/SimpleXmlTests.vcxproj -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/SimpleXmlTests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/SimpleXmlTests.vcxproj.filters -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/SimpleXmlTests.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/SimpleXmlTests.vcxproj.user -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/AutoCloseEmptyElement.in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/AutoCloseEmptyElement.in.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/AutoCloseEmptyElement.out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/AutoCloseEmptyElement.out.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/AutoCloseEmptyElement_child.in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/AutoCloseEmptyElement_child.in.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/AutoCloseEmptyElement_child.out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/AutoCloseEmptyElement_child.out.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/Comment_After_PI.in.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/Comment_After_PI.out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/FullTest.in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/FullTest.in.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/FullTest.out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/FullTest.out.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/Test1.in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/Test1.in.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/Test1.out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/Test1.out.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/markupdecl.in.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/markupdecl.out.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/xmltag_not_closed.in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/xmltag_not_closed.in.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/xmltag_not_closed.out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrint/xmltag_not_closed.out.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrintIndentAttributes/space-indented.in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrintIndentAttributes/space-indented.in.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrintIndentAttributes/space-indented.out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrintIndentAttributes/space-indented.out.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrintIndentAttributes/tab-indented.in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrintIndentAttributes/tab-indented.in.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrintIndentAttributes/tab-indented.out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrintIndentAttributes/tab-indented.out.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrintIndentOnly/Test1.in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrintIndentOnly/Test1.in.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrintIndentOnly/Test1.out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/TestFiles/PrettyPrintIndentOnly/Test1.out.xml -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/packages.config -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/src/ChunkedStreamTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/src/ChunkedStreamTests.cpp -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/src/EmbeddedResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/src/EmbeddedResources.cpp -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/src/EmbeddedResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/src/EmbeddedResources.h -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/src/LexerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/src/LexerTests.cpp -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/src/PrettyPrinterTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/src/PrettyPrinterTests.cpp -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/src/Resource.rc -------------------------------------------------------------------------------- /SimpleXmlLib/SimpleXmlTests/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/SimpleXmlLib/SimpleXmlTests/src/resource.h -------------------------------------------------------------------------------- /StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/StdAfx.cpp -------------------------------------------------------------------------------- /StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/StdAfx.h -------------------------------------------------------------------------------- /StringXmlLib/StringXml/StringXml.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/StringXmlLib/StringXml/StringXml.vcxproj -------------------------------------------------------------------------------- /StringXmlLib/StringXml/StringXml.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/StringXmlLib/StringXml/StringXml.vcxproj.filters -------------------------------------------------------------------------------- /StringXmlLib/StringXml/StringXml.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/StringXmlLib/StringXml/StringXml.vcxproj.user -------------------------------------------------------------------------------- /StringXmlLib/StringXml/src/StringXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/StringXmlLib/StringXml/src/StringXml.cpp -------------------------------------------------------------------------------- /StringXmlLib/StringXml/src/StringXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/StringXmlLib/StringXml/src/StringXml.h -------------------------------------------------------------------------------- /StringXmlLib/StringXmlTests/StringXmlTests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/StringXmlLib/StringXmlTests/StringXmlTests.vcxproj -------------------------------------------------------------------------------- /StringXmlLib/StringXmlTests/StringXmlTests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/StringXmlLib/StringXmlTests/StringXmlTests.vcxproj.filters -------------------------------------------------------------------------------- /StringXmlLib/StringXmlTests/StringXmlTests.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/StringXmlLib/StringXmlTests/StringXmlTests.vcxproj.user -------------------------------------------------------------------------------- /StringXmlLib/StringXmlTests/src/StringXmlTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/StringXmlLib/StringXmlTests/src/StringXmlTests.cpp -------------------------------------------------------------------------------- /ToolsComment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/ToolsComment.cpp -------------------------------------------------------------------------------- /ToolsConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/ToolsConvert.cpp -------------------------------------------------------------------------------- /ToolsEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/ToolsEditor.cpp -------------------------------------------------------------------------------- /ToolsErrors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/ToolsErrors.cpp -------------------------------------------------------------------------------- /ToolsPrettyPrintFast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/ToolsPrettyPrintFast.cpp -------------------------------------------------------------------------------- /ToolsXLSTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/ToolsXLSTransform.cpp -------------------------------------------------------------------------------- /ToolsXPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/ToolsXPath.cpp -------------------------------------------------------------------------------- /ToolsXmlValidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/ToolsXmlValidate.cpp -------------------------------------------------------------------------------- /XMLTools.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLTools.clw -------------------------------------------------------------------------------- /XMLTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLTools.cpp -------------------------------------------------------------------------------- /XMLTools.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLTools.def -------------------------------------------------------------------------------- /XMLTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLTools.h -------------------------------------------------------------------------------- /XMLTools.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLTools.rc -------------------------------------------------------------------------------- /XMLTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLTools.sln -------------------------------------------------------------------------------- /XMLTools.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLTools.vcxproj -------------------------------------------------------------------------------- /XMLTools.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLTools.vcxproj.filters -------------------------------------------------------------------------------- /XMLTools.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLTools.vcxproj.user -------------------------------------------------------------------------------- /XMLToolsTests/XMLToolsTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLToolsTests/XMLToolsTests.cpp -------------------------------------------------------------------------------- /XMLToolsTests/XMLToolsTests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLToolsTests/XMLToolsTests.vcxproj -------------------------------------------------------------------------------- /XMLToolsTests/XMLToolsTests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLToolsTests/XMLToolsTests.vcxproj.filters -------------------------------------------------------------------------------- /XMLToolsTests/XMLToolsTests.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XMLToolsTests/XMLToolsTests.vcxproj.user -------------------------------------------------------------------------------- /XPathEvalDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XPathEvalDlg.cpp -------------------------------------------------------------------------------- /XPathEvalDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XPathEvalDlg.h -------------------------------------------------------------------------------- /XSLTransformDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XSLTransformDlg.cpp -------------------------------------------------------------------------------- /XSLTransformDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XSLTransformDlg.h -------------------------------------------------------------------------------- /XmlWrapperInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/XmlWrapperInterface.h -------------------------------------------------------------------------------- /_BugsToFix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/_BugsToFix.txt -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/appveyor.yml -------------------------------------------------------------------------------- /install/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/install/ReadMe.txt -------------------------------------------------------------------------------- /menuCmdID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/menuCmdID.h -------------------------------------------------------------------------------- /nppHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/nppHelpers.cpp -------------------------------------------------------------------------------- /nppHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/nppHelpers.h -------------------------------------------------------------------------------- /nppMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/nppMenu.cpp -------------------------------------------------------------------------------- /nppMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/nppMenu.h -------------------------------------------------------------------------------- /res/CheckXml.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/CheckXml.bmp -------------------------------------------------------------------------------- /res/CheckXml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/CheckXml.ico -------------------------------------------------------------------------------- /res/CheckXml_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/CheckXml_DM.ico -------------------------------------------------------------------------------- /res/Comment.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Comment.bmp -------------------------------------------------------------------------------- /res/Comment.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Comment.ico -------------------------------------------------------------------------------- /res/Comment_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Comment_DM.ico -------------------------------------------------------------------------------- /res/CurrentXPath.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/CurrentXPath.bmp -------------------------------------------------------------------------------- /res/CurrentXPath.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/CurrentXPath.ico -------------------------------------------------------------------------------- /res/CurrentXPathNS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/CurrentXPathNS.bmp -------------------------------------------------------------------------------- /res/CurrentXPathNS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/CurrentXPathNS.ico -------------------------------------------------------------------------------- /res/CurrentXPathNS_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/CurrentXPathNS_DM.ico -------------------------------------------------------------------------------- /res/CurrentXPath_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/CurrentXPath_DM.ico -------------------------------------------------------------------------------- /res/EscapeXml.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/EscapeXml.bmp -------------------------------------------------------------------------------- /res/EscapeXml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/EscapeXml.ico -------------------------------------------------------------------------------- /res/EscapeXml_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/EscapeXml_DM.ico -------------------------------------------------------------------------------- /res/EvaluateXPath.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/EvaluateXPath.bmp -------------------------------------------------------------------------------- /res/EvaluateXPath.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/EvaluateXPath.ico -------------------------------------------------------------------------------- /res/EvaluateXPath_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/EvaluateXPath_DM.ico -------------------------------------------------------------------------------- /res/First.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/First.bmp -------------------------------------------------------------------------------- /res/First.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/First.ico -------------------------------------------------------------------------------- /res/First_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/First_DM.ico -------------------------------------------------------------------------------- /res/Last.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Last.bmp -------------------------------------------------------------------------------- /res/Last.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Last.ico -------------------------------------------------------------------------------- /res/Last_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Last_DM.ico -------------------------------------------------------------------------------- /res/Linearize.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Linearize.bmp -------------------------------------------------------------------------------- /res/Linearize.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Linearize.ico -------------------------------------------------------------------------------- /res/Linearize_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Linearize_DM.ico -------------------------------------------------------------------------------- /res/Next.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Next.bmp -------------------------------------------------------------------------------- /res/Next.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Next.ico -------------------------------------------------------------------------------- /res/Next_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Next_DM.ico -------------------------------------------------------------------------------- /res/Options.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Options.bmp -------------------------------------------------------------------------------- /res/Options.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Options.ico -------------------------------------------------------------------------------- /res/Options_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Options_DM.ico -------------------------------------------------------------------------------- /res/PrettyPrint.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/PrettyPrint.bmp -------------------------------------------------------------------------------- /res/PrettyPrint.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/PrettyPrint.ico -------------------------------------------------------------------------------- /res/PrettyPrintAttr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/PrettyPrintAttr.bmp -------------------------------------------------------------------------------- /res/PrettyPrintAttr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/PrettyPrintAttr.ico -------------------------------------------------------------------------------- /res/PrettyPrintAttr_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/PrettyPrintAttr_DM.ico -------------------------------------------------------------------------------- /res/PrettyPrintIndentOnly.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/PrettyPrintIndentOnly.bmp -------------------------------------------------------------------------------- /res/PrettyPrintIndentOnly.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/PrettyPrintIndentOnly.ico -------------------------------------------------------------------------------- /res/PrettyPrintIndentOnly_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/PrettyPrintIndentOnly_DM.ico -------------------------------------------------------------------------------- /res/PrettyPrint_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/PrettyPrint_DM.ico -------------------------------------------------------------------------------- /res/Previous.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Previous.bmp -------------------------------------------------------------------------------- /res/Previous.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Previous.ico -------------------------------------------------------------------------------- /res/Previous_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Previous_DM.ico -------------------------------------------------------------------------------- /res/Uncomment.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Uncomment.bmp -------------------------------------------------------------------------------- /res/Uncomment.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Uncomment.ico -------------------------------------------------------------------------------- /res/Uncomment_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/Uncomment_DM.ico -------------------------------------------------------------------------------- /res/UnescapeXml.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/UnescapeXml.bmp -------------------------------------------------------------------------------- /res/UnescapeXml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/UnescapeXml.ico -------------------------------------------------------------------------------- /res/UnescapeXml_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/UnescapeXml_DM.ico -------------------------------------------------------------------------------- /res/ValidateXml.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/ValidateXml.bmp -------------------------------------------------------------------------------- /res/ValidateXml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/ValidateXml.ico -------------------------------------------------------------------------------- /res/ValidateXml_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/ValidateXml_DM.ico -------------------------------------------------------------------------------- /res/XMLTools.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/XMLTools.rc2 -------------------------------------------------------------------------------- /res/XslTransform.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/XslTransform.bmp -------------------------------------------------------------------------------- /res/XslTransform.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/XslTransform.ico -------------------------------------------------------------------------------- /res/XslTransform_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/XslTransform_DM.ico -------------------------------------------------------------------------------- /res/empty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/empty.bmp -------------------------------------------------------------------------------- /res/empty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/empty.ico -------------------------------------------------------------------------------- /res/empty_DM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/res/empty_DM.ico -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/resource.h -------------------------------------------------------------------------------- /tests/bug232.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/tests/bug232.xml -------------------------------------------------------------------------------- /tests/quote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/tests/quote.xml -------------------------------------------------------------------------------- /tests/simple.xml: -------------------------------------------------------------------------------- 1 | 2 | é à -------------------------------------------------------------------------------- /tests/slideSample01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/tests/slideSample01.xml -------------------------------------------------------------------------------- /tests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/tests/test.xml -------------------------------------------------------------------------------- /tests/test.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/tests/test.xsd -------------------------------------------------------------------------------- /tests/testutf8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/tests/testutf8.xml -------------------------------------------------------------------------------- /tests/testutf8.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/tests/testutf8.xsl -------------------------------------------------------------------------------- /tests/testxxe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morbac/xmltools/HEAD/tests/testxxe.xml --------------------------------------------------------------------------------