├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── cov.sh ├── ddoc ├── builtin.ddoc ├── custom.ddoc ├── html.ddoc ├── keywords.ddoc ├── macros.ddoc ├── main.ddoc ├── public.ddoc └── util.ddoc ├── dub.json ├── gendocs.d ├── source └── dxml │ ├── dom.d │ ├── internal.d │ ├── parser.d │ ├── util.d │ └── writer.d ├── source_docs ├── css │ └── proj_docs.css ├── index.dd └── js │ ├── listanchors.js │ └── sidebar.js ├── spec_check ├── dub.json ├── source │ └── app.d └── xmlconf │ ├── eduni │ ├── errata-2e │ │ ├── E14.dtd │ │ ├── E14.xml │ │ ├── E15a.xml │ │ ├── E15b.xml │ │ ├── E15c.xml │ │ ├── E15d.xml │ │ ├── E15e.xml │ │ ├── E15f.xml │ │ ├── E15g.xml │ │ ├── E15h.xml │ │ ├── E15i.xml │ │ ├── E15j.xml │ │ ├── E15k.xml │ │ ├── E15l.xml │ │ ├── E18-ent │ │ ├── E18.xml │ │ ├── E19.dtd │ │ ├── E19.xml │ │ ├── E20.xml │ │ ├── E22.xml │ │ ├── E24.xml │ │ ├── E27.xml │ │ ├── E29.xml │ │ ├── E2a.xml │ │ ├── E2b.xml │ │ ├── E34.xml │ │ ├── E36.dtd │ │ ├── E36.xml │ │ ├── E38.ent │ │ ├── E38.xml │ │ ├── E41.xml │ │ ├── E48.xml │ │ ├── E50.xml │ │ ├── E55.xml │ │ ├── E57.xml │ │ ├── E60.ent │ │ ├── E60.xml │ │ ├── E61.xml │ │ ├── E9a.xml │ │ ├── E9b.xml │ │ ├── errata2e.xml │ │ ├── out │ │ │ ├── E18.xml │ │ │ ├── E19.xml │ │ │ └── E24.xml │ │ ├── subdir1 │ │ │ ├── E18-ent │ │ │ └── E18-pe │ │ ├── subdir2 │ │ │ ├── E18-ent │ │ │ └── E18-extpe │ │ ├── testcases.dtd │ │ └── xmlconf.xml │ ├── errata-3e │ │ ├── E05a.xml │ │ ├── E05b.xml │ │ ├── E06a.xml │ │ ├── E06b.xml │ │ ├── E06c.xml │ │ ├── E06d.xml │ │ ├── E06e.xml │ │ ├── E06f.xml │ │ ├── E06g.xml │ │ ├── E06h.xml │ │ ├── E06i.xml │ │ ├── E12.xml │ │ ├── E13.xml │ │ ├── errata3e.xml │ │ ├── testcases.dtd │ │ └── xmlconf.xml │ ├── errata-4e │ │ ├── 008.xml │ │ ├── 014.xml │ │ ├── 014a.xml │ │ ├── 016.xml │ │ ├── 019.xml │ │ ├── 140.xml │ │ ├── 141.xml │ │ ├── 8bom.xml │ │ ├── 8bombom.xml │ │ ├── 8bomboom.xml │ │ ├── bom_be.xml │ │ ├── bom_le.xml │ │ ├── bombom_be.xml │ │ ├── bombom_le.xml │ │ ├── bomboom_be.xml │ │ ├── bomboom_le.xml │ │ ├── errata4e.xml │ │ ├── ibm04an01.xml │ │ ├── ibm04an02.xml │ │ ├── ibm04an03.xml │ │ ├── ibm04an04.xml │ │ ├── ibm04an05.xml │ │ ├── ibm04an06.xml │ │ ├── ibm04an07.xml │ │ ├── ibm04an08.xml │ │ ├── ibm04an09.xml │ │ ├── ibm04an10.xml │ │ ├── ibm04an11.xml │ │ ├── ibm04an12.xml │ │ ├── ibm04an13.xml │ │ ├── ibm04an14.xml │ │ ├── ibm04an15.xml │ │ ├── ibm04an16.xml │ │ ├── ibm04an17.xml │ │ ├── ibm04an18.xml │ │ ├── ibm04an19.xml │ │ ├── ibm04an20.xml │ │ ├── ibm04an21.xml │ │ ├── ibm04an22.xml │ │ ├── ibm04an23.xml │ │ ├── ibm04an24.xml │ │ ├── ibm04an25.xml │ │ ├── ibm04an26.xml │ │ ├── ibm04an27.xml │ │ ├── ibm04an28.xml │ │ ├── ibm04av01.xml │ │ ├── ibm04n02.xml │ │ ├── ibm04n03.xml │ │ ├── ibm04n04.xml │ │ ├── ibm04n05.xml │ │ ├── ibm04n06.xml │ │ ├── ibm04n07.xml │ │ ├── ibm04n08.xml │ │ ├── ibm04n09.xml │ │ ├── ibm04n10.xml │ │ ├── ibm04n11.xml │ │ ├── ibm04n12.xml │ │ ├── ibm04n13.xml │ │ ├── ibm04n14.xml │ │ ├── ibm04n15.xml │ │ ├── ibm04n16.xml │ │ ├── ibm04n17.xml │ │ ├── ibm04n18.xml │ │ ├── ibm04n19.xml │ │ ├── ibm04n20.xml │ │ ├── ibm04n21.xml │ │ ├── ibm04n22.xml │ │ ├── ibm04n23.xml │ │ ├── ibm04n24.xml │ │ ├── ibm04n25.xml │ │ ├── ibm04n26.xml │ │ ├── ibm04n27.xml │ │ ├── ibm04n28.xml │ │ ├── ibm04v01.xml │ │ ├── ibm05n01.xml │ │ ├── ibm05n02.xml │ │ ├── ibm05n03.xml │ │ ├── ibm05n04.xml │ │ ├── ibm05n05.xml │ │ ├── ibm05n06.xml │ │ ├── ibm05v01.xml │ │ ├── ibm05v02.xml │ │ ├── ibm05v03.xml │ │ ├── ibm05v04.xml │ │ ├── ibm05v05.xml │ │ ├── ibm07v01.xml │ │ ├── ibm85n03.xml │ │ ├── ibm85n04.xml │ │ ├── ibm85n05.xml │ │ ├── ibm85n06.xml │ │ ├── ibm85n07.xml │ │ ├── ibm85n08.xml │ │ ├── ibm85n09.xml │ │ ├── ibm85n10.xml │ │ ├── ibm85n100.xml │ │ ├── ibm85n101.xml │ │ ├── ibm85n102.xml │ │ ├── ibm85n103.xml │ │ ├── ibm85n104.xml │ │ ├── ibm85n105.xml │ │ ├── ibm85n106.xml │ │ ├── ibm85n107.xml │ │ ├── ibm85n108.xml │ │ ├── ibm85n109.xml │ │ ├── ibm85n11.xml │ │ ├── ibm85n110.xml │ │ ├── ibm85n111.xml │ │ ├── ibm85n112.xml │ │ ├── ibm85n113.xml │ │ ├── ibm85n114.xml │ │ ├── ibm85n115.xml │ │ ├── ibm85n116.xml │ │ ├── ibm85n117.xml │ │ ├── ibm85n118.xml │ │ ├── ibm85n119.xml │ │ ├── ibm85n12.xml │ │ ├── ibm85n120.xml │ │ ├── ibm85n121.xml │ │ ├── ibm85n122.xml │ │ ├── ibm85n123.xml │ │ ├── ibm85n124.xml │ │ ├── ibm85n125.xml │ │ ├── ibm85n126.xml │ │ ├── ibm85n127.xml │ │ ├── ibm85n128.xml │ │ ├── ibm85n129.xml │ │ ├── ibm85n13.xml │ │ ├── ibm85n130.xml │ │ ├── ibm85n131.xml │ │ ├── ibm85n132.xml │ │ ├── ibm85n133.xml │ │ ├── ibm85n134.xml │ │ ├── ibm85n135.xml │ │ ├── ibm85n136.xml │ │ ├── ibm85n137.xml │ │ ├── ibm85n138.xml │ │ ├── ibm85n139.xml │ │ ├── ibm85n14.xml │ │ ├── ibm85n140.xml │ │ ├── ibm85n141.xml │ │ ├── ibm85n142.xml │ │ ├── ibm85n143.xml │ │ ├── ibm85n144.xml │ │ ├── ibm85n145.xml │ │ ├── ibm85n146.xml │ │ ├── ibm85n147.xml │ │ ├── ibm85n148.xml │ │ ├── ibm85n149.xml │ │ ├── ibm85n15.xml │ │ ├── ibm85n150.xml │ │ ├── ibm85n151.xml │ │ ├── ibm85n152.xml │ │ ├── ibm85n153.xml │ │ ├── ibm85n154.xml │ │ ├── ibm85n155.xml │ │ ├── ibm85n156.xml │ │ ├── ibm85n157.xml │ │ ├── ibm85n158.xml │ │ ├── ibm85n159.xml │ │ ├── ibm85n16.xml │ │ ├── ibm85n160.xml │ │ ├── ibm85n161.xml │ │ ├── ibm85n162.xml │ │ ├── ibm85n163.xml │ │ ├── ibm85n164.xml │ │ ├── ibm85n165.xml │ │ ├── ibm85n166.xml │ │ ├── ibm85n167.xml │ │ ├── ibm85n168.xml │ │ ├── ibm85n169.xml │ │ ├── ibm85n17.xml │ │ ├── ibm85n170.xml │ │ ├── ibm85n171.xml │ │ ├── ibm85n172.xml │ │ ├── ibm85n173.xml │ │ ├── ibm85n174.xml │ │ ├── ibm85n175.xml │ │ ├── ibm85n176.xml │ │ ├── ibm85n177.xml │ │ ├── ibm85n178.xml │ │ ├── ibm85n179.xml │ │ ├── ibm85n18.xml │ │ ├── ibm85n180.xml │ │ ├── ibm85n181.xml │ │ ├── ibm85n182.xml │ │ ├── ibm85n183.xml │ │ ├── ibm85n184.xml │ │ ├── ibm85n185.xml │ │ ├── ibm85n186.xml │ │ ├── ibm85n187.xml │ │ ├── ibm85n188.xml │ │ ├── ibm85n189.xml │ │ ├── ibm85n19.xml │ │ ├── ibm85n190.xml │ │ ├── ibm85n191.xml │ │ ├── ibm85n192.xml │ │ ├── ibm85n193.xml │ │ ├── ibm85n194.xml │ │ ├── ibm85n195.xml │ │ ├── ibm85n196.xml │ │ ├── ibm85n197.xml │ │ ├── ibm85n198.xml │ │ ├── ibm85n20.xml │ │ ├── ibm85n21.xml │ │ ├── ibm85n22.xml │ │ ├── ibm85n23.xml │ │ ├── ibm85n24.xml │ │ ├── ibm85n25.xml │ │ ├── ibm85n26.xml │ │ ├── ibm85n27.xml │ │ ├── ibm85n28.xml │ │ ├── ibm85n29.xml │ │ ├── ibm85n30.xml │ │ ├── ibm85n31.xml │ │ ├── ibm85n32.xml │ │ ├── ibm85n33.xml │ │ ├── ibm85n34.xml │ │ ├── ibm85n35.xml │ │ ├── ibm85n36.xml │ │ ├── ibm85n37.xml │ │ ├── ibm85n38.xml │ │ ├── ibm85n39.xml │ │ ├── ibm85n40.xml │ │ ├── ibm85n41.xml │ │ ├── ibm85n42.xml │ │ ├── ibm85n43.xml │ │ ├── ibm85n44.xml │ │ ├── ibm85n45.xml │ │ ├── ibm85n46.xml │ │ ├── ibm85n47.xml │ │ ├── ibm85n48.xml │ │ ├── ibm85n49.xml │ │ ├── ibm85n50.xml │ │ ├── ibm85n51.xml │ │ ├── ibm85n52.xml │ │ ├── ibm85n53.xml │ │ ├── ibm85n54.xml │ │ ├── ibm85n55.xml │ │ ├── ibm85n56.xml │ │ ├── ibm85n57.xml │ │ ├── ibm85n58.xml │ │ ├── ibm85n59.xml │ │ ├── ibm85n60.xml │ │ ├── ibm85n61.xml │ │ ├── ibm85n62.xml │ │ ├── ibm85n63.xml │ │ ├── ibm85n64.xml │ │ ├── ibm85n65.xml │ │ ├── ibm85n66.xml │ │ ├── ibm85n67.xml │ │ ├── ibm85n68.xml │ │ ├── ibm85n69.xml │ │ ├── ibm85n70.xml │ │ ├── ibm85n71.xml │ │ ├── ibm85n72.xml │ │ ├── ibm85n73.xml │ │ ├── ibm85n74.xml │ │ ├── ibm85n75.xml │ │ ├── ibm85n76.xml │ │ ├── ibm85n77.xml │ │ ├── ibm85n78.xml │ │ ├── ibm85n79.xml │ │ ├── ibm85n80.xml │ │ ├── ibm85n81.xml │ │ ├── ibm85n82.xml │ │ ├── ibm85n83.xml │ │ ├── ibm85n84.xml │ │ ├── ibm85n85.xml │ │ ├── ibm85n86.xml │ │ ├── ibm85n87.xml │ │ ├── ibm85n88.xml │ │ ├── ibm85n89.xml │ │ ├── ibm85n90.xml │ │ ├── ibm85n91.xml │ │ ├── ibm85n92.xml │ │ ├── ibm85n93.xml │ │ ├── ibm85n94.xml │ │ ├── ibm85n95.xml │ │ ├── ibm85n96.xml │ │ ├── ibm85n97.xml │ │ ├── ibm85n98.xml │ │ ├── ibm85n99.xml │ │ ├── ibm86n01.xml │ │ ├── ibm86n02.xml │ │ ├── ibm86n03.xml │ │ ├── ibm86n04.xml │ │ ├── ibm87n01.xml │ │ ├── ibm87n02.xml │ │ ├── ibm87n03.xml │ │ ├── ibm87n04.xml │ │ ├── ibm87n05.xml │ │ ├── ibm87n06.xml │ │ ├── ibm87n07.xml │ │ ├── ibm87n08.xml │ │ ├── ibm87n09.xml │ │ ├── ibm87n10.xml │ │ ├── ibm87n11.xml │ │ ├── ibm87n12.xml │ │ ├── ibm87n13.xml │ │ ├── ibm87n14.xml │ │ ├── ibm87n15.xml │ │ ├── ibm87n16.xml │ │ ├── ibm87n17.xml │ │ ├── ibm87n18.xml │ │ ├── ibm87n19.xml │ │ ├── ibm87n20.xml │ │ ├── ibm87n21.xml │ │ ├── ibm87n22.xml │ │ ├── ibm87n23.xml │ │ ├── ibm87n24.xml │ │ ├── ibm87n25.xml │ │ ├── ibm87n26.xml │ │ ├── ibm87n27.xml │ │ ├── ibm87n28.xml │ │ ├── ibm87n29.xml │ │ ├── ibm87n30.xml │ │ ├── ibm87n31.xml │ │ ├── ibm87n32.xml │ │ ├── ibm87n33.xml │ │ ├── ibm87n34.xml │ │ ├── ibm87n35.xml │ │ ├── ibm87n36.xml │ │ ├── ibm87n37.xml │ │ ├── ibm87n38.xml │ │ ├── ibm87n39.xml │ │ ├── ibm87n40.xml │ │ ├── ibm87n41.xml │ │ ├── ibm87n42.xml │ │ ├── ibm87n43.xml │ │ ├── ibm87n44.xml │ │ ├── ibm87n45.xml │ │ ├── ibm87n46.xml │ │ ├── ibm87n47.xml │ │ ├── ibm87n48.xml │ │ ├── ibm87n49.xml │ │ ├── ibm87n50.xml │ │ ├── ibm87n51.xml │ │ ├── ibm87n52.xml │ │ ├── ibm87n53.xml │ │ ├── ibm87n54.xml │ │ ├── ibm87n55.xml │ │ ├── ibm87n56.xml │ │ ├── ibm87n57.xml │ │ ├── ibm87n58.xml │ │ ├── ibm87n59.xml │ │ ├── ibm87n60.xml │ │ ├── ibm87n61.xml │ │ ├── ibm87n62.xml │ │ ├── ibm87n63.xml │ │ ├── ibm87n64.xml │ │ ├── ibm87n66.xml │ │ ├── ibm87n67.xml │ │ ├── ibm87n68.xml │ │ ├── ibm87n69.xml │ │ ├── ibm87n70.xml │ │ ├── ibm87n71.xml │ │ ├── ibm87n72.xml │ │ ├── ibm87n73.xml │ │ ├── ibm87n74.xml │ │ ├── ibm87n75.xml │ │ ├── ibm87n76.xml │ │ ├── ibm87n77.xml │ │ ├── ibm87n78.xml │ │ ├── ibm87n79.xml │ │ ├── ibm87n80.xml │ │ ├── ibm87n81.xml │ │ ├── ibm87n82.xml │ │ ├── ibm87n83.xml │ │ ├── ibm87n84.xml │ │ ├── ibm87n85.xml │ │ ├── ibm88n03.xml │ │ ├── ibm88n04.xml │ │ ├── ibm88n05.xml │ │ ├── ibm88n06.xml │ │ ├── ibm88n08.xml │ │ ├── ibm88n09.xml │ │ ├── ibm88n10.xml │ │ ├── ibm88n11.xml │ │ ├── ibm88n12.xml │ │ ├── ibm88n13.xml │ │ ├── ibm88n14.xml │ │ ├── ibm88n15.xml │ │ ├── ibm88n16.xml │ │ ├── ibm89n03.xml │ │ ├── ibm89n04.xml │ │ ├── ibm89n05.xml │ │ ├── ibm89n06.xml │ │ ├── ibm89n07.xml │ │ ├── ibm89n08.xml │ │ ├── ibm89n09.xml │ │ ├── ibm89n10.xml │ │ ├── ibm89n11.xml │ │ ├── ibm89n12.xml │ │ ├── incl8bom.xml │ │ ├── incl8bombom.xml │ │ ├── incl8bomboom.xml │ │ ├── inclbom_be.xml │ │ ├── inclbom_le.xml │ │ ├── inclbom_out.xml │ │ ├── inclbombom_be.xml │ │ ├── inclbombom_le.xml │ │ ├── inclbombom_out.xml │ │ ├── inclbomboom_be.xml │ │ ├── inclbomboom_le.xml │ │ ├── testcases.dtd │ │ └── xmlconf.xml │ ├── misc │ │ ├── 001.xml │ │ ├── 002.xml │ │ ├── 003.xml │ │ ├── 004.xml │ │ ├── 005.xml │ │ ├── 006.xml │ │ ├── 007.xml │ │ ├── 008.xml │ │ ├── 009.xml │ │ ├── ht-bh.xml │ │ └── xmlconf.xml │ ├── namespaces │ │ ├── 1.0 │ │ │ ├── 001.xml │ │ │ ├── 002.xml │ │ │ ├── 003.xml │ │ │ ├── 004.xml │ │ │ ├── 005.xml │ │ │ ├── 006.xml │ │ │ ├── 007.xml │ │ │ ├── 008.xml │ │ │ ├── 009.xml │ │ │ ├── 010.xml │ │ │ ├── 011.xml │ │ │ ├── 012.xml │ │ │ ├── 013.xml │ │ │ ├── 014.xml │ │ │ ├── 015.xml │ │ │ ├── 016.xml │ │ │ ├── 017.xml │ │ │ ├── 018.xml │ │ │ ├── 019.xml │ │ │ ├── 020.xml │ │ │ ├── 021.xml │ │ │ ├── 022.xml │ │ │ ├── 023.xml │ │ │ ├── 024.xml │ │ │ ├── 025.xml │ │ │ ├── 026.xml │ │ │ ├── 027.xml │ │ │ ├── 028.xml │ │ │ ├── 029.xml │ │ │ ├── 030.xml │ │ │ ├── 031.xml │ │ │ ├── 032.xml │ │ │ ├── 033.xml │ │ │ ├── 034.xml │ │ │ ├── 035.xml │ │ │ ├── 036.xml │ │ │ ├── 037.xml │ │ │ ├── 038.xml │ │ │ ├── 039.xml │ │ │ ├── 040.xml │ │ │ ├── 041.xml │ │ │ ├── 042.xml │ │ │ ├── 043.xml │ │ │ ├── 044.xml │ │ │ ├── 045.xml │ │ │ ├── 046.xml │ │ │ ├── 047.xml │ │ │ ├── 048.xml │ │ │ └── rmt-ns10.xml │ │ ├── 1.1 │ │ │ ├── 001.xml │ │ │ ├── 002.xml │ │ │ ├── 003.xml │ │ │ ├── 004.xml │ │ │ ├── 005.xml │ │ │ ├── 006.xml │ │ │ ├── 007.xml │ │ │ ├── 008.xml │ │ │ └── rmt-ns11.xml │ │ ├── errata-1e │ │ │ ├── NE13a.xml │ │ │ ├── NE13b.xml │ │ │ ├── NE13c.xml │ │ │ ├── errata1e.xml │ │ │ ├── testcases.dtd │ │ │ └── xmlconf.xml │ │ ├── testcases.dtd │ │ └── xmlconf.xml │ ├── xml-1.1 │ │ ├── 001.dtd │ │ ├── 001.xml │ │ ├── 002.pe │ │ ├── 002.xml │ │ ├── 003.ent │ │ ├── 003.xml │ │ ├── 004.ent │ │ ├── 004.xml │ │ ├── 005.xml │ │ ├── 005_1.ent │ │ ├── 005_2.ent │ │ ├── 006.xml │ │ ├── 006_1.ent │ │ ├── 006_2.ent │ │ ├── 007.xml │ │ ├── 008.xml │ │ ├── 009.ent │ │ ├── 009.xml │ │ ├── 010.xml │ │ ├── 011.xml │ │ ├── 012.xml │ │ ├── 013.xml │ │ ├── 014.xml │ │ ├── 015.xml │ │ ├── 016.xml │ │ ├── 017.xml │ │ ├── 018.xml │ │ ├── 019.xml │ │ ├── 020.xml │ │ ├── 021.xml │ │ ├── 022.xml │ │ ├── 023.xml │ │ ├── 024.xml │ │ ├── 025.xml │ │ ├── 026.xml │ │ ├── 027.xml │ │ ├── 028.xml │ │ ├── 029.xml │ │ ├── 030.xml │ │ ├── 031.xml │ │ ├── 032.xml │ │ ├── 033.xml │ │ ├── 034.xml │ │ ├── 035.xml │ │ ├── 036.xml │ │ ├── 037.xml │ │ ├── 038.xml │ │ ├── 039.xml │ │ ├── 040.xml │ │ ├── 041.xml │ │ ├── 042.xml │ │ ├── 043.xml │ │ ├── 044.xml │ │ ├── 045.xml │ │ ├── 046.xml │ │ ├── 047.xml │ │ ├── 048.xml │ │ ├── 049.xml │ │ ├── 050.xml │ │ ├── 051.xml │ │ ├── 052.xml │ │ ├── 053.xml │ │ ├── 054.xml │ │ ├── 055.xml │ │ ├── 056.xml │ │ ├── 057.xml │ │ ├── out │ │ │ ├── 006.xml │ │ │ ├── 007.xml │ │ │ ├── 010.xml │ │ │ ├── 012.xml │ │ │ ├── 015.xml │ │ │ ├── 017.xml │ │ │ ├── 018.xml │ │ │ ├── 022.xml │ │ │ ├── 023.xml │ │ │ ├── 024.xml │ │ │ ├── 025.xml │ │ │ ├── 026.xml │ │ │ ├── 027.xml │ │ │ ├── 028.xml │ │ │ ├── 029.xml │ │ │ ├── 030.xml │ │ │ ├── 031.xml │ │ │ ├── 032.xml │ │ │ ├── 033.xml │ │ │ ├── 034.xml │ │ │ ├── 035.xml │ │ │ ├── 036.xml │ │ │ ├── 037.xml │ │ │ ├── 040.xml │ │ │ ├── 043.xml │ │ │ ├── 044.xml │ │ │ ├── 045.xml │ │ │ ├── 046.xml │ │ │ ├── 047.xml │ │ │ ├── 048.xml │ │ │ ├── 049.xml │ │ │ ├── 050.xml │ │ │ ├── 051.xml │ │ │ ├── 052.xml │ │ │ ├── 053.xml │ │ │ └── 054.xml │ │ ├── testcases.dtd │ │ ├── xml11.xml │ │ └── xmlconf.xml │ └── xmlconf.xml │ ├── files │ ├── a_oasis-logo.gif │ ├── committee.css │ └── top3.jpe │ ├── ibm │ ├── ibm_oasis_invalid.xml │ ├── ibm_oasis_not-wf.xml │ ├── ibm_oasis_readme.txt │ ├── ibm_oasis_valid.xml │ ├── invalid │ │ ├── P28 │ │ │ ├── ibm28i01.xml │ │ │ └── out │ │ │ │ └── ibm28i01.xml │ │ ├── P32 │ │ │ ├── ibm32i01.dtd │ │ │ ├── ibm32i01.xml │ │ │ ├── ibm32i03.dtd │ │ │ ├── ibm32i03.xml │ │ │ ├── ibm32i04.dtd │ │ │ ├── ibm32i04.xml │ │ │ └── out │ │ │ │ ├── ibm32i01.xml │ │ │ │ ├── ibm32i03.xml │ │ │ │ └── ibm32i04.xml │ │ ├── P39 │ │ │ ├── ibm39i01.xml │ │ │ ├── ibm39i02.xml │ │ │ ├── ibm39i03.xml │ │ │ ├── ibm39i04.xml │ │ │ └── out │ │ │ │ ├── ibm39i01.xml │ │ │ │ ├── ibm39i02.xml │ │ │ │ ├── ibm39i03.xml │ │ │ │ └── ibm39i04.xml │ │ ├── P41 │ │ │ ├── ibm41i01.xml │ │ │ ├── ibm41i02.xml │ │ │ └── out │ │ │ │ ├── ibm41i01.xml │ │ │ │ └── ibm41i02.xml │ │ ├── P45 │ │ │ ├── ibm45i01.xml │ │ │ └── out │ │ │ │ └── ibm45i01.xml │ │ ├── P49 │ │ │ ├── ibm49i01.dtd │ │ │ ├── ibm49i01.xml │ │ │ ├── ibm49i02.xml │ │ │ └── out │ │ │ │ ├── ibm49i01.xml │ │ │ │ └── ibm49i02.xml │ │ ├── P50 │ │ │ ├── ibm50i01.dtd │ │ │ ├── ibm50i01.xml │ │ │ └── out │ │ │ │ └── ibm50i01.xml │ │ ├── P51 │ │ │ ├── ibm51i01.dtd │ │ │ ├── ibm51i01.xml │ │ │ ├── ibm51i03.dtd │ │ │ ├── ibm51i03.xml │ │ │ └── out │ │ │ │ ├── ibm51i01.xml │ │ │ │ ├── ibm51i02.xml │ │ │ │ └── ibm51i03.xml │ │ ├── P56 │ │ │ ├── ibm56i01.xml │ │ │ ├── ibm56i02.xml │ │ │ ├── ibm56i03.xml │ │ │ ├── ibm56i05.xml │ │ │ ├── ibm56i06.xml │ │ │ ├── ibm56i07.xml │ │ │ ├── ibm56i08.xml │ │ │ ├── ibm56i09.xml │ │ │ ├── ibm56i10.xml │ │ │ ├── ibm56i11.xml │ │ │ ├── ibm56i12.xml │ │ │ ├── ibm56i13.xml │ │ │ ├── ibm56i14.xml │ │ │ ├── ibm56i15.xml │ │ │ ├── ibm56i16.xml │ │ │ ├── ibm56i17.xml │ │ │ ├── ibm56i18.xml │ │ │ └── out │ │ │ │ ├── ibm56i01.xml │ │ │ │ ├── ibm56i02.xml │ │ │ │ ├── ibm56i03.xml │ │ │ │ ├── ibm56i05.xml │ │ │ │ ├── ibm56i06.xml │ │ │ │ ├── ibm56i07.xml │ │ │ │ ├── ibm56i08.xml │ │ │ │ ├── ibm56i09.xml │ │ │ │ ├── ibm56i10.xml │ │ │ │ ├── ibm56i11.xml │ │ │ │ ├── ibm56i12.xml │ │ │ │ ├── ibm56i13.xml │ │ │ │ ├── ibm56i14.xml │ │ │ │ ├── ibm56i15.xml │ │ │ │ ├── ibm56i16.xml │ │ │ │ ├── ibm56i17.xml │ │ │ │ └── ibm56i18.xml │ │ ├── P58 │ │ │ ├── ibm58i01.xml │ │ │ ├── ibm58i02.xml │ │ │ └── out │ │ │ │ ├── ibm58i01.xml │ │ │ │ └── ibm58i02.xml │ │ ├── P59 │ │ │ ├── ibm59i01.xml │ │ │ └── out │ │ │ │ └── ibm59i01.xml │ │ ├── P60 │ │ │ ├── ibm60i01.xml │ │ │ ├── ibm60i02.xml │ │ │ ├── ibm60i03.xml │ │ │ ├── ibm60i04.xml │ │ │ └── out │ │ │ │ ├── ibm60i01.xml │ │ │ │ ├── ibm60i02.xml │ │ │ │ ├── ibm60i03.xml │ │ │ │ └── ibm60i04.xml │ │ ├── P68 │ │ │ ├── ibm68i01.dtd │ │ │ ├── ibm68i01.xml │ │ │ ├── ibm68i02.dtd │ │ │ ├── ibm68i02.xml │ │ │ ├── ibm68i03.ent │ │ │ ├── ibm68i03.xml │ │ │ ├── ibm68i04.ent │ │ │ ├── ibm68i04.xml │ │ │ └── out │ │ │ │ ├── ibm68i01.xml │ │ │ │ ├── ibm68i02.xml │ │ │ │ ├── ibm68i03.xml │ │ │ │ └── ibm68i04.xml │ │ ├── P69 │ │ │ ├── ibm69i01.dtd │ │ │ ├── ibm69i01.xml │ │ │ ├── ibm69i02.dtd │ │ │ ├── ibm69i02.xml │ │ │ ├── ibm69i03.ent │ │ │ ├── ibm69i03.xml │ │ │ ├── ibm69i04.ent │ │ │ ├── ibm69i04.xml │ │ │ └── out │ │ │ │ ├── ibm69i01.xml │ │ │ │ ├── ibm69i02.xml │ │ │ │ ├── ibm69i03.xml │ │ │ │ └── ibm69i04.xml │ │ └── P76 │ │ │ ├── ibm76i01.xml │ │ │ └── out │ │ │ └── ibm76i01.xml │ ├── not-wf │ │ ├── P01 │ │ │ ├── ibm01n01.xml │ │ │ ├── ibm01n02.xml │ │ │ └── ibm01n03.xml │ │ ├── P02 │ │ │ ├── ibm02n01.xml │ │ │ ├── ibm02n02.xml │ │ │ ├── ibm02n03.xml │ │ │ ├── ibm02n04.xml │ │ │ ├── ibm02n05.xml │ │ │ ├── ibm02n06.xml │ │ │ ├── ibm02n07.xml │ │ │ ├── ibm02n08.xml │ │ │ ├── ibm02n09.xml │ │ │ ├── ibm02n10.xml │ │ │ ├── ibm02n11.xml │ │ │ ├── ibm02n12.xml │ │ │ ├── ibm02n13.xml │ │ │ ├── ibm02n14.xml │ │ │ ├── ibm02n15.xml │ │ │ ├── ibm02n16.xml │ │ │ ├── ibm02n17.xml │ │ │ ├── ibm02n18.xml │ │ │ ├── ibm02n19.xml │ │ │ ├── ibm02n20.xml │ │ │ ├── ibm02n21.xml │ │ │ ├── ibm02n22.xml │ │ │ ├── ibm02n23.xml │ │ │ ├── ibm02n24.xml │ │ │ ├── ibm02n25.xml │ │ │ ├── ibm02n26.xml │ │ │ ├── ibm02n27.xml │ │ │ ├── ibm02n28.xml │ │ │ ├── ibm02n29.xml │ │ │ ├── ibm02n30.xml │ │ │ ├── ibm02n31.xml │ │ │ ├── ibm02n32.xml │ │ │ └── ibm02n33.xml │ │ ├── P03 │ │ │ └── ibm03n01.xml │ │ ├── P04 │ │ │ ├── ibm04n01.xml │ │ │ ├── ibm04n02.xml │ │ │ ├── ibm04n03.xml │ │ │ ├── ibm04n04.xml │ │ │ ├── ibm04n05.xml │ │ │ ├── ibm04n06.xml │ │ │ ├── ibm04n07.xml │ │ │ ├── ibm04n08.xml │ │ │ ├── ibm04n09.xml │ │ │ ├── ibm04n10.xml │ │ │ ├── ibm04n11.xml │ │ │ ├── ibm04n12.xml │ │ │ ├── ibm04n13.xml │ │ │ ├── ibm04n14.xml │ │ │ ├── ibm04n15.xml │ │ │ ├── ibm04n16.xml │ │ │ ├── ibm04n17.xml │ │ │ └── ibm04n18.xml │ │ ├── P05 │ │ │ ├── ibm05n01.xml │ │ │ ├── ibm05n02.xml │ │ │ ├── ibm05n03.xml │ │ │ ├── ibm05n04.xml │ │ │ └── ibm05n05.xml │ │ ├── P09 │ │ │ ├── ibm09n01.xml │ │ │ ├── ibm09n02.xml │ │ │ ├── ibm09n03.xml │ │ │ └── ibm09n04.xml │ │ ├── P10 │ │ │ ├── ibm10n01.xml │ │ │ ├── ibm10n02.xml │ │ │ ├── ibm10n03.xml │ │ │ ├── ibm10n04.xml │ │ │ ├── ibm10n05.xml │ │ │ ├── ibm10n06.xml │ │ │ ├── ibm10n07.xml │ │ │ └── ibm10n08.xml │ │ ├── P11 │ │ │ ├── ibm11n01.xml │ │ │ ├── ibm11n02.xml │ │ │ ├── ibm11n03.xml │ │ │ └── ibm11n04.xml │ │ ├── P12 │ │ │ ├── ibm12n01.xml │ │ │ ├── ibm12n02.xml │ │ │ └── ibm12n03.xml │ │ ├── P13 │ │ │ ├── ibm13n01.xml │ │ │ ├── ibm13n02.xml │ │ │ ├── ibm13n03.xml │ │ │ └── student.dtd │ │ ├── P14 │ │ │ ├── ibm14n01.xml │ │ │ ├── ibm14n02.xml │ │ │ └── ibm14n03.xml │ │ ├── P15 │ │ │ ├── ibm15n01.xml │ │ │ ├── ibm15n02.xml │ │ │ ├── ibm15n03.xml │ │ │ └── ibm15n04.xml │ │ ├── P16 │ │ │ ├── ibm16n01.xml │ │ │ ├── ibm16n02.xml │ │ │ ├── ibm16n03.xml │ │ │ └── ibm16n04.xml │ │ ├── P17 │ │ │ ├── ibm17n01.xml │ │ │ ├── ibm17n02.xml │ │ │ ├── ibm17n03.xml │ │ │ └── ibm17n04.xml │ │ ├── P18 │ │ │ ├── ibm18n01.xml │ │ │ └── ibm18n02.xml │ │ ├── P19 │ │ │ ├── ibm19n01.xml │ │ │ ├── ibm19n02.xml │ │ │ └── ibm19n03.xml │ │ ├── P20 │ │ │ └── ibm20n01.xml │ │ ├── P21 │ │ │ ├── ibm21n01.xml │ │ │ ├── ibm21n02.xml │ │ │ └── ibm21n03.xml │ │ ├── P22 │ │ │ ├── ibm22n01.xml │ │ │ ├── ibm22n02.xml │ │ │ └── ibm22n03.xml │ │ ├── P23 │ │ │ ├── ibm23n01.xml │ │ │ ├── ibm23n02.xml │ │ │ ├── ibm23n03.xml │ │ │ ├── ibm23n04.xml │ │ │ ├── ibm23n05.xml │ │ │ └── ibm23n06.xml │ │ ├── P24 │ │ │ ├── ibm24n01.xml │ │ │ ├── ibm24n02.xml │ │ │ ├── ibm24n03.xml │ │ │ ├── ibm24n04.xml │ │ │ ├── ibm24n05.xml │ │ │ ├── ibm24n06.xml │ │ │ ├── ibm24n07.xml │ │ │ ├── ibm24n08.xml │ │ │ └── ibm24n09.xml │ │ ├── P25 │ │ │ ├── ibm25n01.xml │ │ │ └── ibm25n02.xml │ │ ├── P26 │ │ │ └── ibm26n01.xml │ │ ├── P27 │ │ │ └── ibm27n01.xml │ │ ├── P28 │ │ │ ├── ibm28n01.dtd │ │ │ ├── ibm28n01.xml │ │ │ ├── ibm28n02.xml │ │ │ ├── ibm28n03.xml │ │ │ ├── ibm28n04.xml │ │ │ ├── ibm28n05.xml │ │ │ ├── ibm28n06.xml │ │ │ ├── ibm28n07.xml │ │ │ └── ibm28n08.xml │ │ ├── P29 │ │ │ ├── cat.txt │ │ │ ├── ibm29n01.xml │ │ │ ├── ibm29n02.xml │ │ │ ├── ibm29n03.xml │ │ │ ├── ibm29n04.xml │ │ │ ├── ibm29n05.xml │ │ │ ├── ibm29n06.xml │ │ │ └── ibm29n07.xml │ │ ├── P30 │ │ │ ├── ibm30n01.dtd │ │ │ └── ibm30n01.xml │ │ ├── P31 │ │ │ ├── ibm31n01.dtd │ │ │ └── ibm31n01.xml │ │ ├── P32 │ │ │ ├── ibm32n01.xml │ │ │ ├── ibm32n02.xml │ │ │ ├── ibm32n03.xml │ │ │ ├── ibm32n04.xml │ │ │ ├── ibm32n05.xml │ │ │ ├── ibm32n06.dtd │ │ │ ├── ibm32n06.xml │ │ │ ├── ibm32n07.xml │ │ │ ├── ibm32n08.xml │ │ │ ├── ibm32n09.dtd │ │ │ └── ibm32n09.xml │ │ ├── P39 │ │ │ ├── ibm39n01.xml │ │ │ ├── ibm39n02.xml │ │ │ ├── ibm39n03.xml │ │ │ ├── ibm39n04.xml │ │ │ ├── ibm39n05.xml │ │ │ └── ibm39n06.xml │ │ ├── P40 │ │ │ ├── ibm40n01.xml │ │ │ ├── ibm40n02.xml │ │ │ ├── ibm40n03.xml │ │ │ ├── ibm40n04.xml │ │ │ └── ibm40n05.xml │ │ ├── P41 │ │ │ ├── ibm41n.ent │ │ │ ├── ibm41n01.xml │ │ │ ├── ibm41n02.xml │ │ │ ├── ibm41n03.xml │ │ │ ├── ibm41n04.xml │ │ │ ├── ibm41n05.xml │ │ │ ├── ibm41n06.xml │ │ │ ├── ibm41n07.xml │ │ │ ├── ibm41n08.xml │ │ │ ├── ibm41n09.xml │ │ │ ├── ibm41n10.ent │ │ │ ├── ibm41n10.xml │ │ │ ├── ibm41n11.ent │ │ │ ├── ibm41n11.xml │ │ │ ├── ibm41n12.xml │ │ │ ├── ibm41n13.xml │ │ │ └── ibm41n14.xml │ │ ├── P42 │ │ │ ├── ibm42n01.xml │ │ │ ├── ibm42n02.xml │ │ │ ├── ibm42n03.xml │ │ │ ├── ibm42n04.xml │ │ │ └── ibm42n05.xml │ │ ├── P43 │ │ │ ├── ibm43n01.xml │ │ │ ├── ibm43n02.xml │ │ │ ├── ibm43n04.xml │ │ │ └── ibm43n05.xml │ │ ├── P44 │ │ │ ├── ibm44n01.xml │ │ │ ├── ibm44n02.xml │ │ │ ├── ibm44n03.xml │ │ │ └── ibm44n04.xml │ │ ├── P45 │ │ │ ├── ibm45n01.xml │ │ │ ├── ibm45n02.xml │ │ │ ├── ibm45n03.xml │ │ │ ├── ibm45n04.xml │ │ │ ├── ibm45n05.xml │ │ │ ├── ibm45n06.xml │ │ │ ├── ibm45n07.xml │ │ │ ├── ibm45n08.xml │ │ │ └── ibm45n09.xml │ │ ├── P46 │ │ │ ├── ibm46n01.xml │ │ │ ├── ibm46n02.xml │ │ │ ├── ibm46n03.xml │ │ │ ├── ibm46n04.xml │ │ │ └── ibm46n05.xml │ │ ├── P47 │ │ │ ├── ibm47n01.xml │ │ │ ├── ibm47n02.xml │ │ │ ├── ibm47n03.xml │ │ │ ├── ibm47n04.xml │ │ │ ├── ibm47n05.xml │ │ │ └── ibm47n06.xml │ │ ├── P48 │ │ │ ├── ibm48n01.xml │ │ │ ├── ibm48n02.xml │ │ │ ├── ibm48n03.xml │ │ │ ├── ibm48n04.xml │ │ │ ├── ibm48n05.xml │ │ │ ├── ibm48n06.xml │ │ │ └── ibm48n07.xml │ │ ├── P49 │ │ │ ├── ibm49n01.xml │ │ │ ├── ibm49n02.xml │ │ │ ├── ibm49n03.xml │ │ │ ├── ibm49n04.xml │ │ │ ├── ibm49n05.xml │ │ │ └── ibm49n06.xml │ │ ├── P50 │ │ │ ├── ibm50n01.xml │ │ │ ├── ibm50n02.xml │ │ │ ├── ibm50n03.xml │ │ │ ├── ibm50n04.xml │ │ │ ├── ibm50n05.xml │ │ │ ├── ibm50n06.xml │ │ │ └── ibm50n07.xml │ │ ├── P51 │ │ │ ├── ibm51n01.xml │ │ │ ├── ibm51n02.xml │ │ │ ├── ibm51n03.xml │ │ │ ├── ibm51n04.xml │ │ │ ├── ibm51n05.xml │ │ │ ├── ibm51n06.xml │ │ │ └── ibm51n07.xml │ │ ├── P52 │ │ │ ├── ibm52n01.xml │ │ │ ├── ibm52n02.xml │ │ │ ├── ibm52n03.xml │ │ │ ├── ibm52n04.xml │ │ │ ├── ibm52n05.xml │ │ │ └── ibm52n06.xml │ │ ├── P53 │ │ │ ├── ibm53n01.xml │ │ │ ├── ibm53n02.xml │ │ │ ├── ibm53n03.xml │ │ │ ├── ibm53n04.xml │ │ │ ├── ibm53n05.xml │ │ │ ├── ibm53n06.xml │ │ │ ├── ibm53n07.xml │ │ │ └── ibm53n08.xml │ │ ├── P54 │ │ │ ├── ibm54n01.xml │ │ │ └── ibm54n02.xml │ │ ├── P55 │ │ │ ├── ibm55n01.xml │ │ │ ├── ibm55n02.xml │ │ │ └── ibm55n03.xml │ │ ├── P56 │ │ │ ├── ibm56n01.xml │ │ │ ├── ibm56n02.xml │ │ │ ├── ibm56n03.xml │ │ │ ├── ibm56n04.xml │ │ │ ├── ibm56n05.xml │ │ │ ├── ibm56n06.xml │ │ │ └── ibm56n07.xml │ │ ├── P57 │ │ │ └── ibm57n01.xml │ │ ├── P58 │ │ │ ├── ibm58n01.xml │ │ │ ├── ibm58n02.xml │ │ │ ├── ibm58n03.xml │ │ │ ├── ibm58n04.xml │ │ │ ├── ibm58n05.xml │ │ │ ├── ibm58n06.xml │ │ │ ├── ibm58n07.xml │ │ │ └── ibm58n08.xml │ │ ├── P59 │ │ │ ├── ibm59n01.xml │ │ │ ├── ibm59n02.xml │ │ │ ├── ibm59n03.xml │ │ │ ├── ibm59n04.xml │ │ │ ├── ibm59n05.xml │ │ │ └── ibm59n06.xml │ │ ├── P60 │ │ │ ├── ibm60n01.xml │ │ │ ├── ibm60n02.xml │ │ │ ├── ibm60n03.xml │ │ │ ├── ibm60n04.xml │ │ │ ├── ibm60n05.xml │ │ │ ├── ibm60n06.xml │ │ │ ├── ibm60n07.xml │ │ │ └── ibm60n08.xml │ │ ├── P61 │ │ │ ├── ibm61n01.dtd │ │ │ └── ibm61n01.xml │ │ ├── P62 │ │ │ ├── ibm62n01.dtd │ │ │ ├── ibm62n01.xml │ │ │ ├── ibm62n02.dtd │ │ │ ├── ibm62n02.xml │ │ │ ├── ibm62n03.dtd │ │ │ ├── ibm62n03.xml │ │ │ ├── ibm62n04.dtd │ │ │ ├── ibm62n04.xml │ │ │ ├── ibm62n05.dtd │ │ │ ├── ibm62n05.xml │ │ │ ├── ibm62n06.dtd │ │ │ ├── ibm62n06.xml │ │ │ ├── ibm62n07.dtd │ │ │ ├── ibm62n07.xml │ │ │ ├── ibm62n08.dtd │ │ │ └── ibm62n08.xml │ │ ├── P63 │ │ │ ├── ibm63n01.dtd │ │ │ ├── ibm63n01.xml │ │ │ ├── ibm63n02.dtd │ │ │ ├── ibm63n02.xml │ │ │ ├── ibm63n03.dtd │ │ │ ├── ibm63n03.xml │ │ │ ├── ibm63n04.dtd │ │ │ ├── ibm63n04.xml │ │ │ ├── ibm63n05.dtd │ │ │ ├── ibm63n05.xml │ │ │ ├── ibm63n06.dtd │ │ │ ├── ibm63n06.xml │ │ │ ├── ibm63n07.dtd │ │ │ └── ibm63n07.xml │ │ ├── P64 │ │ │ ├── ibm64n01.dtd │ │ │ ├── ibm64n01.xml │ │ │ ├── ibm64n02.dtd │ │ │ ├── ibm64n02.xml │ │ │ ├── ibm64n03.dtd │ │ │ └── ibm64n03.xml │ │ ├── P65 │ │ │ ├── ibm65n01.dtd │ │ │ ├── ibm65n01.xml │ │ │ ├── ibm65n02.dtd │ │ │ └── ibm65n02.xml │ │ ├── P66 │ │ │ ├── ibm66n01.xml │ │ │ ├── ibm66n02.xml │ │ │ ├── ibm66n03.xml │ │ │ ├── ibm66n04.xml │ │ │ ├── ibm66n05.xml │ │ │ ├── ibm66n06.xml │ │ │ ├── ibm66n07.xml │ │ │ ├── ibm66n08.xml │ │ │ ├── ibm66n09.xml │ │ │ ├── ibm66n10.xml │ │ │ ├── ibm66n11.xml │ │ │ ├── ibm66n12.xml │ │ │ ├── ibm66n13.xml │ │ │ ├── ibm66n14.xml │ │ │ └── ibm66n15.xml │ │ ├── P68 │ │ │ ├── ibm68n01.xml │ │ │ ├── ibm68n02.xml │ │ │ ├── ibm68n03.xml │ │ │ ├── ibm68n04.xml │ │ │ ├── ibm68n05.xml │ │ │ ├── ibm68n06.dtd │ │ │ ├── ibm68n06.xml │ │ │ ├── ibm68n07.xml │ │ │ ├── ibm68n08.xml │ │ │ ├── ibm68n09.xml │ │ │ └── ibm68n10.xml │ │ ├── P69 │ │ │ ├── ibm69n01.xml │ │ │ ├── ibm69n02.xml │ │ │ ├── ibm69n03.xml │ │ │ ├── ibm69n04.xml │ │ │ ├── ibm69n05.xml │ │ │ ├── ibm69n06.xml │ │ │ └── ibm69n07.xml │ │ ├── P71 │ │ │ ├── ibm70n01.xml │ │ │ ├── ibm71n01.xml │ │ │ ├── ibm71n02.xml │ │ │ ├── ibm71n03.xml │ │ │ ├── ibm71n04.xml │ │ │ ├── ibm71n05.xml │ │ │ ├── ibm71n06.xml │ │ │ ├── ibm71n07.xml │ │ │ └── ibm71n08.xml │ │ ├── P72 │ │ │ ├── ibm72n01.xml │ │ │ ├── ibm72n02.xml │ │ │ ├── ibm72n03.xml │ │ │ ├── ibm72n04.xml │ │ │ ├── ibm72n05.xml │ │ │ ├── ibm72n06.xml │ │ │ ├── ibm72n07.xml │ │ │ ├── ibm72n08.xml │ │ │ └── ibm72n09.xml │ │ ├── P73 │ │ │ ├── ibm73n01.xml │ │ │ └── ibm73n03.xml │ │ ├── P74 │ │ │ └── ibm74n01.xml │ │ ├── P75 │ │ │ ├── empty.dtd │ │ │ ├── ibm75n01.xml │ │ │ ├── ibm75n02.xml │ │ │ ├── ibm75n03.xml │ │ │ ├── ibm75n04.xml │ │ │ ├── ibm75n05.xml │ │ │ ├── ibm75n06.xml │ │ │ ├── ibm75n07.xml │ │ │ ├── ibm75n08.xml │ │ │ ├── ibm75n09.xml │ │ │ ├── ibm75n10.xml │ │ │ ├── ibm75n11.xml │ │ │ ├── ibm75n12.xml │ │ │ └── ibm75n13.xml │ │ ├── P76 │ │ │ ├── ibm76n01.xml │ │ │ ├── ibm76n02.xml │ │ │ ├── ibm76n03.xml │ │ │ ├── ibm76n04.xml │ │ │ ├── ibm76n05.xml │ │ │ ├── ibm76n06.xml │ │ │ └── ibm76n07.xml │ │ ├── P77 │ │ │ ├── ibm77n01.ent │ │ │ ├── ibm77n01.xml │ │ │ ├── ibm77n02.ent │ │ │ ├── ibm77n02.xml │ │ │ ├── ibm77n03.ent │ │ │ ├── ibm77n03.xml │ │ │ ├── ibm77n04.ent │ │ │ └── ibm77n04.xml │ │ ├── P78 │ │ │ ├── ibm78n01.ent │ │ │ ├── ibm78n01.xml │ │ │ ├── ibm78n02.ent │ │ │ └── ibm78n02.xml │ │ ├── P79 │ │ │ ├── ibm79n01.ent │ │ │ ├── ibm79n01.xml │ │ │ ├── ibm79n02.ent │ │ │ └── ibm79n02.xml │ │ ├── P80 │ │ │ ├── ibm80n01.xml │ │ │ ├── ibm80n02.xml │ │ │ ├── ibm80n03.xml │ │ │ ├── ibm80n04.xml │ │ │ ├── ibm80n05.xml │ │ │ └── ibm80n06.xml │ │ ├── P81 │ │ │ ├── ibm81n01.xml │ │ │ ├── ibm81n02.xml │ │ │ ├── ibm81n03.xml │ │ │ ├── ibm81n04.xml │ │ │ ├── ibm81n05.xml │ │ │ ├── ibm81n06.xml │ │ │ ├── ibm81n07.xml │ │ │ ├── ibm81n08.xml │ │ │ └── ibm81n09.xml │ │ ├── P82 │ │ │ ├── ibm82n01.xml │ │ │ ├── ibm82n02.xml │ │ │ ├── ibm82n03.xml │ │ │ ├── ibm82n04.xml │ │ │ ├── ibm82n05.xml │ │ │ ├── ibm82n06.xml │ │ │ ├── ibm82n07.xml │ │ │ └── ibm82n08.xml │ │ ├── P83 │ │ │ ├── ibm83n01.xml │ │ │ ├── ibm83n02.xml │ │ │ ├── ibm83n03.xml │ │ │ ├── ibm83n04.xml │ │ │ ├── ibm83n05.xml │ │ │ └── ibm83n06.xml │ │ ├── P85 │ │ │ ├── ibm85n01.xml │ │ │ ├── ibm85n02.xml │ │ │ ├── ibm85n03.xml │ │ │ ├── ibm85n04.xml │ │ │ ├── ibm85n05.xml │ │ │ ├── ibm85n06.xml │ │ │ ├── ibm85n07.xml │ │ │ ├── ibm85n08.xml │ │ │ ├── ibm85n09.xml │ │ │ ├── ibm85n10.xml │ │ │ ├── ibm85n100.xml │ │ │ ├── ibm85n101.xml │ │ │ ├── ibm85n102.xml │ │ │ ├── ibm85n103.xml │ │ │ ├── ibm85n104.xml │ │ │ ├── ibm85n105.xml │ │ │ ├── ibm85n106.xml │ │ │ ├── ibm85n107.xml │ │ │ ├── ibm85n108.xml │ │ │ ├── ibm85n109.xml │ │ │ ├── ibm85n11.xml │ │ │ ├── ibm85n110.xml │ │ │ ├── ibm85n111.xml │ │ │ ├── ibm85n112.xml │ │ │ ├── ibm85n113.xml │ │ │ ├── ibm85n114.xml │ │ │ ├── ibm85n115.xml │ │ │ ├── ibm85n116.xml │ │ │ ├── ibm85n117.xml │ │ │ ├── ibm85n118.xml │ │ │ ├── ibm85n119.xml │ │ │ ├── ibm85n12.xml │ │ │ ├── ibm85n120.xml │ │ │ ├── ibm85n121.xml │ │ │ ├── ibm85n122.xml │ │ │ ├── ibm85n123.xml │ │ │ ├── ibm85n124.xml │ │ │ ├── ibm85n125.xml │ │ │ ├── ibm85n126.xml │ │ │ ├── ibm85n127.xml │ │ │ ├── ibm85n128.xml │ │ │ ├── ibm85n129.xml │ │ │ ├── ibm85n13.xml │ │ │ ├── ibm85n130.xml │ │ │ ├── ibm85n131.xml │ │ │ ├── ibm85n132.xml │ │ │ ├── ibm85n133.xml │ │ │ ├── ibm85n134.xml │ │ │ ├── ibm85n135.xml │ │ │ ├── ibm85n136.xml │ │ │ ├── ibm85n137.xml │ │ │ ├── ibm85n138.xml │ │ │ ├── ibm85n139.xml │ │ │ ├── ibm85n14.xml │ │ │ ├── ibm85n140.xml │ │ │ ├── ibm85n141.xml │ │ │ ├── ibm85n142.xml │ │ │ ├── ibm85n143.xml │ │ │ ├── ibm85n144.xml │ │ │ ├── ibm85n145.xml │ │ │ ├── ibm85n146.xml │ │ │ ├── ibm85n147.xml │ │ │ ├── ibm85n148.xml │ │ │ ├── ibm85n149.xml │ │ │ ├── ibm85n15.xml │ │ │ ├── ibm85n150.xml │ │ │ ├── ibm85n151.xml │ │ │ ├── ibm85n152.xml │ │ │ ├── ibm85n153.xml │ │ │ ├── ibm85n154.xml │ │ │ ├── ibm85n155.xml │ │ │ ├── ibm85n156.xml │ │ │ ├── ibm85n157.xml │ │ │ ├── ibm85n158.xml │ │ │ ├── ibm85n159.xml │ │ │ ├── ibm85n16.xml │ │ │ ├── ibm85n160.xml │ │ │ ├── ibm85n161.xml │ │ │ ├── ibm85n162.xml │ │ │ ├── ibm85n163.xml │ │ │ ├── ibm85n164.xml │ │ │ ├── ibm85n165.xml │ │ │ ├── ibm85n166.xml │ │ │ ├── ibm85n167.xml │ │ │ ├── ibm85n168.xml │ │ │ ├── ibm85n169.xml │ │ │ ├── ibm85n17.xml │ │ │ ├── ibm85n170.xml │ │ │ ├── ibm85n171.xml │ │ │ ├── ibm85n172.xml │ │ │ ├── ibm85n173.xml │ │ │ ├── ibm85n174.xml │ │ │ ├── ibm85n175.xml │ │ │ ├── ibm85n176.xml │ │ │ ├── ibm85n177.xml │ │ │ ├── ibm85n178.xml │ │ │ ├── ibm85n179.xml │ │ │ ├── ibm85n18.xml │ │ │ ├── ibm85n180.xml │ │ │ ├── ibm85n181.xml │ │ │ ├── ibm85n182.xml │ │ │ ├── ibm85n183.xml │ │ │ ├── ibm85n184.xml │ │ │ ├── ibm85n185.xml │ │ │ ├── ibm85n186.xml │ │ │ ├── ibm85n187.xml │ │ │ ├── ibm85n188.xml │ │ │ ├── ibm85n189.xml │ │ │ ├── ibm85n19.xml │ │ │ ├── ibm85n190.xml │ │ │ ├── ibm85n191.xml │ │ │ ├── ibm85n192.xml │ │ │ ├── ibm85n193.xml │ │ │ ├── ibm85n194.xml │ │ │ ├── ibm85n195.xml │ │ │ ├── ibm85n196.xml │ │ │ ├── ibm85n197.xml │ │ │ ├── ibm85n198.xml │ │ │ ├── ibm85n20.xml │ │ │ ├── ibm85n21.xml │ │ │ ├── ibm85n22.xml │ │ │ ├── ibm85n23.xml │ │ │ ├── ibm85n24.xml │ │ │ ├── ibm85n25.xml │ │ │ ├── ibm85n26.xml │ │ │ ├── ibm85n27.xml │ │ │ ├── ibm85n28.xml │ │ │ ├── ibm85n29.xml │ │ │ ├── ibm85n30.xml │ │ │ ├── ibm85n31.xml │ │ │ ├── ibm85n32.xml │ │ │ ├── ibm85n33.xml │ │ │ ├── ibm85n34.xml │ │ │ ├── ibm85n35.xml │ │ │ ├── ibm85n36.xml │ │ │ ├── ibm85n37.xml │ │ │ ├── ibm85n38.xml │ │ │ ├── ibm85n39.xml │ │ │ ├── ibm85n40.xml │ │ │ ├── ibm85n41.xml │ │ │ ├── ibm85n42.xml │ │ │ ├── ibm85n43.xml │ │ │ ├── ibm85n44.xml │ │ │ ├── ibm85n45.xml │ │ │ ├── ibm85n46.xml │ │ │ ├── ibm85n47.xml │ │ │ ├── ibm85n48.xml │ │ │ ├── ibm85n49.xml │ │ │ ├── ibm85n50.xml │ │ │ ├── ibm85n51.xml │ │ │ ├── ibm85n52.xml │ │ │ ├── ibm85n53.xml │ │ │ ├── ibm85n54.xml │ │ │ ├── ibm85n55.xml │ │ │ ├── ibm85n56.xml │ │ │ ├── ibm85n57.xml │ │ │ ├── ibm85n58.xml │ │ │ ├── ibm85n59.xml │ │ │ ├── ibm85n60.xml │ │ │ ├── ibm85n61.xml │ │ │ ├── ibm85n62.xml │ │ │ ├── ibm85n63.xml │ │ │ ├── ibm85n64.xml │ │ │ ├── ibm85n65.xml │ │ │ ├── ibm85n66.xml │ │ │ ├── ibm85n67.xml │ │ │ ├── ibm85n68.xml │ │ │ ├── ibm85n69.xml │ │ │ ├── ibm85n70.xml │ │ │ ├── ibm85n71.xml │ │ │ ├── ibm85n72.xml │ │ │ ├── ibm85n73.xml │ │ │ ├── ibm85n74.xml │ │ │ ├── ibm85n75.xml │ │ │ ├── ibm85n76.xml │ │ │ ├── ibm85n77.xml │ │ │ ├── ibm85n78.xml │ │ │ ├── ibm85n79.xml │ │ │ ├── ibm85n80.xml │ │ │ ├── ibm85n81.xml │ │ │ ├── ibm85n82.xml │ │ │ ├── ibm85n83.xml │ │ │ ├── ibm85n84.xml │ │ │ ├── ibm85n85.xml │ │ │ ├── ibm85n86.xml │ │ │ ├── ibm85n87.xml │ │ │ ├── ibm85n88.xml │ │ │ ├── ibm85n89.xml │ │ │ ├── ibm85n90.xml │ │ │ ├── ibm85n91.xml │ │ │ ├── ibm85n92.xml │ │ │ ├── ibm85n93.xml │ │ │ ├── ibm85n94.xml │ │ │ ├── ibm85n95.xml │ │ │ ├── ibm85n96.xml │ │ │ ├── ibm85n97.xml │ │ │ ├── ibm85n98.xml │ │ │ └── ibm85n99.xml │ │ ├── P86 │ │ │ ├── ibm86n01.xml │ │ │ ├── ibm86n02.xml │ │ │ ├── ibm86n03.xml │ │ │ └── ibm86n04.xml │ │ ├── P87 │ │ │ ├── ibm87n01.xml │ │ │ ├── ibm87n02.xml │ │ │ ├── ibm87n03.xml │ │ │ ├── ibm87n04.xml │ │ │ ├── ibm87n05.xml │ │ │ ├── ibm87n06.xml │ │ │ ├── ibm87n07.xml │ │ │ ├── ibm87n08.xml │ │ │ ├── ibm87n09.xml │ │ │ ├── ibm87n10.xml │ │ │ ├── ibm87n11.xml │ │ │ ├── ibm87n12.xml │ │ │ ├── ibm87n13.xml │ │ │ ├── ibm87n14.xml │ │ │ ├── ibm87n15.xml │ │ │ ├── ibm87n16.xml │ │ │ ├── ibm87n17.xml │ │ │ ├── ibm87n18.xml │ │ │ ├── ibm87n19.xml │ │ │ ├── ibm87n20.xml │ │ │ ├── ibm87n21.xml │ │ │ ├── ibm87n22.xml │ │ │ ├── ibm87n23.xml │ │ │ ├── ibm87n24.xml │ │ │ ├── ibm87n25.xml │ │ │ ├── ibm87n26.xml │ │ │ ├── ibm87n27.xml │ │ │ ├── ibm87n28.xml │ │ │ ├── ibm87n29.xml │ │ │ ├── ibm87n30.xml │ │ │ ├── ibm87n31.xml │ │ │ ├── ibm87n32.xml │ │ │ ├── ibm87n33.xml │ │ │ ├── ibm87n34.xml │ │ │ ├── ibm87n35.xml │ │ │ ├── ibm87n36.xml │ │ │ ├── ibm87n37.xml │ │ │ ├── ibm87n38.xml │ │ │ ├── ibm87n39.xml │ │ │ ├── ibm87n40.xml │ │ │ ├── ibm87n41.xml │ │ │ ├── ibm87n42.xml │ │ │ ├── ibm87n43.xml │ │ │ ├── ibm87n44.xml │ │ │ ├── ibm87n45.xml │ │ │ ├── ibm87n46.xml │ │ │ ├── ibm87n47.xml │ │ │ ├── ibm87n48.xml │ │ │ ├── ibm87n49.xml │ │ │ ├── ibm87n50.xml │ │ │ ├── ibm87n51.xml │ │ │ ├── ibm87n52.xml │ │ │ ├── ibm87n53.xml │ │ │ ├── ibm87n54.xml │ │ │ ├── ibm87n55.xml │ │ │ ├── ibm87n56.xml │ │ │ ├── ibm87n57.xml │ │ │ ├── ibm87n58.xml │ │ │ ├── ibm87n59.xml │ │ │ ├── ibm87n60.xml │ │ │ ├── ibm87n61.xml │ │ │ ├── ibm87n62.xml │ │ │ ├── ibm87n63.xml │ │ │ ├── ibm87n64.xml │ │ │ ├── ibm87n66.xml │ │ │ ├── ibm87n67.xml │ │ │ ├── ibm87n68.xml │ │ │ ├── ibm87n69.xml │ │ │ ├── ibm87n70.xml │ │ │ ├── ibm87n71.xml │ │ │ ├── ibm87n72.xml │ │ │ ├── ibm87n73.xml │ │ │ ├── ibm87n74.xml │ │ │ ├── ibm87n75.xml │ │ │ ├── ibm87n76.xml │ │ │ ├── ibm87n77.xml │ │ │ ├── ibm87n78.xml │ │ │ ├── ibm87n79.xml │ │ │ ├── ibm87n80.xml │ │ │ ├── ibm87n81.xml │ │ │ ├── ibm87n82.xml │ │ │ ├── ibm87n83.xml │ │ │ ├── ibm87n84.xml │ │ │ └── ibm87n85.xml │ │ ├── P88 │ │ │ ├── ibm88n01.xml │ │ │ ├── ibm88n02.xml │ │ │ ├── ibm88n03.xml │ │ │ ├── ibm88n04.xml │ │ │ ├── ibm88n05.xml │ │ │ ├── ibm88n06.xml │ │ │ ├── ibm88n08.xml │ │ │ ├── ibm88n09.xml │ │ │ ├── ibm88n10.xml │ │ │ ├── ibm88n11.xml │ │ │ ├── ibm88n12.xml │ │ │ ├── ibm88n13.xml │ │ │ ├── ibm88n14.xml │ │ │ ├── ibm88n15.xml │ │ │ └── ibm88n16.xml │ │ ├── P89 │ │ │ ├── ibm89n01.xml │ │ │ ├── ibm89n02.xml │ │ │ ├── ibm89n03.xml │ │ │ ├── ibm89n04.xml │ │ │ ├── ibm89n05.xml │ │ │ ├── ibm89n06.xml │ │ │ ├── ibm89n07.xml │ │ │ ├── ibm89n08.xml │ │ │ ├── ibm89n09.xml │ │ │ ├── ibm89n10.xml │ │ │ ├── ibm89n11.xml │ │ │ └── ibm89n12.xml │ │ ├── misc │ │ │ ├── 432gewf.xml │ │ │ ├── ltinentval.xml │ │ │ └── simpleltinentval.xml │ │ └── p28a │ │ │ ├── ibm28an01.dtd │ │ │ └── ibm28an01.xml │ ├── valid │ │ ├── P01 │ │ │ ├── ibm01v01.xml │ │ │ └── out │ │ │ │ └── ibm01v01.xml │ │ ├── P02 │ │ │ ├── ibm02v01.xml │ │ │ └── out │ │ │ │ └── ibm02v01.xml │ │ ├── P03 │ │ │ ├── ibm03v01.xml │ │ │ └── out │ │ │ │ └── ibm03v01.xml │ │ ├── P09 │ │ │ ├── ibm09v01.xml │ │ │ ├── ibm09v02.xml │ │ │ ├── ibm09v03.dtd │ │ │ ├── ibm09v03.xml │ │ │ ├── ibm09v04.xml │ │ │ ├── ibm09v05.xml │ │ │ ├── out │ │ │ │ ├── ibm09v01.xml │ │ │ │ ├── ibm09v02.xml │ │ │ │ ├── ibm09v03.xml │ │ │ │ ├── ibm09v04.xml │ │ │ │ └── ibm09v05.xml │ │ │ └── student.dtd │ │ ├── P10 │ │ │ ├── ibm10v01.xml │ │ │ ├── ibm10v02.xml │ │ │ ├── ibm10v03.xml │ │ │ ├── ibm10v04.xml │ │ │ ├── ibm10v05.xml │ │ │ ├── ibm10v06.xml │ │ │ ├── ibm10v07.xml │ │ │ ├── ibm10v08.xml │ │ │ └── out │ │ │ │ ├── ibm10v01.xml │ │ │ │ ├── ibm10v02.xml │ │ │ │ ├── ibm10v03.xml │ │ │ │ ├── ibm10v04.xml │ │ │ │ ├── ibm10v05.xml │ │ │ │ ├── ibm10v06.xml │ │ │ │ ├── ibm10v07.xml │ │ │ │ └── ibm10v08.xml │ │ ├── P11 │ │ │ ├── ibm11v01.xml │ │ │ ├── ibm11v02.xml │ │ │ ├── ibm11v03.xml │ │ │ ├── ibm11v04.xml │ │ │ ├── out │ │ │ │ ├── ibm11v01.xml │ │ │ │ ├── ibm11v02.xml │ │ │ │ ├── ibm11v03.xml │ │ │ │ └── ibm11v04.xml │ │ │ └── student.dtd │ │ ├── P12 │ │ │ ├── ibm12v01.xml │ │ │ ├── ibm12v02.xml │ │ │ ├── ibm12v03.xml │ │ │ ├── ibm12v04.xml │ │ │ ├── out │ │ │ │ ├── ibm12v01.xml │ │ │ │ ├── ibm12v02.xml │ │ │ │ ├── ibm12v03.xml │ │ │ │ └── ibm12v04.xml │ │ │ └── student.dtd │ │ ├── P13 │ │ │ ├── ibm13v01.xml │ │ │ ├── out │ │ │ │ └── ibm13v01.xml │ │ │ └── student.dtd │ │ ├── P14 │ │ │ ├── ibm14v01.xml │ │ │ ├── ibm14v02.xml │ │ │ ├── ibm14v03.xml │ │ │ └── out │ │ │ │ ├── ibm14v01.xml │ │ │ │ ├── ibm14v02.xml │ │ │ │ └── ibm14v03.xml │ │ ├── P15 │ │ │ ├── ibm15v01.xml │ │ │ ├── ibm15v02.xml │ │ │ ├── ibm15v03.xml │ │ │ ├── ibm15v04.xml │ │ │ └── out │ │ │ │ ├── ibm15v01.xml │ │ │ │ ├── ibm15v02.xml │ │ │ │ ├── ibm15v03.xml │ │ │ │ └── ibm15v04.xml │ │ ├── P16 │ │ │ ├── ibm16v01.xml │ │ │ ├── ibm16v02.xml │ │ │ ├── ibm16v03.xml │ │ │ └── out │ │ │ │ ├── ibm16v01.xml │ │ │ │ ├── ibm16v02.xml │ │ │ │ └── ibm16v03.xml │ │ ├── P17 │ │ │ ├── ibm17v01.xml │ │ │ └── out │ │ │ │ └── ibm17v01.xml │ │ ├── P18 │ │ │ ├── ibm18v01.xml │ │ │ └── out │ │ │ │ └── ibm18v01.xml │ │ ├── P19 │ │ │ ├── ibm19v01.xml │ │ │ └── out │ │ │ │ └── ibm19v01.xml │ │ ├── P20 │ │ │ ├── ibm20v01.xml │ │ │ ├── ibm20v02.xml │ │ │ └── out │ │ │ │ ├── ibm20v01.xml │ │ │ │ └── ibm20v02.xml │ │ ├── P21 │ │ │ ├── ibm21v01.xml │ │ │ └── out │ │ │ │ └── ibm21v01.xml │ │ ├── P22 │ │ │ ├── ibm22v01.xml │ │ │ ├── ibm22v02.xml │ │ │ ├── ibm22v03.xml │ │ │ ├── ibm22v04.xml │ │ │ ├── ibm22v05.xml │ │ │ ├── ibm22v06.xml │ │ │ ├── ibm22v07.xml │ │ │ └── out │ │ │ │ ├── ibm22v01.xml │ │ │ │ ├── ibm22v02.xml │ │ │ │ ├── ibm22v03.xml │ │ │ │ ├── ibm22v04.xml │ │ │ │ ├── ibm22v05.xml │ │ │ │ ├── ibm22v06.xml │ │ │ │ └── ibm22v07.xml │ │ ├── P23 │ │ │ ├── ibm23v01.xml │ │ │ ├── ibm23v02.xml │ │ │ ├── ibm23v03.xml │ │ │ ├── ibm23v04.xml │ │ │ ├── ibm23v05.xml │ │ │ ├── ibm23v06.xml │ │ │ └── out │ │ │ │ ├── ibm23v01.xml │ │ │ │ ├── ibm23v02.xml │ │ │ │ ├── ibm23v03.xml │ │ │ │ ├── ibm23v04.xml │ │ │ │ ├── ibm23v05.xml │ │ │ │ └── ibm23v06.xml │ │ ├── P24 │ │ │ ├── ibm24v01.xml │ │ │ ├── ibm24v02.xml │ │ │ └── out │ │ │ │ ├── ibm24v01.xml │ │ │ │ └── ibm24v02.xml │ │ ├── P25 │ │ │ ├── ibm25v01.xml │ │ │ ├── ibm25v02.xml │ │ │ ├── ibm25v03.xml │ │ │ ├── ibm25v04.xml │ │ │ └── out │ │ │ │ ├── ibm25v01.xml │ │ │ │ ├── ibm25v02.xml │ │ │ │ ├── ibm25v03.xml │ │ │ │ └── ibm25v04.xml │ │ ├── P26 │ │ │ ├── ibm26v01.xml │ │ │ └── out │ │ │ │ └── ibm26v01.xml │ │ ├── P27 │ │ │ ├── ibm27v01.xml │ │ │ ├── ibm27v02.xml │ │ │ ├── ibm27v03.xml │ │ │ └── out │ │ │ │ ├── ibm27v01.xml │ │ │ │ ├── ibm27v02.xml │ │ │ │ └── ibm27v03.xml │ │ ├── P28 │ │ │ ├── ibm28v01.xml │ │ │ ├── ibm28v02.dtd │ │ │ ├── ibm28v02.txt │ │ │ ├── ibm28v02.xml │ │ │ └── out │ │ │ │ ├── ibm28v01.xml │ │ │ │ └── ibm28v02.xml │ │ ├── P29 │ │ │ ├── ibm29v01.txt │ │ │ ├── ibm29v01.xml │ │ │ ├── ibm29v02.xml │ │ │ └── out │ │ │ │ ├── ibm29v01.xml │ │ │ │ └── ibm29v02.xml │ │ ├── P30 │ │ │ ├── ibm30v01.dtd │ │ │ ├── ibm30v01.xml │ │ │ ├── ibm30v02.dtd │ │ │ ├── ibm30v02.xml │ │ │ └── out │ │ │ │ ├── ibm30v01.xml │ │ │ │ └── ibm30v02.xml │ │ ├── P31 │ │ │ ├── ibm31v01.dtd │ │ │ ├── ibm31v01.xml │ │ │ └── out │ │ │ │ └── ibm31v01.xml │ │ ├── P32 │ │ │ ├── ibm32v01.dtd │ │ │ ├── ibm32v01.xml │ │ │ ├── ibm32v02.dtd │ │ │ ├── ibm32v02.xml │ │ │ ├── ibm32v03.dtd │ │ │ ├── ibm32v03.xml │ │ │ ├── ibm32v04.dtd │ │ │ ├── ibm32v04.xml │ │ │ └── out │ │ │ │ ├── ibm32v01.xml │ │ │ │ ├── ibm32v02.xml │ │ │ │ ├── ibm32v03.xml │ │ │ │ └── ibm32v04.xml │ │ ├── P33 │ │ │ ├── ibm33v01.xml │ │ │ └── out │ │ │ │ └── ibm33v01.xml │ │ ├── P34 │ │ │ ├── ibm34v01.xml │ │ │ └── out │ │ │ │ └── ibm34v01.xml │ │ ├── P35 │ │ │ ├── ibm35v01.xml │ │ │ └── out │ │ │ │ └── ibm35v01.xml │ │ ├── P36 │ │ │ ├── ibm36v01.xml │ │ │ └── out │ │ │ │ └── ibm36v01.xml │ │ ├── P37 │ │ │ ├── ibm37v01.xml │ │ │ └── out │ │ │ │ └── ibm37v01.xml │ │ ├── P38 │ │ │ ├── ibm38v01.xml │ │ │ └── out │ │ │ │ └── ibm38v01.xml │ │ ├── P39 │ │ │ ├── ibm39v01.xml │ │ │ └── out │ │ │ │ └── ibm39v01.xml │ │ ├── P40 │ │ │ ├── ibm40v01.xml │ │ │ └── out │ │ │ │ └── ibm40v01.xml │ │ ├── P41 │ │ │ ├── ibm41v01.xml │ │ │ └── out │ │ │ │ └── ibm41v01.xml │ │ ├── P42 │ │ │ ├── ibm42v01.xml │ │ │ └── out │ │ │ │ └── ibm42v01.xml │ │ ├── P43 │ │ │ ├── ibm43v01.xml │ │ │ └── out │ │ │ │ └── ibm43v01.xml │ │ ├── P44 │ │ │ ├── ibm44v01.xml │ │ │ └── out │ │ │ │ └── ibm44v01.xml │ │ ├── P45 │ │ │ ├── ibm45v01.xml │ │ │ └── out │ │ │ │ └── ibm45v01.xml │ │ ├── P47 │ │ │ ├── ibm47v01.xml │ │ │ └── out │ │ │ │ └── ibm47v01.xml │ │ ├── P49 │ │ │ ├── ibm49v01.dtd │ │ │ ├── ibm49v01.xml │ │ │ └── out │ │ │ │ └── ibm49v01.xml │ │ ├── P50 │ │ │ ├── ibm50v01.dtd │ │ │ ├── ibm50v01.xml │ │ │ └── out │ │ │ │ └── ibm50v01.xml │ │ ├── P51 │ │ │ ├── ibm51v01.xml │ │ │ ├── ibm51v02.dtd │ │ │ ├── ibm51v02.xml │ │ │ └── out │ │ │ │ ├── ibm51v01.xml │ │ │ │ └── ibm51v02.xml │ │ ├── P52 │ │ │ ├── ibm52v01.xml │ │ │ └── out │ │ │ │ └── ibm52v01.xml │ │ ├── P54 │ │ │ ├── ibm54v01.xml │ │ │ ├── ibm54v02.xml │ │ │ ├── ibm54v03.xml │ │ │ ├── ibmlogo.gif │ │ │ ├── out │ │ │ │ ├── ibm54v01.xml │ │ │ │ ├── ibm54v02.xml │ │ │ │ └── ibm54v03.xml │ │ │ └── xmltech.gif │ │ ├── P55 │ │ │ ├── ibm55v01.xml │ │ │ └── out │ │ │ │ └── ibm55v01.xml │ │ ├── P56 │ │ │ ├── ibm56v01.xml │ │ │ ├── ibm56v02.xml │ │ │ ├── ibm56v03.xml │ │ │ ├── ibm56v04.xml │ │ │ ├── ibm56v05.xml │ │ │ ├── ibm56v06.xml │ │ │ ├── ibm56v07.xml │ │ │ ├── ibm56v08.xml │ │ │ ├── ibm56v09.xml │ │ │ ├── ibm56v10.xml │ │ │ └── out │ │ │ │ ├── ibm56v01.xml │ │ │ │ ├── ibm56v02.xml │ │ │ │ ├── ibm56v03.xml │ │ │ │ ├── ibm56v04.xml │ │ │ │ ├── ibm56v05.xml │ │ │ │ ├── ibm56v06.xml │ │ │ │ ├── ibm56v07.xml │ │ │ │ ├── ibm56v08.xml │ │ │ │ ├── ibm56v09.xml │ │ │ │ └── ibm56v10.xml │ │ ├── P57 │ │ │ ├── ibm57v01.xml │ │ │ └── out │ │ │ │ └── ibm57v01.xml │ │ ├── P58 │ │ │ ├── ibm58v01.xml │ │ │ ├── ibm58v02.xml │ │ │ └── out │ │ │ │ ├── ibm58v01.xml │ │ │ │ └── ibm58v02.xml │ │ ├── P59 │ │ │ ├── ibm59v01.xml │ │ │ ├── ibm59v02.xml │ │ │ └── out │ │ │ │ ├── ibm59v01.xml │ │ │ │ └── ibm59v02.xml │ │ ├── P60 │ │ │ ├── ibm60v01.xml │ │ │ ├── ibm60v02.xml │ │ │ ├── ibm60v03.xml │ │ │ ├── ibm60v04.xml │ │ │ └── out │ │ │ │ ├── ibm60v01.xml │ │ │ │ ├── ibm60v02.xml │ │ │ │ ├── ibm60v03.xml │ │ │ │ └── ibm60v04.xml │ │ ├── P61 │ │ │ ├── ibm61v01.dtd │ │ │ ├── ibm61v01.xml │ │ │ ├── ibm61v02.dtd │ │ │ ├── ibm61v02.xml │ │ │ └── out │ │ │ │ ├── ibm61v01.xml │ │ │ │ └── ibm61v02.xml │ │ ├── P62 │ │ │ ├── ibm62v01.dtd │ │ │ ├── ibm62v01.xml │ │ │ ├── ibm62v02.dtd │ │ │ ├── ibm62v02.xml │ │ │ ├── ibm62v03.dtd │ │ │ ├── ibm62v03.xml │ │ │ ├── ibm62v04.dtd │ │ │ ├── ibm62v04.xml │ │ │ ├── ibm62v05.dtd │ │ │ ├── ibm62v05.xml │ │ │ └── out │ │ │ │ ├── ibm62v01.xml │ │ │ │ ├── ibm62v02.xml │ │ │ │ ├── ibm62v03.xml │ │ │ │ ├── ibm62v04.xml │ │ │ │ └── ibm62v05.xml │ │ ├── P63 │ │ │ ├── ibm63v01.dtd │ │ │ ├── ibm63v01.xml │ │ │ ├── ibm63v02.dtd │ │ │ ├── ibm63v02.xml │ │ │ ├── ibm63v03.dtd │ │ │ ├── ibm63v03.xml │ │ │ ├── ibm63v04.dtd │ │ │ ├── ibm63v04.xml │ │ │ ├── ibm63v05.dtd │ │ │ ├── ibm63v05.xml │ │ │ └── out │ │ │ │ ├── ibm63v01.xml │ │ │ │ ├── ibm63v02.xml │ │ │ │ ├── ibm63v03.xml │ │ │ │ ├── ibm63v04.xml │ │ │ │ └── ibm63v05.xml │ │ ├── P64 │ │ │ ├── ibm64v01.dtd │ │ │ ├── ibm64v01.xml │ │ │ ├── ibm64v02.dtd │ │ │ ├── ibm64v02.xml │ │ │ ├── ibm64v03.dtd │ │ │ ├── ibm64v03.xml │ │ │ └── out │ │ │ │ ├── ibm64v01.xml │ │ │ │ ├── ibm64v02.xml │ │ │ │ └── ibm64v03.xml │ │ ├── P65 │ │ │ ├── ibm65v01.dtd │ │ │ ├── ibm65v01.xml │ │ │ ├── ibm65v02.dtd │ │ │ ├── ibm65v02.xml │ │ │ └── out │ │ │ │ ├── ibm65v01.xml │ │ │ │ └── ibm65v02.xml │ │ ├── P66 │ │ │ ├── ibm66v01.xml │ │ │ └── out │ │ │ │ └── ibm66v01.xml │ │ ├── P67 │ │ │ ├── ibm67v01.xml │ │ │ └── out │ │ │ │ └── ibm67v01.xml │ │ ├── P68 │ │ │ ├── ibm68v01.dtd │ │ │ ├── ibm68v01.xml │ │ │ ├── ibm68v02.ent │ │ │ ├── ibm68v02.xml │ │ │ └── out │ │ │ │ ├── ibm68v01.xml │ │ │ │ └── ibm68v02.xml │ │ ├── P69 │ │ │ ├── ibm69v01.dtd │ │ │ ├── ibm69v01.xml │ │ │ ├── ibm69v02.ent │ │ │ ├── ibm69v02.xml │ │ │ └── out │ │ │ │ ├── ibm69v01.xml │ │ │ │ └── ibm69v02.xml │ │ ├── P70 │ │ │ ├── ibm70v01.ent │ │ │ ├── ibm70v01.xml │ │ │ └── out │ │ │ │ └── ibm70v01.xml │ │ ├── P78 │ │ │ ├── ibm78v01.ent │ │ │ ├── ibm78v01.xml │ │ │ ├── ibm78v02.ent │ │ │ ├── ibm78v03.ent │ │ │ └── out │ │ │ │ └── ibm78v01.xml │ │ ├── P79 │ │ │ ├── ibm79v01.ent │ │ │ ├── ibm79v01.xml │ │ │ └── out │ │ │ │ └── ibm79v01.xml │ │ ├── P82 │ │ │ ├── ibm82v01.xml │ │ │ └── out │ │ │ │ └── ibm82v01.xml │ │ ├── P85 │ │ │ ├── ibm85v01.xml │ │ │ └── out │ │ │ │ └── ibm85v01.xml │ │ ├── P86 │ │ │ ├── ibm86v01.xml │ │ │ └── out │ │ │ │ └── ibm86v01.xml │ │ ├── P87 │ │ │ ├── ibm87v01.xml │ │ │ └── out │ │ │ │ └── ibm87v01.xml │ │ ├── P88 │ │ │ ├── ibm88v01.xml │ │ │ └── out │ │ │ │ └── ibm88v01.xml │ │ └── P89 │ │ │ ├── ibm89v01.xml │ │ │ └── out │ │ │ └── ibm89v01.xml │ └── xml-1.1 │ │ ├── ibm_invalid.xml │ │ ├── ibm_not-wf.xml │ │ ├── ibm_valid.xml │ │ ├── invalid │ │ └── P46 │ │ │ ├── ibm46i01.xml │ │ │ └── ibm46i02.xml │ │ ├── not-wf │ │ ├── P02 │ │ │ ├── ibm02n01.xml │ │ │ ├── ibm02n02.xml │ │ │ ├── ibm02n03.xml │ │ │ ├── ibm02n04.xml │ │ │ ├── ibm02n05.xml │ │ │ ├── ibm02n06.xml │ │ │ ├── ibm02n07.xml │ │ │ ├── ibm02n08.xml │ │ │ ├── ibm02n09.xml │ │ │ ├── ibm02n10.xml │ │ │ ├── ibm02n11.xml │ │ │ ├── ibm02n12.xml │ │ │ ├── ibm02n13.xml │ │ │ ├── ibm02n14.xml │ │ │ ├── ibm02n15.xml │ │ │ ├── ibm02n16.xml │ │ │ ├── ibm02n17.xml │ │ │ ├── ibm02n18.xml │ │ │ ├── ibm02n19.xml │ │ │ ├── ibm02n20.xml │ │ │ ├── ibm02n21.xml │ │ │ ├── ibm02n22.xml │ │ │ ├── ibm02n23.xml │ │ │ ├── ibm02n24.xml │ │ │ ├── ibm02n25.xml │ │ │ ├── ibm02n26.xml │ │ │ ├── ibm02n27.xml │ │ │ ├── ibm02n28.xml │ │ │ ├── ibm02n29.xml │ │ │ ├── ibm02n30.xml │ │ │ ├── ibm02n31.xml │ │ │ ├── ibm02n32.xml │ │ │ ├── ibm02n33.xml │ │ │ ├── ibm02n34.xml │ │ │ ├── ibm02n35.xml │ │ │ ├── ibm02n36.xml │ │ │ ├── ibm02n37.xml │ │ │ ├── ibm02n38.xml │ │ │ ├── ibm02n39.xml │ │ │ ├── ibm02n40.xml │ │ │ ├── ibm02n41.xml │ │ │ ├── ibm02n42.xml │ │ │ ├── ibm02n43.xml │ │ │ ├── ibm02n44.xml │ │ │ ├── ibm02n45.xml │ │ │ ├── ibm02n46.xml │ │ │ ├── ibm02n47.xml │ │ │ ├── ibm02n48.xml │ │ │ ├── ibm02n49.xml │ │ │ ├── ibm02n50.xml │ │ │ ├── ibm02n51.xml │ │ │ ├── ibm02n52.xml │ │ │ ├── ibm02n53.xml │ │ │ ├── ibm02n54.xml │ │ │ ├── ibm02n55.xml │ │ │ ├── ibm02n56.xml │ │ │ ├── ibm02n57.xml │ │ │ ├── ibm02n58.xml │ │ │ ├── ibm02n59.xml │ │ │ ├── ibm02n60.xml │ │ │ ├── ibm02n61.xml │ │ │ ├── ibm02n62.xml │ │ │ ├── ibm02n63.xml │ │ │ ├── ibm02n64.ent │ │ │ ├── ibm02n64.xml │ │ │ ├── ibm02n65.ent │ │ │ ├── ibm02n65.xml │ │ │ ├── ibm02n66.ent │ │ │ ├── ibm02n66.xml │ │ │ ├── ibm02n67.xml │ │ │ ├── ibm02n68.xml │ │ │ ├── ibm02n69.xml │ │ │ ├── ibm02n70.xml │ │ │ └── ibm02n71.xml │ │ ├── P04 │ │ │ ├── ibm04n01.xml │ │ │ ├── ibm04n02.xml │ │ │ ├── ibm04n03.xml │ │ │ ├── ibm04n04.xml │ │ │ ├── ibm04n05.xml │ │ │ ├── ibm04n06.xml │ │ │ ├── ibm04n07.xml │ │ │ ├── ibm04n08.xml │ │ │ ├── ibm04n09.xml │ │ │ ├── ibm04n10.xml │ │ │ ├── ibm04n11.xml │ │ │ ├── ibm04n12.xml │ │ │ ├── ibm04n13.xml │ │ │ ├── ibm04n14.xml │ │ │ ├── ibm04n15.xml │ │ │ ├── ibm04n16.xml │ │ │ ├── ibm04n17.xml │ │ │ ├── ibm04n18.xml │ │ │ ├── ibm04n19.xml │ │ │ ├── ibm04n20.xml │ │ │ ├── ibm04n21.xml │ │ │ ├── ibm04n22.xml │ │ │ ├── ibm04n23.xml │ │ │ ├── ibm04n24.xml │ │ │ ├── ibm04n25.xml │ │ │ ├── ibm04n26.xml │ │ │ ├── ibm04n27.xml │ │ │ └── ibm04n28.xml │ │ ├── P04a │ │ │ ├── ibm04an01.xml │ │ │ ├── ibm04an02.xml │ │ │ ├── ibm04an03.xml │ │ │ ├── ibm04an04.xml │ │ │ ├── ibm04an05.xml │ │ │ ├── ibm04an06.xml │ │ │ ├── ibm04an07.xml │ │ │ ├── ibm04an08.xml │ │ │ ├── ibm04an09.xml │ │ │ ├── ibm04an10.xml │ │ │ ├── ibm04an11.xml │ │ │ ├── ibm04an12.xml │ │ │ ├── ibm04an13.xml │ │ │ ├── ibm04an14.xml │ │ │ ├── ibm04an15.xml │ │ │ ├── ibm04an16.xml │ │ │ ├── ibm04an17.xml │ │ │ ├── ibm04an18.xml │ │ │ ├── ibm04an19.xml │ │ │ ├── ibm04an20.xml │ │ │ ├── ibm04an21.xml │ │ │ ├── ibm04an22.xml │ │ │ ├── ibm04an23.xml │ │ │ ├── ibm04an24.xml │ │ │ ├── ibm04an25.xml │ │ │ ├── ibm04an26.xml │ │ │ ├── ibm04an27.xml │ │ │ └── ibm04an28.xml │ │ ├── P05 │ │ │ ├── ibm05n01.xml │ │ │ ├── ibm05n02.xml │ │ │ ├── ibm05n03.xml │ │ │ ├── ibm05n04.xml │ │ │ ├── ibm05n05.xml │ │ │ └── ibm05n06.xml │ │ └── P77 │ │ │ ├── ibm77n01.dtd │ │ │ ├── ibm77n01.xml │ │ │ ├── ibm77n02.dtd │ │ │ ├── ibm77n02.xml │ │ │ ├── ibm77n03.dtd │ │ │ ├── ibm77n03.xml │ │ │ ├── ibm77n04.ent │ │ │ ├── ibm77n04.xml │ │ │ ├── ibm77n05.ent │ │ │ ├── ibm77n05.xml │ │ │ ├── ibm77n06.ent │ │ │ ├── ibm77n06.xml │ │ │ ├── ibm77n07.dtd │ │ │ ├── ibm77n07.xml │ │ │ ├── ibm77n08.dtd │ │ │ ├── ibm77n08.xml │ │ │ ├── ibm77n09.dtd │ │ │ ├── ibm77n09.xml │ │ │ ├── ibm77n10.ent │ │ │ ├── ibm77n10.xml │ │ │ ├── ibm77n11.ent │ │ │ ├── ibm77n11.xml │ │ │ ├── ibm77n12.ent │ │ │ ├── ibm77n12.xml │ │ │ ├── ibm77n13.dtd │ │ │ ├── ibm77n13.ent │ │ │ ├── ibm77n13.xml │ │ │ ├── ibm77n14.dtd │ │ │ ├── ibm77n14.xml │ │ │ ├── ibm77n15.dtd │ │ │ ├── ibm77n15.ent │ │ │ ├── ibm77n15.xml │ │ │ ├── ibm77n16.ent │ │ │ ├── ibm77n16.xml │ │ │ ├── ibm77n17.ent │ │ │ ├── ibm77n17.xml │ │ │ ├── ibm77n18.ent │ │ │ ├── ibm77n18.xml │ │ │ ├── ibm77n19.dtd │ │ │ ├── ibm77n19.ent │ │ │ ├── ibm77n19.xml │ │ │ ├── ibm77n20.dtd │ │ │ ├── ibm77n20.ent │ │ │ ├── ibm77n20.xml │ │ │ ├── ibm77n21.dtd │ │ │ ├── ibm77n21.ent │ │ │ └── ibm77n21.xml │ │ └── valid │ │ ├── P02 │ │ ├── ibm02v01.xml │ │ ├── ibm02v02.xml │ │ ├── ibm02v03.xml │ │ ├── ibm02v04.xml │ │ ├── ibm02v05.xml │ │ ├── ibm02v06.ent │ │ └── ibm02v06.xml │ │ ├── P03 │ │ ├── ibm03v01.ent │ │ ├── ibm03v01.xml │ │ ├── ibm03v02.ent │ │ ├── ibm03v02.xml │ │ ├── ibm03v03.ent │ │ ├── ibm03v03.xml │ │ ├── ibm03v04.ent │ │ ├── ibm03v04.xml │ │ ├── ibm03v05.xml │ │ ├── ibm03v06.xml │ │ ├── ibm03v07.xml │ │ ├── ibm03v08.xml │ │ ├── ibm03v09.ent │ │ ├── ibm03v09.xml │ │ └── out │ │ │ ├── ibm03v01.xml │ │ │ ├── ibm03v02.xml │ │ │ ├── ibm03v03.xml │ │ │ ├── ibm03v04.xml │ │ │ ├── ibm03v05.xml │ │ │ ├── ibm03v06.xml │ │ │ ├── ibm03v07.xml │ │ │ ├── ibm03v08.xml │ │ │ └── ibm03v09.xml │ │ ├── P04 │ │ └── ibm04v01.xml │ │ ├── P04a │ │ └── ibm04av01.xml │ │ ├── P05 │ │ ├── ibm05v01.xml │ │ ├── ibm05v02.xml │ │ ├── ibm05v03.xml │ │ ├── ibm05v04.xml │ │ └── ibm05v05.xml │ │ ├── P07 │ │ └── ibm07v01.xml │ │ └── P77 │ │ ├── ibm77v01.dtd │ │ ├── ibm77v01.xml │ │ ├── ibm77v02.dtd │ │ ├── ibm77v02.xml │ │ ├── ibm77v03.dtd │ │ ├── ibm77v03.xml │ │ ├── ibm77v04.ent │ │ ├── ibm77v04.xml │ │ ├── ibm77v05.ent │ │ ├── ibm77v05.xml │ │ ├── ibm77v06.ent │ │ ├── ibm77v06.xml │ │ ├── ibm77v07.dtd │ │ ├── ibm77v07.xml │ │ ├── ibm77v08.dtd │ │ ├── ibm77v08.xml │ │ ├── ibm77v09.dtd │ │ ├── ibm77v09.xml │ │ ├── ibm77v10.ent │ │ ├── ibm77v10.xml │ │ ├── ibm77v11.ent │ │ ├── ibm77v11.xml │ │ ├── ibm77v12.ent │ │ ├── ibm77v12.xml │ │ ├── ibm77v13.dtd │ │ ├── ibm77v13.xml │ │ ├── ibm77v14.dtd │ │ ├── ibm77v14.xml │ │ ├── ibm77v15.dtd │ │ ├── ibm77v15.xml │ │ ├── ibm77v16.ent │ │ ├── ibm77v16.xml │ │ ├── ibm77v17.ent │ │ ├── ibm77v17.xml │ │ ├── ibm77v18.ent │ │ ├── ibm77v18.xml │ │ ├── ibm77v19.dtd │ │ ├── ibm77v19.xml │ │ ├── ibm77v20.dtd │ │ ├── ibm77v20.xml │ │ ├── ibm77v21.dtd │ │ ├── ibm77v21.xml │ │ ├── ibm77v22.ent │ │ ├── ibm77v22.xml │ │ ├── ibm77v23.ent │ │ ├── ibm77v23.xml │ │ ├── ibm77v24.ent │ │ ├── ibm77v24.xml │ │ ├── ibm77v25.dtd │ │ ├── ibm77v25.xml │ │ ├── ibm77v26.dtd │ │ ├── ibm77v26.xml │ │ ├── ibm77v27.dtd │ │ ├── ibm77v27.xml │ │ ├── ibm77v28.ent │ │ ├── ibm77v28.xml │ │ ├── ibm77v29.ent │ │ ├── ibm77v29.xml │ │ ├── ibm77v30.ent │ │ └── ibm77v30.xml │ ├── japanese │ ├── japanese.xml │ ├── pr-xml-euc-jp.xml │ ├── pr-xml-iso-2022-jp.xml │ ├── pr-xml-little-endian.xml │ ├── pr-xml-shift_jis.xml │ ├── pr-xml-utf-16.xml │ ├── pr-xml-utf-8.xml │ ├── spec.dtd │ ├── weekly-euc-jp.dtd │ ├── weekly-euc-jp.xml │ ├── weekly-iso-2022-jp.dtd │ ├── weekly-iso-2022-jp.xml │ ├── weekly-little-endian.xml │ ├── weekly-shift_jis.dtd │ ├── weekly-shift_jis.xml │ ├── weekly-utf-16.dtd │ ├── weekly-utf-16.xml │ ├── weekly-utf-8.dtd │ └── weekly-utf-8.xml │ ├── oasis │ ├── e2.xml │ ├── oasis.xml │ ├── p01fail1.xml │ ├── p01fail2.xml │ ├── p01fail3.xml │ ├── p01fail4.xml │ ├── p01pass1.xml │ ├── p01pass2.xml │ ├── p01pass3.xml │ ├── p02fail1.xml │ ├── p02fail10.xml │ ├── p02fail11.xml │ ├── p02fail12.xml │ ├── p02fail13.xml │ ├── p02fail14.xml │ ├── p02fail15.xml │ ├── p02fail16.xml │ ├── p02fail17.xml │ ├── p02fail18.xml │ ├── p02fail19.xml │ ├── p02fail2.xml │ ├── p02fail20.xml │ ├── p02fail21.xml │ ├── p02fail22.xml │ ├── p02fail23.xml │ ├── p02fail24.xml │ ├── p02fail25.xml │ ├── p02fail26.xml │ ├── p02fail27.xml │ ├── p02fail28.xml │ ├── p02fail29.xml │ ├── p02fail3.xml │ ├── p02fail30.xml │ ├── p02fail31.xml │ ├── p02fail4.xml │ ├── p02fail5.xml │ ├── p02fail6.xml │ ├── p02fail7.xml │ ├── p02fail8.xml │ ├── p02fail9.xml │ ├── p03fail1.xml │ ├── p03fail10.xml │ ├── p03fail11.xml │ ├── p03fail12.xml │ ├── p03fail13.xml │ ├── p03fail14.xml │ ├── p03fail15.xml │ ├── p03fail16.xml │ ├── p03fail17.xml │ ├── p03fail18.xml │ ├── p03fail19.xml │ ├── p03fail2.xml │ ├── p03fail20.xml │ ├── p03fail21.xml │ ├── p03fail22.xml │ ├── p03fail23.xml │ ├── p03fail24.xml │ ├── p03fail25.xml │ ├── p03fail26.xml │ ├── p03fail27.xml │ ├── p03fail28.xml │ ├── p03fail29.xml │ ├── p03fail3.xml │ ├── p03fail4.xml │ ├── p03fail5.xml │ ├── p03fail7.xml │ ├── p03fail8.xml │ ├── p03fail9.xml │ ├── p03pass1.xml │ ├── p04fail1.xml │ ├── p04fail2.xml │ ├── p04fail3.xml │ ├── p04pass1.xml │ ├── p05fail1.xml │ ├── p05fail2.xml │ ├── p05fail3.xml │ ├── p05fail4.xml │ ├── p05fail5.xml │ ├── p05pass1.xml │ ├── p06fail1.xml │ ├── p06pass1.xml │ ├── p07pass1.xml │ ├── p08fail1.xml │ ├── p08fail2.xml │ ├── p08pass1.xml │ ├── p09fail1.dtd │ ├── p09fail1.xml │ ├── p09fail2.dtd │ ├── p09fail2.xml │ ├── p09fail3.xml │ ├── p09fail4.xml │ ├── p09fail5.xml │ ├── p09pass1.dtd │ ├── p09pass1.xml │ ├── p10fail1.xml │ ├── p10fail2.xml │ ├── p10fail3.xml │ ├── p10pass1.xml │ ├── p11fail1.xml │ ├── p11fail2.xml │ ├── p11pass1.xml │ ├── p12fail1.xml │ ├── p12fail2.xml │ ├── p12fail3.xml │ ├── p12fail4.xml │ ├── p12fail5.xml │ ├── p12fail6.xml │ ├── p12fail7.xml │ ├── p12pass1.xml │ ├── p14fail1.xml │ ├── p14fail2.xml │ ├── p14fail3.xml │ ├── p14pass1.xml │ ├── p15fail1.xml │ ├── p15fail2.xml │ ├── p15fail3.xml │ ├── p15pass1.xml │ ├── p16fail1.xml │ ├── p16fail2.xml │ ├── p16fail3.xml │ ├── p16pass1.xml │ ├── p16pass2.xml │ ├── p16pass3.xml │ ├── p18fail1.xml │ ├── p18fail2.xml │ ├── p18fail3.xml │ ├── p18pass1.xml │ ├── p22fail1.xml │ ├── p22fail2.xml │ ├── p22pass1.xml │ ├── p22pass2.xml │ ├── p22pass3.xml │ ├── p22pass4.xml │ ├── p22pass5.xml │ ├── p22pass6.xml │ ├── p23fail1.xml │ ├── p23fail2.xml │ ├── p23fail3.xml │ ├── p23fail4.xml │ ├── p23fail5.xml │ ├── p23pass1.xml │ ├── p23pass2.xml │ ├── p23pass3.xml │ ├── p23pass4.xml │ ├── p24fail1.xml │ ├── p24fail2.xml │ ├── p24pass1.xml │ ├── p24pass2.xml │ ├── p24pass3.xml │ ├── p24pass4.xml │ ├── p25fail1.xml │ ├── p25pass1.xml │ ├── p25pass2.xml │ ├── p26fail1.xml │ ├── p26fail2.xml │ ├── p26pass1.xml │ ├── p27fail1.xml │ ├── p27pass1.xml │ ├── p27pass2.xml │ ├── p27pass3.xml │ ├── p27pass4.xml │ ├── p28fail1.xml │ ├── p28pass1.xml │ ├── p28pass2.xml │ ├── p28pass3.xml │ ├── p28pass4.dtd │ ├── p28pass4.xml │ ├── p28pass5.dtd │ ├── p28pass5.xml │ ├── p29fail1.xml │ ├── p29pass1.xml │ ├── p30fail1.dtd │ ├── p30fail1.xml │ ├── p30pass1.dtd │ ├── p30pass1.xml │ ├── p30pass2.dtd │ ├── p30pass2.xml │ ├── p31fail1.dtd │ ├── p31fail1.xml │ ├── p31pass1.dtd │ ├── p31pass1.xml │ ├── p31pass2.dtd │ ├── p31pass2.xml │ ├── p32fail1.xml │ ├── p32fail2.xml │ ├── p32fail3.xml │ ├── p32fail4.xml │ ├── p32fail5.xml │ ├── p32pass1.xml │ ├── p32pass2.xml │ ├── p39fail1.xml │ ├── p39fail2.xml │ ├── p39fail3.xml │ ├── p39fail4.xml │ ├── p39fail5.xml │ ├── p39pass1.xml │ ├── p39pass2.xml │ ├── p40fail1.xml │ ├── p40fail2.xml │ ├── p40fail3.xml │ ├── p40fail4.xml │ ├── p40pass1.xml │ ├── p40pass2.xml │ ├── p40pass3.xml │ ├── p40pass4.xml │ ├── p41fail1.xml │ ├── p41fail2.xml │ ├── p41fail3.xml │ ├── p41pass1.xml │ ├── p41pass2.xml │ ├── p42fail1.xml │ ├── p42fail2.xml │ ├── p42fail3.xml │ ├── p42pass1.xml │ ├── p42pass2.xml │ ├── p43fail1.xml │ ├── p43fail2.xml │ ├── p43fail3.xml │ ├── p43pass1.xml │ ├── p44fail1.xml │ ├── p44fail2.xml │ ├── p44fail3.xml │ ├── p44fail4.xml │ ├── p44fail5.xml │ ├── p44pass1.xml │ ├── p44pass2.xml │ ├── p44pass3.xml │ ├── p44pass4.xml │ ├── p44pass5.xml │ ├── p45fail1.xml │ ├── p45fail2.xml │ ├── p45fail3.xml │ ├── p45fail4.xml │ ├── p45pass1.xml │ ├── p46fail1.xml │ ├── p46fail2.xml │ ├── p46fail3.xml │ ├── p46fail4.xml │ ├── p46fail5.xml │ ├── p46fail6.xml │ ├── p46pass1.xml │ ├── p47fail1.xml │ ├── p47fail2.xml │ ├── p47fail3.xml │ ├── p47fail4.xml │ ├── p47pass1.xml │ ├── p48fail1.xml │ ├── p48fail2.xml │ ├── p48pass1.xml │ ├── p49fail1.xml │ ├── p49pass1.xml │ ├── p50fail1.xml │ ├── p50pass1.xml │ ├── p51fail1.xml │ ├── p51fail2.xml │ ├── p51fail3.xml │ ├── p51fail4.xml │ ├── p51fail5.xml │ ├── p51fail6.xml │ ├── p51fail7.xml │ ├── p51pass1.xml │ ├── p52fail1.xml │ ├── p52fail2.xml │ ├── p52pass1.xml │ ├── p53fail1.xml │ ├── p53fail2.xml │ ├── p53fail3.xml │ ├── p53fail4.xml │ ├── p53fail5.xml │ ├── p53pass1.xml │ ├── p54fail1.xml │ ├── p54pass1.xml │ ├── p55fail1.xml │ ├── p55pass1.xml │ ├── p56fail1.xml │ ├── p56fail2.xml │ ├── p56fail3.xml │ ├── p56fail4.xml │ ├── p56fail5.xml │ ├── p56pass1.xml │ ├── p57fail1.xml │ ├── p57pass1.xml │ ├── p58fail1.xml │ ├── p58fail2.xml │ ├── p58fail3.xml │ ├── p58fail4.xml │ ├── p58fail5.xml │ ├── p58fail6.xml │ ├── p58fail7.xml │ ├── p58fail8.xml │ ├── p58pass1.xml │ ├── p59fail1.xml │ ├── p59fail2.xml │ ├── p59fail3.xml │ ├── p59pass1.xml │ ├── p60fail1.xml │ ├── p60fail2.xml │ ├── p60fail3.xml │ ├── p60fail4.xml │ ├── p60fail5.xml │ ├── p60pass1.xml │ ├── p61fail1.dtd │ ├── p61fail1.xml │ ├── p61pass1.dtd │ ├── p61pass1.xml │ ├── p62fail1.dtd │ ├── p62fail1.xml │ ├── p62fail2.dtd │ ├── p62fail2.xml │ ├── p62pass1.dtd │ ├── p62pass1.xml │ ├── p63fail1.dtd │ ├── p63fail1.xml │ ├── p63fail2.dtd │ ├── p63fail2.xml │ ├── p63pass1.dtd │ ├── p63pass1.xml │ ├── p64fail1.dtd │ ├── p64fail1.xml │ ├── p64fail2.dtd │ ├── p64fail2.xml │ ├── p64pass1.dtd │ ├── p64pass1.xml │ ├── p66fail1.xml │ ├── p66fail2.xml │ ├── p66fail3.xml │ ├── p66fail4.xml │ ├── p66fail5.xml │ ├── p66fail6.xml │ ├── p66pass1.xml │ ├── p68fail1.xml │ ├── p68fail2.xml │ ├── p68fail3.xml │ ├── p68pass1.xml │ ├── p69fail1.xml │ ├── p69fail2.xml │ ├── p69fail3.xml │ ├── p69pass1.xml │ ├── p70fail1.xml │ ├── p70pass1.xml │ ├── p71fail1.xml │ ├── p71fail2.xml │ ├── p71fail3.xml │ ├── p71fail4.xml │ ├── p71pass1.xml │ ├── p72fail1.xml │ ├── p72fail2.xml │ ├── p72fail3.xml │ ├── p72fail4.xml │ ├── p72pass1.xml │ ├── p73fail1.xml │ ├── p73fail2.xml │ ├── p73fail3.xml │ ├── p73fail4.xml │ ├── p73fail5.xml │ ├── p73pass1.xml │ ├── p74fail1.xml │ ├── p74fail2.xml │ ├── p74fail3.xml │ ├── p74pass1.xml │ ├── p75fail1.xml │ ├── p75fail2.xml │ ├── p75fail3.xml │ ├── p75fail4.xml │ ├── p75fail5.xml │ ├── p75fail6.xml │ ├── p75pass1.xml │ ├── p76fail1.xml │ ├── p76fail2.xml │ ├── p76fail3.xml │ ├── p76fail4.xml │ └── p76pass1.xml │ ├── sun │ ├── cxml.html │ ├── invalid │ │ ├── attr01.xml │ │ ├── attr02.xml │ │ ├── attr03.xml │ │ ├── attr04.xml │ │ ├── attr05.xml │ │ ├── attr06.xml │ │ ├── attr07.xml │ │ ├── attr08.xml │ │ ├── attr09.xml │ │ ├── attr10.xml │ │ ├── attr11.xml │ │ ├── attr12.xml │ │ ├── attr13.xml │ │ ├── attr14.xml │ │ ├── attr15.xml │ │ ├── attr16.xml │ │ ├── dtd01.xml │ │ ├── dtd02.xml │ │ ├── dtd03.xml │ │ ├── dtd06.xml │ │ ├── el01.xml │ │ ├── el02.xml │ │ ├── el03.xml │ │ ├── el04.xml │ │ ├── el05.xml │ │ ├── el06.xml │ │ ├── empty.xml │ │ ├── id01.xml │ │ ├── id02.xml │ │ ├── id03.xml │ │ ├── id04.xml │ │ ├── id05.xml │ │ ├── id06.xml │ │ ├── id07.xml │ │ ├── id08.xml │ │ ├── id09.xml │ │ ├── not-sa01.xml │ │ ├── not-sa02.xml │ │ ├── not-sa04.xml │ │ ├── not-sa05.xml │ │ ├── not-sa06.xml │ │ ├── not-sa07.xml │ │ ├── not-sa08.xml │ │ ├── not-sa09.xml │ │ ├── not-sa10.xml │ │ ├── not-sa11.xml │ │ ├── not-sa12.xml │ │ ├── not-sa13.xml │ │ ├── not-sa14.xml │ │ ├── optional01.xml │ │ ├── optional02.xml │ │ ├── optional03.xml │ │ ├── optional04.xml │ │ ├── optional05.xml │ │ ├── optional06.xml │ │ ├── optional07.xml │ │ ├── optional08.xml │ │ ├── optional09.xml │ │ ├── optional10.xml │ │ ├── optional11.xml │ │ ├── optional12.xml │ │ ├── optional13.xml │ │ ├── optional14.xml │ │ ├── optional20.xml │ │ ├── optional21.xml │ │ ├── optional22.xml │ │ ├── optional23.xml │ │ ├── optional24.xml │ │ ├── optional25.xml │ │ ├── required00.xml │ │ ├── required01.xml │ │ ├── required02.xml │ │ ├── root.xml │ │ ├── utf16b.xml │ │ └── utf16l.xml │ ├── not-wf │ │ ├── attlist01.xml │ │ ├── attlist02.xml │ │ ├── attlist03.xml │ │ ├── attlist04.xml │ │ ├── attlist05.xml │ │ ├── attlist06.xml │ │ ├── attlist07.xml │ │ ├── attlist08.xml │ │ ├── attlist09.xml │ │ ├── attlist10.xml │ │ ├── attlist11.xml │ │ ├── cond.dtd │ │ ├── cond01.xml │ │ ├── cond02.xml │ │ ├── content01.xml │ │ ├── content02.xml │ │ ├── content03.xml │ │ ├── decl01.ent │ │ ├── decl01.xml │ │ ├── dtd00.xml │ │ ├── dtd01.xml │ │ ├── dtd02.xml │ │ ├── dtd03.xml │ │ ├── dtd04.xml │ │ ├── dtd05.xml │ │ ├── dtd07.dtd │ │ ├── dtd07.xml │ │ ├── element00.xml │ │ ├── element01.xml │ │ ├── element02.xml │ │ ├── element03.xml │ │ ├── element04.xml │ │ ├── encoding01.xml │ │ ├── encoding02.xml │ │ ├── encoding03.xml │ │ ├── encoding04.xml │ │ ├── encoding05.xml │ │ ├── encoding06.xml │ │ ├── encoding07.xml │ │ ├── not-sa03.xml │ │ ├── pi.xml │ │ ├── pubid01.xml │ │ ├── pubid02.xml │ │ ├── pubid03.xml │ │ ├── pubid04.xml │ │ ├── pubid05.xml │ │ ├── sgml01.xml │ │ ├── sgml02.xml │ │ ├── sgml03.xml │ │ ├── sgml04.xml │ │ ├── sgml05.xml │ │ ├── sgml06.xml │ │ ├── sgml07.xml │ │ ├── sgml08.xml │ │ ├── sgml09.xml │ │ ├── sgml10.xml │ │ ├── sgml11.xml │ │ ├── sgml12.xml │ │ ├── sgml13.xml │ │ └── uri01.xml │ ├── sun-error.xml │ ├── sun-invalid.xml │ ├── sun-not-wf.xml │ ├── sun-valid.xml │ └── valid │ │ ├── dtd00.xml │ │ ├── dtd01.xml │ │ ├── dtdtest.dtd │ │ ├── element.xml │ │ ├── ext01.ent │ │ ├── ext01.xml │ │ ├── ext02.xml │ │ ├── not-sa01.xml │ │ ├── not-sa02.xml │ │ ├── not-sa03.xml │ │ ├── not-sa04.xml │ │ ├── notation01.dtd │ │ ├── notation01.xml │ │ ├── null.ent │ │ ├── optional.xml │ │ ├── out │ │ ├── dtd00.xml │ │ ├── dtd01.xml │ │ ├── element.xml │ │ ├── ext01.xml │ │ ├── ext02.xml │ │ ├── not-sa01.xml │ │ ├── not-sa02.xml │ │ ├── not-sa03.xml │ │ ├── not-sa04.xml │ │ ├── notation01.xml │ │ ├── optional.xml │ │ ├── pe00.xml │ │ ├── pe02.xml │ │ ├── pe03.xml │ │ ├── required00.xml │ │ ├── sa01.xml │ │ ├── sa02.xml │ │ ├── sa03.xml │ │ ├── sa04.xml │ │ ├── sa05.xml │ │ ├── sgml01.xml │ │ ├── v-lang01.xml │ │ ├── v-lang02.xml │ │ ├── v-lang03.xml │ │ ├── v-lang04.xml │ │ ├── v-lang05.xml │ │ └── v-lang06.xml │ │ ├── pe00.dtd │ │ ├── pe00.xml │ │ ├── pe01.dtd │ │ ├── pe01.ent │ │ ├── pe01.xml │ │ ├── pe02.xml │ │ ├── pe03.xml │ │ ├── required00.xml │ │ ├── sa.dtd │ │ ├── sa01.xml │ │ ├── sa02.xml │ │ ├── sa03.xml │ │ ├── sa04.xml │ │ ├── sa05.xml │ │ ├── sgml01.xml │ │ ├── v-lang01.xml │ │ ├── v-lang02.xml │ │ ├── v-lang03.xml │ │ ├── v-lang04.xml │ │ ├── v-lang05.xml │ │ └── v-lang06.xml │ ├── testcases.dtd │ ├── xmlconf.xml │ └── xmltest │ ├── canonxml.html │ ├── invalid │ ├── 002.ent │ ├── 002.xml │ ├── 005.ent │ ├── 005.xml │ ├── 006.ent │ ├── 006.xml │ └── not-sa │ │ ├── 022.ent │ │ ├── 022.xml │ │ └── out │ │ └── 022.xml │ ├── not-wf │ ├── ext-sa │ │ ├── 001.ent │ │ ├── 001.xml │ │ ├── 002.ent │ │ ├── 002.xml │ │ ├── 003.ent │ │ └── 003.xml │ ├── not-sa │ │ ├── 001.ent │ │ ├── 001.xml │ │ ├── 002.xml │ │ ├── 003.ent │ │ ├── 003.xml │ │ ├── 004.ent │ │ ├── 004.xml │ │ ├── 005.ent │ │ ├── 005.xml │ │ ├── 006.ent │ │ ├── 006.xml │ │ ├── 007.ent │ │ ├── 007.xml │ │ ├── 008.ent │ │ ├── 008.xml │ │ ├── 009.ent │ │ ├── 009.xml │ │ ├── 010.ent │ │ ├── 010.xml │ │ ├── 011.ent │ │ └── 011.xml │ └── sa │ │ ├── 001.xml │ │ ├── 002.xml │ │ ├── 003.xml │ │ ├── 004.xml │ │ ├── 005.xml │ │ ├── 006.xml │ │ ├── 007.xml │ │ ├── 008.xml │ │ ├── 009.xml │ │ ├── 010.xml │ │ ├── 011.xml │ │ ├── 012.xml │ │ ├── 013.xml │ │ ├── 014.xml │ │ ├── 015.xml │ │ ├── 016.xml │ │ ├── 017.xml │ │ ├── 018.xml │ │ ├── 019.xml │ │ ├── 020.xml │ │ ├── 021.xml │ │ ├── 022.xml │ │ ├── 023.xml │ │ ├── 024.xml │ │ ├── 025.xml │ │ ├── 026.xml │ │ ├── 027.xml │ │ ├── 028.xml │ │ ├── 029.xml │ │ ├── 030.xml │ │ ├── 031.xml │ │ ├── 032.xml │ │ ├── 033.xml │ │ ├── 034.xml │ │ ├── 035.xml │ │ ├── 036.xml │ │ ├── 037.xml │ │ ├── 038.xml │ │ ├── 039.xml │ │ ├── 040.xml │ │ ├── 041.xml │ │ ├── 042.xml │ │ ├── 043.xml │ │ ├── 044.xml │ │ ├── 045.xml │ │ ├── 046.xml │ │ ├── 047.xml │ │ ├── 048.xml │ │ ├── 049.xml │ │ ├── 050.xml │ │ ├── 051.xml │ │ ├── 052.xml │ │ ├── 053.xml │ │ ├── 054.xml │ │ ├── 055.xml │ │ ├── 056.xml │ │ ├── 057.xml │ │ ├── 058.xml │ │ ├── 059.xml │ │ ├── 060.xml │ │ ├── 061.xml │ │ ├── 062.xml │ │ ├── 063.xml │ │ ├── 064.xml │ │ ├── 065.xml │ │ ├── 066.xml │ │ ├── 067.xml │ │ ├── 068.xml │ │ ├── 069.xml │ │ ├── 070.xml │ │ ├── 071.xml │ │ ├── 072.xml │ │ ├── 073.xml │ │ ├── 074.xml │ │ ├── 075.xml │ │ ├── 076.xml │ │ ├── 077.xml │ │ ├── 078.xml │ │ ├── 079.xml │ │ ├── 080.xml │ │ ├── 081.xml │ │ ├── 082.xml │ │ ├── 083.xml │ │ ├── 084.xml │ │ ├── 085.xml │ │ ├── 086.xml │ │ ├── 087.xml │ │ ├── 088.xml │ │ ├── 089.xml │ │ ├── 090.xml │ │ ├── 091.xml │ │ ├── 092.xml │ │ ├── 093.xml │ │ ├── 094.xml │ │ ├── 095.xml │ │ ├── 096.xml │ │ ├── 097.xml │ │ ├── 098.xml │ │ ├── 099.xml │ │ ├── 100.xml │ │ ├── 101.xml │ │ ├── 102.xml │ │ ├── 103.xml │ │ ├── 104.xml │ │ ├── 105.xml │ │ ├── 106.xml │ │ ├── 107.xml │ │ ├── 108.xml │ │ ├── 109.xml │ │ ├── 110.xml │ │ ├── 111.xml │ │ ├── 112.xml │ │ ├── 113.xml │ │ ├── 114.xml │ │ ├── 115.xml │ │ ├── 116.xml │ │ ├── 117.xml │ │ ├── 118.xml │ │ ├── 119.xml │ │ ├── 120.xml │ │ ├── 121.xml │ │ ├── 122.xml │ │ ├── 123.xml │ │ ├── 124.xml │ │ ├── 125.xml │ │ ├── 126.xml │ │ ├── 127.xml │ │ ├── 128.xml │ │ ├── 129.xml │ │ ├── 130.xml │ │ ├── 131.xml │ │ ├── 132.xml │ │ ├── 133.xml │ │ ├── 134.xml │ │ ├── 135.xml │ │ ├── 136.xml │ │ ├── 137.xml │ │ ├── 138.xml │ │ ├── 139.xml │ │ ├── 140.xml │ │ ├── 141.xml │ │ ├── 142.xml │ │ ├── 143.xml │ │ ├── 144.xml │ │ ├── 145.xml │ │ ├── 146.xml │ │ ├── 147.xml │ │ ├── 148.xml │ │ ├── 149.xml │ │ ├── 150.xml │ │ ├── 151.xml │ │ ├── 152.xml │ │ ├── 153.xml │ │ ├── 154.xml │ │ ├── 155.xml │ │ ├── 156.xml │ │ ├── 157.xml │ │ ├── 158.xml │ │ ├── 159.xml │ │ ├── 160.xml │ │ ├── 161.xml │ │ ├── 162.xml │ │ ├── 163.xml │ │ ├── 164.xml │ │ ├── 165.xml │ │ ├── 166.xml │ │ ├── 167.xml │ │ ├── 168.xml │ │ ├── 169.xml │ │ ├── 170.xml │ │ ├── 171.xml │ │ ├── 172.xml │ │ ├── 173.xml │ │ ├── 174.xml │ │ ├── 175.xml │ │ ├── 176.xml │ │ ├── 177.xml │ │ ├── 178.xml │ │ ├── 179.xml │ │ ├── 180.xml │ │ ├── 181.xml │ │ ├── 182.xml │ │ ├── 183.xml │ │ ├── 184.xml │ │ ├── 185.ent │ │ ├── 185.xml │ │ ├── 186.xml │ │ └── null.ent │ ├── readme.html │ ├── valid │ ├── ext-sa │ │ ├── 001.ent │ │ ├── 001.xml │ │ ├── 002.ent │ │ ├── 002.xml │ │ ├── 003.ent │ │ ├── 003.xml │ │ ├── 004.ent │ │ ├── 004.xml │ │ ├── 005.ent │ │ ├── 005.xml │ │ ├── 006.ent │ │ ├── 006.xml │ │ ├── 007.ent │ │ ├── 007.xml │ │ ├── 008.ent │ │ ├── 008.xml │ │ ├── 009.ent │ │ ├── 009.xml │ │ ├── 010.ent │ │ ├── 010.xml │ │ ├── 011.ent │ │ ├── 011.xml │ │ ├── 012.ent │ │ ├── 012.xml │ │ ├── 013.ent │ │ ├── 013.xml │ │ ├── 014.ent │ │ ├── 014.xml │ │ └── out │ │ │ ├── 001.xml │ │ │ ├── 002.xml │ │ │ ├── 003.xml │ │ │ ├── 004.xml │ │ │ ├── 005.xml │ │ │ ├── 006.xml │ │ │ ├── 007.xml │ │ │ ├── 008.xml │ │ │ ├── 009.xml │ │ │ ├── 010.xml │ │ │ ├── 011.xml │ │ │ ├── 012.xml │ │ │ ├── 013.xml │ │ │ └── 014.xml │ ├── not-sa │ │ ├── 001.ent │ │ ├── 001.xml │ │ ├── 002.ent │ │ ├── 002.xml │ │ ├── 003-1.ent │ │ ├── 003-2.ent │ │ ├── 003.xml │ │ ├── 004-1.ent │ │ ├── 004-2.ent │ │ ├── 004.xml │ │ ├── 005-1.ent │ │ ├── 005-2.ent │ │ ├── 005.xml │ │ ├── 006.ent │ │ ├── 006.xml │ │ ├── 007.ent │ │ ├── 007.xml │ │ ├── 008.ent │ │ ├── 008.xml │ │ ├── 009.ent │ │ ├── 009.xml │ │ ├── 010.ent │ │ ├── 010.xml │ │ ├── 011.ent │ │ ├── 011.xml │ │ ├── 012.ent │ │ ├── 012.xml │ │ ├── 013.ent │ │ ├── 013.xml │ │ ├── 014.ent │ │ ├── 014.xml │ │ ├── 015.ent │ │ ├── 015.xml │ │ ├── 016.ent │ │ ├── 016.xml │ │ ├── 017.ent │ │ ├── 017.xml │ │ ├── 018.ent │ │ ├── 018.xml │ │ ├── 019.ent │ │ ├── 019.xml │ │ ├── 020.ent │ │ ├── 020.xml │ │ ├── 021.ent │ │ ├── 021.xml │ │ ├── 023.ent │ │ ├── 023.xml │ │ ├── 024.ent │ │ ├── 024.xml │ │ ├── 025.ent │ │ ├── 025.xml │ │ ├── 026.ent │ │ ├── 026.xml │ │ ├── 027.ent │ │ ├── 027.xml │ │ ├── 028.ent │ │ ├── 028.xml │ │ ├── 029.ent │ │ ├── 029.xml │ │ ├── 030.ent │ │ ├── 030.xml │ │ ├── 031-1.ent │ │ ├── 031-2.ent │ │ ├── 031.xml │ │ └── out │ │ │ ├── 001.xml │ │ │ ├── 002.xml │ │ │ ├── 003.xml │ │ │ ├── 004.xml │ │ │ ├── 005.xml │ │ │ ├── 006.xml │ │ │ ├── 007.xml │ │ │ ├── 008.xml │ │ │ ├── 009.xml │ │ │ ├── 010.xml │ │ │ ├── 011.xml │ │ │ ├── 012.xml │ │ │ ├── 013.xml │ │ │ ├── 014.xml │ │ │ ├── 015.xml │ │ │ ├── 016.xml │ │ │ ├── 017.xml │ │ │ ├── 018.xml │ │ │ ├── 019.xml │ │ │ ├── 020.xml │ │ │ ├── 021.xml │ │ │ ├── 022.xml │ │ │ ├── 023.xml │ │ │ ├── 024.xml │ │ │ ├── 025.xml │ │ │ ├── 026.xml │ │ │ ├── 027.xml │ │ │ ├── 028.xml │ │ │ ├── 029.xml │ │ │ ├── 030.xml │ │ │ └── 031.xml │ └── sa │ │ ├── 001.xml │ │ ├── 002.xml │ │ ├── 003.xml │ │ ├── 004.xml │ │ ├── 005.xml │ │ ├── 006.xml │ │ ├── 007.xml │ │ ├── 008.xml │ │ ├── 009.xml │ │ ├── 010.xml │ │ ├── 011.xml │ │ ├── 012.xml │ │ ├── 013.xml │ │ ├── 014.xml │ │ ├── 015.xml │ │ ├── 016.xml │ │ ├── 017.xml │ │ ├── 017a.xml │ │ ├── 018.xml │ │ ├── 019.xml │ │ ├── 020.xml │ │ ├── 021.xml │ │ ├── 022.xml │ │ ├── 023.xml │ │ ├── 024.xml │ │ ├── 025.xml │ │ ├── 026.xml │ │ ├── 027.xml │ │ ├── 028.xml │ │ ├── 029.xml │ │ ├── 030.xml │ │ ├── 031.xml │ │ ├── 032.xml │ │ ├── 033.xml │ │ ├── 034.xml │ │ ├── 035.xml │ │ ├── 036.xml │ │ ├── 037.xml │ │ ├── 038.xml │ │ ├── 039.xml │ │ ├── 040.xml │ │ ├── 041.xml │ │ ├── 042.xml │ │ ├── 043.xml │ │ ├── 044.xml │ │ ├── 045.xml │ │ ├── 046.xml │ │ ├── 047.xml │ │ ├── 048.xml │ │ ├── 049.xml │ │ ├── 050.xml │ │ ├── 051.xml │ │ ├── 052.xml │ │ ├── 053.xml │ │ ├── 054.xml │ │ ├── 055.xml │ │ ├── 056.xml │ │ ├── 057.xml │ │ ├── 058.xml │ │ ├── 059.xml │ │ ├── 060.xml │ │ ├── 061.xml │ │ ├── 062.xml │ │ ├── 063.xml │ │ ├── 064.xml │ │ ├── 065.xml │ │ ├── 066.xml │ │ ├── 067.xml │ │ ├── 068.xml │ │ ├── 069.xml │ │ ├── 070.xml │ │ ├── 071.xml │ │ ├── 072.xml │ │ ├── 073.xml │ │ ├── 074.xml │ │ ├── 075.xml │ │ ├── 076.xml │ │ ├── 077.xml │ │ ├── 078.xml │ │ ├── 079.xml │ │ ├── 080.xml │ │ ├── 081.xml │ │ ├── 082.xml │ │ ├── 083.xml │ │ ├── 084.xml │ │ ├── 085.xml │ │ ├── 086.xml │ │ ├── 087.xml │ │ ├── 088.xml │ │ ├── 089.xml │ │ ├── 090.xml │ │ ├── 091.xml │ │ ├── 092.xml │ │ ├── 093.xml │ │ ├── 094.xml │ │ ├── 095.xml │ │ ├── 096.xml │ │ ├── 097.ent │ │ ├── 097.xml │ │ ├── 098.xml │ │ ├── 099.xml │ │ ├── 100.xml │ │ ├── 101.xml │ │ ├── 102.xml │ │ ├── 103.xml │ │ ├── 104.xml │ │ ├── 105.xml │ │ ├── 106.xml │ │ ├── 107.xml │ │ ├── 108.xml │ │ ├── 109.xml │ │ ├── 110.xml │ │ ├── 111.xml │ │ ├── 112.xml │ │ ├── 113.xml │ │ ├── 114.xml │ │ ├── 115.xml │ │ ├── 116.xml │ │ ├── 117.xml │ │ ├── 118.xml │ │ ├── 119.xml │ │ └── out │ │ ├── 001.xml │ │ ├── 002.xml │ │ ├── 003.xml │ │ ├── 004.xml │ │ ├── 005.xml │ │ ├── 006.xml │ │ ├── 007.xml │ │ ├── 008.xml │ │ ├── 009.xml │ │ ├── 010.xml │ │ ├── 011.xml │ │ ├── 012.xml │ │ ├── 013.xml │ │ ├── 014.xml │ │ ├── 015.xml │ │ ├── 016.xml │ │ ├── 017.xml │ │ ├── 017a.xml │ │ ├── 018.xml │ │ ├── 019.xml │ │ ├── 020.xml │ │ ├── 021.xml │ │ ├── 022.xml │ │ ├── 023.xml │ │ ├── 024.xml │ │ ├── 025.xml │ │ ├── 026.xml │ │ ├── 027.xml │ │ ├── 028.xml │ │ ├── 029.xml │ │ ├── 030.xml │ │ ├── 031.xml │ │ ├── 032.xml │ │ ├── 033.xml │ │ ├── 034.xml │ │ ├── 035.xml │ │ ├── 036.xml │ │ ├── 037.xml │ │ ├── 038.xml │ │ ├── 039.xml │ │ ├── 040.xml │ │ ├── 041.xml │ │ ├── 042.xml │ │ ├── 043.xml │ │ ├── 044.xml │ │ ├── 045.xml │ │ ├── 046.xml │ │ ├── 047.xml │ │ ├── 048.xml │ │ ├── 049.xml │ │ ├── 050.xml │ │ ├── 051.xml │ │ ├── 052.xml │ │ ├── 053.xml │ │ ├── 054.xml │ │ ├── 055.xml │ │ ├── 056.xml │ │ ├── 057.xml │ │ ├── 058.xml │ │ ├── 059.xml │ │ ├── 060.xml │ │ ├── 061.xml │ │ ├── 062.xml │ │ ├── 063.xml │ │ ├── 064.xml │ │ ├── 065.xml │ │ ├── 066.xml │ │ ├── 067.xml │ │ ├── 068.xml │ │ ├── 069.xml │ │ ├── 070.xml │ │ ├── 071.xml │ │ ├── 072.xml │ │ ├── 073.xml │ │ ├── 074.xml │ │ ├── 075.xml │ │ ├── 076.xml │ │ ├── 077.xml │ │ ├── 078.xml │ │ ├── 079.xml │ │ ├── 080.xml │ │ ├── 081.xml │ │ ├── 082.xml │ │ ├── 083.xml │ │ ├── 084.xml │ │ ├── 085.xml │ │ ├── 086.xml │ │ ├── 087.xml │ │ ├── 088.xml │ │ ├── 089.xml │ │ ├── 090.xml │ │ ├── 091.xml │ │ ├── 092.xml │ │ ├── 093.xml │ │ ├── 094.xml │ │ ├── 095.xml │ │ ├── 096.xml │ │ ├── 097.xml │ │ ├── 098.xml │ │ ├── 099.xml │ │ ├── 100.xml │ │ ├── 101.xml │ │ ├── 102.xml │ │ ├── 103.xml │ │ ├── 104.xml │ │ ├── 105.xml │ │ ├── 106.xml │ │ ├── 107.xml │ │ ├── 108.xml │ │ ├── 109.xml │ │ ├── 110.xml │ │ ├── 111.xml │ │ ├── 112.xml │ │ ├── 113.xml │ │ ├── 114.xml │ │ ├── 115.xml │ │ ├── 116.xml │ │ ├── 117.xml │ │ ├── 118.xml │ │ └── 119.xml │ ├── xmlconf.xml │ └── xmltest.xml ├── test.sh └── testRelease.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .dub 2 | docs 3 | docs.json 4 | __dummy.html 5 | *.a 6 | *.o 7 | *.obj 8 | __test__*__ 9 | spec_check/spec_check 10 | -------------------------------------------------------------------------------- /cov.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | dub test --build=unittest-cov 4 | -------------------------------------------------------------------------------- /source_docs/index.dd: -------------------------------------------------------------------------------- 1 | Ddoc 2 | 3 | $(MODULE_INDEX) 4 | 5 | Macros: 6 | TITLE=Documentation for $(PROJECT_NAME) 7 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E14.dtd: -------------------------------------------------------------------------------- 1 | 2 | "> 3 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E15b.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E15c.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E15d.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E15g.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E15j.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E18-ent: -------------------------------------------------------------------------------- 1 | entity from main dir, right! -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E19.xml: -------------------------------------------------------------------------------- 1 | 2 | &ent; 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E22.xml: -------------------------------------------------------------------------------- 1 |  2 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E34.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E36.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E38.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E48.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | hello 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E57.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E60.ent: -------------------------------------------------------------------------------- 1 | ]]> 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/E61.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/out/E18.xml: -------------------------------------------------------------------------------- 1 | entity from main dir, right! -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/out/E19.xml: -------------------------------------------------------------------------------- 1 | hello ! goodbye -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/out/E24.xml: -------------------------------------------------------------------------------- 1 | You can use ]]> or ]]> -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/subdir1/E18-ent: -------------------------------------------------------------------------------- 1 | entity from subdir1, wrong! -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/subdir1/E18-pe: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/subdir2/E18-ent: -------------------------------------------------------------------------------- 1 | entity from subdir2, wrong! -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-2e/subdir2/E18-extpe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-4e/014.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-4e/019.xml: -------------------------------------------------------------------------------- 1 | 2 | <󯿿/> 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-4e/140.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-4e/141.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-4e/8bom.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-4e/8bombom.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-4e/8bomboom.xml: -------------------------------------------------------------------------------- 1 | ￾ -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-4e/incl8bom.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &bom8; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-4e/inclbom_be.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &bom; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-4e/inclbom_le.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &bom; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-4e/inclbom_out.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/errata-4e/inclbombom_out.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/misc/005.xml: -------------------------------------------------------------------------------- 1 | ]> 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/misc/006.xml: -------------------------------------------------------------------------------- 1 | ]> 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/misc/007.xml: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/namespaces/1.0/014.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/namespaces/1.0/015.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | <:foo /> 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/namespaces/1.0/017.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/namespaces/1.0/025.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/namespaces/1.0/026.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/namespaces/1.0/042.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/namespaces/1.0/047.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/namespaces/1.1/007.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/namespaces/1.1/008.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/001.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/002.pe: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/003.ent: -------------------------------------------------------------------------------- 1 | 2 | some text 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/004.ent: -------------------------------------------------------------------------------- 1 | 2 | some text 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/005_1.ent: -------------------------------------------------------------------------------- 1 | 2 | &ent2; 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/005_2.ent: -------------------------------------------------------------------------------- 1 | 2 | some text 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/006_1.ent: -------------------------------------------------------------------------------- 1 | 2 | &ent2; 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/006_2.ent: -------------------------------------------------------------------------------- 1 | 2 | some text 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/009.ent: -------------------------------------------------------------------------------- 1 | 2 | some text 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/006.xml: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/007.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/010.xml: -------------------------------------------------------------------------------- 1 | € -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/012.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/015.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/017.xml: -------------------------------------------------------------------------------- 1 | <𝀲> -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/018.xml: -------------------------------------------------------------------------------- 1 | <󯿿> -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/022.xml: -------------------------------------------------------------------------------- 1 | … -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/023.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/024.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/025.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/026.xml: -------------------------------------------------------------------------------- 1 | … -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/027.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/028.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/029.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/030.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/031.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/032.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/033.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/034.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/035.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/036.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/037.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/040.xml: -------------------------------------------------------------------------------- 1 | Œ -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/043.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/044.xml: -------------------------------------------------------------------------------- 1 | Œ -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/045.xml: -------------------------------------------------------------------------------- 1 | Œ -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/046.xml: -------------------------------------------------------------------------------- 1 | … -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/047.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/048.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/049.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/050.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/051.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/052.xml: -------------------------------------------------------------------------------- 1 | abc…def -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/053.xml: -------------------------------------------------------------------------------- 1 | abc…def -------------------------------------------------------------------------------- /spec_check/xmlconf/eduni/xml-1.1/out/054.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P28/out/ibm28i01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P32/ibm32i01.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P32/ibm32i03.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P32/out/ibm32i01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P32/out/ibm32i03.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P49/out/ibm49i01.xml: -------------------------------------------------------------------------------- 1 | content of b element -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P50/out/ibm50i01.xml: -------------------------------------------------------------------------------- 1 | content of b element -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P51/ibm51i03.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P51/out/ibm51i01.xml: -------------------------------------------------------------------------------- 1 | Element type a Element type b -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P51/out/ibm51i02.xml: -------------------------------------------------------------------------------- 1 | Element type a Element type b -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P51/out/ibm51i03.xml: -------------------------------------------------------------------------------- 1 | Element type a Element type b -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P68/out/ibm68i01.xml: -------------------------------------------------------------------------------- 1 | pcdata content -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P68/out/ibm68i02.xml: -------------------------------------------------------------------------------- 1 | pcdata content -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P68/out/ibm68i03.xml: -------------------------------------------------------------------------------- 1 | pcdata content -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P68/out/ibm68i04.xml: -------------------------------------------------------------------------------- 1 | pcdata content -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P69/out/ibm69i01.xml: -------------------------------------------------------------------------------- 1 | pcdata content -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P69/out/ibm69i02.xml: -------------------------------------------------------------------------------- 1 | pcdata content -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P69/out/ibm69i03.xml: -------------------------------------------------------------------------------- 1 | pcdata content -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P69/out/ibm69i04.xml: -------------------------------------------------------------------------------- 1 | pcdata content -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/invalid/P76/out/ibm76i01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/not-wf/P13/student.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/not-wf/P28/ibm28n01.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/not-wf/P29/cat.txt: -------------------------------------------------------------------------------- 1 | This is a text book about cat. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/not-wf/P32/ibm32n06.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/not-wf/P32/ibm32n09.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/not-wf/P41/ibm41n.ent: -------------------------------------------------------------------------------- 1 | 2 | any -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/not-wf/P41/ibm41n10.ent: -------------------------------------------------------------------------------- 1 | 2 | any -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/not-wf/P41/ibm41n11.ent: -------------------------------------------------------------------------------- 1 | 2 | any -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/not-wf/P68/ibm68n06.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/not-wf/P75/empty.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/not-wf/P77/ibm77n03.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/not-wf/P79/ibm79n01.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P03/out/ibm03v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P09/out/ibm09v01.xml: -------------------------------------------------------------------------------- 1 | My Name is . -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P09/out/ibm09v02.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P09/out/ibm09v03.xml: -------------------------------------------------------------------------------- 1 | I am a new student with first , last -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P09/out/ibm09v04.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P10/out/ibm10v01.xml: -------------------------------------------------------------------------------- 1 | My Name is Snow Man. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P10/out/ibm10v02.xml: -------------------------------------------------------------------------------- 1 | My Name is Snow Man. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P10/out/ibm10v03.xml: -------------------------------------------------------------------------------- 1 | My Name is Snow Man'. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P10/out/ibm10v04.xml: -------------------------------------------------------------------------------- 1 | My Name is Snow Man". -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P10/out/ibm10v05.xml: -------------------------------------------------------------------------------- 1 | My Name is Snow Man. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P10/out/ibm10v06.xml: -------------------------------------------------------------------------------- 1 | My Name is Snow Man. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P11/out/ibm11v01.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P11/out/ibm11v02.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P11/out/ibm11v03.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P11/out/ibm11v04.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P11/student.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P12/out/ibm12v01.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P12/out/ibm12v02.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P12/out/ibm12v03.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P12/out/ibm12v04.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P12/student.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P13/out/ibm13v01.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P13/student.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P14/out/ibm14v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P14/out/ibm14v02.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P14/out/ibm14v03.xml: -------------------------------------------------------------------------------- 1 | This is a test -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P15/out/ibm15v01.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P15/out/ibm15v02.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P15/out/ibm15v03.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P15/out/ibm15v04.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P16/out/ibm16v01.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P16/out/ibm16v02.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P16/out/ibm16v03.xml: -------------------------------------------------------------------------------- 1 | IN PI ?>My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P17/out/ibm17v01.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P18/out/ibm18v01.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. This is <normal> text -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P19/out/ibm19v01.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. This is a test -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P20/out/ibm20v01.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P20/out/ibm20v02.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. <testing>This is a test</testing> -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P21/out/ibm21v01.xml: -------------------------------------------------------------------------------- 1 | My Name is SnowMan. This is a test -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P22/ibm22v02.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P22/out/ibm22v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P22/out/ibm22v02.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P22/out/ibm22v03.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P22/out/ibm22v04.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P22/out/ibm22v05.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P22/out/ibm22v06.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P22/out/ibm22v07.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P23/out/ibm23v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P23/out/ibm23v02.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P23/out/ibm23v03.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P23/out/ibm23v04.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P23/out/ibm23v05.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P23/out/ibm23v06.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P24/out/ibm24v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P24/out/ibm24v02.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P25/out/ibm25v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P25/out/ibm25v02.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P25/out/ibm25v03.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P25/out/ibm25v04.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P26/out/ibm26v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P27/out/ibm27v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P27/out/ibm27v02.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P27/out/ibm27v03.xml: -------------------------------------------------------------------------------- 1 | S is in the following Misc -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P28/ibm28v02.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P28/ibm28v02.txt: -------------------------------------------------------------------------------- 1 | This is an animal! -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P28/out/ibm28v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P29/ibm29v01.txt: -------------------------------------------------------------------------------- 1 | This animal calss includes tiger, leopard, and cat. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P30/ibm30v01.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P30/ibm30v02.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P30/out/ibm30v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P30/out/ibm30v02.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P31/out/ibm31v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P32/ibm32v01.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P32/ibm32v02.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P32/ibm32v03.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P32/out/ibm32v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P32/out/ibm32v02.xml: -------------------------------------------------------------------------------- 1 | This is a yellow tiger -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P32/out/ibm32v03.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P33/out/ibm33v01.xml: -------------------------------------------------------------------------------- 1 | It is written in English -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P34/out/ibm34v01.xml: -------------------------------------------------------------------------------- 1 | It is written in English -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P35/out/ibm35v01.xml: -------------------------------------------------------------------------------- 1 | It is written in English -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P36/out/ibm36v01.xml: -------------------------------------------------------------------------------- 1 | It is written in English -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P37/out/ibm37v01.xml: -------------------------------------------------------------------------------- 1 | It is written in English -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P38/out/ibm38v01.xml: -------------------------------------------------------------------------------- 1 | It is written in English -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P41/out/ibm41v01.xml: -------------------------------------------------------------------------------- 1 | Name eq AttValue -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P47/out/ibm47v01.xml: -------------------------------------------------------------------------------- 1 | content of b element -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P49/out/ibm49v01.xml: -------------------------------------------------------------------------------- 1 | content of b element -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P54/out/ibm54v03.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P56/out/ibm56v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P59/out/ibm59v01.xml: -------------------------------------------------------------------------------- 1 | This is a Positive test -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P61/out/ibm61v01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P61/out/ibm61v02.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P63/out/ibm63v01.xml: -------------------------------------------------------------------------------- 1 | Positive test. Test for IGNORE with pattern 1. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P63/out/ibm63v02.xml: -------------------------------------------------------------------------------- 1 | Positive test. Test for IGNORE with pattern 2. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P63/out/ibm63v03.xml: -------------------------------------------------------------------------------- 1 | Positive test. Test for IGNORE with pattern 3. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P63/out/ibm63v04.xml: -------------------------------------------------------------------------------- 1 | Positive test. Test for IGNORE with pattern 4. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P63/out/ibm63v05.xml: -------------------------------------------------------------------------------- 1 | Positive test. Test for IGNORE with pattern 5. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P64/out/ibm64v01.xml: -------------------------------------------------------------------------------- 1 | Positive Test. Pattern1 -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P64/out/ibm64v02.xml: -------------------------------------------------------------------------------- 1 | Positive Test. Pattern2 -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P64/out/ibm64v03.xml: -------------------------------------------------------------------------------- 1 | Positive Test. Pattern3 -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P65/out/ibm65v01.xml: -------------------------------------------------------------------------------- 1 | Positive Test. Pattern1. Empty string. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P65/out/ibm65v02.xml: -------------------------------------------------------------------------------- 1 | Positive Test. Pattern2. -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P67/out/ibm67v01.xml: -------------------------------------------------------------------------------- 1 | xyz B -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P68/ibm68v02.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P68/out/ibm68v01.xml: -------------------------------------------------------------------------------- 1 | pcdata content -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P68/out/ibm68v02.xml: -------------------------------------------------------------------------------- 1 | pcdata content -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P69/out/ibm69v01.xml: -------------------------------------------------------------------------------- 1 | pcdata content -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P69/out/ibm69v02.xml: -------------------------------------------------------------------------------- 1 | pcdata content -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P70/ibm70v01.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P78/ibm78v01.ent: -------------------------------------------------------------------------------- 1 | 2 | anything legal as PCDATA.... 3 | N.B. also tested P77 and P80 -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P78/ibm78v02.ent: -------------------------------------------------------------------------------- 1 | 2 | anything legal as PCDATA.... 3 | N.B. also tested P77 -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P78/ibm78v03.ent: -------------------------------------------------------------------------------- 1 | anything legal as PCDATA.... 2 | e.g. 12345678E-33, "hello" -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P79/ibm79v01.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/valid/P79/out/ibm79v01.xml: -------------------------------------------------------------------------------- 1 | XML Handbook This is a book -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n04.ent: -------------------------------------------------------------------------------- 1 | 2 | ‰ -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n05.ent: -------------------------------------------------------------------------------- 1 | 2 | ” -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n06.ent: -------------------------------------------------------------------------------- 1 | 2 | Ÿ -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n07.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n09.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n10.ent: -------------------------------------------------------------------------------- 1 | 2 | „ -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n11.ent: -------------------------------------------------------------------------------- 1 | ˆ -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n12.ent: -------------------------------------------------------------------------------- 1 | Ž -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n13.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n15.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n16.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n17.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n18.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n19.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n20.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/not-wf/P77/ibm77n21.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/ibm03v01.ent: -------------------------------------------------------------------------------- 1 | Data … -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/ibm03v02.ent: -------------------------------------------------------------------------------- 1 | Data… -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/ibm03v03.ent: -------------------------------------------------------------------------------- 1 | … -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/ibm03v04.ent: -------------------------------------------------------------------------------- 1 | … -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/ibm03v09.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/out/ibm03v01.xml: -------------------------------------------------------------------------------- 1 | Data -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/out/ibm03v02.xml: -------------------------------------------------------------------------------- 1 | Data -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/out/ibm03v03.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/out/ibm03v04.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/out/ibm03v05.xml: -------------------------------------------------------------------------------- 1 | x y -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/out/ibm03v06.xml: -------------------------------------------------------------------------------- 1 | x y -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/out/ibm03v07.xml: -------------------------------------------------------------------------------- 1 | x y -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/out/ibm03v08.xml: -------------------------------------------------------------------------------- 1 | Test -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P03/out/ibm03v09.xml: -------------------------------------------------------------------------------- 1 | Test -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v04.ent: -------------------------------------------------------------------------------- 1 | 2 | <Önode/><Önode/><Önode/> 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v05.ent: -------------------------------------------------------------------------------- 1 | 2 | <῿node/><῿node/><῿node/> -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v06.ent: -------------------------------------------------------------------------------- 1 | 2 | <更root/><更root/><更root/> -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v10.ent: -------------------------------------------------------------------------------- 1 | 2 | <öroot/><öroot/><öroot/> 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v11.ent: -------------------------------------------------------------------------------- 1 | 2 | <῿root/><῿root/><῿root/> -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v12.ent: -------------------------------------------------------------------------------- 1 | 2 | <更root/><更root/><更root/> -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v13.dtd: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v14.dtd: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]]> -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v15.dtd: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]]> -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v16.ent: -------------------------------------------------------------------------------- 1 | <˿root/><˿root/><˿root/> 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v17.ent: -------------------------------------------------------------------------------- 1 | <῿root/><῿root/><῿root/> -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v18.ent: -------------------------------------------------------------------------------- 1 | <更root/><更root/><更root/> -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v22.ent: -------------------------------------------------------------------------------- 1 | 2 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v23.ent: -------------------------------------------------------------------------------- 1 | 2 | € -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v24.ent: -------------------------------------------------------------------------------- 1 | 2 | Ÿ -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v25.dtd: -------------------------------------------------------------------------------- 1 | 2 | "> -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v28.ent: -------------------------------------------------------------------------------- 1 | Ÿ€ -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v29.ent: -------------------------------------------------------------------------------- 1 | … -------------------------------------------------------------------------------- /spec_check/xmlconf/ibm/xml-1.1/valid/P77/ibm77v30.ent: -------------------------------------------------------------------------------- 1 | 2 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p01fail4.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p01pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail10.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail11.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail12.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail13.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail14.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail15.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail16.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail17.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail18.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail19.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail2.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail20.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail21.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail22.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail23.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail24.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail25.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail26.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail27.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail28.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail29.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail3.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail4.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail5.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail7.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail8.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03fail9.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p03pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p04fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p04fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p04fail3.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p05fail1.xml: -------------------------------------------------------------------------------- 1 | <0A/> -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p05fail2.xml: -------------------------------------------------------------------------------- 1 | <.A/> -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p05fail3.xml: -------------------------------------------------------------------------------- 1 | <-A/> -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p05fail4.xml: -------------------------------------------------------------------------------- 1 | <̀A/> -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p05fail5.xml: -------------------------------------------------------------------------------- 1 | <·A/> -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p05pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | <::._-0/> 4 | <_:._-0/> 5 | 6 | <_/> 7 | <:/> 8 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p09fail1.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p09fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p09fail2.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p09fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p09fail3.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p09fail4.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p09fail5.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p09pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p10fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p10fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p10fail3.xml: -------------------------------------------------------------------------------- 1 | 3 | asdf 4 | ?>%"/> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p14fail1.xml: -------------------------------------------------------------------------------- 1 | < 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p14fail2.xml: -------------------------------------------------------------------------------- 1 | & 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p14fail3.xml: -------------------------------------------------------------------------------- 1 | a]]>b 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p14pass1.xml: -------------------------------------------------------------------------------- 1 | a%b%</doc></doc>]]<& 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p15fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p15fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p15fail3.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p15pass1.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p16fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p16fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p16fail3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p16pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p16pass3.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p18fail1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p18fail2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p18fail3.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p22fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p22fail2.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p22pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p22pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p22pass3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p22pass6.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p23fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p23fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p23fail3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p23fail4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p23fail5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p23pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p23pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p23pass3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p23pass4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p24fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p24fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p24pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p24pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p24pass3.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p24pass4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p25fail1.xml: -------------------------------------------------------------------------------- 1 | ="1.0"?> 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p25pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p25pass2.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p26fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p26fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p27fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p27pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p27pass3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p28fail1.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p28pass1.xml: -------------------------------------------------------------------------------- 1 | 7 | ]> 8 | 9 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p28pass2.xml: -------------------------------------------------------------------------------- 1 | 7 | ]> 8 | 9 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p28pass4.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p28pass4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p28pass5.dtd: -------------------------------------------------------------------------------- 1 | %rootdecl; 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p30fail1.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p30fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p30pass1.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p30pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p30pass2.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p30pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p31fail1.dtd: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p31fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p31pass1.xml: -------------------------------------------------------------------------------- 1 | ]> 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p31pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p32fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p32fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p32fail3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p32fail4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p32fail5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p32pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p32pass2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p39fail1.xml: -------------------------------------------------------------------------------- 1 | content -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p39fail2.xml: -------------------------------------------------------------------------------- 1 | content -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p39fail4.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p39pass1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p39pass2.xml: -------------------------------------------------------------------------------- 1 | content -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p40fail1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p40fail2.xml: -------------------------------------------------------------------------------- 1 | <3notname> -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p40fail3.xml: -------------------------------------------------------------------------------- 1 | <3notname> -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p40fail4.xml: -------------------------------------------------------------------------------- 1 | < doc> -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p40pass1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p40pass2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p40pass3.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p40pass4.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p41fail1.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p41fail2.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p41fail3.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p41pass1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p41pass2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p42fail1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p42fail2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p42fail3.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p42pass2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p44fail1.xml: -------------------------------------------------------------------------------- 1 | < doc/> -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p44fail2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p44fail3.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p44fail4.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p44fail5.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p44pass1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p44pass2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p44pass3.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p44pass4.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p44pass5.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p45fail1.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p45fail2.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p45fail3.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p45fail4.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p46fail1.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p46fail2.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p46fail3.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p46fail4.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p46fail5.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p46fail6.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p47fail1.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p47fail2.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p47fail3.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p47fail4.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p48fail1.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p48fail2.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p49fail1.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p50fail1.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p51fail1.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p51fail2.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p52fail1.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p52fail2.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ]> 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p61fail1.dtd: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p61fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p61pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p62fail1.dtd: -------------------------------------------------------------------------------- 1 | 3 | ]]> 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p62fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p62fail2.dtd: -------------------------------------------------------------------------------- 1 | 3 | ] ]> 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p62fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p62pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p63fail1.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p63fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p63fail2.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p63fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p63pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p64fail1.dtd: -------------------------------------------------------------------------------- 1 | 2 | ]]> -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p64fail1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p64fail2.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p64fail2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p64pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p66fail1.xml: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p66fail2.xml: -------------------------------------------------------------------------------- 1 | &# 65; -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p66fail3.xml: -------------------------------------------------------------------------------- 1 | &#A; -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p66fail4.xml: -------------------------------------------------------------------------------- 1 | G; -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p66fail5.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p66fail6.xml: -------------------------------------------------------------------------------- 1 | �� -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p66pass1.xml: -------------------------------------------------------------------------------- 1 | 2 | A AOO 3 | 􏋬 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p74fail3.xml: -------------------------------------------------------------------------------- 1 | " SYSTEM "nop.ent"> 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p75fail1.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p75fail2.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p75fail3.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p75fail4.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p75fail5.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/oasis/p75fail6.xml: -------------------------------------------------------------------------------- 1 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/invalid/el01.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/invalid/el02.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/not-wf/cond01.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/not-wf/cond02.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/not-wf/dtd07.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/not-wf/element00.xml: -------------------------------------------------------------------------------- 1 | 2 | Incomplete end tag. 3 | 2 | Incomplete end tag. 3 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/not-wf/encoding02.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/not-wf/encoding03.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/not-wf/encoding04.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/not-wf/encoding05.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/dtd00.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/dtd01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/ext02.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/pe00.xml: -------------------------------------------------------------------------------- 1 | La Peste: Albert Camus, © 1947 Éditions Gallimard. All rights reserved -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/pe02.xml: -------------------------------------------------------------------------------- 1 | This sample shows a error-prone method. -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/required00.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/sgml01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/v-lang01.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/v-lang02.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/v-lang03.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/v-lang04.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/v-lang05.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/out/v-lang06.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/pe00.xml: -------------------------------------------------------------------------------- 1 | 2 | &book; 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/pe01.ent: -------------------------------------------------------------------------------- 1 | This is not a legal parameter entity, because 2 | it does not match the "markupdecl" production. 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/sun/valid/pe01.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/invalid/002.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/invalid/002.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/invalid/005.ent: -------------------------------------------------------------------------------- 1 | "> 2 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/invalid/006.ent: -------------------------------------------------------------------------------- 1 | "> 2 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/invalid/not-sa/022.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/invalid/not-sa/out/022.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/ext-sa/001.ent: -------------------------------------------------------------------------------- 1 | &e; -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/ext-sa/001.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/ext-sa/002.ent: -------------------------------------------------------------------------------- 1 | 2 | data 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/001.ent: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/001.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/003.ent: -------------------------------------------------------------------------------- 1 | 2 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/004.ent: -------------------------------------------------------------------------------- 1 | 2 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/005.ent: -------------------------------------------------------------------------------- 1 | 2 | %e; 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/005.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/006.ent: -------------------------------------------------------------------------------- 1 | 3 | ]]> 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/006.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/007.ent: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/007.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/008.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/008.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/009.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | %e; --> 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/009.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/010.ent: -------------------------------------------------------------------------------- 1 | 2 | %e; doc (#PCDATA)> 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/010.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/011.ent: -------------------------------------------------------------------------------- 1 | 2 | "> 3 | %e1; doc (#PCDATA) %e2; 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/not-sa/011.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/001.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/002.xml: -------------------------------------------------------------------------------- 1 | 2 | <.doc> 3 | 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/003.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/004.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/005.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/006.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/007.xml: -------------------------------------------------------------------------------- 1 | & no refc 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/008.xml: -------------------------------------------------------------------------------- 1 | &.entity; 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/009.xml: -------------------------------------------------------------------------------- 1 | &#RE; 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/010.xml: -------------------------------------------------------------------------------- 1 | A & B 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/011.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/012.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/013.xml: -------------------------------------------------------------------------------- 1 | "> 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/015.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/016.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/017.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/018.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/019.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/020.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/021.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/022.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/023.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/024.xml: -------------------------------------------------------------------------------- 1 | 2 | <123> 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/025.xml: -------------------------------------------------------------------------------- 1 | ]]> 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/026.xml: -------------------------------------------------------------------------------- 1 | ]]]> 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/027.xml: -------------------------------------------------------------------------------- 1 | 2 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/033.xml: -------------------------------------------------------------------------------- 1 | abcdef 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/034.xml: -------------------------------------------------------------------------------- 1 | A form-feed is not white space or a name character 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/035.xml: -------------------------------------------------------------------------------- 1 | 1 < 2 but not in XML 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/036.xml: -------------------------------------------------------------------------------- 1 | 2 | Illegal data 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/037.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/038.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/039.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/040.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/041.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/042.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/043.xml: -------------------------------------------------------------------------------- 1 | 2 | Illegal data 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/044.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/045.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/046.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/047.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/048.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/049.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/051.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/052.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/053.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/054.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/055.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/056.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/057.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/061.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/062.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/063.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/070.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/072.xml: -------------------------------------------------------------------------------- 1 | &foo; 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/073.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &f; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/076.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/077.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/081.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/083.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/085.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/086.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/087.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/089.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/090.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/092.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/093.xml: -------------------------------------------------------------------------------- 1 | X 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/094.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/095.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/096.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/097.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/098.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/099.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/100.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/101.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/102.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/103.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/104.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/105.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/106.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/107.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/108.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/109.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/110.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | &e; 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/111.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/112.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/113.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/114.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/115.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/116.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &e;7; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/117.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &e;#97; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/118.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &&e;97; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/119.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | &e;#38; 6 | 7 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/120.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | &e; 6 | 7 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/121.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/122.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/123.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/124.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/125.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/126.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/127.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/128.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/129.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/130.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/131.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/133.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/134.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/135.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/136.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/137.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/138.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/139.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/140.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/141.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/142.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/143.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 |  5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/144.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | ￿ 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/145.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/146.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/147.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/148.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/150.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/151.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/152.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/154.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/155.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/156.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/157.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/166.xml: -------------------------------------------------------------------------------- 1 | ￿ 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/167.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/171.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/172.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/173.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/174.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/176.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/177.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | A￿ 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/179.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/not-wf/sa/185.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/001.ent: -------------------------------------------------------------------------------- 1 | Data 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/002.ent: -------------------------------------------------------------------------------- 1 | Data -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/004.ent: -------------------------------------------------------------------------------- 1 | Data -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/005.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/006.ent: -------------------------------------------------------------------------------- 1 | Data 2 | 3 | More data 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/009.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/011.ent: -------------------------------------------------------------------------------- 1 | xyzzy 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/012.ent: -------------------------------------------------------------------------------- 1 | &e4; -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/013.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/001.xml: -------------------------------------------------------------------------------- 1 | Data -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/002.xml: -------------------------------------------------------------------------------- 1 | Data -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/003.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/004.xml: -------------------------------------------------------------------------------- 1 | Data -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/005.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/006.xml: -------------------------------------------------------------------------------- 1 | Data More data -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/007.xml: -------------------------------------------------------------------------------- 1 | XYZ -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/008.xml: -------------------------------------------------------------------------------- 1 | XYZ -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/009.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/010.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/011.xml: -------------------------------------------------------------------------------- 1 | xyzzy -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/012.xml: -------------------------------------------------------------------------------- 1 | (e5) -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/013.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/ext-sa/out/014.xml: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/001.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/002.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/002.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/003.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/004-2.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/004.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/005-1.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | %e; 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/005-2.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/005.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/006.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/007.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/007.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/008.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/008.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/009.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/010.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/011.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/011.xml: -------------------------------------------------------------------------------- 1 | 3 | %e; 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/012.xml: -------------------------------------------------------------------------------- 1 | 3 | %e; 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/013.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/014.ent: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/015.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/016.ent: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/017.ent: -------------------------------------------------------------------------------- 1 | 2 | "> 3 | %e; 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/017.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/018.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/018.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/019.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/019.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/020.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/020.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/021.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/021.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/023.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/024.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/025.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/026.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/027.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/027.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/028.ent: -------------------------------------------------------------------------------- 1 | 2 | ]]> 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/028.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/029.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/030.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/030.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/031-2.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/031.xml: -------------------------------------------------------------------------------- 1 | 2 | &e; 3 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/001.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/002.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/003.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/004.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/005.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/006.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/007.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/008.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/009.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/010.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/011.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/012.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/013.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/014.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/015.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/016.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/017.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/018.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/019.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/020.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/021.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/022.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/023.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/024.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/025.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/026.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/027.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/028.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/029.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/030.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/not-sa/out/031.xml: -------------------------------------------------------------------------------- 1 | <!ATTLIST doc a1 CDATA "v1"> -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/001.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/002.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/003.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/007.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/009.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/016.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/017a.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/018.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | ]]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/019.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/020.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | ]]]> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/021.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/034.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/035.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/036.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/039.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/047.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | X 5 | Y 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/048.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | ] 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/052.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 𐀀􏿽 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/055.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | 6 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/057.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/060.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | X Y 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/061.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | £ 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/063.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | <เจมส์> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/064.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 𐀀􏿽 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/067.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/084.xml: -------------------------------------------------------------------------------- 1 | ]> 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/093.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/097.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/103.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | <doc> 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/119.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/001.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/002.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/003.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/004.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/005.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/006.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/007.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/008.xml: -------------------------------------------------------------------------------- 1 | &<>"' -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/009.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/010.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/011.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/012.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/013.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/014.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/015.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/016.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/017.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/017a.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/018.xml: -------------------------------------------------------------------------------- 1 | <foo> -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/019.xml: -------------------------------------------------------------------------------- 1 | <& -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/020.xml: -------------------------------------------------------------------------------- 1 | <&]>] -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/021.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/022.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/023.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/024.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/025.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/026.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/027.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/028.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/029.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/030.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/031.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/032.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/033.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/034.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/035.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/036.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/037.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/038.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/039.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/040.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/041.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/042.xml: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/043.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/045.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/046.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/047.xml: -------------------------------------------------------------------------------- 1 | X Y -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/048.xml: -------------------------------------------------------------------------------- 1 | ] -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/049.xml: -------------------------------------------------------------------------------- 1 | £ -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/050.xml: -------------------------------------------------------------------------------- 1 | เจมส์ -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/051.xml: -------------------------------------------------------------------------------- 1 | <เจมส์> -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/052.xml: -------------------------------------------------------------------------------- 1 | 𐀀􏿽 -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/053.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/054.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/055.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/056.xml: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/057.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/058.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/060.xml: -------------------------------------------------------------------------------- 1 | X Y -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/061.xml: -------------------------------------------------------------------------------- 1 | £ -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/062.xml: -------------------------------------------------------------------------------- 1 | เจมส์ -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/063.xml: -------------------------------------------------------------------------------- 1 | <เจมส์> -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/064.xml: -------------------------------------------------------------------------------- 1 | 𐀀􏿽 -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/065.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/066.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/067.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/068.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/069.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/070.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/071.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/072.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/073.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/074.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/075.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/077.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/078.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/079.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/080.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/081.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/082.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/083.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/084.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/085.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/086.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/087.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/088.xml: -------------------------------------------------------------------------------- 1 | <foo> -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/089.xml: -------------------------------------------------------------------------------- 1 | 𐀀􏿽􏿿 -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/090.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/092.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/093.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/094.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/095.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/096.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/097.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/098.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/099.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/100.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/101.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/102.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/103.xml: -------------------------------------------------------------------------------- 1 | <doc> -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/104.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/105.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/106.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/107.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/108.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/109.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/110.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/111.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/112.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/113.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/114.xml: -------------------------------------------------------------------------------- 1 | &foo; -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/115.xml: -------------------------------------------------------------------------------- 1 | v -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/116.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/117.xml: -------------------------------------------------------------------------------- 1 | ] -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/118.xml: -------------------------------------------------------------------------------- 1 | ]] -------------------------------------------------------------------------------- /spec_check/xmlconf/xmltest/valid/sa/out/119.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | dub test --build=unittest 4 | -------------------------------------------------------------------------------- /testRelease.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | dub test --build=unittest-release 4 | --------------------------------------------------------------------------------