├── .gitignore ├── Build.vi ├── LICENSE ├── README.md ├── Source ├── - VI Tree - Variant XML.vi ├── Easy Generate XML.vi ├── Easy Parse XML.vi ├── Easy Read XML File.vi ├── Easy Write XML File.vi ├── EasyXML.lvproj ├── EasyXML.vipb ├── EasyXML.vipc ├── Examples │ ├── EasyXML.bin3 │ ├── Generate Playlist XML String.vi │ ├── Read RSS Feed.vi │ ├── Scalar and Compound Data with Attributes.vi │ ├── Write Google Earth KML File.vi │ └── Write and Read XML File.vi ├── Fast Parser │ ├── Draw Tree from XML.vi │ ├── Get Attributes.vi │ ├── Get Children.vi │ ├── Get Name.vi │ ├── Get Root Elements.vi │ ├── Get Tag Content.vi │ ├── Link Children.vi │ ├── Link XML Start Tags with End Tags.vi │ ├── Loop Stack Recursion.vi │ ├── Parse XML for Tags.vi │ ├── Parse XML.vi │ ├── XML Loop Stack Recursion.vi │ ├── XML Structure - Cluster.ctl │ ├── XML Tag Type - Enum.ctl │ └── test TCX read (installed 71).vi ├── JKI Reuse Candidates │ ├── Is an Error (any error array element)__JKI Error Handling.vi │ ├── Is an Error (error array)__JKI Error Handling.vi │ ├── Is an Error (error cluster)__JKI Error Handling.vi │ ├── Is an Error__JKI Error Handling.vi │ ├── Multiline String to Array (Preserve EOLs).vi │ └── Read Lines from File - With Error in and Error Out - JKI.vi ├── OpenG Derivative │ ├── Cluster to Array of VData--EasyXML.vi │ ├── Conditional Auto-Indexing Tunnel (I32)--SUBROUTINE.vi │ ├── Conditional Auto-Indexing Tunnel (Variant)--Entities.vi │ ├── Format Variant Into String--EasyXML.vi │ ├── Get Array Element Default Data--EasyXML.vi │ ├── Get Default Data from TD--EasyXML.vi │ ├── Get Default Data from TD--WithTIMESTAMP.vi │ ├── Index 1D Array Elements (I32)--SUBROUTINE.vi │ ├── Index 1D Array Elements (String)--SUBROUTINE.vi │ └── Search 1D Array (String)--SUBROUTINE.vi ├── Options API │ └── Private │ │ ├── EasyXML Options - Data Cluster.ctl │ │ ├── EasyXML Options - Data Constant.vi │ │ ├── EasyXML Options - Data.ctl │ │ ├── EasyXML Options - Default Data.vi │ │ ├── EasyXML Options - Flatten Data.vi │ │ ├── EasyXML Options - Type Formatting Cluster.ctl │ │ └── EasyXML Options - Unflatten Data.vi ├── Support │ ├── Low Level │ │ ├── Check if Data Type has User-Definable String.vi │ │ ├── Date Time │ │ │ ├── Format Time Stamp to XML dateTime string.vi │ │ │ ├── Get UTC Offset.vi │ │ │ ├── Parse XML dateTime String.vi │ │ │ └── TEST - Parse XML dateTime.vi │ │ ├── Date Type Format String Mapping.vi │ │ ├── Error Handling │ │ │ ├── Toolkit Error Handling - Add Caller to API VI List.vi │ │ │ ├── Toolkit Error Handling - Error Cluster From Error Code.vi │ │ │ ├── Toolkit Error Handling - VI Tree.vi │ │ │ └── low-level │ │ │ │ ├── Toolkit Error Handling - API VI List Buffer Core.vi │ │ │ │ ├── Toolkit Error Handling - Get API VI List.vi │ │ │ │ └── Toolkit Error Handling - Trim Call Chain at First API VI.vi │ │ ├── Escape-Unescape String for XML.vi │ │ ├── Find Element and Attributes.vi │ │ ├── Find Elements by Name.vi │ │ ├── FindCloseTagByName__NIMOD.vi │ │ ├── FindElementStartByName_NIMOD.vi │ │ ├── FindFirstTag with Attributes.vi │ │ ├── FindMatchingCloseTag_NIMOD.vi │ │ ├── Format Generic Data to XML Value.vi │ │ ├── Get Default Type Formatting.vi │ │ ├── Get EasyXML Data Type.vi │ │ ├── Get Element and Attributes from Tag.vi │ │ ├── Get Key-Value Pairs from Attribute List.vi │ │ ├── Get Node Attribute (String).vi │ │ ├── Get Node Data.vi │ │ ├── Get Stylesheet MIME Type from File Extension.vi │ │ ├── Get Substring.vi │ │ ├── Indent Lines in String.vi │ │ ├── Lookup Format String.vi │ │ ├── Parse Attribute List Support │ │ │ ├── Get Next Name from Attribute List.vi │ │ │ └── Get Next Value from Attribute List.vi │ │ ├── Parse Entity.vi │ │ ├── ParseXMLFragments with Attributes.vi │ │ ├── Poly Members │ │ │ ├── Get Node Data (Boolean).vi │ │ │ ├── Get Node Data (DBL).vi │ │ │ ├── Get Node Data (EXT).vi │ │ │ ├── Get Node Data (I64).vi │ │ │ ├── Get Node Data (String).vi │ │ │ └── Get Node Data (U64).vi │ │ ├── Remove Comments from XML.vi │ │ ├── Remove DOCTYPE from XML.vi │ │ ├── Remove Headers from XML.vi │ │ ├── Remove Indentation.vi │ │ ├── Remove Raw XML Tag from Data Name.vi │ │ ├── Set VISA IO Session String.vi │ │ ├── Treat Data Name.vi │ │ ├── Treat Entity Name.vi │ │ ├── XML Build Entity.vi │ │ └── XML Get Node Data by Variant.vi │ ├── Type Defs │ │ ├── EasyXML Options.ctl │ │ ├── Formatting Data Type -- Enum.ctl │ │ ├── Node Info - Cluster.ctl │ │ ├── XML Element Table - Cluster.ctl │ │ └── XML Type Format - Cluster - .ctl │ └── Variant to XML - core - .vi └── Tests │ ├── EasyXMLTest │ ├── CleanUp.vi │ ├── EasyXMLTest.lvclass │ ├── EasyXMLTest_Init.vi │ ├── Previous Failure Conditions │ │ ├── test DOCTYPE Declaration (Case 7098).vi │ │ ├── testAttributesWithSingleQuotesFailure_(Case5174).vi │ │ ├── testColonsInNameFailure_(Case5175).vi │ │ ├── testMissingElement.vi │ │ ├── testNestedEmptyElement.vi │ │ ├── testNestedEmptyElementAffectingSyblings(Case7440).vi │ │ ├── testParseNotReadingModifiedDataProperly(Case5788).vi │ │ └── testTimestampInArray.vi │ ├── Test Support │ │ ├── Reentrant Setting Requirement - Enum.ctl │ │ ├── convertEOL.vi │ │ ├── failUnlessGeneratedAndParsedOneToOne.vi │ │ ├── failUnlessXmlGeneratedCorrectly.vi │ │ ├── failUnlessXmlParsedCorrectly.vi │ │ ├── passIfReentrant.vi │ │ └── stripXmlFileHeader.vi │ ├── testAttributeQuotes │ │ ├── testAttributeQuotesDouble.vi │ │ ├── testAttributeQuotesDoubleNull.vi │ │ ├── testAttributeQuotesDoubleWithSingleInside.vi │ │ ├── testAttributeQuotesMixedMultiple01.vi │ │ ├── testAttributeQuotesMixedMultiple02.vi │ │ ├── testAttributeQuotesMixedMultiple03.vi │ │ ├── testAttributeQuotesMixedMultiple04.vi │ │ ├── testAttributeQuotesSingle.vi │ │ ├── testAttributeQuotesSingleNull.vi │ │ └── testAttributeQuotesSingleWithDoubleInside.vi │ ├── testAttributes │ │ ├── testAttributeBoolean.vi │ │ ├── testAttributeEnumU16.vi │ │ ├── testAttributeEnumU32.vi │ │ ├── testAttributeEnumU8.vi │ │ ├── testAttributeNumericI16.vi │ │ ├── testAttributeNumericI32.vi │ │ ├── testAttributeNumericI8.vi │ │ ├── testAttributeNumericU16.vi │ │ ├── testAttributeNumericU32.vi │ │ ├── testAttributeNumericU8.vi │ │ ├── testAttributePath.vi │ │ ├── testAttributeString.vi │ │ ├── testAttributeTimestamp.vi │ │ └── testNestedElementWithAttributes.vi │ ├── testCDATA.vi │ ├── testColonsInNames │ │ ├── testColonInAttributeName.vi │ │ ├── testColonInDataAndAttributeNames.vi │ │ └── testColonInDataName.vi │ ├── testDefaultIndentation.vi │ ├── testDoctypeDeclaration │ │ └── test DOCTYPE Declaration 001.vi │ ├── testEOLsInString.vi │ ├── testElementName.vi │ ├── testEmbeddedXML.vi │ ├── testEmptyArray.vi │ ├── testEmptyElement.vi │ ├── testEnumFormatting.vi │ ├── testErrorPropagation.vi │ ├── testEscapeChars.vi │ ├── testEscapeCharsInAttributes.vi │ ├── testFlattenArray │ │ ├── testFlattenArrayAtRootLevel.vi │ │ └── testFlattenArrayInsideCluster.vi │ ├── testHeaders │ │ └── testHeadersPresentParserSupport.vi │ ├── testInternationalCharacters │ │ ├── testInternationalCharactersInAttributeData.vi │ │ ├── testInternationalCharactersInAttributeName.vi │ │ ├── testInternationalCharactersInComment.vi │ │ ├── testInternationalCharactersInElementData.vi │ │ └── testInternationalCharactersInElementName.vi │ ├── testInvalidInputs.vi │ ├── testNestedElementWithAttributes.vi │ ├── testRawXml │ │ ├── testPreserveRawXml.vi │ │ ├── testRawCompoundXmlCluster.vi │ │ ├── testRawXml.vi │ │ ├── testRawXmlDoubleNestedCluster.vi │ │ ├── testRawXmlEmptyString.vi │ │ ├── testRawXmlMultiLine.vi │ │ ├── testRawXmlNestedCluster.vi │ │ ├── testRawXmlWithAttributes.vi │ │ └── testRawXmlWithNoXMLTags.vi │ ├── testReadArrayFromFileAutoWrapInCluster.vi │ ├── testRecursiveCompoundStructure.vi │ ├── testReentrancy │ │ ├── testReentrancy -- Easy Generate XML.vi │ │ ├── testReentrancy -- Easy Parse XML.vi │ │ ├── testReentrancy -- Easy Read XML File.vi │ │ ├── testReentrancy -- Easy Write XML File.vi │ │ ├── testReentrancy -- Parse XML.vi │ │ ├── testReentrancy -- Variant to XML - core - .vi │ │ └── testReentrancy -- XML Loop Stack Recursion.vi │ ├── testRemoveComments.vi │ ├── testScalarElementsWithAttributes │ │ ├── testArrayOfScalarElementsWithAttributes.vi │ │ └── testScalarElementWithAttributes.vi │ ├── testSupportedTypes │ │ ├── testArray.vi │ │ ├── testBoolean.vi │ │ ├── testBooleanParsing │ │ │ ├── testBooleanParsingDecimal.vi │ │ │ ├── testBooleanParsingLowercase.vi │ │ │ ├── testBooleanParsingMixedcase.vi │ │ │ └── testBooleanParsingUppercase.vi │ │ ├── testCluster.vi │ │ ├── testEnumU16.vi │ │ ├── testEnumU32.vi │ │ ├── testEnumU8.vi │ │ ├── testFloatingPointSignificantFigures │ │ │ ├── testNumericDBL--14SignificantFigures.vi │ │ │ ├── testNumericEXT--14SignificantFigures.vi │ │ │ └── testNumericSGL-7SignificantFigures.vi │ │ ├── testNumericDBL.vi │ │ ├── testNumericDBLPQ.vi │ │ ├── testNumericEXT.vi │ │ ├── testNumericEXTPQ.vi │ │ ├── testNumericI16.vi │ │ ├── testNumericI32.vi │ │ ├── testNumericI64.vi │ │ ├── testNumericI8.vi │ │ ├── testNumericSGL.vi │ │ ├── testNumericSGLPQ.vi │ │ ├── testNumericU16.vi │ │ ├── testNumericU32.vi │ │ ├── testNumericU64.vi │ │ ├── testNumericU8.vi │ │ ├── testPath.vi │ │ ├── testRefnumDAQmx.vi │ │ ├── testRefnumVISA.vi │ │ ├── testString.vi │ │ ├── testTimestamp.vi │ │ ├── testTimestampParsing │ │ │ ├── testTimestampParsingDateOnly.vi │ │ │ ├── testTimestampParsingExplicitTimeZone.vi │ │ │ ├── testTimestampParsingNoTimeZone.vi │ │ │ └── testTimestampParsingZ.vi │ │ └── testVisaResource │ │ │ ├── VISA Resource Types.vi │ │ │ ├── testVisaResource_FireWire_Instr.vi │ │ │ ├── testVisaResource_GPIB Instr.vi │ │ │ ├── testVisaResource_GPIB_BoardInterface.vi │ │ │ ├── testVisaResource_GPIB_Servant.vi │ │ │ ├── testVisaResource_Instr.vi │ │ │ ├── testVisaResource_PXI Instr.vi │ │ │ ├── testVisaResource_PXI_Backplane.vi │ │ │ ├── testVisaResource_PXI_MemAcc.vi │ │ │ ├── testVisaResource_Serial Instr.vi │ │ │ ├── testVisaResource_TCP-IP Instr.vi │ │ │ ├── testVisaResource_TCP_IP_Socket.vi │ │ │ ├── testVisaResource_USB Instr.vi │ │ │ ├── testVisaResource_USB_Raw.vi │ │ │ ├── testVisaResource_VXI GPIB-VXI MBD Instr.vi │ │ │ ├── testVisaResource_VXI_GPIB_VXI_Backplane.vi │ │ │ ├── testVisaResource_VXI_GPIB_VXI_VME_MemAcc.vi │ │ │ └── testVisaResource_VXI_Servant.vi │ ├── testUnnamedElement │ │ ├── testClusterWithMultipleUnnamedElements.vi │ │ ├── testUnnamedArray.vi │ │ └── testUnnamedBoolean.vi │ ├── testUnsupportedTypes │ │ ├── testMultiDimensionalArray.vi │ │ └── testWaveform.vi │ ├── testVIProperties │ │ ├── testGetTagContent--Subroutine.vi │ │ └── testToolkitErrorHandlingAddCallerToApiViListIsReentrant.vi.vi │ ├── testWarningPropagation.vi │ ├── testWriteArrayToFileAutoWrapInCluster.vi │ ├── testWriteFileHeaders │ │ ├── testWriteFileDefaultEncodingHeaderPresent.vi │ │ ├── testWriteFileNoEncodingHeaderPresent.vi │ │ ├── testWriteFileStandAloneHeaderNotPresent.vi │ │ ├── testWriteFileStandAloneHeaderPresent.vi │ │ ├── testWriteFileStylesheetAbsUrlHeaderPresent.vi │ │ ├── testWriteFileStylesheetCssFileHeaderPresent.vi │ │ ├── testWriteFileStylesheetRelUrlHeaderPresent.vi │ │ └── testWriteFileUtf8EncodingHeaderPresent.vi │ └── testWriteToExistingFileFailsWithError.vi │ ├── EasyXML_XML_Subset_Built_Tests │ ├── EasyXML_XML_Subset_Built_Tests.lvclass │ ├── Previous Failure Conditions │ │ ├── testMissingElement.vi │ │ ├── testNestedEmptyElement.vi │ │ ├── testNestedEmptyElementAffectingSyblings(Case7440).vi │ │ └── testParseNotReadingModifiedDataProperly(Case5788).vi │ ├── Test Support │ │ ├── evaluateGenerateXML.vi │ │ └── evaluateParseXML.vi │ ├── testAttributes │ │ └── testNestedElementWithAttributes.vi │ ├── testHeaders │ │ └── testHeadersPresentParserSupport.vi │ └── testSupportedTypes │ │ ├── testBooleanParsing │ │ ├── testBooleanParsingDecimal.vi │ │ ├── testBooleanParsingLowercase.vi │ │ ├── testBooleanParsingMixedcase.vi │ │ └── testBooleanParsingUppercase.vi │ │ └── testTimestampParsing │ │ ├── testTimestampParsingDateOnly.vi │ │ ├── testTimestampParsingExplicitTimeZone.vi │ │ ├── testTimestampParsingNoTimeZone.vi │ │ └── testTimestampParsingZ.vi │ ├── EasyXML_XML_Subset_Evaluations │ ├── EasyXML_XML_Subset_Evaluations.lvclass │ ├── Previous Failure Conditions │ │ ├── evaluateMissingElement.vi │ │ ├── evaluateNestedEmptyElement.vi │ │ ├── evaluateNestedEmptyElementAffectingSyblings(Case7440).vi │ │ └── evaluateParseNotReadingModifiedDataProperly(Case5788).vi │ ├── Test Support │ │ ├── convertEOL.vi │ │ ├── evaluateGenerateXML.vi │ │ ├── evaluateParseXML.vi │ │ ├── failUnlessGeneratedAndParsedOneToOne.vi │ │ ├── failUnlessXmlGeneratedCorrectly.vi │ │ ├── failUnlessXmlParsedCorrectly.vi │ │ ├── passIfReentrant.vi │ │ └── stripXmlFileHeader.vi │ ├── testAttributes │ │ └── evaluateNestedElementWithAttributes.vi │ ├── testHeaders │ │ └── evaluateHeadersPresentParserSupport.vi │ └── testSupportedTypes │ │ ├── testBooleanParsing │ │ ├── evaluateBooleanParsingDecimal.vi │ │ ├── evaluateBooleanParsingLowercase.vi │ │ ├── evaluateBooleanParsingMixedcase.vi │ │ └── evaluateBooleanParsingUppercase.vi │ │ └── testTimestampParsing │ │ ├── evaluateTimestampParsingDateOnly.vi │ │ ├── evaluateTimestampParsingExplicitTimeZone.vi │ │ ├── evaluateTimestampParsingNoTimeZone.vi │ │ └── evaluateTimestampParsingZ.vi │ ├── EasyXML_XML_Subset_Source_Tests │ ├── EasyXML_XML_Subset_Source_Tests.lvclass │ ├── Previous Failure Conditions │ │ ├── testBundleVCluster(Case 13415).vi │ │ ├── testMissingElement.vi │ │ ├── testNestedEmptyElement.vi │ │ ├── testNestedEmptyElementAffectingSyblings(Case7440).vi │ │ ├── testParseNotReadingModifiedDataProperly(Case5788).vi │ │ └── testSpecialChar(Case13072).vi │ ├── Test Support │ │ ├── evaluateGenerateXML.vi │ │ └── evaluateParseXML.vi │ ├── testAttributes │ │ └── testNestedElementWithAttributes.vi │ ├── testHeaders │ │ └── testHeadersPresentParserSupport.vi │ └── testSupportedTypes │ │ ├── testBooleanParsing │ │ ├── testBooleanParsingDecimal.vi │ │ ├── testBooleanParsingLowercase.vi │ │ ├── testBooleanParsingMixedcase.vi │ │ └── testBooleanParsingUppercase.vi │ │ └── testTimestampParsing │ │ ├── testTimestampParsingDateOnly.vi │ │ ├── testTimestampParsingExplicitTimeZone.vi │ │ ├── testTimestampParsingNoTimeZone.vi │ │ └── testTimestampParsingZ.vi │ ├── TEST Performance Benchmark.vi │ └── VI Tester Reuse Candidates │ ├── Test VI Debugging Disabled.vi │ └── Test VI Reentrancy.vi ├── build support ├── Post-Build Custom Action - EasyXML.vi ├── Pre-Build Custom Action - EasyXML.vi └── doc builder │ ├── Create ALL Documentation.vi │ ├── Create VI Documentation.vi │ ├── Get VI Parameters and Images.vi │ ├── Keyword Values - Cluster -.ctl │ ├── MAIN -- CREATE DOCS.vi │ ├── New Text Document.txt │ ├── OGB Replace Keyword in String.vi │ ├── OGB Replace Keywords in File.vi │ ├── OGB Replace Keywords in String.vi │ ├── Read Library Info File.vi │ ├── Type Definitions │ └── Library Information Cluster.ctl │ ├── Utilities │ ├── Doc Builder - Escape Slashes.vi │ ├── Doc Builder - Replace Cluster of Keywords.vi │ └── Doc Builder - Replace Spaces with Underscores.vi │ ├── Word Wrap License File.vi │ ├── common help files │ ├── CheckInstalled.js │ ├── DynamicContent.js │ ├── helpserver.js │ ├── minibutton.gif │ ├── minimal.css │ ├── nonIE.css │ ├── nonscroll.css │ ├── nonscroll.js │ ├── print.css │ └── web.js │ ├── conpane_html.txt │ ├── example.htm │ ├── {Library Name}.htm │ └── {VI Name}.htm ├── icon ├── Icon Large.pspimage ├── icon.bmp └── usefull.pspimage └── images ├── Easy_Generate_XML.png ├── Easy_Parse_XML.png ├── Easy_Read_XML_File.png ├── Easy_Write_XML_File.png ├── JKI_EasyXML_Palette.png └── NI_Example_Finder.png /.gitignore: -------------------------------------------------------------------------------- 1 | # Libraries 2 | *.lvlibp 3 | *.llb 4 | 5 | # Shared objects (inc. Windows DLLs) 6 | *.dll 7 | *.so 8 | *.so.* 9 | *.dylib 10 | 11 | # Executables 12 | *.exe 13 | 14 | # Metadata 15 | *.aliases 16 | *.lvlps 17 | *.db 18 | *.vip -------------------------------------------------------------------------------- /Build.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Build.vi -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014, JKI 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without 5 | modification, are permitted provided that the following conditions are met: 6 | 7 | * Redistributions of source code must retain the above copyright notice, this 8 | list of conditions and the following disclaimer. 9 | 10 | * Redistributions in binary form must reproduce the above copyright notice, 11 | this list of conditions and the following disclaimer in the documentation 12 | and/or other materials provided with the distribution. 13 | 14 | * Neither the name of the {organization} nor the names of its 15 | contributors may be used to endorse or promote products derived from 16 | this software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 19 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 21 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 22 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 24 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 25 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 26 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 | 29 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Image](https://www.vipm.io/package/jki_lib_easyxml/badge.svg?metric=installs)](https://www.vipm.io/package/jki_lib_easyxml/) [![Image](https://www.vipm.io/package/jki_lib_easyxml/badge.svg?metric=stars)](https://www.vipm.io/package/jki_lib_easyxml/) 2 | 3 | # JKI-EasyXML 4 | 5 | *Do you have EasyXML ideas, or challenges you'd like discuss? Join the conversation happening in the [EasyXML Community Discussion Forums](https://forums.jki.net/forum/47-easyxml-toolkit/).* 6 | 7 | ## Download and Installation 8 | 9 | You can download and install EasyXML with VI Package Manager. 10 | 11 | [Download and Install EasyXML](http://vipm.jki.net/package/jki_lib_easyxml) 12 | 13 | ## JKI EasyXML Functions 14 | 15 | ![JKI EasyXML Palette](https://github.com/JKISoftware/JKI-EasyXML/raw/master/images/JKI_EasyXML_Palette.png) 16 | 17 | The JKI EasyXML functions allow you to easily create and parse XML data and files. The main advantage is that EasyXML does not use the LabVIEW data schema defined by NI (<LabVIEW>\\vi.lib\\Utility\\LVXMLSchema.xsd). Instead, it uses the data names as the XML entity names, allowing users to quickly and easily write and read arbitrary XML data. Additionally, EasyXML supports XML entity attributes. 18 | 19 | ### Easy Generate XML 20 | 21 | Converts **LabVIEW Data** to an XML string with the LabVIEW data names (labels) converted to XML item names and the LabVIEW data values converted to XML item values. 22 | 23 | ![Easy Generate XML](https://github.com/JKISoftware/JKI-EasyXML/raw/master/images/Easy_Generate_XML.png) 24 | 25 | ### Easy Parse XML 26 | 27 | Converts an **XML String** to **LabVIEW Data**, based on the **LabVIEW Data (Type)** argument. Use the **Variant to Data** function to convert the output variant **LabVIEW Data** to the desired data type. 28 | 29 | ![Easy Parse XML](https://github.com/JKISoftware/JKI-EasyXML/raw/master/images/Easy_Parse_XML.png) 30 | 31 | ### Easy Write XML File 32 | Converts **LabVIEW Data** to an XML string and writes it to an XML file with the LabVIEW data names (labels) converted to XML item names and the LabVIEW data values converted to XML item values. 33 | 34 | ![Easy Write XML File](https://github.com/JKISoftware/JKI-EasyXML/raw/master/images/Easy_Write_XML_File.png) 35 | 36 | ### Easy Read XML File 37 | Reads and parses data from an XML file (specified by the **XML File Path** input), converting it into **LabVIEW Data**, based on the **LabVIEW Data (Type)** argument. Use the **Variant to Data** function to convert the output variant **LabVIEW Data** to the desired data type. 38 | 39 | ![Easy Read XML File](https://github.com/JKISoftware/JKI-EasyXML/raw/master/images/Easy_Read_XML_File.png) 40 | 41 | ## Examples 42 | Refer to the <LabVIEW>\\examples\\JKI\\EasyXML folder for examples of using the JKI EasyXML Functions. 43 | 44 | You can also find the examples using the NI Example Finder, under the JKI\\EasyXML folder: 45 | 46 | ![NI Example Finder](https://github.com/JKISoftware/JKI-EasyXML/raw/master/images/NI_Example_Finder.png) 47 | 48 | ## Detailed Documentation 49 | 50 | ### EasyXML vs. LabVIEW's built-in XML 51 | The LabVIEW Flatten to XML output, shown below, is focus on LabVIEW data type, whereas the EasyXML output is more focused on the data names and structure, mapping the data names to entity names and data values to entity text (#TEXT): 52 | 53 | LabVIEW's built-in XML output: 54 | 55 | ```xml 56 | 57 | My XML Data 58 | 2 59 | 60 | My Number 61 | 1.23000 62 | 63 | 64 | My Boolean 65 | 1 66 | 67 | 68 | ``` 69 | 70 | EasyXML output: 71 | 72 | ```xml 73 | 74 |   1.23 75 |   TRUE 76 | 77 | ``` 78 | 79 | Additionally, the EasyXML library also supports attributes, as shown by the *version* and *author* attributes of the My_XML_Data entity below: 80 | 81 | ```xml 82 | 83 |   1.23 84 |   TRUE 85 | 86 | ``` 87 | 88 | ### Element and Attribute Names 89 | LabVIEW data names map to element and attribute names.  The LabVIEW data names will be converted to legal XML entity names if they contain any illegal entity name characters. Leading and trailing whitespace will be removed (trimmed). Whitespace characters within the data name will be converted to underscores.  Other illegal characters will simply be removed. 90 | 91 | ### Compound Elements (Clusters) 92 | LabVIEW clusters are used for compound XML elements (elements with child elements).  For example, here is some XML with compound elements: 93 | 94 | ```xml 95 | 96 |   JKI 97 |   98 |     San Francisco 99 |     USA 100 |   101 | 102 | ``` 103 | 104 | ### Multiple Elements of the Same Name (Arrays) 105 | Arrays can be used to handle multiple XML elements of the same name.  When using LabVIEW arrays, the array name, not the array element name, is used as the xml element name.  For example, if we have a cluster named "employees" that contains an array (of strings) named "person", we might get something like the following: 106 | 107 | ```xml 108 | 109 |   Jack 110 |   Jill 111 |   Bob 112 | 113 | ``` 114 | 115 | ### Empty Element Tags 116 | LabVIEW data with a null value will generate an empty element.  For example: 117 | 118 | ```xml 119 | instead of 120 | ``` 121 | 122 | Note: One exception to this rule is an empty array.  Since an array represents an ordered set of elements, an empty array represents no elements. 123 | 124 | ### Scalar Elements 125 | Scalar XML elements have no child elements. They consist of string data.  For example, below is a scalar element named "State" with a value of "California": 126 | 127 | ```xml 128 | California 129 | ``` 130 | 131 | Scalar elements are created from any supported LabVIEW data type, other than clusters (which are used for compound/nested elements). 132 | 133 | ### Formatting of LabVIEW Data 134 | Below is a table showing the default formatting of LabVIEW data types: 135 | ``` 136 | string: %s 137 | path: %s 138 | integer: %d 139 | floating point: %#g (automatic) 140 | Boolean: %s (TRUE or FALSE) 141 | ``` 142 | 143 | ### Escaping and Unescaping XML in Element and Attribute Values 144 | All data will be escaped in the XML values, such that it does not include any special XML characters (see Table below).  This means that instances of these characters must be converted to escape code. 145 | 146 | ``` 147 | Element or Attribute    Special Character    Escape Code 148 | Both     &     & 149 | Both     >     > 150 | Both     <     < 151 | Attribute Only     '     ' 152 | Attribute Only     "     " 153 | ``` 154 | 155 | ### Adding XML Attributes using an "#attributes" Cluster 156 | XML elements can have attributes.  For example, below is an xml element having two attributes: 157 | 158 | ```xml 159 | 160 | ``` 161 | 162 | Attributes are achieved by placing a cluster named "#attributes" as the first cluster element of the xml element cluster. 163 | 164 | ### Scalar Elements with Attributes 165 | If an xml element (having attributes) is a scalar (no child elements), then the second cluster element must be a LabVIEW scalar with the same name as the element cluster. 166 | 167 | ### Compound Elements with Attributes 168 | If an element with attributes has more than one (non-attribute) child element, then every cluster element shall be interpreted as a child element (rather than scalar data), even if a child element has the same name as the parent element (cluster). 169 | 170 | ### Best Attempt Parsing (Extra and Missing XML) 171 | One of the features that makes EasyXML so great is that it can gracefully handle extra and missing data elements in the XML data - it will do it's "best attempt" to parse the XML data. 172 | 173 | In the case where there are extra XML elements or attributes that are not present in the LabVIEW data, then they will simply be ignored - this is a "best attempt". 174 | 175 | In the case where there are elements or attributes present in the LabVIEW that are not present in the XML data, then the output LabVIEW data will contain the same values passed into the Data Type and Default Value (variant) input - this is a "best attempt". 176 | 177 | ### Pretty-Print (Block Indentation) 178 | When generating xml data, 2 spaces are used for block indentation of XML entities.  For example: 179 | 180 | ```xml 181 | 182 |   JKI 183 |   184 |     San Francisco 185 |     USA 186 |   187 | 188 | ``` 189 | 190 | instead of: 191 | 192 | ```xml 193 | 194 | JKI 195 | 196 | San Francisco 197 | USA 198 | 199 | 200 | ``` 201 | 202 | ### Reading Raw XML into strings using the "#xml" suffix in string label/name 203 | A useful feature is the ability to read an entire raw XML element into a string data type in LabVIEW, which can then be separately parsed. To do this, you need to name (label) the string with an " #xml" suffix. The result is that the raw XML data will be read into/from the string and then can be processed in a separate step. This is especially helpful if elements (having the same name) come in a few different flavors (sub-element types and structure). See the examples, below: 204 | 205 | ![RAW XML Example 1](https://cloud.githubusercontent.com/assets/381432/17527603/ddfe468a-5e20-11e6-98b2-ffef0e9b7606.png) 206 | 207 | ![RAW XML Example 2](https://cloud.githubusercontent.com/assets/381432/17527474/5b3fc07a-5e20-11e6-92f7-7aae5af281fc.png) 208 | 209 | ## Contributing 210 | 211 | 1. Fork it! 212 | 2. Create your feature branch: `git checkout -b my-new-feature` 213 | 3. Commit your changes: `git commit -am 'Add some feature'` 214 | 4. Push to the branch: `git push origin my-new-feature` 215 | 5. Submit a pull request 216 | 217 | To contribute to EasyXML, you will need 32-bit LabVIEW 2011 professional development environment. 218 | 219 | ## Credits 220 | 221 | EasyXML is an open source project maintained by [JKI](http://jki.net). 222 | 223 | ## License 224 | 225 | EasyXML is distributed under the open source three clause BSD license providing everyone right to use and distribute both source code 226 | and compiled versions of EasyXML. See LICENSE file for details. 227 | -------------------------------------------------------------------------------- /Source/- VI Tree - Variant XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/- VI Tree - Variant XML.vi -------------------------------------------------------------------------------- /Source/Easy Generate XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Easy Generate XML.vi -------------------------------------------------------------------------------- /Source/Easy Parse XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Easy Parse XML.vi -------------------------------------------------------------------------------- /Source/Easy Read XML File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Easy Read XML File.vi -------------------------------------------------------------------------------- /Source/Easy Write XML File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Easy Write XML File.vi -------------------------------------------------------------------------------- /Source/EasyXML.vipb: -------------------------------------------------------------------------------- 1 | 2 | 3 | jki_lib_easyxml 4 | 3.0.0.171 5 | false 6 | . 7 | .. 8 | JKI 9 | 10 | BSD 11 | 11.0 12 | false 13 | 00000D7C002800000C9800000C00000200020022002200180000000000FFFFFF0000C8C8C85A5C58484B4353584D5E6653676F576F795A74805B79885C7F8F5B82955C879A5B899E5A8BA0598DA3598EA4598EA4598DA3598BA059899E5A87995B82955C7F8F5C78885C74815B6F795A676E575E665354584D484B445C5E5ACCCBCB7879774748434F53485A6052656D576C7659737F5C79885C7F8F5C83975B899D5A8CA1598FA65790A95593AB5493AC5493AC5493AB5491A9558FA6578CA159899D5A84965B7F8F5C79885C737F5C6C7659646D575960524F53484849437C7C7B7273704C4F47565C4F6168556B7559727E5B78875C7F905C86975B8A9F5A8FA65792AB5495AF5297B15099B54E9AB64D9AB64D99B44E97B15095AF5291AA548FA6578A9F5986975B7F905C78875C727E5B6B7559616855565C4F4C4F47727370787A7653574C5C6352666F58707B5B77855C7E8E5C84975B8A9F598FA75694AD5398B2509AB74B9DBB489EBE459FBF449FBF459EBE459EBC479CB84A99B25095AD538FA7568A9F5A84965B7F8E5C77855C707B5B656E585C635253574C787A757D7F79585F506168566B755974825C7C8C5C83955B899E5A8FA65795AF5299B44E9DBB479FBF43A0C440A3C73FA3C93DA3C93EA5C93D9BBF4597BA4999B94A9BB64C9AB04F93A8518B9E5783955A7C8C5C74825C6B7559616855585E507C7F7981857C5E6454666F57707B5B79875C81925C889C5A8FA55894AD529AB54D9EBE45A0C341A4CA3EA5CD3AA6CE39A6CE39A8D0389AC542206F9612649F1C6B9B317898468A916898847E9F72859C60829158798658707B5B6670575D645381857C84897E6269566A745974805B7D8E5C85975B8CA25891AC5598B24F9EBB46A0C241A5C93DA6CC3AA6CC3AA6CC3AA6CC3AA8CE38448A7C0055AF0059AC0059AE0C61B3116FBD2E7EC84B90CD62A0C776A6A97C977874815B6A745962695684897F878C80666F586E785A77855B81925C889D5A8FA858C09B3BE39F25E6A520E7A720E7A81EE7A81EE7A81EE7A81EE9A91DD9A52619649B0058AE005AAB015BAC1064B01671B93380C34A90CD5CA2DA6EB4E87FC1E17A92776D7757666D58878C808A8F82697359717C5B7B8A5C84965B8CA25892AD55D6992EFCB910FFC30CFFC30CFFC30CFFC30CFFC30CFFC30CFFC30DFFC60797974E0055B30057B10058B00962B41270BC3180C54A90CC5DA2D970B4E380C3E67C9A81717B576972598A8F828C92836C765B74805B7D8E5C879B5A8FA65796B050D59B2FFBAE16FDB614FDB614FDB614FDB614FDB614FDB614FDB614FEB614FAB51573826754767C4B748045758D397CA14083B84A90CD5AA2DB6DB4E580C3E57F9C7F747F576C765A8C92838E94846E795C76845B80915C8A9E5991AA5697B64ED69B2DF9A31AFBA919FBA919FBA919FEAB19FEAB19FFAB19FFAC19FEAB19FFAC19FFAF14FFAD14FFAC16FDAA18F4A81EE4A22CBD945480A89F7FB3D580C4E4819F807683586F795C8E94848F9685707B5C79875B81945C8CA15893AD5499B94AD79B2DF7991DF99D1CF99D1CFD9F1CDE8F1CE3901CD68A1CD3881DE08F1CD98B1DDD8D1CF1991CFC9F1CFA9E1CFA9E1BFA9B1BDF8F3FA4A19FB0B2B6AEC2CB88A17D788658707B5C8F9585919885727E5C79895B84965C8EA45895AE519BBD49D79B2CF5901FFB931EFA941EE3891EA7661F62421F82521F4E3620754B1F6744207E511FDA811EE3881EEF8F1EFE951EF6901FDE8D49AAAAB1B8B9BCB2B9A1899A6279885B727E5C919885929886737F5C7B8B5B85985C8EA65897B1509DBF43D79B2BF68621DB791F9055209F5B20DC7720463020B364204C33205738206740207A4920D97720C46D20824E1FC26E1FF48520DE913DA6B57C9FB3698EA65884975A7B8C5B737F5C92988692998674805C7D8C5B85985B8FA65396B24EA0BE55DB9835E279225D3A1FB76420FB8621E97C214E3420B062205B39205135206F4320764620DE7621FE8621DD7721643D20B36320E398299EBF4197B34C90A65685985C7D8C5B74805D929986929A8674815C7D8C5B859A599FAF74B3BBA0ADB1B0D99054F58121CE701F884F20AD5F20AC60204C33205F3C206C4220653E206D42205F3C20975620C86D20824D20B46220EE7F20DF962A9FBF4498B44E90A75785995B7D8C5B74815C929A86929A8674815D7D8C5A889E64B7C2BABBB9BEA8A9B0D78B51F58122FC8420F48121D47220B46320C069208D5120B56320BC6720B062209F5920945420D57220E67B20FE8521F68120DE962A9FBF4498B44E90A757859A5B7D8C5B74815C929A8692998674805C7D8C5A859E688CC3D493B6CF95AC9ED29144FA801DFF7F1AFF811AFF821BFF831CFF831CFF8420FB8321FB8321FB8321FC8421FD8421F98221F78121F57F21F58020DE952A9FBE4497B34F90A65785995B7D8C5B74805C929986929886737F5C7B8A5A859D6784C4D971B9E861A8D46693B67182957C75778E70629B6B55A56B4FAF6C47F06F23F47020F37021F37021F37021F37021F37021F37021F36F21F37120DB872B9EBD4597B1508EA65785985C7B8C5B737F5C929886919885727E5C79885A859B6884C4D873B9E662A5DB4C94D23485CB1275C10867BA005BB10059B00059B18F595AFB551DF15623F15523F15523F15523F15523F15523F15523F15623D9742B9DBB4895AF518EA45884965C7A895B727E5C9197858F9684717B5C79875A82996884C4DD72B9E862A5DB4F94D03A84C51B75BB1168B3045CAD005AAB005AAD1257A2CC3D37F03822EC3924EC3924EC3924EC3924EC3924EC3924ED3A24D3652F9AB84A94AD548CA15881935C79885B707B5C8F96858E94846F795C76845B81925C87AC9078B4C861A5DB4C92D53882C91974BD1068B4045CAD005AAB0058AC0B63A595AB48B5B234B1B136B1B136B1B136B1B136B1B136B1B036AFAF39A6B14198B64D92AA558A9E5980915C76845B6E795B8E94838C92836C765B74805B7D8E5C889A568FA65A88AD7274A68D5494A32A7FAD166AAF025BAF0056AE0054B0609C6AACD535A4D13AA5D139A5D139A5D139A5D139A5D139A4D03A9FC73C9BBD4794AE4D8CA4528699587D8D5C75815B6C765A8C92838A8F82697359717C5B7B8A5C84965B8CA25895AD509DB746A0C1419CC5448FBE4C7FB15572AA5D72A95EA2CB3CA7CF38A6CE39A6CE39A6CE39A6CE39A6CE39A6CE39A3CA3AB9D175A7BF63A8BD74A7B88095A5737A895B717C5B6972598A8F82888C80666F586E785A77855B81935C899D5A90A75797B1509CBA49A2C540A8CE38ABD135ACD235ACD235A7CF38A6CE39A6CE39A6CE39A6CE39A6CE39A6CE39A5CC3AA6C74CD7E3B5C4D39DE1E7D1C0CAA6BDC6AC7382566E785A666F58878C8084897E6269566A745974805B7D8E5C85975B8CA25893AB5598B44E9EBE45A1C440A5CC3CA6CE39A6CE39A6CE39A6CE39A6CE39A6CE39A6CE39A6CE39A5CB3BABCC52D3E1ADDAE5C0E7E9DEAEBD8FA7B687BDC3AC707E566A745962695684897E81857C5D6353666F57707B5B78875C80925C889C5A8FA55894AD529AB54D9EBD46A0C341A4C93EA5CD3AA6CE39A6CE39A6CE39A6CE39A5CD3AA4C93DA0C341ABC75FDCE5C2D5DFBCC1C9AEB3BBA4ABB892BBC2AE6B7756666F575D635381857C7D7F79585F506168566B755974815C7C8C5C83955B899E5A8FA65795AE5299B44E9DBC479FBF43A0C541A3C73FA4C93EA4C93EA3C73EA0C5419FBF439DBA46A5BF63DBE3C4C1CDA19EAE78ABB499A6AF948D977A697357616856585E507C7F79797A7653574C5C6352666F58707B5B77855C7F8E5C84975B8A9F598FA75694AD5398B2509BB84A9DBB479EBE459FBF449FBF449EBE459DBB479AB84A9BB554D7E0BDD2DBBD879E5684965A7C8E5976855B6E7958656F585C635253574C787A767273704C4F47565C4F6168556A7559727E5C79875C7F905C86975B8A9F5A8FA65792AB5495AF5297B15099B44E9AB54C9AB54C99B44E97B15095AF5294AC58ADBE8694A7688497597F905C78865C727E5B6B7559616855565C4E4C4F477273707979784648424E5348596052646C576C7659737E5C78885C7F8F5C83965B889C5A8CA1598FA65790A95593AB5493AC5493AC5492AB5490A9558FA6578CA159859A558295597F8F5C78885C727E5C6C7659646D575960514E53484748437C7D7CCDCDCD5F605C484C45555A4D5E66546770586F795B74815C79895D7F8F5D82955C879B5B8A9F5A8CA1598DA4598EA5598EA5598DA4598CA1598A9F5B879B5B83955C7F8F5D79895D74815C6F795B6770585E665455594D494C4560625FD0D0D0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF002900000012000000020000000D01000000000100000000000A000000080000000000240024002900000012000000020000000D00B2B2B900010000000000100000001000000002002300000000000000000023002900000012000000020000000D00FCFCFD00010000000000100000001000000002002200010001000100010022002900000012000000020000000D00B2B2B900010000000000100000001000000002000000240024002400240000002900000012000000020000000D0080808A00010000000000100000001000000002000100230023002300230001 14 | EasyXML Toolkit for LabVIEW 15 | true 16 | LabVIEW 17 | 18 | 19 | 20 | oglib_array >= 2.7 21 | oglib_error >= 2.3 22 | oglib_file >= 2.8 23 | oglib_lvdata >= 2.8 24 | oglib_string >= 2.6 25 | oglib_array-2.7-1 26 | oglib_error-2.3-2 27 | oglib_file-2.8-2 28 | oglib_lvdata-2.8-1 29 | oglib_string-2.6-1 30 | 31 | 32 | ..\build support\Pre-Build Custom Action - EasyXML.vi 33 | ..\build support\Post-Build Custom Action - EasyXML.vi 34 | 35 | 36 | 37 | 38 | 39 | EasyXML.vipc 40 | 41 | Toolkit to easily flatten and unflatten LabVIEW data to and from XML. 42 | The EasyXML Toolkit for LabVIEW from JKI is a simple set of VIs that make generating and parsing XML data in LabVIEW as easy as creating a cluster. 43 | Copyright (c) 2016, JKI. All Rights Reserved. 44 | JKI 45 | http://jki.net/easyxml 46 | Open sourced and freely availble under the BSD License 47 | Supports LabVIEW 2011 and greater 48 | Several performance improvements 49 | 50 | 51 | 52 | true 53 | false 54 | <vi.lib>\addons\_JKI Toolkits\EasyXML\JKI_EasyXML.llb 55 | 56 | 57 | false 58 | true 59 | <application>\examples\JKI\EasyXML 60 | 61 | 62 | false 63 | true 64 | 65 | 66 | 67 | true 68 | 69 | 70 | 71 | true 72 | 73 | 74 | 75 | false 76 | true 77 | 78 | 79 | 80 | false 81 | true 82 | 83 | 84 | 85 | false 86 | true 87 | 88 | 89 | 90 | false 91 | true 92 | 93 | 94 | 95 | false 96 | true 97 | 98 | 99 | 100 | false 101 | true 102 | 103 | 104 | 105 | 106 | 107 | . 108 | 0 109 | false 110 | 0 111 | 112 | 113 | Examples/EasyXML.bin3 114 | 1 115 | false 116 | 0 117 | 118 | 119 | Examples/Generate Playlist XML String.vi 120 | 1 121 | false 122 | 0 123 | 124 | 125 | Examples/Read RSS Feed.vi 126 | 1 127 | false 128 | 0 129 | 130 | 131 | Examples/Scalar and Compound Data with Attributes.vi 132 | 1 133 | false 134 | 0 135 | 136 | 137 | Examples/Write and Read XML File.vi 138 | 1 139 | false 140 | 0 141 | 142 | 143 | Examples/Write Google Earth KML File.vi 144 | 1 145 | false 146 | 0 147 | 148 | 149 | . 150 | 151 | false 152 | 153 | 154 | . 155 | Suffix 156 | __JKI EasyXML 157 | 158 | 159 | Examples 160 | Suffix 161 | 162 | 163 | 164 | EasyXML.lvproj 165 | 166 | 167 | - VI Tree - Variant XML.vi 168 | 169 | 170 | Tests 171 | 172 | 173 | Easy Generate XML.vi 174 | 175 | 176 | Easy Parse XML.vi 177 | 178 | 179 | Easy Read XML File.vi 180 | 181 | 182 | Easy Write XML File.vi 183 | 184 | 185 | ..\LICENSE 186 | 187 | 188 | 189 | false 190 | 191 | 192 | 193 | 194 | 195 | <random:32> 196 | false 197 | 198 | 199 | 200 | false 201 | 202 | 203 | Default 204 | true 205 | JKI Tools 206 | 00000C9E002800000C9800000C00000000000020002000180000000000FFFFFF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFEF9F6F9EEFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFF5FAEEB3D382D2E5B5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFEFDFFFFFEFFFFFFFFFFFFFFFFFFFFFEFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEAF2DAA3CB6584BF39D2E6B6FFFFFFFFFFFFFFFFFFE2EDCAB0D37DB0D47EB1D27DE9F1D9EBF4DEB2D47DB0D37DC2DD9CFCFEFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFEFFFFFEFFFFFEFFFFFFC3DD9B87BF3A8BC041D4E6B7FFFFFFFFFFFFE8F1D797C55688C03D86BF3BC2DE9AFDFEFBE1EECE89BF3E86BF3AA4CE6AFEFEFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFBFDF7FCFDFAFFFFFFC5DE9F89C03E8AC041D3E6B7FFFFFFEFF6E49CC95E89C1408BBF41C2DC98FFFFFEFFFFFFE2EFCF8DC1458AC042A7CF70FEFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFE9F2D8B7D488F7FBF3FFFFFFC5DE9F89C03E8AC041D6E7BBF8FBF1A4CD6B88C13F89C03FBCD990FEFEFCFFFFFEFFFFFFE2EFCF8DC1458AC042A7CF70FEFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFEFCD8E8BD94C5509BC85AF9FCF7FFFFFFC5DE9F89BF3E8BC041CDE4AFB0D37D87BF3C89C03FB7D788FDFDF8FFFFFFFFFFFFFFFFFFE2EFCF8DC1458AC042A7CF70FEFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0F5E390C44D89C03F9ECA60F9FCF7FFFFFFC5DE9E88BF3E8DC247A8D071A1CE65A0CE64B2D581FAFCF6FFFFFEFFFFFFFFFFFFFFFFFFE2EFCF8DC1458AC042A7CF70FEFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDF5DF91C44B8BC1419ECA60F9FCF7FFFFFFC5DE9F88C03E8BC140C8E0A2CFE6B2C5E4A4C8E3A6E7F1D9FFFFFFFFFFFFFFFFFFFFFFFFE2EFCF8DC1458AC042A7CF70FEFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDF5E091C44C8BC1429ECA60F9FCF7FFFFFFC5DE9E88BF3E8BC03FD5E8B9EDF5E4C6E1A1C3E2A0C6E1A4EBF3DEFFFFFFFFFFFFFFFFFFE2EFCF8DC1458AC042A6CF6FFEFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDF5E091C44C8BC1429ECA60F9FCF7FFFFFFC5DE9F89BF3E8AC03FD3E6B7FFFFFFE1EFD0C3E1A0C3E39FC8E2A7EFF6E5FFFFFFFFFFFFE2EFCE8DC14687BF3EAAD074FEFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDF5E091C44B8AC1419DCA61FAFCF6FFFFFFC4DE9F87C03E8AC03FD4E6B5FFFFFFFEFEFCD9EBC3C4E19EC3E2A0CAE3A8F2F8E8FFFFFFE1EFCD88BF3DA5CD6BEAF3DCFFFEFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDF5E191C44B8AC1419DCB61FAFCF6FFFFFFC6DD9E8BBF408BBF41D4E5B6FFFFFFFFFFFFFBFDF9D2E8B9C2E1A3C3E1A0CEE4B0F7FAF2E2EECCB7D78BF8FAF2FFFFFFFFFEFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE5F0D48FC1468AC241A3CB66FDFDF9FFFFFFF2F8E9E7F1D8E7F1D6F6F9EFFFFFFFFFFFFFFFFFFFFBFCF7F3F8EBF3F8EDF1F8E8F9FBF6FCFCF7FFFEFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE6F1D4DAEBC2ADD17A8BC14289C13EB2D582FFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEA6CD6D87BF3B8AC2408AC2428DC146DEEDCBFFFFFFFEFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFEA6CE708AC1408FC2499BC85CD4E6B5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFEE8F3D9E4EFD1E9F2D8F7FBF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000000100000005000000062010002E0310001E3FF003DE7FF007DEFFF007DFFFF007DFFFF007DFFFF007DFFFF007DFFFF007DEFFF007DEFFF007DE7FD007DE3F803FA000003FA000003F0000003E00000001000000000000000000000000000000000000000000000000000000 207 | 208 | Controls 209 | <menus>\Controls 210 | 211 | 212 | 213 | Functions 214 | <menus>\Categories 215 | 216 | 217 | false 218 | false 219 | 220 | 221 | 222 | true 223 | true 224 | true 225 | true 226 | true 227 | true 228 | false 229 | true 230 | true 231 | true 232 | true 233 | true 234 | true 235 | 236 | 237 | false 238 | false 239 | false 240 | 241 | 242 | true 243 | 244 | 245 | {product_name} version {version_number} 246 | {copyright} 247 | 248 | 249 | 250 | 251 | 252 | -1 253 | 254 | Icons 255 | 256 | 1 257 | 4 258 | 259 | <_256_Color_Icon>00000C9E002800000C9800000C00000000000020002000180000000000FFFFFF0000C8C8C85A5C58484B4353584D5E6653676F576F795A74805B79885C7F8F5B82955C879A5B899E5A8BA0598DA3598EA4598EA4598DA3598BA059899E5A87995B82955C7F8F5C78885C74815B6F795A676E575E665354584D484B445C5E5ACCCBCB7879774748434F53485A6052656D576C7659737F5C79885C7F8F5C83975B899D5A8CA1598FA65790A95593AB5493AC5493AC5493AB5491A9558FA6578CA159899D5A84965B7F8F5C79885C737F5C6C7659646D575960524F53484849437C7C7B7273704C4F47565C4F6168556B7559727E5B78875C7F905C86975B8A9F5A8FA65792AB5495AF5297B15099B54E9AB64D9AB64D99B44E97B15095AF5291AA548FA6578A9F5986975B7F905C78875C727E5B6B7559616855565C4F4C4F47727370787A7653574C5C6352666F58707B5B77855C7E8E5C84975B8A9F598FA75694AD5398B2509AB74B9DBB489EBE459FBF449FBF459EBE459EBC479CB84A99B25095AD538FA7568A9F5A84965B7F8E5C77855C707B5B656E585C635253574C787A757D7F79585F506168566B755974825C7C8C5C83955B899E5A8FA65795AF5299B44E9DBB479FBF43A0C440A3C73FA3C93DA3C93EA5C93D9BBF4597BA4999B94A9BB64C9AB04F93A8518B9E5783955A7C8C5C74825C6B7559616855585E507C7F7981857C5E6454666F57707B5B79875C81925C889C5A8FA55894AD529AB54D9EBE45A0C341A4CA3EA5CD3AA6CE39A6CE39A8D0389AC542206F9612649F1C6B9B317898468A916898847E9F72859C60829158798658707B5B6670575D645381857C84897E6269566A745974805B7D8E5C85975B8CA25891AC5598B24F9EBB46A0C241A5C93DA6CC3AA6CC3AA6CC3AA6CC3AA8CE38448A7C0055AF0059AC0059AE0C61B3116FBD2E7EC84B90CD62A0C776A6A97C977874815B6A745962695684897F878C80666F586E785A77855B81925C889D5A8FA858C09B3BE39F25E6A520E7A720E7A81EE7A81EE7A81EE7A81EE9A91DD9A52619649B0058AE005AAB015BAC1064B01671B93380C34A90CD5CA2DA6EB4E87FC1E17A92776D7757666D58878C808A8F82697359717C5B7B8A5C84965B8CA25892AD55D6992EFCB910FFC30CFFC30CFFC30CFFC30CFFC30CFFC30CFFC30DFFC60797974E0055B30057B10058B00962B41270BC3180C54A90CC5DA2D970B4E380C3E67C9A81717B576972598A8F828C92836C765B74805B7D8E5C879B5A8FA65796B050D59B2FFBAE16FDB614FDB614FDB614FDB614FDB614FDB614FDB614FEB614FAB51573826754767C4B748045758D397CA14083B84A90CD5AA2DB6DB4E580C3E57F9C7F747F576C765A8C92838E94846E795C76845B80915C8A9E5991AA5697B64ED69B2DF9A31AFBA919FBA919FBA919FEAB19FEAB19FFAB19FFAC19FEAB19FFAC19FFAF14FFAD14FFAC16FDAA18F4A81EE4A22CBD945480A89F7FB3D580C4E4819F807683586F795C8E94848F9685707B5C79875B81945C8CA15893AD5499B94AD79B2DF7991DF99D1CF99D1CFD9F1CDE8F1CE3901CD68A1CD3881DE08F1CD98B1DDD8D1CF1991CFC9F1CFA9E1CFA9E1BFA9B1BDF8F3FA4A19FB0B2B6AEC2CB88A17D788658707B5C8F9585919885727E5C79895B84965C8EA45895AE519BBD49D79B2CF5901FFB931EFA941EE3891EA7661F62421F82521F4E3620754B1F6744207E511FDA811EE3881EEF8F1EFE951EF6901FDE8D49AAAAB1B8B9BCB2B9A1899A6279885B727E5C919885929886737F5C7B8B5B85985C8EA65897B1509DBF43D79B2BF68621DB791F9055209F5B20DC7720463020B364204C33205738206740207A4920D97720C46D20824E1FC26E1FF48520DE913DA6B57C9FB3698EA65884975A7B8C5B737F5C92988692998674805C7D8C5B85985B8FA65396B24EA0BE55DB9835E279225D3A1FB76420FB8621E97C214E3420B062205B39205135206F4320764620DE7621FE8621DD7721643D20B36320E398299EBF4197B34C90A65685985C7D8C5B74805D929986929A8674815C7D8C5B859A599FAF74B3BBA0ADB1B0D99054F58121CE701F884F20AD5F20AC60204C33205F3C206C4220653E206D42205F3C20975620C86D20824D20B46220EE7F20DF962A9FBF4498B44E90A75785995B7D8C5B74815C929A86929A8674815D7D8C5A889E64B7C2BABBB9BEA8A9B0D78B51F58122FC8420F48121D47220B46320C069208D5120B56320BC6720B062209F5920945420D57220E67B20FE8521F68120DE962A9FBF4498B44E90A757859A5B7D8C5B74815C929A8692998674805C7D8C5A859E688CC3D493B6CF95AC9ED29144FA801DFF7F1AFF811AFF821BFF831CFF831CFF8420FB8321FB8321FB8321FC8421FD8421F98221F78121F57F21F58020DE952A9FBE4497B34F90A65785995B7D8C5B74805C929986929886737F5C7B8A5A859D6784C4D971B9E861A8D46693B67182957C75778E70629B6B55A56B4FAF6C47F06F23F47020F37021F37021F37021F37021F37021F37021F36F21F37120DB872B9EBD4597B1508EA65785985C7B8C5B737F5C929886919885727E5C79885A859B6884C4D873B9E662A5DB4C94D23485CB1275C10867BA005BB10059B00059B18F595AFB551DF15623F15523F15523F15523F15523F15523F15523F15623D9742B9DBB4895AF518EA45884965C7A895B727E5C9197858F9684717B5C79875A82996884C4DD72B9E862A5DB4F94D03A84C51B75BB1168B3045CAD005AAB005AAD1257A2CC3D37F03822EC3924EC3924EC3924EC3924EC3924EC3924ED3A24D3652F9AB84A94AD548CA15881935C79885B707B5C8F96858E94846F795C76845B81925C87AC9078B4C861A5DB4C92D53882C91974BD1068B4045CAD005AAB0058AC0B63A595AB48B5B234B1B136B1B136B1B136B1B136B1B136B1B036AFAF39A6B14198B64D92AA558A9E5980915C76845B6E795B8E94838C92836C765B74805B7D8E5C889A568FA65A88AD7274A68D5494A32A7FAD166AAF025BAF0056AE0054B0609C6AACD535A4D13AA5D139A5D139A5D139A5D139A5D139A4D03A9FC73C9BBD4794AE4D8CA4528699587D8D5C75815B6C765A8C92838A8F82697359717C5B7B8A5C84965B8CA25895AD509DB746A0C1419CC5448FBE4C7FB15572AA5D72A95EA2CB3CA7CF38A6CE39A6CE39A6CE39A6CE39A6CE39A6CE39A3CA3AB9D175A7BF63A8BD74A7B88095A5737A895B717C5B6972598A8F82888C80666F586E785A77855B81935C899D5A90A75797B1509CBA49A2C540A8CE38ABD135ACD235ACD235A7CF38A6CE39A6CE39A6CE39A6CE39A6CE39A6CE39A5CC3AA6C74CD7E3B5C4D39DE1E7D1C0CAA6BDC6AC7382566E785A666F58878C8084897E6269566A745974805B7D8E5C85975B8CA25893AB5598B44E9EBE45A1C440A5CC3CA6CE39A6CE39A6CE39A6CE39A6CE39A6CE39A6CE39A6CE39A5CB3BABCC52D3E1ADDAE5C0E7E9DEAEBD8FA7B687BDC3AC707E566A745962695684897E81857C5D6353666F57707B5B78875C80925C889C5A8FA55894AD529AB54D9EBD46A0C341A4C93EA5CD3AA6CE39A6CE39A6CE39A6CE39A5CD3AA4C93DA0C341ABC75FDCE5C2D5DFBCC1C9AEB3BBA4ABB892BBC2AE6B7756666F575D635381857C7D7F79585F506168566B755974815C7C8C5C83955B899E5A8FA65795AE5299B44E9DBC479FBF43A0C541A3C73FA4C93EA4C93EA3C73EA0C5419FBF439DBA46A5BF63DBE3C4C1CDA19EAE78ABB499A6AF948D977A697357616856585E507C7F79797A7653574C5C6352666F58707B5B77855C7F8E5C84975B8A9F598FA75694AD5398B2509BB84A9DBB479EBE459FBF449FBF449EBE459DBB479AB84A9BB554D7E0BDD2DBBD879E5684965A7C8E5976855B6E7958656F585C635253574C787A767273704C4F47565C4F6168556A7559727E5C79875C7F905C86975B8A9F5A8FA65792AB5495AF5297B15099B44E9AB54C9AB54C99B44E97B15095AF5294AC58ADBE8694A7688497597F905C78865C727E5B6B7559616855565C4E4C4F477273707979784648424E5348596052646C576C7659737E5C78885C7F8F5C83965B889C5A8CA1598FA65790A95593AB5493AC5493AC5492AB5490A9558FA6578CA159859A558295597F8F5C78885C727E5C6C7659646D575960514E53484748437C7D7CCDCDCD5F605C484C45555A4D5E66546770586F795B74815C79895D7F8F5D82955C879B5B8A9F5A8CA1598DA4598EA5598EA5598DA4598CA1598A9F5B879B5B83955C7F8F5D79895D74815C6F795B6770585E665455594D494C4560625FD0D0D0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 260 | 00000000 261 | 262 | 263 | 264 | 265 | 266 | 267 | false 268 | . 269 | 270 | 271 | Item 272 | -1 273 | Easy Read XML File 274 | 275 | false 276 | 277 | 1 278 | 4 279 | 280 | 00000000 281 | Easy Read XML File.vi 282 | 283 | 284 | 285 | Item 286 | -1 287 | Easy Parse XML 288 | 289 | false 290 | 291 | 1 292 | 1 293 | 294 | 00000000 295 | Easy Parse XML.vi 296 | 297 | 298 | 299 | Item 300 | -1 301 | Easy Generate XML 302 | 303 | false 304 | 305 | 1 306 | 2 307 | 308 | 00000000 309 | Easy Generate XML.vi 310 | 311 | 312 | 313 | Item 314 | -1 315 | Easy Write XML File 316 | 317 | false 318 | 319 | 1 320 | 3 321 | 322 | 00000000 323 | Easy Write XML File.vi 324 | 325 | 326 | 987CAB394845310D767D0AC8A7DE63DC 327 | 328 | 329 | -------------------------------------------------------------------------------- /Source/EasyXML.vipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/EasyXML.vipc -------------------------------------------------------------------------------- /Source/Examples/EasyXML.bin3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Examples/EasyXML.bin3 -------------------------------------------------------------------------------- /Source/Examples/Generate Playlist XML String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Examples/Generate Playlist XML String.vi -------------------------------------------------------------------------------- /Source/Examples/Read RSS Feed.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Examples/Read RSS Feed.vi -------------------------------------------------------------------------------- /Source/Examples/Scalar and Compound Data with Attributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Examples/Scalar and Compound Data with Attributes.vi -------------------------------------------------------------------------------- /Source/Examples/Write Google Earth KML File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Examples/Write Google Earth KML File.vi -------------------------------------------------------------------------------- /Source/Examples/Write and Read XML File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Examples/Write and Read XML File.vi -------------------------------------------------------------------------------- /Source/Fast Parser/Draw Tree from XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/Draw Tree from XML.vi -------------------------------------------------------------------------------- /Source/Fast Parser/Get Attributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/Get Attributes.vi -------------------------------------------------------------------------------- /Source/Fast Parser/Get Children.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/Get Children.vi -------------------------------------------------------------------------------- /Source/Fast Parser/Get Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/Get Name.vi -------------------------------------------------------------------------------- /Source/Fast Parser/Get Root Elements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/Get Root Elements.vi -------------------------------------------------------------------------------- /Source/Fast Parser/Get Tag Content.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/Get Tag Content.vi -------------------------------------------------------------------------------- /Source/Fast Parser/Link Children.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/Link Children.vi -------------------------------------------------------------------------------- /Source/Fast Parser/Link XML Start Tags with End Tags.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/Link XML Start Tags with End Tags.vi -------------------------------------------------------------------------------- /Source/Fast Parser/Loop Stack Recursion.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/Loop Stack Recursion.vi -------------------------------------------------------------------------------- /Source/Fast Parser/Parse XML for Tags.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/Parse XML for Tags.vi -------------------------------------------------------------------------------- /Source/Fast Parser/Parse XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/Parse XML.vi -------------------------------------------------------------------------------- /Source/Fast Parser/XML Loop Stack Recursion.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/XML Loop Stack Recursion.vi -------------------------------------------------------------------------------- /Source/Fast Parser/XML Structure - Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/XML Structure - Cluster.ctl -------------------------------------------------------------------------------- /Source/Fast Parser/XML Tag Type - Enum.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/XML Tag Type - Enum.ctl -------------------------------------------------------------------------------- /Source/Fast Parser/test TCX read (installed 71).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Fast Parser/test TCX read (installed 71).vi -------------------------------------------------------------------------------- /Source/JKI Reuse Candidates/Is an Error (any error array element)__JKI Error Handling.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/JKI Reuse Candidates/Is an Error (any error array element)__JKI Error Handling.vi -------------------------------------------------------------------------------- /Source/JKI Reuse Candidates/Is an Error (error array)__JKI Error Handling.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/JKI Reuse Candidates/Is an Error (error array)__JKI Error Handling.vi -------------------------------------------------------------------------------- /Source/JKI Reuse Candidates/Is an Error (error cluster)__JKI Error Handling.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/JKI Reuse Candidates/Is an Error (error cluster)__JKI Error Handling.vi -------------------------------------------------------------------------------- /Source/JKI Reuse Candidates/Is an Error__JKI Error Handling.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/JKI Reuse Candidates/Is an Error__JKI Error Handling.vi -------------------------------------------------------------------------------- /Source/JKI Reuse Candidates/Multiline String to Array (Preserve EOLs).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/JKI Reuse Candidates/Multiline String to Array (Preserve EOLs).vi -------------------------------------------------------------------------------- /Source/JKI Reuse Candidates/Read Lines from File - With Error in and Error Out - JKI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/JKI Reuse Candidates/Read Lines from File - With Error in and Error Out - JKI.vi -------------------------------------------------------------------------------- /Source/OpenG Derivative/Cluster to Array of VData--EasyXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/OpenG Derivative/Cluster to Array of VData--EasyXML.vi -------------------------------------------------------------------------------- /Source/OpenG Derivative/Conditional Auto-Indexing Tunnel (I32)--SUBROUTINE.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/OpenG Derivative/Conditional Auto-Indexing Tunnel (I32)--SUBROUTINE.vi -------------------------------------------------------------------------------- /Source/OpenG Derivative/Conditional Auto-Indexing Tunnel (Variant)--Entities.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/OpenG Derivative/Conditional Auto-Indexing Tunnel (Variant)--Entities.vi -------------------------------------------------------------------------------- /Source/OpenG Derivative/Format Variant Into String--EasyXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/OpenG Derivative/Format Variant Into String--EasyXML.vi -------------------------------------------------------------------------------- /Source/OpenG Derivative/Get Array Element Default Data--EasyXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/OpenG Derivative/Get Array Element Default Data--EasyXML.vi -------------------------------------------------------------------------------- /Source/OpenG Derivative/Get Default Data from TD--EasyXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/OpenG Derivative/Get Default Data from TD--EasyXML.vi -------------------------------------------------------------------------------- /Source/OpenG Derivative/Get Default Data from TD--WithTIMESTAMP.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/OpenG Derivative/Get Default Data from TD--WithTIMESTAMP.vi -------------------------------------------------------------------------------- /Source/OpenG Derivative/Index 1D Array Elements (I32)--SUBROUTINE.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/OpenG Derivative/Index 1D Array Elements (I32)--SUBROUTINE.vi -------------------------------------------------------------------------------- /Source/OpenG Derivative/Index 1D Array Elements (String)--SUBROUTINE.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/OpenG Derivative/Index 1D Array Elements (String)--SUBROUTINE.vi -------------------------------------------------------------------------------- /Source/OpenG Derivative/Search 1D Array (String)--SUBROUTINE.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/OpenG Derivative/Search 1D Array (String)--SUBROUTINE.vi -------------------------------------------------------------------------------- /Source/Options API/Private/EasyXML Options - Data Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Options API/Private/EasyXML Options - Data Cluster.ctl -------------------------------------------------------------------------------- /Source/Options API/Private/EasyXML Options - Data Constant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Options API/Private/EasyXML Options - Data Constant.vi -------------------------------------------------------------------------------- /Source/Options API/Private/EasyXML Options - Data.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Options API/Private/EasyXML Options - Data.ctl -------------------------------------------------------------------------------- /Source/Options API/Private/EasyXML Options - Default Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Options API/Private/EasyXML Options - Default Data.vi -------------------------------------------------------------------------------- /Source/Options API/Private/EasyXML Options - Flatten Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Options API/Private/EasyXML Options - Flatten Data.vi -------------------------------------------------------------------------------- /Source/Options API/Private/EasyXML Options - Type Formatting Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Options API/Private/EasyXML Options - Type Formatting Cluster.ctl -------------------------------------------------------------------------------- /Source/Options API/Private/EasyXML Options - Unflatten Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Options API/Private/EasyXML Options - Unflatten Data.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Check if Data Type has User-Definable String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Check if Data Type has User-Definable String.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Date Time/Format Time Stamp to XML dateTime string.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Date Time/Format Time Stamp to XML dateTime string.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Date Time/Get UTC Offset.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Date Time/Get UTC Offset.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Date Time/Parse XML dateTime String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Date Time/Parse XML dateTime String.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Date Time/TEST - Parse XML dateTime.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Date Time/TEST - Parse XML dateTime.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Date Type Format String Mapping.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Date Type Format String Mapping.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Error Handling/Toolkit Error Handling - Add Caller to API VI List.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Error Handling/Toolkit Error Handling - Add Caller to API VI List.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Error Handling/Toolkit Error Handling - Error Cluster From Error Code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Error Handling/Toolkit Error Handling - Error Cluster From Error Code.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Error Handling/Toolkit Error Handling - VI Tree.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Error Handling/Toolkit Error Handling - VI Tree.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Error Handling/low-level/Toolkit Error Handling - API VI List Buffer Core.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Error Handling/low-level/Toolkit Error Handling - API VI List Buffer Core.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Error Handling/low-level/Toolkit Error Handling - Get API VI List.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Error Handling/low-level/Toolkit Error Handling - Get API VI List.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Error Handling/low-level/Toolkit Error Handling - Trim Call Chain at First API VI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Error Handling/low-level/Toolkit Error Handling - Trim Call Chain at First API VI.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Escape-Unescape String for XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Escape-Unescape String for XML.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Find Element and Attributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Find Element and Attributes.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Find Elements by Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Find Elements by Name.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/FindCloseTagByName__NIMOD.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/FindCloseTagByName__NIMOD.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/FindElementStartByName_NIMOD.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/FindElementStartByName_NIMOD.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/FindFirstTag with Attributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/FindFirstTag with Attributes.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/FindMatchingCloseTag_NIMOD.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/FindMatchingCloseTag_NIMOD.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Format Generic Data to XML Value.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Format Generic Data to XML Value.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Get Default Type Formatting.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Get Default Type Formatting.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Get EasyXML Data Type.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Get EasyXML Data Type.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Get Element and Attributes from Tag.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Get Element and Attributes from Tag.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Get Key-Value Pairs from Attribute List.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Get Key-Value Pairs from Attribute List.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Get Node Attribute (String).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Get Node Attribute (String).vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Get Node Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Get Node Data.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Get Stylesheet MIME Type from File Extension.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Get Stylesheet MIME Type from File Extension.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Get Substring.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Get Substring.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Indent Lines in String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Indent Lines in String.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Lookup Format String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Lookup Format String.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Parse Attribute List Support/Get Next Name from Attribute List.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Parse Attribute List Support/Get Next Name from Attribute List.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Parse Attribute List Support/Get Next Value from Attribute List.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Parse Attribute List Support/Get Next Value from Attribute List.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Parse Entity.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Parse Entity.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/ParseXMLFragments with Attributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/ParseXMLFragments with Attributes.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Poly Members/Get Node Data (Boolean).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Poly Members/Get Node Data (Boolean).vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Poly Members/Get Node Data (DBL).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Poly Members/Get Node Data (DBL).vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Poly Members/Get Node Data (EXT).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Poly Members/Get Node Data (EXT).vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Poly Members/Get Node Data (I64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Poly Members/Get Node Data (I64).vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Poly Members/Get Node Data (String).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Poly Members/Get Node Data (String).vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Poly Members/Get Node Data (U64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Poly Members/Get Node Data (U64).vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Remove Comments from XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Remove Comments from XML.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Remove DOCTYPE from XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Remove DOCTYPE from XML.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Remove Headers from XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Remove Headers from XML.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Remove Indentation.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Remove Indentation.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Remove Raw XML Tag from Data Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Remove Raw XML Tag from Data Name.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Set VISA IO Session String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Set VISA IO Session String.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Treat Data Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Treat Data Name.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/Treat Entity Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/Treat Entity Name.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/XML Build Entity.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/XML Build Entity.vi -------------------------------------------------------------------------------- /Source/Support/Low Level/XML Get Node Data by Variant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Low Level/XML Get Node Data by Variant.vi -------------------------------------------------------------------------------- /Source/Support/Type Defs/EasyXML Options.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Type Defs/EasyXML Options.ctl -------------------------------------------------------------------------------- /Source/Support/Type Defs/Formatting Data Type -- Enum.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Type Defs/Formatting Data Type -- Enum.ctl -------------------------------------------------------------------------------- /Source/Support/Type Defs/Node Info - Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Type Defs/Node Info - Cluster.ctl -------------------------------------------------------------------------------- /Source/Support/Type Defs/XML Element Table - Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Type Defs/XML Element Table - Cluster.ctl -------------------------------------------------------------------------------- /Source/Support/Type Defs/XML Type Format - Cluster - .ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Type Defs/XML Type Format - Cluster - .ctl -------------------------------------------------------------------------------- /Source/Support/Variant to XML - core - .vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Support/Variant to XML - core - .vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/CleanUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/CleanUp.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/EasyXMLTest_Init.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/EasyXMLTest_Init.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Previous Failure Conditions/test DOCTYPE Declaration (Case 7098).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Previous Failure Conditions/test DOCTYPE Declaration (Case 7098).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Previous Failure Conditions/testAttributesWithSingleQuotesFailure_(Case5174).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Previous Failure Conditions/testAttributesWithSingleQuotesFailure_(Case5174).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Previous Failure Conditions/testColonsInNameFailure_(Case5175).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Previous Failure Conditions/testColonsInNameFailure_(Case5175).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Previous Failure Conditions/testMissingElement.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Previous Failure Conditions/testMissingElement.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Previous Failure Conditions/testNestedEmptyElement.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Previous Failure Conditions/testNestedEmptyElement.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Previous Failure Conditions/testNestedEmptyElementAffectingSyblings(Case7440).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Previous Failure Conditions/testNestedEmptyElementAffectingSyblings(Case7440).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Previous Failure Conditions/testParseNotReadingModifiedDataProperly(Case5788).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Previous Failure Conditions/testParseNotReadingModifiedDataProperly(Case5788).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Previous Failure Conditions/testTimestampInArray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Previous Failure Conditions/testTimestampInArray.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Test Support/Reentrant Setting Requirement - Enum.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Test Support/Reentrant Setting Requirement - Enum.ctl -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Test Support/convertEOL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Test Support/convertEOL.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Test Support/failUnlessGeneratedAndParsedOneToOne.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Test Support/failUnlessGeneratedAndParsedOneToOne.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Test Support/failUnlessXmlGeneratedCorrectly.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Test Support/failUnlessXmlGeneratedCorrectly.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Test Support/failUnlessXmlParsedCorrectly.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Test Support/failUnlessXmlParsedCorrectly.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Test Support/passIfReentrant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Test Support/passIfReentrant.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/Test Support/stripXmlFileHeader.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/Test Support/stripXmlFileHeader.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesDouble.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesDouble.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesDoubleNull.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesDoubleNull.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesDoubleWithSingleInside.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesDoubleWithSingleInside.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesMixedMultiple01.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesMixedMultiple01.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesMixedMultiple02.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesMixedMultiple02.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesMixedMultiple03.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesMixedMultiple03.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesMixedMultiple04.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesMixedMultiple04.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesSingle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesSingle.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesSingleNull.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesSingleNull.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesSingleWithDoubleInside.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributeQuotes/testAttributeQuotesSingleWithDoubleInside.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributeBoolean.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributeBoolean.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributeEnumU16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributeEnumU16.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributeEnumU32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributeEnumU32.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributeEnumU8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributeEnumU8.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributeNumericI16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributeNumericI16.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributeNumericI32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributeNumericI32.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributeNumericI8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributeNumericI8.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributeNumericU16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributeNumericU16.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributeNumericU32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributeNumericU32.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributeNumericU8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributeNumericU8.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributePath.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributePath.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributeString.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributeString.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testAttributeTimestamp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testAttributeTimestamp.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testAttributes/testNestedElementWithAttributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testAttributes/testNestedElementWithAttributes.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testCDATA.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testCDATA.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testColonsInNames/testColonInAttributeName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testColonsInNames/testColonInAttributeName.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testColonsInNames/testColonInDataAndAttributeNames.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testColonsInNames/testColonInDataAndAttributeNames.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testColonsInNames/testColonInDataName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testColonsInNames/testColonInDataName.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testDefaultIndentation.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testDefaultIndentation.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testDoctypeDeclaration/test DOCTYPE Declaration 001.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testDoctypeDeclaration/test DOCTYPE Declaration 001.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testEOLsInString.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testEOLsInString.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testElementName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testElementName.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testEmbeddedXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testEmbeddedXML.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testEmptyArray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testEmptyArray.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testEmptyElement.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testEmptyElement.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testEnumFormatting.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testEnumFormatting.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testErrorPropagation.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testErrorPropagation.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testEscapeChars.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testEscapeChars.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testEscapeCharsInAttributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testEscapeCharsInAttributes.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testFlattenArray/testFlattenArrayAtRootLevel.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testFlattenArray/testFlattenArrayAtRootLevel.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testFlattenArray/testFlattenArrayInsideCluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testFlattenArray/testFlattenArrayInsideCluster.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testHeaders/testHeadersPresentParserSupport.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testHeaders/testHeadersPresentParserSupport.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testInternationalCharacters/testInternationalCharactersInAttributeData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testInternationalCharacters/testInternationalCharactersInAttributeData.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testInternationalCharacters/testInternationalCharactersInAttributeName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testInternationalCharacters/testInternationalCharactersInAttributeName.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testInternationalCharacters/testInternationalCharactersInComment.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testInternationalCharacters/testInternationalCharactersInComment.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testInternationalCharacters/testInternationalCharactersInElementData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testInternationalCharacters/testInternationalCharactersInElementData.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testInternationalCharacters/testInternationalCharactersInElementName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testInternationalCharacters/testInternationalCharactersInElementName.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testInvalidInputs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testInvalidInputs.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testNestedElementWithAttributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testNestedElementWithAttributes.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testRawXml/testPreserveRawXml.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testRawXml/testPreserveRawXml.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testRawXml/testRawCompoundXmlCluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testRawXml/testRawCompoundXmlCluster.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testRawXml/testRawXml.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testRawXml/testRawXml.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testRawXml/testRawXmlDoubleNestedCluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testRawXml/testRawXmlDoubleNestedCluster.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testRawXml/testRawXmlEmptyString.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testRawXml/testRawXmlEmptyString.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testRawXml/testRawXmlMultiLine.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testRawXml/testRawXmlMultiLine.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testRawXml/testRawXmlNestedCluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testRawXml/testRawXmlNestedCluster.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testRawXml/testRawXmlWithAttributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testRawXml/testRawXmlWithAttributes.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testRawXml/testRawXmlWithNoXMLTags.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testRawXml/testRawXmlWithNoXMLTags.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testReadArrayFromFileAutoWrapInCluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testReadArrayFromFileAutoWrapInCluster.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testRecursiveCompoundStructure.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testRecursiveCompoundStructure.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- Easy Generate XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- Easy Generate XML.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- Easy Parse XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- Easy Parse XML.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- Easy Read XML File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- Easy Read XML File.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- Easy Write XML File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- Easy Write XML File.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- Parse XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- Parse XML.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- Variant to XML - core - .vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- Variant to XML - core - .vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- XML Loop Stack Recursion.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testReentrancy/testReentrancy -- XML Loop Stack Recursion.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testRemoveComments.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testRemoveComments.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testScalarElementsWithAttributes/testArrayOfScalarElementsWithAttributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testScalarElementsWithAttributes/testArrayOfScalarElementsWithAttributes.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testScalarElementsWithAttributes/testScalarElementWithAttributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testScalarElementsWithAttributes/testScalarElementWithAttributes.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testArray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testArray.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testBoolean.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testBoolean.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testBooleanParsing/testBooleanParsingDecimal.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testBooleanParsing/testBooleanParsingDecimal.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testBooleanParsing/testBooleanParsingLowercase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testBooleanParsing/testBooleanParsingLowercase.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testBooleanParsing/testBooleanParsingMixedcase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testBooleanParsing/testBooleanParsingMixedcase.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testBooleanParsing/testBooleanParsingUppercase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testBooleanParsing/testBooleanParsingUppercase.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testCluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testCluster.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testEnumU16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testEnumU16.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testEnumU32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testEnumU32.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testEnumU8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testEnumU8.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testFloatingPointSignificantFigures/testNumericDBL--14SignificantFigures.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testFloatingPointSignificantFigures/testNumericDBL--14SignificantFigures.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testFloatingPointSignificantFigures/testNumericEXT--14SignificantFigures.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testFloatingPointSignificantFigures/testNumericEXT--14SignificantFigures.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testFloatingPointSignificantFigures/testNumericSGL-7SignificantFigures.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testFloatingPointSignificantFigures/testNumericSGL-7SignificantFigures.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericDBL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericDBL.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericDBLPQ.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericDBLPQ.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericEXT.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericEXT.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericEXTPQ.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericEXTPQ.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericI16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericI16.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericI32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericI32.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericI64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericI64.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericI8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericI8.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericSGL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericSGL.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericSGLPQ.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericSGLPQ.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericU16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericU16.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericU32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericU32.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericU64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericU64.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testNumericU8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testNumericU8.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testPath.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testPath.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testRefnumDAQmx.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testRefnumDAQmx.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testRefnumVISA.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testRefnumVISA.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testString.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testString.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testTimestamp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testTimestamp.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testTimestampParsing/testTimestampParsingDateOnly.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testTimestampParsing/testTimestampParsingDateOnly.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testTimestampParsing/testTimestampParsingExplicitTimeZone.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testTimestampParsing/testTimestampParsingExplicitTimeZone.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testTimestampParsing/testTimestampParsingNoTimeZone.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testTimestampParsing/testTimestampParsingNoTimeZone.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testTimestampParsing/testTimestampParsingZ.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testTimestampParsing/testTimestampParsingZ.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/VISA Resource Types.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/VISA Resource Types.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_FireWire_Instr.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_FireWire_Instr.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_GPIB Instr.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_GPIB Instr.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_GPIB_BoardInterface.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_GPIB_BoardInterface.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_GPIB_Servant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_GPIB_Servant.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_Instr.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_Instr.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_PXI Instr.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_PXI Instr.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_PXI_Backplane.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_PXI_Backplane.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_PXI_MemAcc.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_PXI_MemAcc.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_Serial Instr.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_Serial Instr.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_TCP-IP Instr.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_TCP-IP Instr.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_TCP_IP_Socket.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_TCP_IP_Socket.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_USB Instr.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_USB Instr.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_USB_Raw.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_USB_Raw.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_VXI GPIB-VXI MBD Instr.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_VXI GPIB-VXI MBD Instr.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_VXI_GPIB_VXI_Backplane.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_VXI_GPIB_VXI_Backplane.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_VXI_GPIB_VXI_VME_MemAcc.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_VXI_GPIB_VXI_VME_MemAcc.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_VXI_Servant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testSupportedTypes/testVisaResource/testVisaResource_VXI_Servant.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testUnnamedElement/testClusterWithMultipleUnnamedElements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testUnnamedElement/testClusterWithMultipleUnnamedElements.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testUnnamedElement/testUnnamedArray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testUnnamedElement/testUnnamedArray.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testUnnamedElement/testUnnamedBoolean.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testUnnamedElement/testUnnamedBoolean.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testUnsupportedTypes/testMultiDimensionalArray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testUnsupportedTypes/testMultiDimensionalArray.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testUnsupportedTypes/testWaveform.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testUnsupportedTypes/testWaveform.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testVIProperties/testGetTagContent--Subroutine.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testVIProperties/testGetTagContent--Subroutine.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testVIProperties/testToolkitErrorHandlingAddCallerToApiViListIsReentrant.vi.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testVIProperties/testToolkitErrorHandlingAddCallerToApiViListIsReentrant.vi.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testWarningPropagation.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testWarningPropagation.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testWriteArrayToFileAutoWrapInCluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testWriteArrayToFileAutoWrapInCluster.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileDefaultEncodingHeaderPresent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileDefaultEncodingHeaderPresent.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileNoEncodingHeaderPresent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileNoEncodingHeaderPresent.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileStandAloneHeaderNotPresent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileStandAloneHeaderNotPresent.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileStandAloneHeaderPresent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileStandAloneHeaderPresent.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileStylesheetAbsUrlHeaderPresent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileStylesheetAbsUrlHeaderPresent.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileStylesheetCssFileHeaderPresent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileStylesheetCssFileHeaderPresent.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileStylesheetRelUrlHeaderPresent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileStylesheetRelUrlHeaderPresent.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileUtf8EncodingHeaderPresent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testWriteFileHeaders/testWriteFileUtf8EncodingHeaderPresent.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXMLTest/testWriteToExistingFileFailsWithError.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXMLTest/testWriteToExistingFileFailsWithError.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/Previous Failure Conditions/testMissingElement.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/Previous Failure Conditions/testMissingElement.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/Previous Failure Conditions/testNestedEmptyElement.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/Previous Failure Conditions/testNestedEmptyElement.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/Previous Failure Conditions/testNestedEmptyElementAffectingSyblings(Case7440).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/Previous Failure Conditions/testNestedEmptyElementAffectingSyblings(Case7440).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/Previous Failure Conditions/testParseNotReadingModifiedDataProperly(Case5788).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/Previous Failure Conditions/testParseNotReadingModifiedDataProperly(Case5788).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/Test Support/evaluateGenerateXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/Test Support/evaluateGenerateXML.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/Test Support/evaluateParseXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/Test Support/evaluateParseXML.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/testAttributes/testNestedElementWithAttributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/testAttributes/testNestedElementWithAttributes.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/testHeaders/testHeadersPresentParserSupport.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/testHeaders/testHeadersPresentParserSupport.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingDecimal.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingDecimal.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingLowercase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingLowercase.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingMixedcase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingMixedcase.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingUppercase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingUppercase.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingDateOnly.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingDateOnly.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingExplicitTimeZone.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingExplicitTimeZone.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingNoTimeZone.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingNoTimeZone.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingZ.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Built_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingZ.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/Previous Failure Conditions/evaluateMissingElement.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/Previous Failure Conditions/evaluateMissingElement.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/Previous Failure Conditions/evaluateNestedEmptyElement.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/Previous Failure Conditions/evaluateNestedEmptyElement.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/Previous Failure Conditions/evaluateNestedEmptyElementAffectingSyblings(Case7440).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/Previous Failure Conditions/evaluateNestedEmptyElementAffectingSyblings(Case7440).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/Previous Failure Conditions/evaluateParseNotReadingModifiedDataProperly(Case5788).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/Previous Failure Conditions/evaluateParseNotReadingModifiedDataProperly(Case5788).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/convertEOL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/convertEOL.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/evaluateGenerateXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/evaluateGenerateXML.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/evaluateParseXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/evaluateParseXML.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/failUnlessGeneratedAndParsedOneToOne.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/failUnlessGeneratedAndParsedOneToOne.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/failUnlessXmlGeneratedCorrectly.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/failUnlessXmlGeneratedCorrectly.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/failUnlessXmlParsedCorrectly.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/failUnlessXmlParsedCorrectly.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/passIfReentrant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/passIfReentrant.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/stripXmlFileHeader.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/Test Support/stripXmlFileHeader.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/testAttributes/evaluateNestedElementWithAttributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/testAttributes/evaluateNestedElementWithAttributes.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/testHeaders/evaluateHeadersPresentParserSupport.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/testHeaders/evaluateHeadersPresentParserSupport.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testBooleanParsing/evaluateBooleanParsingDecimal.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testBooleanParsing/evaluateBooleanParsingDecimal.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testBooleanParsing/evaluateBooleanParsingLowercase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testBooleanParsing/evaluateBooleanParsingLowercase.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testBooleanParsing/evaluateBooleanParsingMixedcase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testBooleanParsing/evaluateBooleanParsingMixedcase.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testBooleanParsing/evaluateBooleanParsingUppercase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testBooleanParsing/evaluateBooleanParsingUppercase.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testTimestampParsing/evaluateTimestampParsingDateOnly.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testTimestampParsing/evaluateTimestampParsingDateOnly.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testTimestampParsing/evaluateTimestampParsingExplicitTimeZone.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testTimestampParsing/evaluateTimestampParsingExplicitTimeZone.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testTimestampParsing/evaluateTimestampParsingNoTimeZone.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testTimestampParsing/evaluateTimestampParsingNoTimeZone.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testTimestampParsing/evaluateTimestampParsingZ.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Evaluations/testSupportedTypes/testTimestampParsing/evaluateTimestampParsingZ.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/Previous Failure Conditions/testBundleVCluster(Case 13415).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/Previous Failure Conditions/testBundleVCluster(Case 13415).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/Previous Failure Conditions/testMissingElement.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/Previous Failure Conditions/testMissingElement.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/Previous Failure Conditions/testNestedEmptyElement.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/Previous Failure Conditions/testNestedEmptyElement.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/Previous Failure Conditions/testNestedEmptyElementAffectingSyblings(Case7440).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/Previous Failure Conditions/testNestedEmptyElementAffectingSyblings(Case7440).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/Previous Failure Conditions/testParseNotReadingModifiedDataProperly(Case5788).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/Previous Failure Conditions/testParseNotReadingModifiedDataProperly(Case5788).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/Previous Failure Conditions/testSpecialChar(Case13072).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/Previous Failure Conditions/testSpecialChar(Case13072).vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/Test Support/evaluateGenerateXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/Test Support/evaluateGenerateXML.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/Test Support/evaluateParseXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/Test Support/evaluateParseXML.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/testAttributes/testNestedElementWithAttributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/testAttributes/testNestedElementWithAttributes.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/testHeaders/testHeadersPresentParserSupport.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/testHeaders/testHeadersPresentParserSupport.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingDecimal.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingDecimal.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingLowercase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingLowercase.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingMixedcase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingMixedcase.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingUppercase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testBooleanParsing/testBooleanParsingUppercase.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingDateOnly.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingDateOnly.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingExplicitTimeZone.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingExplicitTimeZone.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingNoTimeZone.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingNoTimeZone.vi -------------------------------------------------------------------------------- /Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingZ.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/EasyXML_XML_Subset_Source_Tests/testSupportedTypes/testTimestampParsing/testTimestampParsingZ.vi -------------------------------------------------------------------------------- /Source/Tests/TEST Performance Benchmark.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/TEST Performance Benchmark.vi -------------------------------------------------------------------------------- /Source/Tests/VI Tester Reuse Candidates/Test VI Debugging Disabled.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/VI Tester Reuse Candidates/Test VI Debugging Disabled.vi -------------------------------------------------------------------------------- /Source/Tests/VI Tester Reuse Candidates/Test VI Reentrancy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/Source/Tests/VI Tester Reuse Candidates/Test VI Reentrancy.vi -------------------------------------------------------------------------------- /build support/Post-Build Custom Action - EasyXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/Post-Build Custom Action - EasyXML.vi -------------------------------------------------------------------------------- /build support/Pre-Build Custom Action - EasyXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/Pre-Build Custom Action - EasyXML.vi -------------------------------------------------------------------------------- /build support/doc builder/Create ALL Documentation.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/Create ALL Documentation.vi -------------------------------------------------------------------------------- /build support/doc builder/Create VI Documentation.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/Create VI Documentation.vi -------------------------------------------------------------------------------- /build support/doc builder/Get VI Parameters and Images.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/Get VI Parameters and Images.vi -------------------------------------------------------------------------------- /build support/doc builder/Keyword Values - Cluster -.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/Keyword Values - Cluster -.ctl -------------------------------------------------------------------------------- /build support/doc builder/MAIN -- CREATE DOCS.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/MAIN -- CREATE DOCS.vi -------------------------------------------------------------------------------- /build support/doc builder/New Text Document.txt: -------------------------------------------------------------------------------- 1 | {VI Name} 2 | {VI Description} 3 | {Supplimental VI Information} 4 | {Link to Additional VI Information and Examples} 5 | {VI ConPane Image Path} 6 | {Table of VI Parameters} 7 | {Additional VI Information} 8 | {Example Information} -------------------------------------------------------------------------------- /build support/doc builder/OGB Replace Keyword in String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/OGB Replace Keyword in String.vi -------------------------------------------------------------------------------- /build support/doc builder/OGB Replace Keywords in File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/OGB Replace Keywords in File.vi -------------------------------------------------------------------------------- /build support/doc builder/OGB Replace Keywords in String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/OGB Replace Keywords in String.vi -------------------------------------------------------------------------------- /build support/doc builder/Read Library Info File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/Read Library Info File.vi -------------------------------------------------------------------------------- /build support/doc builder/Type Definitions/Library Information Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/Type Definitions/Library Information Cluster.ctl -------------------------------------------------------------------------------- /build support/doc builder/Utilities/Doc Builder - Escape Slashes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/Utilities/Doc Builder - Escape Slashes.vi -------------------------------------------------------------------------------- /build support/doc builder/Utilities/Doc Builder - Replace Cluster of Keywords.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/Utilities/Doc Builder - Replace Cluster of Keywords.vi -------------------------------------------------------------------------------- /build support/doc builder/Utilities/Doc Builder - Replace Spaces with Underscores.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/Utilities/Doc Builder - Replace Spaces with Underscores.vi -------------------------------------------------------------------------------- /build support/doc builder/Word Wrap License File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/build support/doc builder/Word Wrap License File.vi -------------------------------------------------------------------------------- /build support/doc builder/common help files/CheckInstalled.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /build support/doc builder/common help files/DynamicContent.js: -------------------------------------------------------------------------------- 1 | /******************************************************************** 2 | * Check for chms 3 | ********************************************************************/ 4 | 7 | 8 | 9 | /********************************************************************* 10 | * getElementsByClass(classes, node) 11 | * Returns an array containing all elements within the specified node 12 | * that are of the specified class. If you do not specify a node, This 13 | * function returns all elements in the document that are of the specified class. 14 | * 15 | * Params: 16 | * Name Type Description 17 | * classes String The class to search for. Currently, you can specify only one class. 18 | * node Object The node in which to search for elements of the specified class. 19 | * If you do not set this parameter, the function returns searches the 20 | * entire document. 21 | * 22 | * Example: 23 | * var indentedPgphs = new Array; 24 | * indentedPgphs = getElementsByClass("indent1"); 25 | * 26 | **********************************************************************/ 27 | 28 | function getElementsByClass(classes, node) { 29 | var elementArray = new Array; 30 | 31 | if(!node) { 32 | node = window.document; 33 | } 34 | 35 | return _getElementsByClassSub(classes, node, elementArray); 36 | } 37 | 38 | function _getElementsByClassSub(classes, node, elementArray) { 39 | var index=0; 40 | 41 | if(searchArray(getClasses(node), classes)) { 42 | elementArray=elementArray.concat(node); 43 | } 44 | 45 | for (index=0; index
to start the new paragraph within the same set of
  • tags. If you need to indent a list within another list, nest the indented list within the first list's set of
      or
        tags. */ 39 | P.Indent1 { margin-left:12.00pt; margin-top:6.00pt; margin-bottom:3.00pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; } 40 | P.Indent2 { margin-left:24.00pt; margin-top:6.00pt; margin-bottom:3.00pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; } 41 | P.Indent3 { margin-left:36.00pt; margin-top:6.00pt; margin-bottom:3.00pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; } 42 | P.Indent4 { margin-left:48.00pt; margin-top:6.00pt; margin-bottom:3.00pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; } 43 | P.Indent5 { margin-left:60.00pt; margin-top:6.00pt; margin-bottom:3.00pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; } 44 | P.Indent6 { margin-left:72.00pt; margin-top:6.00pt; margin-bottom:3.00pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; } 45 | P.Indent7 { margin-left:84.00pt; margin-top:6.00pt; margin-bottom:3.00pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; } 46 | P.Indent8 { margin-left:96.00pt; margin-top:6.00pt; margin-bottom:3.00pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; } 47 | P.Indent9 { margin-left:108.00pt; margin-top:6.00pt; margin-bottom:3.00pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; } 48 | 49 | /* Use the LI style for all list items. */ 50 | LI { margin-top:3.00pt; margin-bottom:3.00pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; } 51 | 52 | /* Use the OL style for numbered lists. You do not have to type the number for each list item in a numbered list. */ 53 | OL { margin-left:18.00pt; margin-top:3.00pt; margin-bottom:3.00pt; text-indent:0pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; list-style-type: decimal; } 54 | 55 | /* Use the OL style for numbered lists. Nested lists will use the bullet types according to the nesting scheme below */ 56 | ol ol {list-style-type:lower-alpha} 57 | ol ol ol {list-style-type:decimal} 58 | ol ol ol ol {list-style-type:lower-alpha} 59 | ol ol ol ol ol {list-style-type:decimal} 60 | ol ol ol ol ol ol {list-style-type:lower-alpha} 61 | ol ol ol ol ol ol ol {list-style-type:decimal} 62 | ol ol ol ol ol ol ol ol {list-style-type:lower-alpha} 63 | 64 | /* Use the EquationNum style class for numbered lists of equations. You do not have to type the number for each list item in a numbered list. */ 65 | OL.EquationNum { margin-left:36.00pt; margin-top:3.00pt; margin-bottom:3.00pt; text-indent:0pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; list-style-type: decimal; } 66 | 67 | /* Use the List-abc style class for lettered lists. You do not have to type the letter for each list item in a lettered list. */ 68 | OL.List-abc { margin-left:18.00pt; margin-top:3.00pt; margin-bottom:3.00pt; text-indent:0pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; list-style-type:lower-alpha; } 69 | 70 | /* Use the UL style for bulleted lists. You do not have to type the bullet for each list item in a bulleted list. */ 71 | UL { margin-left:12.00pt; text-indent:0pt; margin-top:3.00pt; margin-bottom:3.00pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; list-style-type: disc; } 72 | 73 | /* Use the UL style for bulleted lists. Nested lists will use the bullet types according to the nesting scheme below. NOTE: hyphen.gif required in same directory as minimal.css */ 74 | ul ul {list-style-image:url(hyphen.gif)} 75 | ul ul ul {list-style-image:none;list-style-type:disc} 76 | ul ul ul ul {list-style-image:url(hyphen.gif)} 77 | ul ul ul ul ul {list-style-image:none;list-style-type:disc} 78 | ul ul ul ul ul ul {list-style-image:url(hyphen.gif)} 79 | ul ul ul ul ul ul ul {list-style-image:none;list-style-type:disc} 80 | ul ul ul ul ul ul ul ul ul{list-style-image:url(hyphen.gif)} 81 | 82 | /* Use the List-Box style class for bulleted lists with boxes instead of bullets. You do not have to type the box for each list item in a box list. */ 83 | UL.List-Box { margin-left:12.00pt; margin-top:3.00pt; margin-bottom:3.00pt; text-indent:0pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; list-style-type: square; } 84 | 85 | /* Use the List-Diamond style class for bulleted lists with diamonds instead of bullets. You do not have to type the diamond for each list item in a diamond list. */ 86 | UL.List-Diamond { margin-left:12.00pt; margin-top:3.00pt; margin-bottom:3.00pt; text-indent:0pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; list-style-image:url(diamond.gif); } 87 | 88 | /* Use the List-Hyphen style class for bulleted lists with hyphens instead of bullets. You do not have to type the hyphen for each list item in a hyphen list. */ 89 | UL.List-Hyphen { margin-left:12.00pt; margin-top:3.00pt; margin-bottom:3.00pt; text-indent:0pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; list-style-image:url(hyphen.gif); } 90 | 91 | /* Use the Borderless style class for tables that do not need borders, such as for 2-column or 3-column lists with no headings. */ 92 | Table.Borderless { border:none; } 93 | 94 | /* Use the Bordered style class for tables that need borders. */ 95 | Table.Bordered { border-width: 1pt; border-style: solid; border-color: #000000; border-collapse: collapse; } 96 | 97 | /* Use the Borderless-Wide style class for tables that do not need borders and that you want to stretch to fill the entire topic width. */ 98 | Table.Borderless-Wide { border:none; width:100%; } 99 | 100 | /* Use the Bordered-Wide style class for tables that need borders and that you want to stretch to fill the entire topic width. */ 101 | Table.Bordered-Wide { border-width: 1pt; border-style: solid; border-color: #000000; width:100%; border-collapse: collapse; } 102 | 103 | /* Use the TD style for table cells in Borderless or Borderless-Wide tables. */ 104 | TD { font-family:Verdana, sans-serif; font-size:11px; color:#000000; vertical-align:top; padding:3px; } 105 | 106 | /* Use the Bordered style class for table cells in Bordered or Bordered-Wide tables. */ 107 | TD.Bordered { font-family:Verdana, sans-serif; font-size:11px; color:#000000; vertical-align:top; border-width: 1pt; border-style: solid; border-color: #000000; } 108 | 109 | /* Use the Icon style class for table cells that contain note, caution, warning, or tip icons, or LabVIEW datatype terminals. */ 110 | TD.Icon { width:40px; vertical-align:top; } 111 | 112 | /* Use the Table-cell-8pt style class for table cells in tables that contain a lot of information and need smaller text to fit it all on one screen to prevent a horizontal scroll bar from appearing. */ 113 | TD.Table-cell-8pt { font-family:Verdana, sans-serif; font-size:8px; color:#000000; } 114 | 115 | /* Use the TH style for table heading cells in Borderless or Borderless-Wide tables. */ 116 | TH { font-family:Verdana, sans-serif; font-size:11px; color:#000000; font-weight:bold; padding:3px; } 117 | 118 | /* Use the Bordered style class for table heading cells in Bordered or Bordered-Wide tables. */ 119 | TH.Bordered { font-family:Verdana, sans-serif; font-size:11px; color:#000000; font-weight:bold; border-width: 1pt; border-style: solid; border-color: #000000; } 120 | 121 | /* Use the Table-cell-8pt style class for table heading cells in tables that contain a lot of information and need smaller text to fit it all on one screen to prevent a horizontal scroll bar from appearing. */ 122 | TH.Table-Head-8pt { font-family:Verdana, sans-serif; font-size:8px; color:#000000; font-weight:bold; } 123 | 124 | /* Use the Left-Align style class for table heading cells that you want to left align instead of center align. */ 125 | TH.Left-Align { font-family:Verdana, sans-serif; font-size:11px; color:#000000; font-weight:bold; padding:3px; text-align:left; } 126 | 127 | /***************************************************/ 128 | /* CHARACTER FORMATS */ 129 | /* The following section defines character formats that every HTML Help project should need. */ 130 | 131 | /* Use the Dark-Red format for warnings or cautions. */ 132 | #Dark-Red { color: #800000 } 133 | 134 | /* Use the Monospace format for code or syntax examples. */ 135 | #Monospace { font-family: Courier New; font-size: 11px; } 136 | 137 | /* Use the Monospace-Bold format for messages and responses that the computer automatically prints to the screen. */ 138 | #Monospace-Bold { font-family: Courier New; font-size: 11px; font-weight: bold; } 139 | 140 | /* Use the Monospace-Italic format to denote text that is a placeholder for a word or value that the user must supply. */ 141 | #Monospace-Italic { font-family: Courier New; font-size: 11px; font-style: italic; } 142 | 143 | /* Use the Platform format to denote a specific platform. */ 144 | #Platform { color: #0000FF; font-weight: bold; } 145 | 146 | /* Use the Symbol format for characters not in the Verdana character set. Use this format sparingly. When possible, you should use the correct ASCII code for the symbol or use a graphic to recreate the symbol. */ 147 | #Symbol { font-family: Symbol; font-size: 11px; } 148 | /* CHARACTER FORMATS Updated to conform with the CSE HTML Validator Pro */ 149 | /* The following section defines character formats that every HTML Help project should need. */ 150 | /* Use the Dark-Red format for warnings or cautions. */ 151 | .Dark-Red { color: #800000 } 152 | /* Use the Monospace format for code or syntax examples. */ 153 | .Monospace { font-family: Courier New; font-size: 11px; } 154 | /* Use the Monospace-Bold format for messages and responses that the computer automatically prints to the screen. */ 155 | .Monospace-Bold { font-family: Courier New; font-size: 11px; font-weight: bold; } 156 | /* Use the Monospace-Italic format to denote text that is a placeholder for a word or value that the user must supply. */ 157 | .Monospace-Italic { font-family: Courier New; font-size: 11px; font-style: italic; } 158 | /* Use the Platform format to denote a specific platform. */ 159 | .Platform { color: #0000FF; font-weight: bold; } 160 | /* Use the Symbol format for characters not in the Verdana character set. Use this format sparingly. When possible, you should use the correct ASCII code for the symbol or use a graphic to recreate the symbol. */ 161 | .Symbol { font-family: Symbol; font-size: 11px; } 162 | /* Use the Red-text format to call attention to text that needs information added or edited by techcomm */ 163 | .Red-text {color: #FF0000;} 164 | /* Use the Green-Underline format for the green defintion in the conventions topic */ 165 | .Green-Underline {color: #007700; text-decoration : underline;} 166 | /* Use the glossButton format for the glossary buttons used in the glossary topic */ 167 | .glossButton { font-family:Verdana, sans-serif; font-size:12px; color:black; } 168 | 169 | /* The following styles define the color of links. */ 170 | a:link { color: #007700 } 171 | a:hover { color: #FF0000 } 172 | a:active { color: #FF0000 } 173 | a:visited { color: #7F007F } 174 | 175 | /***************************************************/ 176 | /* ACTIVITY STYLES */ 177 | /* The following section defines styles that only tutorial-style HTML Help projects should need. */ 178 | 179 | /* Use the Activity-Objective style class for the objective at the beginning of an activity topic. */ 180 | H3.Activity-Objective { color: #800000; } 181 | 182 | /***************************************************/ 183 | /* CODE STYLES */ 184 | /* The following section defines styles that you need to format entire sections of code or syntax examples. If you have just a few words you need to format as a code or syntax example, use the Monospace character format. */ 185 | 186 | P.Code { margin-top:3.00pt; margin-bottom:0.00pt; font-family:Courier New; font-size:11px; color:#000000; } 187 | P.Code1 { margin-left:12.00pt; margin-top:3.00pt; margin-bottom:0.00pt; font-family:Courier New; font-size:11px; color:#000000; } 188 | P.Code2 { margin-left:24.00pt; margin-top:3.00pt; margin-bottom:0.00pt; font-family:Courier New; font-size:11px; color:#000000; } 189 | P.Code3 { margin-left:36.00pt; margin-top:3.00pt; margin-bottom:0.00pt; font-family:Courier New; font-size:11px; color:#000000; } 190 | 191 | /***************************************************/ 192 | /* FUNCTION STYLES */ 193 | /* The following section defines styles that you might need to format function reference help. */ 194 | 195 | P.F-VI-Code4 { margin-left:48.00pt; margin-top:3.00pt; margin-bottom:0.00pt; font-family:Courier New; font-size:11px; color:#000000; } 196 | P.F-VI-Code5 { margin-left:60.00pt; margin-top:3.00pt; margin-bottom:0.00pt; font-family:Courier New; font-size:11px; color:#000000; } 197 | P.F-VI-Equation { margin-top:9.00pt; margin-bottom:9.00pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; } 198 | 199 | OL.F-VI-EquationNum { margin-top:3.00pt; margin-bottom:3.00pt; text-indent:0pt; font-family:Verdana, sans-serif; font-size:11px; color:#000000; list-style-type: decimal; } 200 | 201 | /***************************************************/ 202 | /* CUSTOM LV STYLES */ 203 | /* The following section defines styles that are not in the Tech Comm template for minimal.css. */ 204 | 205 | /* The following styles are used in the polymorphic instance drop-down list code. */ 206 | form { margin-top:0pt; font-family:Verdana, sans-serif; font-size:11px; color:black; } 207 | select { font-family:Verdana, sans-serif; font-size:11px; color:black; } -------------------------------------------------------------------------------- /build support/doc builder/common help files/nonIE.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | } 4 | 5 | #styleDivTitle 6 | { 7 | } 8 | 9 | #styleDivScrolling 10 | { 11 | } -------------------------------------------------------------------------------- /build support/doc builder/common help files/nonscroll.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | margin: 0px; 4 | overflow: hidden; // GETS MODIFIED (VIA SCRIPT) IF NONSCROLLING REGION USED 5 | padding: 0px; 6 | } 7 | 8 | #styleDivTitle 9 | { 10 | background: #FFFFFF top left fixed; 11 | border-bottom-style: solid; 12 | border-color: #000000; /* BLACK */ 13 | border-width: 5px; 14 | height: auto; 15 | overflow: hidden; 16 | padding-bottom: .25em; 17 | padding-left: 5px; 18 | padding-right: 5px; 19 | padding-top: .25em; 20 | } 21 | 22 | #styleDivScrolling 23 | { 24 | background-color: #FFFFFF; /* WHITE */ 25 | padding: 5px; 26 | height: auto; /* "height" VALUE IS ADJUSTED TO FIT THE BODY IN SCRIPT FUNCTIONS */ 27 | overflow: auto; /* ALLOWS SCROLL BARS */ 28 | position: absolute; /* REQUIRED FOR PRECISE CONTROL OVER THE DIV'S POSITION */ 29 | /* "top" VALUE IS SCRIPTED */ 30 | width: auto; /* "width" VALUE IS ADJUSTED TO FIT THE BODY IN SCRIPT FUNCTIONS */ 31 | } -------------------------------------------------------------------------------- /build support/doc builder/common help files/nonscroll.js: -------------------------------------------------------------------------------- 1 | var iebrowser = false; 2 | var nsbrowser = false; 3 | var vScrollWidth = 0; 4 | var cDivScrollingHeightMin = 1; 5 | var cHeightError = -4; 6 | var cWidthError = -4; 7 | var vScrollHeight = cDivScrollingHeightMin; 8 | var vDivTitleHeightError = 0; 9 | var vResizeTimeout; 10 | var vResizeForceTimeout; 11 | // FOR BROWSER INFORMATION GATHERING 12 | var cBrowserName = 0; 13 | var cBrowserVersion = 1; 14 | // BROWSER NAMES 15 | var cBrowserIE = "Microsoft Internet Explorer"; 16 | var cBrowserNN = "Netscape Navigator"; 17 | var cBrowserSO = "StarOffice"; 18 | var cBrowserUnknown = "Unknown"; 19 | var fcBrowserName = fBrowser( cBrowserName ); 20 | var fcBrowserVersion = fBrowser( cBrowserVersion ); 21 | // FOR NON-SCROLLING REGION 22 | window.onresize = fResize; 23 | 24 | 25 | // "vBrowserInfo" DETERMINES WHAT TYPE OF INFORMATION IS REQUESTED 26 | // (e.g., BROWSER NAME OR VERSION NUMBER) 27 | function fBrowser( vBrowserInfo ) 28 | 29 | { 30 | var vBrowserInfoName = ""; 31 | var vBrowserInfoVersion = ""; 32 | var vReturnValue; 33 | 34 | if( vBrowserInfo == cBrowserName ) 35 | { 36 | if( navigator.appName ) 37 | { 38 | vBrowserInfoName = navigator.appName; 39 | } 40 | else 41 | // IE 3 DOES NOT ALWAYS RECOGNIZE THE "navigator" OBJECT 42 | { 43 | vBrowserInfoName = cBrowserIE; 44 | } 45 | 46 | if( vBrowserInfoName.indexOf( "Netscape" ) >= 0 ) 47 | { 48 | vBrowserInfoName = cBrowserNN; 49 | // STAR OFFICE (3.0) INCORRECTLY REPORTS ITSELF AS NN IN "appName" 50 | // CHECK "appVersion" INSTEAD AND CHANGE IF NECESSARY 51 | if( navigator.appVersion ) 52 | { 53 | if( navigator.appVersion.indexOf( "StarView" ) >= 0 ) 54 | { 55 | vBrowserInfoName = cBrowserSO; 56 | } 57 | } 58 | } 59 | else if( vBrowserInfoName.indexOf( "Microsoft" ) >= 0 ) 60 | { 61 | vBrowserInfoName = cBrowserIE; 62 | } 63 | else 64 | { 65 | vBrowserInfoName = cBrowserUnknown; 66 | } 67 | 68 | vReturnValue = vBrowserInfoName; 69 | } 70 | 71 | 72 | else if( vBrowserInfo == cBrowserVersion ) 73 | { 74 | 75 | if( ( navigator.appName ) && ( navigator.appVersion ) ) 76 | { 77 | if( navigator.appName.indexOf( "Netscape" ) >= 0 ) 78 | { 79 | vBrowserInfoVersion = parseFloat( navigator.appVersion.substring( 0, navigator.appVersion.indexOf( "(" ) ) ); 80 | } 81 | else if( navigator.appName.indexOf( "Microsoft" ) >= 0 ) 82 | { 83 | vBrowserInfoVersion = parseFloat( navigator.appVersion.substring( navigator.appVersion.indexOf( "MSIE " ) + 5, navigator.appVersion.indexOf( ";", navigator.appVersion.indexOf( "MSIE " ) ) ) ); 84 | } 85 | else if( navigator.appVersion.indexOf( "StarView" ) >= 0 ) 86 | { 87 | vBrowserInfoVersion = parseFloat( navigator.appVersion.substring( 0, navigator.appVersion.indexOf( "(" ) ) ); 88 | } 89 | } 90 | 91 | else 92 | { 93 | // IE 3 DOES NOT ALWAYS RECOGNIZE THE "navigator" OBJECT 94 | // OF THE IE 3 BROWSER SET, ONLY THE LATEST (3.02) RECOGNIZES INCLUDED SCRIPTS 95 | // BUT EVEN IE 3.02 DOESN'T FIND THEM WITHIN AN HTML HELP FILE 96 | if( vFlagHeader ) 97 | { 98 | vBrowserInfoVersion = 3.02; 99 | } 100 | else 101 | { 102 | vBrowserInfoVersion = 3; 103 | } 104 | } 105 | 106 | vReturnValue = vBrowserInfoVersion; 107 | } 108 | 109 | 110 | else 111 | { 112 | vReturnValue = 0; 113 | } 114 | 115 | 116 | return vReturnValue; 117 | 118 | 119 | } 120 | 121 | 122 | ////////////////////////////////////////////////// 123 | 124 | //Get a reference to the div ID. 125 | 126 | function checkIn(id) { 127 | 128 | // Initialize all the variables. 129 | var theObj,ss,sr,i,j,layers=new Array(); 130 | // This chunk handles the IE portion of the checkIn code. 131 | if (document.all) { 132 | // This checks to see if the inline style declaration has 133 | // a position property associated with it. If not, it will 134 | // scan the global stylesheets for the ID. 135 | if((document.all[id].style.position != 'absolute') && (document.all[id].style.position != 'relative')){ 136 | // This little loop I'm very proud of, because it's kinda 137 | // slick and I wrote it all myself. It loops through all 138 | // global stylesheets and all the rules in each stylesheet, 139 | // tests for the selected ID, then returns that as the object. 140 | for (ss=0 ; ss < document.styleSheets.length; ss++) { 141 | for (sr=0 ; sr < document.styleSheets(ss).rules.length; sr++) { 142 | if (document.styleSheets(ss).rules(sr).selectorText == '#' + id) { 143 | theObj = document.styleSheets(ss).rules(sr).style; 144 | break; 145 | } 146 | } 147 | } 148 | } else { 149 | // This works the same as in the light version, so you can 150 | // use inline styles. 151 | theObj = document.all[id].style; 152 | } 153 | } else if(document.layers) { 154 | // Now we're in Netscapeland. The main problem here 155 | // is finding the object in a maze of hierarchy. 156 | // This works wonderfully and solves the problem. 157 | layers = new Array(); 158 | with (document) { 159 | for (i=0; i 2 |

        -------------------------------------------------------------------------------- /build support/doc builder/example.htm: -------------------------------------------------------------------------------- 1 |

        Example

        2 |

        Refer to {Example VI Name} in the labview\{example llb path} for an example of using the {VI Name} function.

         Open example 

        3 | -------------------------------------------------------------------------------- /build support/doc builder/{Library Name}.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {Library Name} Functions 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 |

        {Library Name} Functions

        19 |

        {Library Description}

        20 | 21 |

        22 | 23 | 24 | 25 |
         Open examples from {Library Examples Folder}
        26 | 27 | 28 | {Function Rows} 29 |
        Palette ObjectDescription

        30 | 31 |

        Examples

        32 |

        Refer to the {Library Examples Folder} for examples of using the {Library Name} Functions.

        33 |

         Open examples 

        34 | 35 |

        Detailed Documentation

        36 |

        {Library Documentation}

        37 | 38 |

        Support

        39 |

        For product support, please visit jki.net/support

        40 | 41 |
        42 | 43 |

        44 | {Library Name} Toolkit for LabVIEW
        45 | Copyright © 2007-2012, JKI
        47 | ALL RIGHTS RESERVED 48 |

        49 |

        See the JKI Software License Agreement for more information.

        50 | 51 | 52 | -------------------------------------------------------------------------------- /build support/doc builder/{VI Name}.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {VI Name} 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 26 | 27 | 28 | 40 | 44 |
        45 | 46 |

        47 | 48 | {VI Name} 49 |

        50 | 51 |

        52 | 53 | 54 | {VI Description} 55 | 56 | 57 | {Supplimental VI Information} 58 | 59 | 60 | {Link to Additional VI Information and Examples} 61 | 62 |

        63 | 64 | 65 |

        66 | 67 | 68 | 69 | 70 | 71 | 72 |
         Place on the block diagram Find on the Functions palette Open examples from {Library Examples Folder}
        73 |
        74 | 75 |
        76 | 77 | 78 | {Table of VI Parameters} 79 | 80 | 81 | 82 | {Additional VI Information} 83 | 84 | 85 | 86 |

        Examples

        87 |

        Refer to the {Library Examples Folder} for examples of using the {Library Name} Functions.

        88 |

         Open examples 

        89 | 90 |

        Support

        91 |

        For product support, please visit jki.net/support

        92 | 93 |
        94 | 95 |

        96 | {Library Name} Toolkit for LabVIEW
        97 | Copyright © 2007-2012, JKI
        99 | ALL RIGHTS RESERVED 100 |

        101 |

        See the JKI Software License Agreement for more information.

        102 | 103 |
        104 | 105 | -------------------------------------------------------------------------------- /icon/Icon Large.pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/icon/Icon Large.pspimage -------------------------------------------------------------------------------- /icon/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/icon/icon.bmp -------------------------------------------------------------------------------- /icon/usefull.pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/icon/usefull.pspimage -------------------------------------------------------------------------------- /images/Easy_Generate_XML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/images/Easy_Generate_XML.png -------------------------------------------------------------------------------- /images/Easy_Parse_XML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/images/Easy_Parse_XML.png -------------------------------------------------------------------------------- /images/Easy_Read_XML_File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/images/Easy_Read_XML_File.png -------------------------------------------------------------------------------- /images/Easy_Write_XML_File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/images/Easy_Write_XML_File.png -------------------------------------------------------------------------------- /images/JKI_EasyXML_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/images/JKI_EasyXML_Palette.png -------------------------------------------------------------------------------- /images/NI_Example_Finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-EasyXML/24ee88b54793d3c2a36833839f5e99a6eb5b9404/images/NI_Example_Finder.png --------------------------------------------------------------------------------