├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── demos ├── po │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── resources │ │ ├── bindings.xjb │ │ └── purchaseorder.xsd │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ ├── index.html │ │ ├── js │ │ ├── .gitignore │ │ ├── main.js │ │ └── require.js │ │ └── po.xml ├── pom.xml ├── src │ └── main │ │ └── resources │ │ └── .placeholder └── wms │ ├── .gitignore │ ├── pom.xml │ └── src │ ├── main │ ├── resources │ │ ├── binding.xjb │ │ ├── wms │ │ │ └── 1.3.0 │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── capabilities_1_3_0.xml │ │ │ │ ├── capabilities_1_3_0.xsd │ │ │ │ ├── exceptions_1_3_0.xml │ │ │ │ └── exceptions_1_3_0.xsd │ │ └── xlink │ │ │ └── 1.0.0 │ │ │ ├── ReadMe.txt │ │ │ └── xlinks.xsd │ └── webapp │ │ ├── WEB-INF │ │ ├── web.properties │ │ └── web.xml │ │ ├── index.html │ │ └── js │ │ └── .gitignore │ └── test │ └── java │ └── org │ └── hisrc │ └── jsonix │ └── demos │ └── wms │ └── StartJsonixDemoWms.java ├── dist ├── .gitignore ├── Jsonix-all.js ├── Jsonix-min.js └── pom.xml ├── docs └── Jsonix.pdf ├── fiddles ├── 6skd7x8u │ ├── GetRecords-optimized.js │ └── GetRecords-original.js ├── po │ └── demo.response.xml ├── q18ej0td │ └── GetCapabilities.xml └── yq8x0oqf │ └── GetRecords.xml ├── formats ├── gml-geojson │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── etc │ │ └── header.txt │ │ ├── main │ │ ├── javascript │ │ │ └── org │ │ │ │ └── hisrc │ │ │ │ └── jsonix │ │ │ │ └── gml │ │ │ │ └── v_3_1_1 │ │ │ │ ├── GeoJSON.js │ │ │ │ └── GeoJSON │ │ │ │ ├── AbstractForwardGeometryConverter.js │ │ │ │ ├── AbstractInverseGeometryConverter.js │ │ │ │ ├── ForwardCoordinateConverter.js │ │ │ │ ├── ForwardGeometryConverter.js │ │ │ │ ├── ForwardLineStringConverter.js │ │ │ │ ├── ForwardLinearRingConverter.js │ │ │ │ ├── ForwardMultiGeometryConverter.js │ │ │ │ ├── ForwardMultiLineStringConverter.js │ │ │ │ ├── ForwardMultiPointConverter.js │ │ │ │ ├── ForwardMultiPolygonConverter.js │ │ │ │ ├── ForwardPointConverter.js │ │ │ │ ├── ForwardPolygonConverter.js │ │ │ │ ├── GeometryAdapter.js │ │ │ │ ├── InverseCoordinateConverter.js │ │ │ │ ├── InverseGeometryConverter.js │ │ │ │ ├── InverseLineStringConverter.js │ │ │ │ ├── InverseLinearRingConverter.js │ │ │ │ ├── InverseMultiGeometryConverter.js │ │ │ │ ├── InverseMultiLineStringConverter.js │ │ │ │ ├── InverseMultiPointConverter.js │ │ │ │ ├── InverseMultiPolygonConverter.js │ │ │ │ ├── InversePointConverter.js │ │ │ │ └── InversePolygonConverter.js │ │ └── resources │ │ │ ├── binding.xjb │ │ │ ├── gml │ │ │ └── 3.1.1 │ │ │ │ └── profiles │ │ │ │ └── gmlsfprofile │ │ │ │ └── 1.0.0 │ │ │ │ ├── gmlsf.xsd │ │ │ │ └── gmlsf2.xsd │ │ │ ├── org │ │ │ └── hisrc │ │ │ │ └── jsonix │ │ │ │ └── gml │ │ │ │ └── v_3_1_1 │ │ │ │ └── GeoJSON.scripts │ │ │ ├── schema.xsd │ │ │ └── xlink │ │ │ └── 1.0.0 │ │ │ ├── ReadMe.txt │ │ │ └── xlinks.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── hisrc │ │ │ └── jsonix │ │ │ └── gml │ │ │ └── v_3_1_1 │ │ │ └── geojson │ │ │ └── tests │ │ │ └── GML311GeoJSONTest.java │ │ ├── javascript │ │ └── org │ │ │ └── hisrc │ │ │ └── jsonix │ │ │ └── gml │ │ │ └── v_3_1_1 │ │ │ └── geojson │ │ │ └── tests │ │ │ ├── GML311GeoJSONTest.js │ │ │ ├── GML311GeoJSONTest.scripts │ │ │ └── GML311GeoJSONTest.test.scripts │ │ └── resources │ │ ├── log4j.properties │ │ └── org │ │ └── hisrc │ │ └── jsonix │ │ └── gml │ │ └── v_3_1_1 │ │ └── geojson │ │ └── tests │ │ ├── LineString0.xml │ │ ├── LineString1.xml │ │ ├── LineString2.xml │ │ ├── LineString3.xml │ │ ├── LinearRing0.xml │ │ ├── LinearRing1.xml │ │ ├── MultiGeometry0.xml │ │ ├── MultiGeometry1.xml │ │ ├── MultiLineString0.xml │ │ ├── MultiPoint0.xml │ │ ├── MultiPoint1.xml │ │ ├── MultiPolygon0.xml │ │ ├── MultiPolygon1.xml │ │ ├── Point0.xml │ │ ├── Point1.xml │ │ ├── Point2.xml │ │ ├── Point3.xml │ │ ├── Point4.xml │ │ ├── Point5.xml │ │ ├── Polygon0.xml │ │ ├── Polygon1.xml │ │ └── Polygon2.xml ├── pom.xml └── src │ └── main │ └── resources │ └── .placeholder ├── full-build-1.8.bat ├── images └── logo_WebStorm.png ├── install.bat ├── nodejs ├── demos │ ├── fossgis2015 │ │ └── wms-01 │ │ │ ├── .gitignore │ │ │ ├── bindings │ │ │ ├── wms-v_1_3_0.jsonix.xjb │ │ │ ├── wms-v_1_3_0.xjb │ │ │ └── xlink-v_1_0.xjb │ │ │ ├── mappings │ │ │ └── WMS_1_3_0_Full.js │ │ │ ├── package.json │ │ │ └── schemas │ │ │ ├── catalog.cat │ │ │ ├── ogc │ │ │ └── wms │ │ │ │ └── 1.3.0 │ │ │ │ ├── capabilities_1_3_0.xsd │ │ │ │ └── exceptions_1_3_0.xsd │ │ │ └── w3c │ │ │ ├── 1999 │ │ │ └── xlink.xsd │ │ │ └── 2001 │ │ │ ├── XMLSchema.dtd │ │ │ ├── XMLSchema.xsd │ │ │ └── xml.xsd │ └── user │ │ ├── .gitignore │ │ ├── jsonix-demo-user.js │ │ ├── package.json │ │ └── tests │ │ ├── sample01.xml │ │ ├── tests.js │ │ └── user-tests.js ├── pom.xml ├── scripts │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── jsonix.js │ ├── jsonschemas │ │ ├── jsonix │ │ │ └── Jsonix.jsonschema │ │ └── w3c │ │ │ └── 2001 │ │ │ └── XMLSchema.jsonschema │ ├── lib │ │ ├── .gitignore │ │ └── .npmignore │ ├── package-lock.json │ ├── package.json │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── npm │ │ │ └── package.json │ └── tests │ │ ├── GH111 │ │ ├── GH111.js │ │ └── Mappings.js │ │ ├── GH135 │ │ ├── A.js │ │ ├── B.js │ │ └── GH135.js │ │ ├── GH141 │ │ └── GH141.js │ │ ├── GH150 │ │ ├── A.js │ │ ├── B.js │ │ └── GH150.js │ │ ├── GH56 │ │ ├── GH56.js │ │ ├── Mappings.js │ │ ├── anyAttribute-0.simplified.json │ │ ├── anyAttribute-0.standard.json │ │ ├── anyAttribute-0.xml │ │ ├── anyElementLax-0.simplified.json │ │ ├── anyElementLax-0.standard.json │ │ ├── anyElementLax-0.xml │ │ ├── attribute-0.simplified.json │ │ ├── attribute-0.standard.json │ │ ├── attribute-0.xml │ │ ├── base-0.simplified.json │ │ ├── base-0.standard.json │ │ ├── base-0.xml │ │ ├── element-0.simplified.json │ │ ├── element-0.standard.json │ │ ├── element-0.xml │ │ ├── element-1.simplified.json │ │ ├── element-1.standard.json │ │ ├── element-1.xml │ │ ├── elementMap-0.simplified.json │ │ ├── elementMap-0.standard.json │ │ ├── elementMap-0.xml │ │ ├── elementMap-1.simplified.json │ │ ├── elementMap-1.standard.json │ │ ├── elementMap-1.xml │ │ ├── elementRef-0.simplified.json │ │ ├── elementRef-0.standard.json │ │ ├── elementRef-0.xml │ │ ├── elementRef-1.simplified.json │ │ ├── elementRef-1.standard.json │ │ ├── elementRef-1.xml │ │ ├── elementRefMixed-0.simplified.json │ │ ├── elementRefMixed-0.standard.json │ │ ├── elementRefMixed-0.xml │ │ ├── elementRefs-0.simplified.json │ │ ├── elementRefs-0.standard.json │ │ ├── elementRefs-0.xml │ │ ├── elements-0.simplified.json │ │ ├── elements-0.standard.json │ │ ├── elements-0.xml │ │ ├── elements-1.simplified.json │ │ ├── elements-1.standard.json │ │ ├── elements-1.xml │ │ ├── extended-0.simplified.json │ │ ├── extended-0.standard.json │ │ ├── extended-0.xml │ │ ├── extendedExtended-0.simplified.json │ │ ├── extendedExtended-0.standard.json │ │ ├── extendedExtended-0.xml │ │ ├── ns │ │ │ ├── anyAttribute-1.simplified.json │ │ │ ├── anyAttribute-1.standard.json │ │ │ └── anyAttribute-1.xml │ │ ├── simpleTypes-0.simplified.json │ │ ├── simpleTypes-0.standard.json │ │ ├── simpleTypes-0.xml │ │ ├── string-0.simplified.json │ │ ├── string-0.standard.json │ │ ├── string-0.xml │ │ ├── value-0.simplified.json │ │ ├── value-0.standard.json │ │ └── value-0.xml │ │ ├── GH61 │ │ ├── GH61.js │ │ └── Mappings.js │ │ ├── GH62 │ │ ├── GH62.js │ │ └── Mappings.js │ │ ├── GH70 │ │ ├── GH70.js │ │ └── Mappings.js │ │ ├── GH71 │ │ ├── GH71.js │ │ └── Mappings.js │ │ ├── GH73 │ │ ├── GH73.js │ │ ├── GH73Calendar.js │ │ ├── GH73Core.js │ │ ├── GH73GDay.js │ │ ├── GH73GMonth.js │ │ ├── GH73GMonthDay.js │ │ ├── GH73GYear.js │ │ ├── GH73GYearMonth.js │ │ ├── GH73Regex.js │ │ └── Mappings.js │ │ ├── GH83 │ │ ├── GH83.js │ │ ├── ground.js │ │ ├── ground.json │ │ └── ground.xml │ │ ├── GH96 │ │ ├── GH96.js │ │ ├── test_any.js │ │ ├── test_any.json │ │ ├── test_any.xml │ │ └── test_any.xsd │ │ ├── comparison.js │ │ ├── forEachResourceInDirectory.js │ │ ├── fs.js │ │ ├── issues.js │ │ ├── nodejs.js │ │ ├── request.js │ │ ├── roundtrip.js │ │ ├── sax.js │ │ ├── schema.js │ │ ├── test0.xml │ │ ├── test1.xml │ │ ├── tests.js │ │ ├── util.js │ │ ├── xml.js │ │ └── xsd.js └── tests │ ├── ar │ ├── .gitignore │ ├── AR.js │ ├── ar.xsd │ ├── jsonix-tests-ar.js │ ├── package-lock.json │ ├── package.json │ ├── pom.xml │ └── tests │ │ ├── ar-tests.js │ │ ├── sample01.xml │ │ └── tests.js │ ├── basic │ ├── .gitignore │ ├── README.md │ ├── jsonix-tests-basic.js │ ├── package-lock.json │ ├── package.json │ ├── pom.xml │ └── tests │ │ ├── One │ │ └── Mappings.js │ │ ├── PO │ │ ├── Mappings.js │ │ └── po-0.xml │ │ ├── Two │ │ ├── Data.js │ │ ├── Mappings.js │ │ ├── attribute-0.xml │ │ ├── customClassValue-0.xml │ │ ├── element-0.xml │ │ ├── string-0.xml │ │ └── value-0.xml │ │ ├── XMLNS │ │ └── Mappings.js │ │ ├── Zero │ │ ├── Data.js │ │ ├── Mappings.js │ │ ├── anyAttribute-0.xml │ │ ├── anyElementLax-0.xml │ │ ├── anyElementLax-1.xml │ │ ├── attribute-0.xml │ │ ├── attribute-1.xml │ │ ├── base-0.xml │ │ ├── element-0.xml │ │ ├── elementRef-0.xml │ │ ├── elementRef-1.xml │ │ ├── elementRefMixed-0.xml │ │ ├── elementRefs-0.xml │ │ ├── elements-0.xml │ │ ├── extended-0.xml │ │ ├── extendedExtended-0.xml │ │ ├── simpleTypes-0.xml │ │ ├── string-0.xml │ │ └── value-0.xml │ │ ├── gh48.js │ │ ├── gh56.js │ │ ├── one.js │ │ ├── po.js │ │ ├── tests.js │ │ ├── two.js │ │ ├── xmlns.js │ │ └── zero.js │ ├── browserify │ ├── .gitignore │ ├── README.md │ ├── bindings.xjb │ ├── index.html │ ├── main.js │ ├── package-lock.json │ ├── package.json │ ├── po.xml │ ├── pom.xml │ └── purchaseorder.xsd │ ├── po │ ├── .gitignore │ ├── README.md │ ├── bindings.xjb │ ├── jsonix-tests-po.js │ ├── mappings │ │ └── .gitignore │ ├── package-lock.json │ ├── package.json │ ├── pom.xml │ ├── purchaseorder.xsd │ └── tests │ │ ├── po-tests.js │ │ ├── po.json │ │ ├── po.xml │ │ └── tests.js │ ├── pom.xml │ └── wps │ ├── .gitignore │ ├── README.md │ ├── bindings │ └── bindings.xjb │ ├── catalog │ └── catalog.cat │ ├── mappings │ └── .gitignore │ ├── package-lock.json │ ├── package.json │ ├── pom.xml │ ├── schemas │ ├── ogc │ │ ├── ows │ │ │ ├── 1.1.0 │ │ │ │ ├── Examples │ │ │ │ │ ├── exampleCapabilities.xsd │ │ │ │ │ ├── exampleCapabilities1.xml │ │ │ │ │ ├── exampleConstraint1.xml │ │ │ │ │ ├── exampleExceptionReport1.xml │ │ │ │ │ ├── exampleExceptionReport2.xml │ │ │ │ │ ├── exampleGeneralBox2.xml │ │ │ │ │ ├── exampleGetCapabilities2.xml │ │ │ │ │ ├── exampleOperationsMetadata.xml │ │ │ │ │ └── exampleWGS84Box2.xml │ │ │ │ ├── ows19115subset.xsd │ │ │ │ ├── owsAll.xsd │ │ │ │ ├── owsCommon.xsd │ │ │ │ ├── owsContents.xsd │ │ │ │ ├── owsDataIdentification.xsd │ │ │ │ ├── owsDomainType.xsd │ │ │ │ ├── owsExceptionReport.xsd │ │ │ │ ├── owsGetCapabilities.xsd │ │ │ │ ├── owsGetResourceByID.xsd │ │ │ │ ├── owsInputOutputData.xsd │ │ │ │ ├── owsManifest.xsd │ │ │ │ ├── owsOperationsMetadata.xsd │ │ │ │ ├── owsServiceIdentification.xsd │ │ │ │ └── owsServiceProvider.xsd │ │ │ └── ReadMe.txt │ │ └── wps │ │ │ ├── 1.0.0 │ │ │ ├── common │ │ │ │ ├── DescriptionType.xsd │ │ │ │ ├── ProcessBriefType.xsd │ │ │ │ ├── ProcessVersion.xsd │ │ │ │ ├── RequestBaseType.xsd │ │ │ │ ├── ResponseBaseType.xsd │ │ │ │ └── WSDL.xsd │ │ │ ├── examples │ │ │ │ ├── 10_wpsGetCapabilities_request.xml │ │ │ │ ├── 10_wpsGetCapabilities_request_SOAP.xml │ │ │ │ ├── 20_wpsGetCapabilities_response.xml │ │ │ │ ├── 20_wpsGetCapabilities_response_SOAP.xml │ │ │ │ ├── 30_wpsDescribeProcess_request.xml │ │ │ │ ├── 30_wpsDescribeProcess_request_SOAP.xml │ │ │ │ ├── 40_wpsDescribeProcess_response-extended.xml │ │ │ │ ├── 40_wpsDescribeProcess_response.xml │ │ │ │ ├── 50_wpsExecute_request_RawDataOutput.xml │ │ │ │ ├── 51_wpsExecute_request-extended_ResponseDocument.xml │ │ │ │ ├── 51_wpsExecute_request_ResponseDocument.xml │ │ │ │ ├── 52_wpsExecute_request_ResponseDocument.xml │ │ │ │ ├── 53_wpsExecute_request_ComplexValue.xml │ │ │ │ ├── 62_wpsExecute_response.xml │ │ │ │ ├── 90_wpsExceptionReport.xml │ │ │ │ ├── MyComplexValueSchema.xsd │ │ │ │ └── example_service.wsdl │ │ │ ├── wpsAll.xsd │ │ │ ├── wpsDescribeProcess_request.xsd │ │ │ ├── wpsDescribeProcess_response.xsd │ │ │ ├── wpsExecute_request.xsd │ │ │ ├── wpsExecute_response.xsd │ │ │ ├── wpsGetCapabilities_request.xsd │ │ │ └── wpsGetCapabilities_response.xsd │ │ │ └── ReadMe.txt │ └── w3c │ │ ├── 1999 │ │ └── xlink.xsd │ │ └── 2001 │ │ └── xml.xsd │ └── tests │ ├── execute-01.xml │ ├── tests.js │ └── wps-tests.js ├── pom.xml ├── qrelease.bat ├── release.bat ├── scripts ├── .gitignore ├── JsTestDriver.jar ├── jsTestDriver.conf ├── pom.xml ├── server.bat ├── src │ ├── etc │ │ └── header.txt │ ├── main │ │ ├── assembly │ │ │ └── scripts.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── hisrc │ │ │ │ └── jsonix │ │ │ │ └── JsonixScriptsConstants.java │ │ ├── javascript │ │ │ └── org │ │ │ │ └── hisrc │ │ │ │ └── jsonix │ │ │ │ ├── Jsonix.js │ │ │ │ └── Jsonix │ │ │ │ ├── Binding.js │ │ │ │ ├── Binding │ │ │ │ ├── Marshaller.js │ │ │ │ ├── Marshalls.js │ │ │ │ ├── Unmarshaller.js │ │ │ │ └── Unmarshalls.js │ │ │ │ ├── Class.js │ │ │ │ ├── Context.js │ │ │ │ ├── DOM.js │ │ │ │ ├── Jsonix.footer.fragmentjs │ │ │ │ ├── Jsonix.header.fragmentjs │ │ │ │ ├── Mapping.js │ │ │ │ ├── Mapping │ │ │ │ ├── Style.js │ │ │ │ ├── Style │ │ │ │ │ ├── Simplified.js │ │ │ │ │ └── Standard.js │ │ │ │ └── Styled.js │ │ │ │ ├── Model.js │ │ │ │ ├── Model │ │ │ │ ├── AbstractElementRefsPropertyInfo.js │ │ │ │ ├── AbstractElementsPropertyInfo.js │ │ │ │ ├── AnyAttributePropertyInfo.js │ │ │ │ ├── AnyElementPropertyInfo.js │ │ │ │ ├── AttributePropertyInfo.js │ │ │ │ ├── ClassInfo.js │ │ │ │ ├── ElementInfo.js │ │ │ │ ├── ElementMapPropertyInfo.js │ │ │ │ ├── ElementPropertyInfo.js │ │ │ │ ├── ElementRefPropertyInfo.js │ │ │ │ ├── ElementRefsPropertyInfo.js │ │ │ │ ├── ElementsPropertyInfo.js │ │ │ │ ├── EnumLeafInfo.js │ │ │ │ ├── Module.js │ │ │ │ ├── PropertyInfo.js │ │ │ │ ├── SingleTypePropertyInfo.js │ │ │ │ ├── TypeInfo.js │ │ │ │ └── ValuePropertyInfo.js │ │ │ │ ├── Request.js │ │ │ │ ├── Schema.js │ │ │ │ ├── Schema │ │ │ │ ├── XSD.js │ │ │ │ ├── XSD │ │ │ │ │ ├── AnySimpleType.js │ │ │ │ │ ├── AnyType.js │ │ │ │ │ ├── AnyURI.js │ │ │ │ │ ├── Base64Binary.js │ │ │ │ │ ├── Boolean.js │ │ │ │ │ ├── Byte.js │ │ │ │ │ ├── Calendar.js │ │ │ │ │ ├── Date.js │ │ │ │ │ ├── DateAsDate.js │ │ │ │ │ ├── DateTime.js │ │ │ │ │ ├── DateTimeAsDate.js │ │ │ │ │ ├── Decimal.js │ │ │ │ │ ├── Double.js │ │ │ │ │ ├── Duration.js │ │ │ │ │ ├── Float.js │ │ │ │ │ ├── GDay.js │ │ │ │ │ ├── GMonth.js │ │ │ │ │ ├── GMonthDay.js │ │ │ │ │ ├── GYear.js │ │ │ │ │ ├── GYearMonth.js │ │ │ │ │ ├── HexBinary.js │ │ │ │ │ ├── ID.js │ │ │ │ │ ├── IDREF.js │ │ │ │ │ ├── IDREFS.js │ │ │ │ │ ├── Int.js │ │ │ │ │ ├── Integer.js │ │ │ │ │ ├── Language.js │ │ │ │ │ ├── List.js │ │ │ │ │ ├── Long.js │ │ │ │ │ ├── NCName.js │ │ │ │ │ ├── NMToken.js │ │ │ │ │ ├── NMTokens.js │ │ │ │ │ ├── Name.js │ │ │ │ │ ├── NegativeInteger.js │ │ │ │ │ ├── NonNegativeInteger.js │ │ │ │ │ ├── NonPositiveInteger.js │ │ │ │ │ ├── NormalizedString.js │ │ │ │ │ ├── Number.js │ │ │ │ │ ├── PositiveInteger.js │ │ │ │ │ ├── QName.js │ │ │ │ │ ├── Short.js │ │ │ │ │ ├── String.js │ │ │ │ │ ├── Strings.js │ │ │ │ │ ├── Time.js │ │ │ │ │ ├── TimeAsDate.js │ │ │ │ │ ├── Token.js │ │ │ │ │ ├── UnsignedByte.js │ │ │ │ │ ├── UnsignedInt.js │ │ │ │ │ ├── UnsignedLong.js │ │ │ │ │ └── UnsignedShort.js │ │ │ │ └── XSI.js │ │ │ │ ├── SingleFile.js │ │ │ │ ├── Util.js │ │ │ │ ├── Util │ │ │ │ ├── Ensure.js │ │ │ │ ├── NumberUtils.js │ │ │ │ ├── StringUtils.js │ │ │ │ └── Type.js │ │ │ │ ├── XML.js │ │ │ │ └── XML │ │ │ │ ├── Calendar.js │ │ │ │ ├── Input.js │ │ │ │ ├── Output.js │ │ │ │ └── QName.js │ │ ├── resources │ │ │ └── org │ │ │ │ └── hisrc │ │ │ │ └── jsonix │ │ │ │ ├── Footer.scripts │ │ │ │ ├── Header.scripts │ │ │ │ ├── Jsonix.complete.scripts │ │ │ │ ├── Jsonix.scripts │ │ │ │ └── SingleFile.scripts │ │ └── webapp │ │ │ └── xmlns.html │ └── test │ │ ├── java │ │ └── org │ │ │ └── hisrc │ │ │ └── jsonix │ │ │ ├── samples │ │ │ └── test │ │ │ │ ├── SamplesAllTest.java │ │ │ │ ├── SamplesMinTest.java │ │ │ │ └── SamplesTest.java │ │ │ ├── test │ │ │ └── JsonixTest.java │ │ │ └── xml │ │ │ ├── bind │ │ │ └── test │ │ │ │ └── CalendarTest.java │ │ │ └── datatype │ │ │ └── test │ │ │ ├── GTypesTest.java │ │ │ └── GTypesType.java │ │ ├── javascript │ │ ├── net │ │ │ └── opengis │ │ │ │ └── wps │ │ │ │ └── v_1_0_0 │ │ │ │ ├── WPSTests.js │ │ │ │ └── WPS_V_1_0_0.js │ │ └── org │ │ │ └── hisrc │ │ │ └── jsonix │ │ │ ├── samples │ │ │ ├── five │ │ │ │ ├── Five.js │ │ │ │ └── test │ │ │ │ │ └── FiveTest.js │ │ │ ├── one │ │ │ │ ├── One.js │ │ │ │ └── test │ │ │ │ │ └── OneTest.js │ │ │ ├── po │ │ │ │ ├── PO.js │ │ │ │ └── test │ │ │ │ │ └── POTest.js │ │ │ ├── test │ │ │ │ ├── SamplesAllTest.scripts │ │ │ │ ├── SamplesMinTest.scripts │ │ │ │ ├── SamplesTest.scripts │ │ │ │ └── SamplesTest.test.scripts │ │ │ └── three │ │ │ │ ├── Three.js │ │ │ │ └── test │ │ │ │ └── ThreeTest.js │ │ │ └── test │ │ │ ├── JsonixContextTest.js │ │ │ ├── JsonixRequestTest.js │ │ │ ├── JsonixSchemaXSDTest.js │ │ │ ├── JsonixTest.js │ │ │ ├── JsonixTest.jstd.js │ │ │ ├── JsonixTest.scripts │ │ │ ├── JsonixTest.test.scripts │ │ │ ├── JsonixUtilTest.js │ │ │ ├── JsonixXMLInputTest.jstd.js │ │ │ └── JsonixXMLTest.js │ │ └── resources │ │ ├── log4j.properties │ │ ├── net │ │ └── opengis │ │ │ └── wps │ │ │ └── v_1_0_0 │ │ │ └── GetCapabilities[0].xml │ │ └── org │ │ └── hisrc │ │ └── jsonix │ │ ├── samples │ │ └── po │ │ │ └── test │ │ │ └── po-0.xml │ │ └── test │ │ ├── JsonixTest.xhtml │ │ └── test0.xml └── test.bat ├── setversion.bat ├── short-build.bat ├── src └── main │ ├── bower │ └── bower.json │ └── eclipse │ └── eclipse-code-formatter.xml └── typescript ├── README.md ├── pom.xml ├── readme_de.md └── src └── main ├── java └── org │ └── hisrc │ └── jsonix │ ├── Binding │ ├── Mashalls │ │ └── Element.java │ └── Unmashalls │ │ └── Element.java │ ├── Mapping │ └── Styled.java │ ├── Model │ ├── AbstractElementRefsPropertyInfo.java │ ├── AbstractElementsPropertyInfo.java │ ├── AnyAttributePropertyInfo.java │ ├── AnyElementPropertyInfo.java │ ├── AttributePropertyInfo.java │ ├── ClassInfo.java │ ├── ElementInfo.java │ ├── ElementMapPropertyInfo.java │ ├── ElementPropertyInfo.java │ ├── ElementRefPropertyInfo.java │ ├── ElementRefsPropertyInfo.java │ ├── ElementsPropertyInfo.java │ ├── EnumLeafInfo.java │ ├── Module.java │ ├── PropertyInfo.java │ ├── SingleTypePropertyInfo.java │ ├── TypeInfo.java │ └── ValuePropertyInfo.java │ └── Schema │ └── XML │ └── QName.java ├── resources ├── diagram.svg └── model.uml └── typescript └── Jsonix.d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/bower.json -------------------------------------------------------------------------------- /demos/po/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /demos/po/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/po/pom.xml -------------------------------------------------------------------------------- /demos/po/src/main/resources/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/po/src/main/resources/bindings.xjb -------------------------------------------------------------------------------- /demos/po/src/main/resources/purchaseorder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/po/src/main/resources/purchaseorder.xsd -------------------------------------------------------------------------------- /demos/po/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/po/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /demos/po/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/po/src/main/webapp/index.html -------------------------------------------------------------------------------- /demos/po/src/main/webapp/js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/po/src/main/webapp/js/.gitignore -------------------------------------------------------------------------------- /demos/po/src/main/webapp/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/po/src/main/webapp/js/main.js -------------------------------------------------------------------------------- /demos/po/src/main/webapp/js/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/po/src/main/webapp/js/require.js -------------------------------------------------------------------------------- /demos/po/src/main/webapp/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/po/src/main/webapp/po.xml -------------------------------------------------------------------------------- /demos/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/pom.xml -------------------------------------------------------------------------------- /demos/src/main/resources/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/wms/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /demos/wms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/pom.xml -------------------------------------------------------------------------------- /demos/wms/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /demos/wms/src/main/resources/wms/1.3.0/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/src/main/resources/wms/1.3.0/ReadMe.txt -------------------------------------------------------------------------------- /demos/wms/src/main/resources/wms/1.3.0/capabilities_1_3_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/src/main/resources/wms/1.3.0/capabilities_1_3_0.xml -------------------------------------------------------------------------------- /demos/wms/src/main/resources/wms/1.3.0/capabilities_1_3_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/src/main/resources/wms/1.3.0/capabilities_1_3_0.xsd -------------------------------------------------------------------------------- /demos/wms/src/main/resources/wms/1.3.0/exceptions_1_3_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/src/main/resources/wms/1.3.0/exceptions_1_3_0.xml -------------------------------------------------------------------------------- /demos/wms/src/main/resources/wms/1.3.0/exceptions_1_3_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/src/main/resources/wms/1.3.0/exceptions_1_3_0.xsd -------------------------------------------------------------------------------- /demos/wms/src/main/resources/xlink/1.0.0/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/src/main/resources/xlink/1.0.0/ReadMe.txt -------------------------------------------------------------------------------- /demos/wms/src/main/resources/xlink/1.0.0/xlinks.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/src/main/resources/xlink/1.0.0/xlinks.xsd -------------------------------------------------------------------------------- /demos/wms/src/main/webapp/WEB-INF/web.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/src/main/webapp/WEB-INF/web.properties -------------------------------------------------------------------------------- /demos/wms/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /demos/wms/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/src/main/webapp/index.html -------------------------------------------------------------------------------- /demos/wms/src/main/webapp/js/.gitignore: -------------------------------------------------------------------------------- 1 | /Jsonix-all.js 2 | /WMS_V_1_3_0.js -------------------------------------------------------------------------------- /demos/wms/src/test/java/org/hisrc/jsonix/demos/wms/StartJsonixDemoWms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/demos/wms/src/test/java/org/hisrc/jsonix/demos/wms/StartJsonixDemoWms.java -------------------------------------------------------------------------------- /dist/.gitignore: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /dist/Jsonix-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/dist/Jsonix-all.js -------------------------------------------------------------------------------- /dist/Jsonix-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/dist/Jsonix-min.js -------------------------------------------------------------------------------- /dist/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/dist/pom.xml -------------------------------------------------------------------------------- /docs/Jsonix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/docs/Jsonix.pdf -------------------------------------------------------------------------------- /fiddles/6skd7x8u/GetRecords-optimized.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/fiddles/6skd7x8u/GetRecords-optimized.js -------------------------------------------------------------------------------- /fiddles/6skd7x8u/GetRecords-original.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/fiddles/6skd7x8u/GetRecords-original.js -------------------------------------------------------------------------------- /fiddles/po/demo.response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/fiddles/po/demo.response.xml -------------------------------------------------------------------------------- /fiddles/q18ej0td/GetCapabilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/fiddles/q18ej0td/GetCapabilities.xml -------------------------------------------------------------------------------- /fiddles/yq8x0oqf/GetRecords.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/fiddles/yq8x0oqf/GetRecords.xml -------------------------------------------------------------------------------- /formats/gml-geojson/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /formats/gml-geojson/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/pom.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/etc/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/etc/header.txt -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON.js: -------------------------------------------------------------------------------- 1 | GML_V_3_1_1.GeoJSON = {}; 2 | 3 | -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/AbstractForwardGeometryConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/AbstractForwardGeometryConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/AbstractInverseGeometryConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/AbstractInverseGeometryConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardCoordinateConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardCoordinateConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardGeometryConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardGeometryConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardLineStringConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardLineStringConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardLinearRingConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardLinearRingConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardMultiGeometryConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardMultiGeometryConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardMultiLineStringConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardMultiLineStringConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardMultiPointConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardMultiPointConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardMultiPolygonConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardMultiPolygonConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardPointConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardPointConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardPolygonConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/ForwardPolygonConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/GeometryAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/GeometryAdapter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseCoordinateConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseCoordinateConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseGeometryConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseGeometryConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseLineStringConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseLineStringConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseLinearRingConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseLinearRingConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseMultiGeometryConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseMultiGeometryConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseMultiLineStringConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseMultiLineStringConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseMultiPointConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseMultiPointConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseMultiPolygonConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InverseMultiPolygonConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InversePointConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InversePointConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InversePolygonConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/javascript/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON/InversePolygonConverter.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/resources/gml/3.1.1/profiles/gmlsfprofile/1.0.0/gmlsf.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/resources/gml/3.1.1/profiles/gmlsfprofile/1.0.0/gmlsf.xsd -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/resources/gml/3.1.1/profiles/gmlsfprofile/1.0.0/gmlsf2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/resources/gml/3.1.1/profiles/gmlsfprofile/1.0.0/gmlsf2.xsd -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/resources/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/resources/org/hisrc/jsonix/gml/v_3_1_1/GeoJSON.scripts -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/resources/xlink/1.0.0/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/resources/xlink/1.0.0/ReadMe.txt -------------------------------------------------------------------------------- /formats/gml-geojson/src/main/resources/xlink/1.0.0/xlinks.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/main/resources/xlink/1.0.0/xlinks.xsd -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/java/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/GML311GeoJSONTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/java/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/GML311GeoJSONTest.java -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/javascript/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/GML311GeoJSONTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/javascript/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/GML311GeoJSONTest.js -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/javascript/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/GML311GeoJSONTest.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/javascript/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/GML311GeoJSONTest.scripts -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/javascript/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/GML311GeoJSONTest.test.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/javascript/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/GML311GeoJSONTest.test.scripts -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/LineString0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/LineString0.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/LineString1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/LineString1.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/LineString2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/LineString2.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/LineString3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/LineString3.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/LinearRing0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/LinearRing0.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/LinearRing1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/LinearRing1.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiGeometry0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiGeometry0.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiGeometry1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiGeometry1.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiLineString0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiLineString0.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiPoint0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiPoint0.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiPoint1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiPoint1.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiPolygon0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiPolygon0.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiPolygon1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/MultiPolygon1.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Point0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Point0.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Point1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Point1.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Point2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Point2.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Point3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Point3.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Point4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Point4.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Point5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Point5.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Polygon0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Polygon0.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Polygon1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Polygon1.xml -------------------------------------------------------------------------------- /formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Polygon2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/gml-geojson/src/test/resources/org/hisrc/jsonix/gml/v_3_1_1/geojson/tests/Polygon2.xml -------------------------------------------------------------------------------- /formats/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/formats/pom.xml -------------------------------------------------------------------------------- /formats/src/main/resources/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /full-build-1.8.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/full-build-1.8.bat -------------------------------------------------------------------------------- /images/logo_WebStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/images/logo_WebStorm.png -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/install.bat -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/bindings/wms-v_1_3_0.jsonix.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/fossgis2015/wms-01/bindings/wms-v_1_3_0.jsonix.xjb -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/bindings/wms-v_1_3_0.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/fossgis2015/wms-01/bindings/wms-v_1_3_0.xjb -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/bindings/xlink-v_1_0.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/fossgis2015/wms-01/bindings/xlink-v_1_0.xjb -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/mappings/WMS_1_3_0_Full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/fossgis2015/wms-01/mappings/WMS_1_3_0_Full.js -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/fossgis2015/wms-01/package.json -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/schemas/catalog.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/fossgis2015/wms-01/schemas/catalog.cat -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/schemas/ogc/wms/1.3.0/capabilities_1_3_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/fossgis2015/wms-01/schemas/ogc/wms/1.3.0/capabilities_1_3_0.xsd -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/schemas/ogc/wms/1.3.0/exceptions_1_3_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/fossgis2015/wms-01/schemas/ogc/wms/1.3.0/exceptions_1_3_0.xsd -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/schemas/w3c/1999/xlink.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/fossgis2015/wms-01/schemas/w3c/1999/xlink.xsd -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/schemas/w3c/2001/XMLSchema.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/fossgis2015/wms-01/schemas/w3c/2001/XMLSchema.dtd -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/schemas/w3c/2001/XMLSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/fossgis2015/wms-01/schemas/w3c/2001/XMLSchema.xsd -------------------------------------------------------------------------------- /nodejs/demos/fossgis2015/wms-01/schemas/w3c/2001/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/fossgis2015/wms-01/schemas/w3c/2001/xml.xsd -------------------------------------------------------------------------------- /nodejs/demos/user/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /nodejs/demos/user/jsonix-demo-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/user/jsonix-demo-user.js -------------------------------------------------------------------------------- /nodejs/demos/user/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/user/package.json -------------------------------------------------------------------------------- /nodejs/demos/user/tests/sample01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/user/tests/sample01.xml -------------------------------------------------------------------------------- /nodejs/demos/user/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/user/tests/tests.js -------------------------------------------------------------------------------- /nodejs/demos/user/tests/user-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/demos/user/tests/user-tests.js -------------------------------------------------------------------------------- /nodejs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/pom.xml -------------------------------------------------------------------------------- /nodejs/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /jsonix.js 3 | /.idea/ 4 | lib 5 | target 6 | 1 7 | 2 8 | *.tgz 9 | -------------------------------------------------------------------------------- /nodejs/scripts/.npmignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | node_modules 3 | *.tgz -------------------------------------------------------------------------------- /nodejs/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/README.md -------------------------------------------------------------------------------- /nodejs/scripts/jsonix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/jsonix.js -------------------------------------------------------------------------------- /nodejs/scripts/jsonschemas/jsonix/Jsonix.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/jsonschemas/jsonix/Jsonix.jsonschema -------------------------------------------------------------------------------- /nodejs/scripts/jsonschemas/w3c/2001/XMLSchema.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/jsonschemas/w3c/2001/XMLSchema.jsonschema -------------------------------------------------------------------------------- /nodejs/scripts/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.jar -------------------------------------------------------------------------------- /nodejs/scripts/lib/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodejs/scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/package-lock.json -------------------------------------------------------------------------------- /nodejs/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/package.json -------------------------------------------------------------------------------- /nodejs/scripts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/pom.xml -------------------------------------------------------------------------------- /nodejs/scripts/src/main/npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/src/main/npm/package.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH111/GH111.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH111/GH111.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH111/Mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH111/Mappings.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH135/A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH135/A.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH135/B.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH135/B.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH135/GH135.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH135/GH135.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH141/GH141.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH141/GH141.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH150/A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH150/A.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH150/B.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH150/B.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH150/GH150.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH150/GH150.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/GH56.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/GH56.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/Mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/Mappings.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/anyAttribute-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/anyAttribute-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/anyAttribute-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/anyAttribute-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/anyAttribute-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/anyAttribute-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/anyElementLax-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/anyElementLax-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/anyElementLax-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/anyElementLax-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/anyElementLax-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/anyElementLax-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/attribute-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/attribute-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/attribute-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/attribute-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/attribute-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/attribute-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/base-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/base-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/base-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/base-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/base-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/base-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/element-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/element-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/element-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/element-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/element-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/element-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/element-1.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/element-1.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/element-1.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/element-1.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/element-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/element-1.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementMap-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementMap-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementMap-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementMap-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementMap-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementMap-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementMap-1.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementMap-1.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementMap-1.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementMap-1.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementMap-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementMap-1.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementRef-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementRef-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementRef-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementRef-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementRef-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementRef-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementRef-1.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementRef-1.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementRef-1.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementRef-1.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementRef-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementRef-1.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementRefMixed-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementRefMixed-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementRefMixed-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementRefMixed-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementRefMixed-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementRefMixed-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementRefs-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementRefs-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementRefs-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementRefs-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elementRefs-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elementRefs-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elements-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elements-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elements-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elements-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elements-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elements-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elements-1.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elements-1.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elements-1.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elements-1.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/elements-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/elements-1.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/extended-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/extended-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/extended-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/extended-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/extended-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/extended-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/extendedExtended-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/extendedExtended-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/extendedExtended-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/extendedExtended-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/extendedExtended-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/extendedExtended-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/ns/anyAttribute-1.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/ns/anyAttribute-1.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/ns/anyAttribute-1.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/ns/anyAttribute-1.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/ns/anyAttribute-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/ns/anyAttribute-1.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/simpleTypes-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/simpleTypes-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/simpleTypes-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/simpleTypes-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/simpleTypes-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/simpleTypes-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/string-0.simplified.json: -------------------------------------------------------------------------------- 1 | { 2 | "string" : "test" 3 | } 4 | -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/string-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/string-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/string-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/string-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/value-0.simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/value-0.simplified.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/value-0.standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/value-0.standard.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH56/value-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH56/value-0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH61/GH61.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH61/GH61.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH61/Mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH61/Mappings.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH62/GH62.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH62/GH62.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH62/Mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH62/Mappings.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH70/GH70.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH70/GH70.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH70/Mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH70/Mappings.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH71/GH71.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH71/GH71.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH71/Mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH71/Mappings.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH73/GH73.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH73/GH73.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH73/GH73Calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH73/GH73Calendar.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH73/GH73Core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH73/GH73Core.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH73/GH73GDay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH73/GH73GDay.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH73/GH73GMonth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH73/GH73GMonth.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH73/GH73GMonthDay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH73/GH73GMonthDay.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH73/GH73GYear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH73/GH73GYear.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH73/GH73GYearMonth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH73/GH73GYearMonth.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH73/GH73Regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH73/GH73Regex.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH73/Mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH73/Mappings.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH83/GH83.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH83/GH83.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH83/ground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH83/ground.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH83/ground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH83/ground.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH83/ground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH83/ground.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH96/GH96.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH96/GH96.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH96/test_any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH96/test_any.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH96/test_any.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH96/test_any.json -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH96/test_any.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH96/test_any.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/GH96/test_any.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/GH96/test_any.xsd -------------------------------------------------------------------------------- /nodejs/scripts/tests/comparison.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/comparison.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/forEachResourceInDirectory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/forEachResourceInDirectory.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/fs.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/issues.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/nodejs.js: -------------------------------------------------------------------------------- 1 | module.exports = 2 | { 3 | "FS" : require('./fs') 4 | }; -------------------------------------------------------------------------------- /nodejs/scripts/tests/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/request.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/roundtrip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/roundtrip.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/sax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/sax.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/schema.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/test0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/test0.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/test1.xml -------------------------------------------------------------------------------- /nodejs/scripts/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/tests.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/util.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/xml.js -------------------------------------------------------------------------------- /nodejs/scripts/tests/xsd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/scripts/tests/xsd.js -------------------------------------------------------------------------------- /nodejs/tests/ar/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /nodejs/tests/ar/AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/ar/AR.js -------------------------------------------------------------------------------- /nodejs/tests/ar/ar.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/ar/ar.xsd -------------------------------------------------------------------------------- /nodejs/tests/ar/jsonix-tests-ar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodejs/tests/ar/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/ar/package-lock.json -------------------------------------------------------------------------------- /nodejs/tests/ar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/ar/package.json -------------------------------------------------------------------------------- /nodejs/tests/ar/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/ar/pom.xml -------------------------------------------------------------------------------- /nodejs/tests/ar/tests/ar-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/ar/tests/ar-tests.js -------------------------------------------------------------------------------- /nodejs/tests/ar/tests/sample01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/ar/tests/sample01.xml -------------------------------------------------------------------------------- /nodejs/tests/ar/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/ar/tests/tests.js -------------------------------------------------------------------------------- /nodejs/tests/basic/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /nodejs/tests/basic/README.md: -------------------------------------------------------------------------------- 1 | # Jsonix Tests Basic -------------------------------------------------------------------------------- /nodejs/tests/basic/jsonix-tests-basic.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodejs/tests/basic/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/package-lock.json -------------------------------------------------------------------------------- /nodejs/tests/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/package.json -------------------------------------------------------------------------------- /nodejs/tests/basic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/pom.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/One/Mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/One/Mappings.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/PO/Mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/PO/Mappings.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/PO/po-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/PO/po-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Two/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Two/Data.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Two/Mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Two/Mappings.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Two/attribute-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Two/attribute-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Two/customClassValue-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Two/customClassValue-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Two/element-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Two/element-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Two/string-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Two/string-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Two/value-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Two/value-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/XMLNS/Mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/XMLNS/Mappings.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/Data.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/Mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/Mappings.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/anyAttribute-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/anyAttribute-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/anyElementLax-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/anyElementLax-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/anyElementLax-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/anyElementLax-1.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/attribute-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/attribute-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/attribute-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/attribute-1.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/base-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/base-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/element-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/element-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/elementRef-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/elementRef-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/elementRef-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/elementRef-1.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/elementRefMixed-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/elementRefMixed-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/elementRefs-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/elementRefs-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/elements-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/elements-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/extended-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/extended-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/extendedExtended-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/extendedExtended-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/simpleTypes-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/simpleTypes-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/string-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/string-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/Zero/value-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/Zero/value-0.xml -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/gh48.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/gh48.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/gh56.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/gh56.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/one.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/po.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/po.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/tests.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/two.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/xmlns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/xmlns.js -------------------------------------------------------------------------------- /nodejs/tests/basic/tests/zero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/basic/tests/zero.js -------------------------------------------------------------------------------- /nodejs/tests/browserify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/browserify/.gitignore -------------------------------------------------------------------------------- /nodejs/tests/browserify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/browserify/README.md -------------------------------------------------------------------------------- /nodejs/tests/browserify/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/browserify/bindings.xjb -------------------------------------------------------------------------------- /nodejs/tests/browserify/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/browserify/index.html -------------------------------------------------------------------------------- /nodejs/tests/browserify/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/browserify/main.js -------------------------------------------------------------------------------- /nodejs/tests/browserify/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/browserify/package-lock.json -------------------------------------------------------------------------------- /nodejs/tests/browserify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/browserify/package.json -------------------------------------------------------------------------------- /nodejs/tests/browserify/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/browserify/po.xml -------------------------------------------------------------------------------- /nodejs/tests/browserify/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/browserify/pom.xml -------------------------------------------------------------------------------- /nodejs/tests/browserify/purchaseorder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/browserify/purchaseorder.xsd -------------------------------------------------------------------------------- /nodejs/tests/po/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /jsonix-schema-compiler-full.jar 3 | -------------------------------------------------------------------------------- /nodejs/tests/po/README.md: -------------------------------------------------------------------------------- 1 | # Jsonix Tests PO -------------------------------------------------------------------------------- /nodejs/tests/po/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/po/bindings.xjb -------------------------------------------------------------------------------- /nodejs/tests/po/jsonix-tests-po.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodejs/tests/po/mappings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/po/mappings/.gitignore -------------------------------------------------------------------------------- /nodejs/tests/po/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/po/package-lock.json -------------------------------------------------------------------------------- /nodejs/tests/po/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/po/package.json -------------------------------------------------------------------------------- /nodejs/tests/po/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/po/pom.xml -------------------------------------------------------------------------------- /nodejs/tests/po/purchaseorder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/po/purchaseorder.xsd -------------------------------------------------------------------------------- /nodejs/tests/po/tests/po-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/po/tests/po-tests.js -------------------------------------------------------------------------------- /nodejs/tests/po/tests/po.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/po/tests/po.json -------------------------------------------------------------------------------- /nodejs/tests/po/tests/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/po/tests/po.xml -------------------------------------------------------------------------------- /nodejs/tests/po/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/po/tests/tests.js -------------------------------------------------------------------------------- /nodejs/tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/pom.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /nodejs/tests/wps/README.md: -------------------------------------------------------------------------------- 1 | # Jsonix Tests WPS -------------------------------------------------------------------------------- /nodejs/tests/wps/bindings/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/bindings/bindings.xjb -------------------------------------------------------------------------------- /nodejs/tests/wps/catalog/catalog.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/catalog/catalog.cat -------------------------------------------------------------------------------- /nodejs/tests/wps/mappings/.gitignore: -------------------------------------------------------------------------------- 1 | /*.js 2 | -------------------------------------------------------------------------------- /nodejs/tests/wps/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/package-lock.json -------------------------------------------------------------------------------- /nodejs/tests/wps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/package.json -------------------------------------------------------------------------------- /nodejs/tests/wps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/pom.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleCapabilities.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleCapabilities.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleCapabilities1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleCapabilities1.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleConstraint1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleConstraint1.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleExceptionReport1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleExceptionReport1.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleExceptionReport2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleExceptionReport2.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleGeneralBox2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleGeneralBox2.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleGetCapabilities2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleGetCapabilities2.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleOperationsMetadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleOperationsMetadata.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleWGS84Box2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/Examples/exampleWGS84Box2.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/ows19115subset.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/ows19115subset.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsAll.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsAll.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsCommon.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsCommon.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsContents.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsContents.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsDataIdentification.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsDataIdentification.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsDomainType.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsDomainType.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsExceptionReport.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsExceptionReport.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsGetCapabilities.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsGetCapabilities.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsGetResourceByID.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsGetResourceByID.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsInputOutputData.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsInputOutputData.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsManifest.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsManifest.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsOperationsMetadata.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsOperationsMetadata.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsServiceIdentification.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsServiceIdentification.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsServiceProvider.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/1.1.0/owsServiceProvider.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/ows/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/ows/ReadMe.txt -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/common/DescriptionType.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/common/DescriptionType.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/common/ProcessBriefType.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/common/ProcessBriefType.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/common/ProcessVersion.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/common/ProcessVersion.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/common/RequestBaseType.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/common/RequestBaseType.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/common/ResponseBaseType.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/common/ResponseBaseType.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/common/WSDL.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/common/WSDL.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/10_wpsGetCapabilities_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/10_wpsGetCapabilities_request.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/10_wpsGetCapabilities_request_SOAP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/10_wpsGetCapabilities_request_SOAP.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/20_wpsGetCapabilities_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/20_wpsGetCapabilities_response.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/20_wpsGetCapabilities_response_SOAP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/20_wpsGetCapabilities_response_SOAP.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/30_wpsDescribeProcess_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/30_wpsDescribeProcess_request.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/30_wpsDescribeProcess_request_SOAP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/30_wpsDescribeProcess_request_SOAP.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/40_wpsDescribeProcess_response-extended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/40_wpsDescribeProcess_response-extended.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/40_wpsDescribeProcess_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/40_wpsDescribeProcess_response.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/50_wpsExecute_request_RawDataOutput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/50_wpsExecute_request_RawDataOutput.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/51_wpsExecute_request-extended_ResponseDocument.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/51_wpsExecute_request-extended_ResponseDocument.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/51_wpsExecute_request_ResponseDocument.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/51_wpsExecute_request_ResponseDocument.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/52_wpsExecute_request_ResponseDocument.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/52_wpsExecute_request_ResponseDocument.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/53_wpsExecute_request_ComplexValue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/53_wpsExecute_request_ComplexValue.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/62_wpsExecute_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/62_wpsExecute_response.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/90_wpsExceptionReport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/90_wpsExceptionReport.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/MyComplexValueSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/MyComplexValueSchema.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/example_service.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/examples/example_service.wsdl -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsAll.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsAll.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsDescribeProcess_request.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsDescribeProcess_request.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsDescribeProcess_response.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsDescribeProcess_response.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsExecute_request.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsExecute_request.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsExecute_response.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsExecute_response.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsGetCapabilities_request.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsGetCapabilities_request.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsGetCapabilities_response.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/1.0.0/wpsGetCapabilities_response.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/ogc/wps/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/ogc/wps/ReadMe.txt -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/w3c/1999/xlink.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/w3c/1999/xlink.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/schemas/w3c/2001/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/schemas/w3c/2001/xml.xsd -------------------------------------------------------------------------------- /nodejs/tests/wps/tests/execute-01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/tests/execute-01.xml -------------------------------------------------------------------------------- /nodejs/tests/wps/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/tests/tests.js -------------------------------------------------------------------------------- /nodejs/tests/wps/tests/wps-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/nodejs/tests/wps/tests/wps-tests.js -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/pom.xml -------------------------------------------------------------------------------- /qrelease.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/qrelease.bat -------------------------------------------------------------------------------- /release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/release.bat -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /scripts/JsTestDriver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/JsTestDriver.jar -------------------------------------------------------------------------------- /scripts/jsTestDriver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/jsTestDriver.conf -------------------------------------------------------------------------------- /scripts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/pom.xml -------------------------------------------------------------------------------- /scripts/server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/server.bat -------------------------------------------------------------------------------- /scripts/src/etc/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/etc/header.txt -------------------------------------------------------------------------------- /scripts/src/main/assembly/scripts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/assembly/scripts.xml -------------------------------------------------------------------------------- /scripts/src/main/java/org/hisrc/jsonix/JsonixScriptsConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/java/org/hisrc/jsonix/JsonixScriptsConstants.java -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Binding.js: -------------------------------------------------------------------------------- 1 | Jsonix.Binding = {}; -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Binding/Marshaller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Binding/Marshaller.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Binding/Marshalls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Binding/Marshalls.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Binding/Unmarshaller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Binding/Unmarshaller.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Binding/Unmarshalls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Binding/Unmarshalls.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Class.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Context.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/DOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/DOM.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Jsonix.footer.fragmentjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Jsonix.footer.fragmentjs -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Jsonix.header.fragmentjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Jsonix.header.fragmentjs -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Mapping.js: -------------------------------------------------------------------------------- 1 | Jsonix.Mapping = {}; -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Mapping/Style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Mapping/Style.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Mapping/Style/Simplified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Mapping/Style/Simplified.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Mapping/Style/Standard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Mapping/Style/Standard.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Mapping/Styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Mapping/Styled.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model.js: -------------------------------------------------------------------------------- 1 | Jsonix.Model = {}; -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/AbstractElementRefsPropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/AbstractElementRefsPropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/AbstractElementsPropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/AbstractElementsPropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/AnyAttributePropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/AnyAttributePropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/AnyElementPropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/AnyElementPropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/AttributePropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/AttributePropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ClassInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ClassInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementMapPropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementMapPropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementPropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementPropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementRefPropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementRefPropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementRefsPropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementRefsPropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementsPropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementsPropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/EnumLeafInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/EnumLeafInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/Module.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/PropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/PropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/SingleTypePropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/SingleTypePropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/TypeInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/TypeInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ValuePropertyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ValuePropertyInfo.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Request.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema.js: -------------------------------------------------------------------------------- 1 | Jsonix.Schema = {}; -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/AnySimpleType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/AnySimpleType.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/AnyType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/AnyType.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/AnyURI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/AnyURI.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Base64Binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Base64Binary.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Boolean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Boolean.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Byte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Byte.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Calendar.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Date.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/DateAsDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/DateAsDate.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/DateTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/DateTime.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/DateTimeAsDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/DateTimeAsDate.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Decimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Decimal.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Double.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Double.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Duration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Duration.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Float.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Float.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/GDay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/GDay.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/GMonth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/GMonth.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/GMonthDay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/GMonthDay.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/GYear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/GYear.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/GYearMonth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/GYearMonth.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/HexBinary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/HexBinary.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/ID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/ID.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/IDREF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/IDREF.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/IDREFS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/IDREFS.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Int.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Int.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Integer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Integer.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Language.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/List.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Long.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Long.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NCName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NCName.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NMToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NMToken.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NMTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NMTokens.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Name.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NegativeInteger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NegativeInteger.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NonNegativeInteger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NonNegativeInteger.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NonPositiveInteger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NonPositiveInteger.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NormalizedString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/NormalizedString.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Number.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/PositiveInteger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/PositiveInteger.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/QName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/QName.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Short.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Short.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/String.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/String.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Strings.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Time.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/TimeAsDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/TimeAsDate.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/Token.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/UnsignedByte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/UnsignedByte.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/UnsignedInt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/UnsignedInt.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/UnsignedLong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/UnsignedLong.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/UnsignedShort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSD/UnsignedShort.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Schema/XSI.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/SingleFile.js: -------------------------------------------------------------------------------- 1 | var Jsonix = { 2 | singleFile : true 3 | }; -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Util.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Util/Ensure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Util/Ensure.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Util/NumberUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Util/NumberUtils.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Util/StringUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Util/StringUtils.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Util/Type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Util/Type.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/XML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/XML.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/XML/Calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/XML/Calendar.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/XML/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/XML/Input.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/XML/Output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/XML/Output.js -------------------------------------------------------------------------------- /scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/XML/QName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/XML/QName.js -------------------------------------------------------------------------------- /scripts/src/main/resources/org/hisrc/jsonix/Footer.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/resources/org/hisrc/jsonix/Footer.scripts -------------------------------------------------------------------------------- /scripts/src/main/resources/org/hisrc/jsonix/Header.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/resources/org/hisrc/jsonix/Header.scripts -------------------------------------------------------------------------------- /scripts/src/main/resources/org/hisrc/jsonix/Jsonix.complete.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/resources/org/hisrc/jsonix/Jsonix.complete.scripts -------------------------------------------------------------------------------- /scripts/src/main/resources/org/hisrc/jsonix/Jsonix.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/resources/org/hisrc/jsonix/Jsonix.scripts -------------------------------------------------------------------------------- /scripts/src/main/resources/org/hisrc/jsonix/SingleFile.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/resources/org/hisrc/jsonix/SingleFile.scripts -------------------------------------------------------------------------------- /scripts/src/main/webapp/xmlns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/main/webapp/xmlns.html -------------------------------------------------------------------------------- /scripts/src/test/java/org/hisrc/jsonix/samples/test/SamplesAllTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/java/org/hisrc/jsonix/samples/test/SamplesAllTest.java -------------------------------------------------------------------------------- /scripts/src/test/java/org/hisrc/jsonix/samples/test/SamplesMinTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/java/org/hisrc/jsonix/samples/test/SamplesMinTest.java -------------------------------------------------------------------------------- /scripts/src/test/java/org/hisrc/jsonix/samples/test/SamplesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/java/org/hisrc/jsonix/samples/test/SamplesTest.java -------------------------------------------------------------------------------- /scripts/src/test/java/org/hisrc/jsonix/test/JsonixTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/java/org/hisrc/jsonix/test/JsonixTest.java -------------------------------------------------------------------------------- /scripts/src/test/java/org/hisrc/jsonix/xml/bind/test/CalendarTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/java/org/hisrc/jsonix/xml/bind/test/CalendarTest.java -------------------------------------------------------------------------------- /scripts/src/test/java/org/hisrc/jsonix/xml/datatype/test/GTypesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/java/org/hisrc/jsonix/xml/datatype/test/GTypesTest.java -------------------------------------------------------------------------------- /scripts/src/test/java/org/hisrc/jsonix/xml/datatype/test/GTypesType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/java/org/hisrc/jsonix/xml/datatype/test/GTypesType.java -------------------------------------------------------------------------------- /scripts/src/test/javascript/net/opengis/wps/v_1_0_0/WPSTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/net/opengis/wps/v_1_0_0/WPSTests.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/net/opengis/wps/v_1_0_0/WPS_V_1_0_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/net/opengis/wps/v_1_0_0/WPS_V_1_0_0.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/samples/five/Five.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/samples/five/Five.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/samples/five/test/FiveTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/samples/five/test/FiveTest.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/samples/one/One.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/samples/one/One.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/samples/one/test/OneTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/samples/one/test/OneTest.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/samples/po/PO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/samples/po/PO.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/samples/po/test/POTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/samples/po/test/POTest.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/samples/test/SamplesAllTest.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/samples/test/SamplesAllTest.scripts -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/samples/test/SamplesMinTest.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/samples/test/SamplesMinTest.scripts -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/samples/test/SamplesTest.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/samples/test/SamplesTest.scripts -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/samples/test/SamplesTest.test.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/samples/test/SamplesTest.test.scripts -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/samples/three/Three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/samples/three/Three.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/samples/three/test/ThreeTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/samples/three/test/ThreeTest.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixContextTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixContextTest.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixRequestTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixRequestTest.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixSchemaXSDTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixSchemaXSDTest.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixTest.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixTest.jstd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixTest.jstd.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixTest.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixTest.scripts -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixTest.test.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixTest.test.scripts -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixUtilTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixUtilTest.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixXMLInputTest.jstd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixXMLInputTest.jstd.js -------------------------------------------------------------------------------- /scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixXMLTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/javascript/org/hisrc/jsonix/test/JsonixXMLTest.js -------------------------------------------------------------------------------- /scripts/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /scripts/src/test/resources/net/opengis/wps/v_1_0_0/GetCapabilities[0].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/resources/net/opengis/wps/v_1_0_0/GetCapabilities[0].xml -------------------------------------------------------------------------------- /scripts/src/test/resources/org/hisrc/jsonix/samples/po/test/po-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/resources/org/hisrc/jsonix/samples/po/test/po-0.xml -------------------------------------------------------------------------------- /scripts/src/test/resources/org/hisrc/jsonix/test/JsonixTest.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/resources/org/hisrc/jsonix/test/JsonixTest.xhtml -------------------------------------------------------------------------------- /scripts/src/test/resources/org/hisrc/jsonix/test/test0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/src/test/resources/org/hisrc/jsonix/test/test0.xml -------------------------------------------------------------------------------- /scripts/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/scripts/test.bat -------------------------------------------------------------------------------- /setversion.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/setversion.bat -------------------------------------------------------------------------------- /short-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/short-build.bat -------------------------------------------------------------------------------- /src/main/bower/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/src/main/bower/bower.json -------------------------------------------------------------------------------- /src/main/eclipse/eclipse-code-formatter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/src/main/eclipse/eclipse-code-formatter.xml -------------------------------------------------------------------------------- /typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/README.md -------------------------------------------------------------------------------- /typescript/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/pom.xml -------------------------------------------------------------------------------- /typescript/readme_de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/readme_de.md -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Binding/Mashalls/Element.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Binding/Mashalls/Element.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Binding/Unmashalls/Element.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Binding/Unmashalls/Element.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Mapping/Styled.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Mapping/Styled.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/AbstractElementRefsPropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/AbstractElementRefsPropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/AbstractElementsPropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/AbstractElementsPropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/AnyAttributePropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/AnyAttributePropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/AnyElementPropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/AnyElementPropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/AttributePropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/AttributePropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/ClassInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/ClassInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/ElementInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/ElementInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/ElementMapPropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/ElementMapPropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/ElementPropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/ElementPropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/ElementRefPropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/ElementRefPropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/ElementRefsPropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/ElementRefsPropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/ElementsPropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/ElementsPropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/EnumLeafInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/EnumLeafInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/Module.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/Module.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/PropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/PropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/SingleTypePropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/SingleTypePropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/TypeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/TypeInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Model/ValuePropertyInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Model/ValuePropertyInfo.java -------------------------------------------------------------------------------- /typescript/src/main/java/org/hisrc/jsonix/Schema/XML/QName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/java/org/hisrc/jsonix/Schema/XML/QName.java -------------------------------------------------------------------------------- /typescript/src/main/resources/diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/resources/diagram.svg -------------------------------------------------------------------------------- /typescript/src/main/resources/model.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/resources/model.uml -------------------------------------------------------------------------------- /typescript/src/main/typescript/Jsonix.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jsonix/HEAD/typescript/src/main/typescript/Jsonix.d.ts --------------------------------------------------------------------------------