├── LICENSE.md ├── README.md ├── elem.go ├── elemmakepkg.go ├── elemparents.go ├── hasattr.go ├── haselem.go ├── hasmakepkg.go ├── hasparents.go ├── makepkg.go ├── types ├── README.md ├── doc.go └── xsdtypes.go ├── xsd-makepkg ├── main.go └── tests │ ├── README.md │ ├── doc.go │ ├── tests.go │ ├── xsd-test-atom │ ├── feed │ │ ├── infiles │ │ │ └── samplefeed.xml │ │ └── outfiles │ │ │ └── samplefeed.xml │ └── main.go │ ├── xsd-test-collada │ ├── 1.4.1 │ │ ├── infiles │ │ │ ├── berlin.dae │ │ │ ├── cube.dae │ │ │ ├── cube_triangulate.dae │ │ │ ├── duck.dae │ │ │ ├── duck_triangulate.dae │ │ │ └── mgmidget.dae │ │ └── outfiles │ │ │ ├── berlin.dae │ │ │ ├── cube.dae │ │ │ ├── cube_triangulate.dae │ │ │ ├── duck.dae │ │ │ ├── duck_triangulate.dae │ │ │ └── mgmidget.dae │ ├── 1.5 │ │ ├── infiles │ │ │ ├── berlin.dae │ │ │ ├── cube.dae │ │ │ ├── cube_triangulate.dae │ │ │ ├── duck.dae │ │ │ ├── duck_triangulate.dae │ │ │ └── mgmidget.dae │ │ └── outfiles │ │ │ ├── berlin.dae │ │ │ ├── cube.dae │ │ │ ├── cube_triangulate.dae │ │ │ ├── duck.dae │ │ │ ├── duck_triangulate.dae │ │ │ └── mgmidget.dae │ └── main.go │ ├── xsd-test-kml │ ├── infiles │ │ └── doc.kml │ ├── main.go │ └── outfiles │ │ └── doc.kml │ ├── xsd-test-rss │ ├── infiles │ │ └── go-ngine-blog.rss │ ├── main.go │ └── outfiles │ │ └── go-ngine-blog.rss │ └── xsd-test-svg │ └── main.go └── xsd-schema.go /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/README.md -------------------------------------------------------------------------------- /elem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/elem.go -------------------------------------------------------------------------------- /elemmakepkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/elemmakepkg.go -------------------------------------------------------------------------------- /elemparents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/elemparents.go -------------------------------------------------------------------------------- /hasattr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/hasattr.go -------------------------------------------------------------------------------- /haselem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/haselem.go -------------------------------------------------------------------------------- /hasmakepkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/hasmakepkg.go -------------------------------------------------------------------------------- /hasparents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/hasparents.go -------------------------------------------------------------------------------- /makepkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/makepkg.go -------------------------------------------------------------------------------- /types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/types/README.md -------------------------------------------------------------------------------- /types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/types/doc.go -------------------------------------------------------------------------------- /types/xsdtypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/types/xsdtypes.go -------------------------------------------------------------------------------- /xsd-makepkg/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/main.go -------------------------------------------------------------------------------- /xsd-makepkg/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/README.md -------------------------------------------------------------------------------- /xsd-makepkg/tests/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/doc.go -------------------------------------------------------------------------------- /xsd-makepkg/tests/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/tests.go -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-atom/feed/infiles/samplefeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-atom/feed/infiles/samplefeed.xml -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-atom/feed/outfiles/samplefeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-atom/feed/outfiles/samplefeed.xml -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-atom/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-atom/main.go -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/berlin.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/berlin.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/cube.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/cube.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/cube_triangulate.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/cube_triangulate.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/duck.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/duck.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/duck_triangulate.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/duck_triangulate.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/mgmidget.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/mgmidget.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/berlin.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/berlin.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/cube.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/cube.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/cube_triangulate.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/cube_triangulate.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/duck.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/duck.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/duck_triangulate.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/duck_triangulate.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/mgmidget.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/mgmidget.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.5/infiles/berlin.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.5/infiles/berlin.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.5/infiles/cube.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.5/infiles/cube.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.5/infiles/cube_triangulate.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.5/infiles/cube_triangulate.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.5/infiles/duck.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.5/infiles/duck.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.5/infiles/duck_triangulate.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.5/infiles/duck_triangulate.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.5/infiles/mgmidget.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.5/infiles/mgmidget.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/berlin.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/berlin.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/cube.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/cube.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/cube_triangulate.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/cube_triangulate.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/duck.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/duck.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/duck_triangulate.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/duck_triangulate.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/mgmidget.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/mgmidget.dae -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-collada/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-collada/main.go -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-kml/infiles/doc.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-kml/infiles/doc.kml -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-kml/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-kml/main.go -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-kml/outfiles/doc.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-kml/outfiles/doc.kml -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-rss/infiles/go-ngine-blog.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-rss/infiles/go-ngine-blog.rss -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-rss/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-rss/main.go -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-rss/outfiles/go-ngine-blog.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-rss/outfiles/go-ngine-blog.rss -------------------------------------------------------------------------------- /xsd-makepkg/tests/xsd-test-svg/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-makepkg/tests/xsd-test-svg/main.go -------------------------------------------------------------------------------- /xsd-schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaleap/go-xsd/HEAD/xsd-schema.go --------------------------------------------------------------------------------