├── .gitignore ├── .gitlab-ci.yml ├── .gitlab-ci ├── dist.sh ├── llvm-symbolizer ├── setup_mingw.sh ├── test.sh └── test_cmake.sh ├── AUTHORS ├── CMakeLists.txt ├── Copyright ├── FEATURES ├── FindGcrypt.cmake ├── HACKING ├── INSTALL ├── Makefile.am ├── NEWS ├── NOTES ├── README.md ├── TODO ├── autogen.sh ├── config.h.cmake.in ├── configure.ac ├── doc ├── EXSLT │ ├── devhelp │ │ ├── Makefile.am │ │ ├── devhelp2.xsl │ │ ├── general.html │ │ ├── home.png │ │ ├── html.xsl │ │ ├── index.html │ │ ├── left.png │ │ ├── libexslt-exslt.html │ │ ├── libexslt-exsltexports.html │ │ ├── libexslt.devhelp2 │ │ ├── right.png │ │ ├── style.css │ │ └── up.png │ └── libexslt-api.xml ├── Makefile.am ├── apibuild.py ├── devhelp │ ├── Makefile.am │ ├── devhelp2.xsl │ ├── general.html │ ├── home.png │ ├── html.xsl │ ├── index.html │ ├── left.png │ ├── libxslt-attributes.html │ ├── libxslt-documents.html │ ├── libxslt-extensions.html │ ├── libxslt-extra.html │ ├── libxslt-functions.html │ ├── libxslt-imports.html │ ├── libxslt-keys.html │ ├── libxslt-namespaces.html │ ├── libxslt-numbersInternals.html │ ├── libxslt-pattern.html │ ├── libxslt-preproc.html │ ├── libxslt-security.html │ ├── libxslt-templates.html │ ├── libxslt-transform.html │ ├── libxslt-variables.html │ ├── libxslt-xslt.html │ ├── libxslt-xsltInternals.html │ ├── libxslt-xsltexports.html │ ├── libxslt-xsltlocale.html │ ├── libxslt-xsltutils.html │ ├── libxslt.devhelp2 │ ├── right.png │ ├── style.css │ └── up.png ├── libxslt-api.xml ├── tutorial │ ├── images │ │ └── callouts │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ ├── libxslt_tutorial.c │ ├── libxslttutorial.html │ └── libxslttutorial.xml ├── tutorial2 │ ├── libxslt_pipes.c │ ├── libxslt_pipes.html │ └── libxslt_pipes.xml ├── xsltproc.1 ├── xsltproc.html └── xsltproc.xml ├── examples └── xsltICUSort.c ├── libexslt.pc.in ├── libexslt ├── Makefile.am ├── common.c ├── crypto.c ├── date.c ├── dynamic.c ├── exslt.c ├── exslt.h ├── exsltconfig.h.in ├── exsltexports.h ├── functions.c ├── libexslt.3 ├── libexslt.h ├── math.c ├── saxon.c ├── sets.c └── strings.c ├── libxslt-config.cmake.cmake.in ├── libxslt-config.cmake.in ├── libxslt.doap ├── libxslt.m4 ├── libxslt.pc.in ├── libxslt ├── Makefile.am ├── attributes.c ├── attributes.h ├── attrvt.c ├── documents.c ├── documents.h ├── extensions.c ├── extensions.h ├── extra.c ├── extra.h ├── functions.c ├── functions.h ├── imports.c ├── imports.h ├── keys.c ├── keys.h ├── libxslt.3 ├── libxslt.h ├── libxslt.syms ├── namespaces.c ├── namespaces.h ├── numbers.c ├── numbersInternals.h ├── pattern.c ├── pattern.h ├── preproc.c ├── preproc.h ├── security.c ├── security.h ├── templates.c ├── templates.h ├── transform.c ├── transform.h ├── transformInternals.h ├── trio.h ├── triodef.h ├── variables.c ├── variables.h ├── win32config.h ├── xslt.c ├── xslt.h ├── xsltInternals.h ├── xsltconfig.h.in ├── xsltexports.h ├── xsltlocale.c ├── xsltlocale.h ├── xsltutils.c └── xsltutils.h ├── m4 ├── ax_append_flag.m4 ├── ax_append_link_flags.m4 ├── ax_check_link_flag.m4 └── ax_require_defined.m4 ├── python ├── Makefile.am ├── generator.py ├── libxml_wrap.h ├── libxsl.py ├── libxslt-python-api.xml ├── libxslt.c ├── libxslt_wrap.h ├── pyproject.toml ├── setup.py.in ├── tests │ ├── Makefile.am │ ├── basic.py │ ├── exslt.py │ ├── extelem.py │ ├── extfunc.py │ ├── pyxsltproc.py │ ├── setup_test.py │ ├── test.xml │ └── test.xsl └── types.c ├── tests ├── Makefile.am ├── REC │ ├── article.xsl │ ├── bigfont.xsl │ ├── stand-2.7-1.dtd │ ├── stand-2.7-1.out │ ├── stand-2.7-1.stand.out │ ├── stand-2.7-1.xml │ ├── stand-2.7-1.xsl │ ├── stand-2.7-2.stand.out │ ├── stand-2.7-2.xml │ ├── stand-2.7-3.stand.out │ ├── stand-2.7-3.xml │ ├── test-10-1.out │ ├── test-10-1.xml │ ├── test-10-1.xsl │ ├── test-10-2.out │ ├── test-10-2.xml │ ├── test-10-2.xsl │ ├── test-10-3.out │ ├── test-10-3.xml │ ├── test-10-3.xsl │ ├── test-11.2-1.out │ ├── test-11.2-1.xml │ ├── test-11.2-1.xsl │ ├── test-11.2-2.out │ ├── test-11.2-2.xml │ ├── test-11.2-2.xsl │ ├── test-11.2-3.out │ ├── test-11.2-3.xml │ ├── test-11.2-3.xsl │ ├── test-11.2-4.out │ ├── test-11.2-4.xml │ ├── test-11.2-4.xsl │ ├── test-11.2-5.out │ ├── test-11.2-5.xml │ ├── test-11.2-5.xsl │ ├── test-11.2-6.out │ ├── test-11.2-6.xml │ ├── test-11.2-6.xsl │ ├── test-12.2-1.out │ ├── test-12.2-1.xml │ ├── test-12.2-1.xsl │ ├── test-12.2-2.out │ ├── test-12.2-2.xml │ ├── test-12.2-2.xsl │ ├── test-12.4-1.out │ ├── test-12.4-1.xml │ ├── test-12.4-1.xsl │ ├── test-15-1.out │ ├── test-15-1.xml │ ├── test-15-1.xsl │ ├── test-16.1-1.out │ ├── test-16.1-1.xml │ ├── test-16.1-1.xsl │ ├── test-16.1-2.out │ ├── test-16.1-2.xml │ ├── test-16.1-2.xsl │ ├── test-2.3-1.out │ ├── test-2.3-1.xml │ ├── test-2.3-1.xsl │ ├── test-2.3-2.out │ ├── test-2.3-2.xml │ ├── test-2.3-2.xsl │ ├── test-2.5-1.err │ ├── test-2.5-1.out │ ├── test-2.5-1.xml │ ├── test-2.5-1.xsl │ ├── test-2.6.2-1.out │ ├── test-2.6.2-1.xml │ ├── test-2.6.2-1.xsl │ ├── test-3.4-1.out │ ├── test-3.4-1.xml │ ├── test-3.4-1.xsl │ ├── test-3.4-2.out │ ├── test-3.4-2.xml │ ├── test-3.4-2.xsl │ ├── test-3.4-3.out │ ├── test-3.4-3.xml │ ├── test-3.4-3.xsl │ ├── test-5.2-1.out │ ├── test-5.2-1.xml │ ├── test-5.2-1.xsl │ ├── test-5.2-10.out │ ├── test-5.2-10.xml │ ├── test-5.2-10.xsl │ ├── test-5.2-11.out │ ├── test-5.2-11.xml │ ├── test-5.2-11.xsl │ ├── test-5.2-12.out │ ├── test-5.2-12.xml │ ├── test-5.2-12.xsl │ ├── test-5.2-13.out │ ├── test-5.2-13.xml │ ├── test-5.2-13.xsl │ ├── test-5.2-14.out │ ├── test-5.2-14.xml │ ├── test-5.2-14.xsl │ ├── test-5.2-15.out │ ├── test-5.2-15.xml │ ├── test-5.2-15.xsl │ ├── test-5.2-16.out │ ├── test-5.2-16.xml │ ├── test-5.2-16.xsl │ ├── test-5.2-17.out │ ├── test-5.2-17.xml │ ├── test-5.2-17.xsl │ ├── test-5.2-18.out │ ├── test-5.2-18.xml │ ├── test-5.2-18.xsl │ ├── test-5.2-19.out │ ├── test-5.2-19.xml │ ├── test-5.2-19.xsl │ ├── test-5.2-2.out │ ├── test-5.2-2.xml │ ├── test-5.2-2.xsl │ ├── test-5.2-20.out │ ├── test-5.2-20.xml │ ├── test-5.2-20.xsl │ ├── test-5.2-21.out │ ├── test-5.2-21.xml │ ├── test-5.2-21.xsl │ ├── test-5.2-22.out │ ├── test-5.2-22.xml │ ├── test-5.2-22.xsl │ ├── test-5.2-3.out │ ├── test-5.2-3.xml │ ├── test-5.2-3.xsl │ ├── test-5.2-4.out │ ├── test-5.2-4.xml │ ├── test-5.2-4.xsl │ ├── test-5.2-5.out │ ├── test-5.2-5.xml │ ├── test-5.2-5.xsl │ ├── test-5.2-6.out │ ├── test-5.2-6.xml │ ├── test-5.2-6.xsl │ ├── test-5.2-7.out │ ├── test-5.2-7.xml │ ├── test-5.2-7.xsl │ ├── test-5.2-8.out │ ├── test-5.2-8.xml │ ├── test-5.2-8.xsl │ ├── test-5.2-9.out │ ├── test-5.2-9.xml │ ├── test-5.2-9.xsl │ ├── test-5.3.out │ ├── test-5.3.xml │ ├── test-5.3.xsl │ ├── test-5.4-1.out │ ├── test-5.4-1.xml │ ├── test-5.4-1.xsl │ ├── test-5.4-2.out │ ├── test-5.4-2.xml │ ├── test-5.4-2.xsl │ ├── test-5.4-3.out │ ├── test-5.4-3.xml │ ├── test-5.4-3.xsl │ ├── test-5.4-4.out │ ├── test-5.4-4.xml │ ├── test-5.4-4.xsl │ ├── test-5.4-5.out │ ├── test-5.4-5.xml │ ├── test-5.4-5.xsl │ ├── test-5.5-1.out │ ├── test-5.5-1.xml │ ├── test-5.5-1.xsl │ ├── test-5.8.out │ ├── test-5.8.xml │ ├── test-5.8.xsl │ ├── test-6.1.err │ ├── test-6.1.xml │ ├── test-6.1.xsl │ ├── test-6.out │ ├── test-6.xml │ ├── test-6.xsl │ ├── test-7.1.1-2.out │ ├── test-7.1.1-2.xml │ ├── test-7.1.1-2.xsl │ ├── test-7.1.1-3.out │ ├── test-7.1.1-3.xml │ ├── test-7.1.1-3.xsl │ ├── test-7.1.1.out │ ├── test-7.1.1.xml │ ├── test-7.1.1.xsl │ ├── test-7.1.3.out │ ├── test-7.1.3.xml │ ├── test-7.1.3.xsl │ ├── test-7.1.4.out │ ├── test-7.1.4.xml │ ├── test-7.1.4.xsl │ ├── test-7.3.out │ ├── test-7.3.xml │ ├── test-7.3.xsl │ ├── test-7.4.out │ ├── test-7.4.xml │ ├── test-7.4.xsl │ ├── test-7.5-1.out │ ├── test-7.5-1.xml │ ├── test-7.5-1.xsl │ ├── test-7.6.1-1.out │ ├── test-7.6.1-1.xml │ ├── test-7.6.1-1.xsl │ ├── test-7.6.1-2.out │ ├── test-7.6.1-2.xml │ ├── test-7.6.1-2.xsl │ ├── test-7.6.1-3.out │ ├── test-7.6.1-3.xml │ ├── test-7.6.1-3.xsl │ ├── test-7.6.2-1.out │ ├── test-7.6.2-1.xml │ ├── test-7.6.2-1.xsl │ ├── test-7.6.2-2.out │ ├── test-7.6.2-2.xml │ ├── test-7.6.2-2.xsl │ ├── test-7.7-1.out │ ├── test-7.7-1.xml │ ├── test-7.7-1.xsl │ ├── test-7.7-2.out │ ├── test-7.7-2.xml │ ├── test-7.7-2.xsl │ ├── test-7.7-3.out │ ├── test-7.7-3.xml │ ├── test-7.7-3.xsl │ ├── test-7.7-4.out │ ├── test-7.7-4.xml │ ├── test-7.7-4.xsl │ ├── test-7.7-5.out │ ├── test-7.7-5.xml │ ├── test-7.7-5.xsl │ ├── test-7.7-6.out │ ├── test-7.7-6.xml │ ├── test-7.7-6.xsl │ ├── test-8-1.out │ ├── test-8-1.xml │ ├── test-8-1.xsl │ ├── test-9.1-1.out │ ├── test-9.1-1.xml │ ├── test-9.1-1.xsl │ ├── test-9.1-2.out │ ├── test-9.1-2.xml │ ├── test-9.1-2.xsl │ └── test-9.2-1.xsl ├── REC2 │ ├── html.out │ ├── html.xml │ ├── html.xsl │ ├── svg.out │ ├── svg.xml │ ├── svg.xsl │ ├── vrml.out │ ├── vrml.xml │ └── vrml.xsl ├── XSLTMark │ ├── Makefile.am │ ├── alphabetize.out │ ├── alphabetize.ref │ ├── alphabetize.xsl │ ├── attsets.out │ ├── attsets.ref │ ├── attsets.xsl │ ├── avts.out │ ├── avts.ref │ ├── avts.xsl │ ├── axis.out │ ├── axis.ref │ ├── axis.xml │ ├── axis.xsl │ ├── backwards.out │ ├── backwards.ref │ ├── backwards.xsl │ ├── bottles.out │ ├── bottles.ref │ ├── bottles.xml │ ├── bottles.xsl │ ├── breadth.out │ ├── breadth.ref │ ├── breadth.xml │ ├── brutal.out │ ├── brutal.ref │ ├── brutal.xml │ ├── brutal.xsl │ ├── chart.out │ ├── chart.ref │ ├── chart.xml │ ├── chart.xsl │ ├── creation.out │ ├── creation.ref │ ├── creation.xsl │ ├── current.out │ ├── current.ref │ ├── current.xml │ ├── current.xsl │ ├── dbgen.pl │ ├── dbhtml.xsl │ ├── dbonerow.out │ ├── dbonerow.ref │ ├── dbonerow.xsl │ ├── dbsql10.ref │ ├── dbsql10.xsl │ ├── dbsql100.ref │ ├── dbsql100.xsl │ ├── dbsql1000.ref │ ├── dbsql1000.xsl │ ├── dbsql2000.ref │ ├── dbsql2000.xsl │ ├── dbsql250.ref │ ├── dbsql250.xsl │ ├── dbsql50.ref │ ├── dbsql50.xsl │ ├── dbsql500.ref │ ├── dbsql500.xsl │ ├── dbsql750.ref │ ├── dbsql750.xsl │ ├── dbtail.out │ ├── dbtail.ref │ ├── dbtail.xsl │ ├── decoy.out │ ├── decoy.xsl │ ├── depth.out │ ├── depth.ref │ ├── depth.xml │ ├── encrypt.out │ ├── encrypt.ref │ ├── encrypt.xsl │ ├── find.xsl │ ├── functions.out │ ├── functions.ref │ ├── functions.xsl │ ├── game.out │ ├── game.ref │ ├── game.xml │ ├── game.xsl │ ├── gettysburg.xml │ ├── html.out │ ├── html.ref │ ├── html.xml │ ├── html.xsl │ ├── identity.out │ ├── identity.ref │ ├── identity.xml │ ├── identity.xsl │ ├── inventory.out │ ├── inventory.ref │ ├── inventory.xml │ ├── inventory.xsl │ ├── metric.out │ ├── metric.ref │ ├── metric.xml │ ├── metric.xsl │ ├── number.out │ ├── number.xml │ ├── number.xsl │ ├── oddtemplate.out │ ├── oddtemplate.ref │ ├── oddtemplate.xml │ ├── oddtemplate.xsl │ ├── patterns.out │ ├── patterns.ref │ ├── patterns.xsl │ ├── prettyprint.out │ ├── prettyprint.ref │ ├── prettyprint.xsl │ ├── priority.out │ ├── priority.ref │ ├── priority.xml │ ├── priority.xsl │ ├── products.out │ ├── products.ref │ ├── products.xml │ ├── products.xsl │ ├── queens.out │ ├── queens.ref │ ├── queens.xml │ ├── queens.xsl │ ├── reverser.out │ ├── reverser.ref │ ├── reverser.xsl │ ├── stringsort.out │ ├── stringsort.ref │ ├── stringsort.xsl │ ├── summarize.out │ ├── summarize.ref │ ├── summarize.xsl │ ├── total.out │ ├── total.ref │ ├── total.xsl │ ├── tower.out │ ├── tower.ref │ ├── tower.xml │ ├── tower.xsl │ ├── tower2.xsl │ ├── trend.out │ ├── trend.ref │ ├── trend.xml │ ├── trend.xsl │ ├── union.out │ ├── union.ref │ ├── union.xml │ ├── union.xsl │ ├── xpath.out │ ├── xpath.ref │ ├── xpath.xml │ ├── xpath.xsl │ ├── xslbench1.out │ ├── xslbench1.xml │ ├── xslbench1.xsl │ ├── xslbench2.out │ ├── xslbench2.xsl │ ├── xslbench3.out │ ├── xslbench3.xsl │ └── xslbenchdream.xml ├── docbook │ ├── BUGS │ ├── ChangeLog │ ├── Makefile.am │ ├── README │ ├── TODO │ ├── VERSION │ ├── WhatsNew │ ├── common │ │ ├── ChangeLog │ │ ├── LostLog │ │ ├── ca.xml │ │ ├── common.xsl │ │ ├── cs.xml │ │ ├── da.xml │ │ ├── de.xml │ │ ├── el.xml │ │ ├── en.xml │ │ ├── es.xml │ │ ├── et.xml │ │ ├── fi.xml │ │ ├── fr.xml │ │ ├── gentext.xsl │ │ ├── hu.xml │ │ ├── id.xml │ │ ├── it.xml │ │ ├── ja.xml │ │ ├── ko.xml │ │ ├── l10n.dtd │ │ ├── l10n.xml │ │ ├── l10n.xsl │ │ ├── labels.xsl │ │ ├── nl.xml │ │ ├── no.xml │ │ ├── pl.xml │ │ ├── pt.xml │ │ ├── pt_br.xml │ │ ├── ro.xml │ │ ├── ru.xml │ │ ├── sk.xml │ │ ├── sl.xml │ │ ├── sr.xml │ │ ├── subtitles.xsl │ │ ├── sv.xml │ │ ├── titles.xsl │ │ ├── zh_cn.xml │ │ └── zh_tw.xml │ ├── doc │ │ ├── ChangeLog │ │ ├── book.xsl │ │ ├── ch01s02.html │ │ ├── ch01s03.html │ │ ├── ch01s04.html │ │ ├── ch02s02.html │ │ ├── ch03.html │ │ ├── ch04.html │ │ ├── common │ │ │ ├── ChangeLog │ │ │ └── common.html │ │ ├── copyright.html │ │ ├── extensions.html │ │ ├── fo │ │ │ ├── ChangeLog │ │ │ ├── param.html │ │ │ └── table.html │ │ ├── html │ │ │ ├── ChangeLog │ │ │ ├── ebnf.html │ │ │ └── param.html │ │ ├── index.html │ │ ├── jrefhtml.xsl │ │ ├── lib │ │ │ ├── ChangeLog │ │ │ └── lib.html │ │ ├── pr01.html │ │ ├── publishing.html │ │ ├── reference.css │ │ ├── reference.html │ │ ├── reference.xsl │ │ └── warranty.html │ ├── dtd │ │ ├── 3.1.7 │ │ │ ├── COPYRIGHT │ │ │ ├── ChangeLog │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── calstblx.dtd │ │ │ ├── dbcentx.mod │ │ │ ├── dbgenent.ent │ │ │ ├── dbhierx.mod │ │ │ ├── dbnotnx.mod │ │ │ ├── dbpoolx.mod │ │ │ ├── dbtblcals.dtd │ │ │ ├── dbtblxchg.dtd │ │ │ ├── docbookx.dtd │ │ │ ├── ent │ │ │ │ ├── ChangeLog │ │ │ │ ├── iso-amsa.ent │ │ │ │ ├── iso-amsb.ent │ │ │ │ ├── iso-amsc.ent │ │ │ │ ├── iso-amsn.ent │ │ │ │ ├── iso-amso.ent │ │ │ │ ├── iso-amsr.ent │ │ │ │ ├── iso-box.ent │ │ │ │ ├── iso-cyr1.ent │ │ │ │ ├── iso-cyr2.ent │ │ │ │ ├── iso-dia.ent │ │ │ │ ├── iso-grk1.ent │ │ │ │ ├── iso-grk2.ent │ │ │ │ ├── iso-grk3.ent │ │ │ │ ├── iso-grk4.ent │ │ │ │ ├── iso-lat1.ent │ │ │ │ ├── iso-lat2.ent │ │ │ │ ├── iso-num.ent │ │ │ │ ├── iso-pub.ent │ │ │ │ └── iso-tech.ent │ │ │ ├── soextblx.dtd │ │ │ ├── tblcals.xml │ │ │ ├── tblxchg.xml │ │ │ └── test.xml │ │ ├── 4.0 │ │ │ ├── 40chg.txt │ │ │ ├── calstblx.dtd │ │ │ ├── dbcentx.mod │ │ │ ├── dbgenent.ent │ │ │ ├── dbhierx.mod │ │ │ ├── dbnotnx.mod │ │ │ ├── dbpoolx.mod │ │ │ ├── docbookx.dtd │ │ │ ├── ent │ │ │ │ ├── iso-amsa.ent │ │ │ │ ├── iso-amsb.ent │ │ │ │ ├── iso-amsc.ent │ │ │ │ ├── iso-amsn.ent │ │ │ │ ├── iso-amso.ent │ │ │ │ ├── iso-amsr.ent │ │ │ │ ├── iso-box.ent │ │ │ │ ├── iso-cyr1.ent │ │ │ │ ├── iso-cyr2.ent │ │ │ │ ├── iso-dia.ent │ │ │ │ ├── iso-grk1.ent │ │ │ │ ├── iso-grk2.ent │ │ │ │ ├── iso-grk3.ent │ │ │ │ ├── iso-grk4.ent │ │ │ │ ├── iso-lat1.ent │ │ │ │ ├── iso-lat2.ent │ │ │ │ ├── iso-num.ent │ │ │ │ ├── iso-pub.ent │ │ │ │ └── iso-tech.ent │ │ │ ├── readme.txt │ │ │ └── soextblx.dtd │ │ ├── 4.1.2 │ │ │ ├── 40chg.txt │ │ │ ├── 41chg.txt │ │ │ ├── ChangeLog │ │ │ ├── calstblx.dtd │ │ │ ├── dbcentx.mod │ │ │ ├── dbgenent.mod │ │ │ ├── dbhierx.mod │ │ │ ├── dbnotnx.mod │ │ │ ├── dbpoolx.mod │ │ │ ├── docbook.cat │ │ │ ├── docbookx.dtd │ │ │ ├── ent │ │ │ │ ├── iso-amsa.ent │ │ │ │ ├── iso-amsb.ent │ │ │ │ ├── iso-amsc.ent │ │ │ │ ├── iso-amsn.ent │ │ │ │ ├── iso-amso.ent │ │ │ │ ├── iso-amsr.ent │ │ │ │ ├── iso-box.ent │ │ │ │ ├── iso-cyr1.ent │ │ │ │ ├── iso-cyr2.ent │ │ │ │ ├── iso-dia.ent │ │ │ │ ├── iso-grk1.ent │ │ │ │ ├── iso-grk2.ent │ │ │ │ ├── iso-grk3.ent │ │ │ │ ├── iso-grk4.ent │ │ │ │ ├── iso-lat1.ent │ │ │ │ ├── iso-lat2.ent │ │ │ │ ├── iso-num.ent │ │ │ │ ├── iso-pub.ent │ │ │ │ └── iso-tech.ent │ │ │ ├── readme.txt │ │ │ └── soextblx.dtd │ │ └── simple │ │ │ ├── 3.1.7.1 │ │ │ ├── COPYRIGHT │ │ │ ├── ChangeLog │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── ent │ │ │ │ ├── ChangeLog │ │ │ │ ├── iso-lat1.ent │ │ │ │ ├── iso-num.ent │ │ │ │ └── iso-pub.ent │ │ │ ├── sdbcent.mod │ │ │ ├── sdbhier.mod │ │ │ ├── sdbpool.mod │ │ │ ├── sdocbook-custom.dtd │ │ │ ├── sdocbook.css │ │ │ ├── sdocbook.dtd │ │ │ ├── sdocbookref-custom.dtd │ │ │ ├── sdocbookref.dtd │ │ │ ├── sinclist.mod │ │ │ ├── test.xml │ │ │ ├── testcss.xml │ │ │ ├── testcust.xml │ │ │ └── testrefcust.xml │ │ │ └── 4.1.2.4 │ │ │ ├── COPYRIGHT │ │ │ ├── ChangeLog │ │ │ ├── LostLog │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── sdbcent.mod │ │ │ ├── sdbhier.mod │ │ │ ├── sdbpool.mod │ │ │ ├── sdocbook-custom.dtd │ │ │ ├── sdocbook.css │ │ │ ├── sdocbook.dtd │ │ │ ├── sdocbookref.dtd │ │ │ ├── sinclist.mod │ │ │ ├── test.xml │ │ │ ├── testcss.xml │ │ │ ├── testcust.xml │ │ │ └── testrefcust.xml │ ├── fo │ │ ├── ChangeLog │ │ ├── LostLog │ │ ├── admon.xsl │ │ ├── autoidx.xsl │ │ ├── autotoc.xsl │ │ ├── biblio.xsl │ │ ├── block.xsl │ │ ├── callout.xsl │ │ ├── component.xsl │ │ ├── division.xsl │ │ ├── docbook.xsl │ │ ├── fo.xsl │ │ ├── footnote.xsl │ │ ├── fop.xsl │ │ ├── formal.xsl │ │ ├── glossary.xsl │ │ ├── graphics.xsl │ │ ├── index.xsl │ │ ├── info.xsl │ │ ├── inline.xsl │ │ ├── keywords.xsl │ │ ├── lists.xsl │ │ ├── math.xsl │ │ ├── pagesetup.xsl │ │ ├── param.xsl │ │ ├── pi.xsl │ │ ├── qandaset.xsl │ │ ├── refentry.xsl │ │ ├── sections.xsl │ │ ├── synop.xsl │ │ ├── table.xsl │ │ ├── titlepage.templates.xml │ │ ├── titlepage.templates.xsl │ │ ├── titlepage.xsl │ │ ├── toc.xsl │ │ ├── verbatim.xsl │ │ └── xref.xsl │ ├── html │ │ ├── ChangeLog │ │ ├── LostLog │ │ ├── admon.xsl │ │ ├── autoidx.xsl │ │ ├── autotoc.xsl │ │ ├── biblio.xsl │ │ ├── block.xsl │ │ ├── callout.xsl │ │ ├── changebars.xsl │ │ ├── chunk-common.xsl │ │ ├── chunk.xsl │ │ ├── chunker.xsl │ │ ├── component.xsl │ │ ├── division.xsl │ │ ├── docbook.xsl │ │ ├── ebnf.xsl │ │ ├── footnote.xsl │ │ ├── formal.xsl │ │ ├── glossary.xsl │ │ ├── graphics.xsl │ │ ├── html.xsl │ │ ├── index.xsl │ │ ├── info.xsl │ │ ├── inline.xsl │ │ ├── keywords.xsl │ │ ├── lists.xsl │ │ ├── math.xsl │ │ ├── param.xsl │ │ ├── pi.xsl │ │ ├── qandaset.xsl │ │ ├── refentry.xsl │ │ ├── sections.xsl │ │ ├── synop.xsl │ │ ├── table.xsl │ │ ├── titlepage.templates.xml │ │ ├── titlepage.templates.xsl │ │ ├── titlepage.xsl │ │ ├── toc.xsl │ │ ├── verbatim.xsl │ │ ├── xref.xsl │ │ ├── xtchunk.xsl │ │ └── xtchunker.xsl │ ├── htmlhelp │ │ ├── ChangeLog │ │ ├── doc │ │ │ ├── ChangeLog │ │ │ └── htmlhelp.xml │ │ ├── htmlhelp-common.xsl │ │ ├── htmlhelp.xsl │ │ ├── langcodes.xml │ │ └── xthtmlhelp.xsl │ ├── images │ │ ├── ChangeLog │ │ ├── callouts │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── 9.png │ │ │ └── ChangeLog │ │ ├── caution.gif │ │ ├── caution.png │ │ ├── caution.tif │ │ ├── home.png │ │ ├── important.gif │ │ ├── important.png │ │ ├── important.tif │ │ ├── next.png │ │ ├── note.gif │ │ ├── note.png │ │ ├── note.tif │ │ ├── prev.png │ │ ├── tip.gif │ │ ├── tip.png │ │ ├── tip.tif │ │ ├── toc-blank.png │ │ ├── toc-minus.png │ │ ├── toc-plus.png │ │ ├── up.png │ │ ├── warning.gif │ │ ├── warning.png │ │ └── warning.tif │ ├── lib │ │ ├── ChangeLog │ │ ├── LostLog │ │ └── lib.xsl │ ├── result │ │ ├── fo │ │ │ ├── article.fo │ │ │ ├── article2.fo │ │ │ ├── article3.fo │ │ │ ├── bib.fo │ │ │ ├── book.fo │ │ │ ├── book2.fo │ │ │ ├── book3.fo │ │ │ ├── callout.fo │ │ │ ├── chunk.fo │ │ │ ├── classsynop.fo │ │ │ ├── condition.fo │ │ │ ├── docbook40.fo │ │ │ ├── external.fo │ │ │ ├── figtest.fo │ │ │ ├── foottest.fo │ │ │ ├── fotest.fo │ │ │ ├── func.fo │ │ │ ├── gdp-handbook.fo │ │ │ ├── graphics.fo │ │ │ ├── gtest.fo │ │ │ ├── idxbook.fo │ │ │ ├── kwrite.fo │ │ │ ├── multilingual.fo │ │ │ ├── qa.fo │ │ │ ├── qa2.fo │ │ │ ├── sectest.fo │ │ │ ├── set.fo │ │ │ ├── table.fo │ │ │ ├── test.fo │ │ │ └── verbtest.fo │ │ ├── html │ │ │ ├── article.html │ │ │ ├── article2.html │ │ │ ├── article3.html │ │ │ ├── bib.html │ │ │ ├── book.html │ │ │ ├── book2.html │ │ │ ├── book3.html │ │ │ ├── callout.html │ │ │ ├── chunk.html │ │ │ ├── classsynop.html │ │ │ ├── condition.html │ │ │ ├── docbook40.html │ │ │ ├── emc2.gif │ │ │ ├── emc2.png │ │ │ ├── external.html │ │ │ ├── figtest.html │ │ │ ├── foottest.html │ │ │ ├── fotest.html │ │ │ ├── func.html │ │ │ ├── gdp-handbook.err │ │ │ ├── gdp-handbook.html │ │ │ ├── graphics.html │ │ │ ├── gtest.html │ │ │ ├── idxbook.html │ │ │ ├── kwrite.html │ │ │ ├── multilingual.html │ │ │ ├── qa.html │ │ │ ├── qa2.html │ │ │ ├── sectest.html │ │ │ ├── set.html │ │ │ ├── table.html │ │ │ ├── test.html │ │ │ ├── testmath.html │ │ │ └── verbtest.html │ │ ├── xhtml │ │ │ ├── article.xhtml │ │ │ ├── article2.xhtml │ │ │ ├── article3.xhtml │ │ │ ├── bib.xhtml │ │ │ ├── book.xhtml │ │ │ ├── book2.xhtml │ │ │ ├── book3.xhtml │ │ │ ├── callout.xhtml │ │ │ ├── chunk.xhtml │ │ │ ├── classsynop.xhtml │ │ │ ├── condition.xhtml │ │ │ ├── docbook40.xhtml │ │ │ ├── external.xhtml │ │ │ ├── figtest.xhtml │ │ │ ├── foottest.xhtml │ │ │ ├── fotest.xhtml │ │ │ ├── func.xhtml │ │ │ ├── gdp-handbook.xhtml │ │ │ ├── graphics.xhtml │ │ │ ├── gtest.xhtml │ │ │ ├── idxbook.xhtml │ │ │ ├── kwrite.xhtml │ │ │ ├── multilingual.xhtml │ │ │ ├── qa.xhtml │ │ │ ├── qa2.xhtml │ │ │ ├── sectest.xhtml │ │ │ ├── set.xhtml │ │ │ ├── table.xhtml │ │ │ ├── test.xhtml │ │ │ └── verbtest.xhtml │ │ └── xtchunk │ │ │ └── html │ │ │ ├── apa.orig │ │ │ ├── apas02.orig │ │ │ ├── apas03.orig │ │ │ ├── index.orig │ │ │ ├── indexs02.orig │ │ │ ├── indexs03.orig │ │ │ ├── indexs04.orig │ │ │ ├── indexs05.orig │ │ │ ├── indexs06.orig │ │ │ ├── indexs07.orig │ │ │ ├── indexs08.orig │ │ │ ├── indexs09.orig │ │ │ ├── indexs10.orig │ │ │ ├── indexs11.orig │ │ │ ├── indexs12.orig │ │ │ ├── indexs13.orig │ │ │ ├── indexs14.orig │ │ │ └── indexs15.orig │ ├── template │ │ ├── ChangeLog │ │ ├── README │ │ ├── biblioentry.xsl │ │ ├── testtemplate.xml │ │ └── titlepage.xsl │ ├── test │ │ ├── ChangeLog │ │ ├── LostLog │ │ ├── article.xml │ │ ├── article2.xml │ │ ├── article3.xml │ │ ├── bib.xml │ │ ├── book.xml │ │ ├── book2.xml │ │ ├── book3.xml │ │ ├── callout.xml │ │ ├── chunk.xml │ │ ├── classsynop.xml │ │ ├── condition.xml │ │ ├── docbook.css │ │ ├── docbook40.xml │ │ ├── emc2.gif │ │ ├── emc2.png │ │ ├── external.xml │ │ ├── figtest.xml │ │ ├── foottest.xml │ │ ├── fotest.xml │ │ ├── func.xml │ │ ├── gdp-handbook.xml │ │ ├── graphics.xml │ │ ├── gtest.xml │ │ ├── idxbook.xml │ │ ├── kwrite.xml │ │ ├── multilingual.xml │ │ ├── qa.xml │ │ ├── qa2.xml │ │ ├── sectest.xml │ │ ├── set.xml │ │ ├── subdoc.ent │ │ ├── table.xml │ │ ├── test.xml │ │ ├── test.xsl │ │ └── verbtest.xml │ └── xhtml │ │ ├── ChangeLog │ │ ├── LostLog │ │ ├── chunk.xsl │ │ ├── docbook.xsl │ │ └── xtchunk.xsl ├── documents │ ├── bredfort.css │ ├── bredfort.out │ ├── bredfort.xml │ ├── bredfort.xsl │ ├── doc_file.xml │ ├── docfile.xml │ ├── fragment.out │ ├── fragment.xml │ ├── fragment.xsl │ ├── fragment2.xml │ ├── menu.xml │ ├── message.err │ ├── message.xml │ ├── message.xsl │ ├── system.xml │ ├── test.out │ ├── test.xml │ ├── test.xsl │ ├── test_bad.err │ ├── test_bad.out │ ├── test_bad.xml │ ├── test_bad.xsl │ └── worklog.xml ├── encoding │ ├── bug-146.out │ ├── bug-146.xml │ └── bug-146.xsl ├── exslt │ ├── common │ │ ├── dynamic-id.out │ │ ├── dynamic-id.xml │ │ ├── dynamic-id.xsl │ │ ├── import-test1.out │ │ ├── import-test1.xml │ │ ├── import-test1.xsl │ │ ├── import-test1a.imp │ │ ├── import-test1b.imp │ │ ├── node-set.1.out │ │ ├── node-set.1.xml │ │ ├── node-set.1.xsl │ │ ├── node-set.2.out │ │ ├── node-set.2.xml │ │ ├── node-set.2.xsl │ │ ├── node-set.3.out │ │ ├── node-set.3.xml │ │ ├── node-set.3.xsl │ │ ├── node-set.4.out │ │ ├── node-set.4.xml │ │ ├── node-set.4.xsl │ │ ├── node-set.5.out │ │ ├── node-set.5.xml │ │ ├── node-set.5.xsl │ │ ├── node-set.6.out │ │ ├── node-set.6.xml │ │ ├── node-set.6.xsl │ │ ├── node-set.7.out │ │ ├── node-set.7.xml │ │ ├── node-set.7.xsl │ │ ├── node-set.8.out │ │ ├── node-set.8.xml │ │ ├── node-set.8.xsl │ │ ├── node-set.9.out │ │ ├── node-set.9.xml │ │ ├── node-set.9.xsl │ │ ├── object-type.1.out │ │ ├── object-type.1.xml │ │ └── object-type.1.xsl │ ├── crypto │ │ ├── crypt.1.out │ │ ├── crypt.1.xml │ │ ├── crypt.1.xsl │ │ ├── hash.1.out │ │ ├── hash.1.xml │ │ └── hash.1.xsl │ ├── date │ │ ├── add-duration.1.out │ │ ├── add-duration.1.xml │ │ ├── add-duration.1.xsl │ │ ├── add-duration.2.out │ │ ├── add-duration.2.xml │ │ ├── add-duration.2.xsl │ │ ├── add.1.out │ │ ├── add.1.xml │ │ ├── add.1.xsl │ │ ├── add.2.out │ │ ├── add.2.xml │ │ ├── add.2.xsl │ │ ├── current.xsl │ │ ├── date.1.out │ │ ├── date.1.xml │ │ ├── date.1.xsl │ │ ├── date.2.out │ │ ├── date.2.xml │ │ ├── date.2.xsl │ │ ├── datetime.1.out │ │ ├── datetime.1.xml │ │ ├── datetime.1.xsl │ │ ├── datetime.2.out │ │ ├── datetime.2.xml │ │ ├── datetime.2.xsl │ │ ├── difference.1.out │ │ ├── difference.1.xml │ │ ├── difference.1.xsl │ │ ├── difference.2.out │ │ ├── difference.2.xml │ │ ├── difference.2.xsl │ │ ├── duration.1.out │ │ ├── duration.1.xml │ │ ├── duration.1.xsl │ │ ├── duration.2.out │ │ ├── duration.2.xml │ │ ├── duration.2.xsl │ │ ├── gday.1.out │ │ ├── gday.1.xml │ │ ├── gday.1.xsl │ │ ├── gday.2.out │ │ ├── gday.2.xml │ │ ├── gday.2.xsl │ │ ├── gmonth.1.out │ │ ├── gmonth.1.xml │ │ ├── gmonth.1.xsl │ │ ├── gmonth.2.out │ │ ├── gmonth.2.xml │ │ ├── gmonth.2.xsl │ │ ├── gmonthday.1.out │ │ ├── gmonthday.1.xml │ │ ├── gmonthday.1.xsl │ │ ├── gmonthday.2.out │ │ ├── gmonthday.2.xml │ │ ├── gmonthday.2.xsl │ │ ├── gyear.1.out │ │ ├── gyear.1.xml │ │ ├── gyear.1.xsl │ │ ├── gyear.2.out │ │ ├── gyear.2.xml │ │ ├── gyear.2.xsl │ │ ├── gyearmonth.1.out │ │ ├── gyearmonth.1.xml │ │ ├── gyearmonth.1.xsl │ │ ├── gyearmonth.2.out │ │ ├── gyearmonth.2.xml │ │ ├── gyearmonth.2.xsl │ │ ├── seconds.1.out │ │ ├── seconds.1.xml │ │ ├── seconds.1.xsl │ │ ├── seconds.2.out │ │ ├── seconds.2.xml │ │ ├── seconds.2.xsl │ │ ├── sum.1.out │ │ ├── sum.1.xml │ │ ├── sum.1.xsl │ │ ├── sum.2.out │ │ ├── sum.2.xml │ │ ├── sum.2.xsl │ │ ├── time.1.out │ │ ├── time.1.xml │ │ ├── time.1.xsl │ │ ├── time.2.out │ │ ├── time.2.xml │ │ └── time.2.xsl │ ├── dynamic │ │ ├── dynmap.out │ │ ├── dynmap.xml │ │ ├── dynmap.xsl │ │ ├── recursion.err │ │ ├── recursion.out │ │ ├── recursion.xml │ │ └── recursion.xsl │ ├── functions │ │ ├── function.1.out │ │ ├── function.1.xml │ │ ├── function.1.xsl │ │ ├── function.10.out │ │ ├── function.10.xml │ │ ├── function.10.xsl │ │ ├── function.11.out │ │ ├── function.11.xml │ │ ├── function.11.xsl │ │ ├── function.2.out │ │ ├── function.2.xml │ │ ├── function.2.xsl │ │ ├── function.3.out │ │ ├── function.3.xml │ │ ├── function.3.xsl │ │ ├── function.4.out │ │ ├── function.4.xml │ │ ├── function.4.xsl │ │ ├── function.5.out │ │ ├── function.5.xml │ │ ├── function.5.xsl │ │ ├── function.6.out │ │ ├── function.6.xml │ │ ├── function.6.xsl │ │ ├── function.7.out │ │ ├── function.7.xml │ │ ├── function.7.xsl │ │ ├── function.8.out │ │ ├── function.8.xml │ │ ├── function.8.xsl │ │ ├── function.9.out │ │ ├── function.9.xml │ │ └── function.9.xsl │ ├── math │ │ ├── highest.1.out │ │ ├── highest.1.xml │ │ ├── highest.1.xsl │ │ ├── highest.2.out │ │ ├── highest.2.xml │ │ ├── highest.2.xsl │ │ ├── highest.5.out │ │ ├── highest.5.xml │ │ ├── highest.5.xsl │ │ ├── lowest.1.out │ │ ├── lowest.1.xml │ │ ├── lowest.1.xsl │ │ ├── lowest.2.out │ │ ├── lowest.2.xml │ │ ├── lowest.2.xsl │ │ ├── max.1.out │ │ ├── max.1.xml │ │ ├── max.1.xsl │ │ ├── max.2.out │ │ ├── max.2.xml │ │ ├── max.2.xsl │ │ ├── max.3.out │ │ ├── max.3.xml │ │ ├── max.3.xsl │ │ ├── max.5.out │ │ ├── max.5.xml │ │ ├── max.5.xsl │ │ ├── min.1.out │ │ ├── min.1.xml │ │ ├── min.1.xsl │ │ ├── min.2.out │ │ ├── min.2.xml │ │ ├── min.2.xsl │ │ ├── power.1.out │ │ ├── power.1.xml │ │ └── power.1.xsl │ ├── saxon │ │ ├── eval.1.out │ │ ├── eval.1.xml │ │ ├── eval.1.xsl │ │ ├── eval.2.err │ │ ├── eval.2.xml │ │ ├── eval.2.xsl │ │ ├── eval.3.err │ │ ├── eval.3.xml │ │ ├── eval.3.xsl │ │ ├── lineno.1.out │ │ ├── lineno.1.xml │ │ └── lineno.1.xsl │ ├── sets │ │ ├── difference.1.out │ │ ├── difference.1.xml │ │ ├── difference.1.xsl │ │ ├── distinct.1.out │ │ ├── distinct.1.xml │ │ ├── distinct.1.xsl │ │ ├── has-same-node.1.out │ │ ├── has-same-node.1.xml │ │ ├── has-same-node.1.xsl │ │ ├── leading.1.out │ │ ├── leading.1.xml │ │ ├── leading.1.xsl │ │ ├── trailing.1.out │ │ ├── trailing.1.xml │ │ └── trailing.1.xsl │ └── strings │ │ ├── align.1.out │ │ ├── align.1.xml │ │ ├── align.1.xsl │ │ ├── padding.1.out │ │ ├── padding.1.xml │ │ ├── padding.1.xsl │ │ ├── replace.1.out │ │ ├── replace.1.xml │ │ ├── replace.1.xsl │ │ ├── split.1.out │ │ ├── split.1.xml │ │ ├── split.1.xsl │ │ ├── tokenize.1.out │ │ ├── tokenize.1.xml │ │ ├── tokenize.1.xsl │ │ ├── tokenize.2.out │ │ ├── tokenize.2.xml │ │ ├── tokenize.2.xsl │ │ ├── tokenize.3.out │ │ ├── tokenize.3.xml │ │ ├── tokenize.3.xsl │ │ ├── uri.out │ │ ├── uri.xml │ │ └── uri.xsl ├── extensions │ ├── evaluate.out │ ├── evaluate.xml │ ├── evaluate.xsl │ ├── list.out │ ├── list.xml │ ├── list.xsl │ ├── module.out │ ├── module.xml │ └── module.xsl ├── fuzz │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── fuzz.c │ ├── fuzz.h │ ├── genSeed.c │ ├── testTargets.c │ ├── xpath.c │ ├── xpath.dict │ ├── xslt.c │ └── xslt.dict ├── general │ ├── array.out │ ├── array.xml │ ├── array.xsl │ ├── bug-1-.out │ ├── bug-1-.xml │ ├── bug-1-.xsl │ ├── bug-10-.out │ ├── bug-10-.xml │ ├── bug-10-.xsl │ ├── bug-100.out │ ├── bug-100.xml │ ├── bug-100.xsl │ ├── bug-101.out │ ├── bug-101.xml │ ├── bug-101.xsl │ ├── bug-102-inc.xsl │ ├── bug-102.out │ ├── bug-102.xml │ ├── bug-102.xsl │ ├── bug-103.out │ ├── bug-103.xml │ ├── bug-103.xsl │ ├── bug-104.out │ ├── bug-104.xml │ ├── bug-104.xsl │ ├── bug-105.out │ ├── bug-105.xml │ ├── bug-105.xsl │ ├── bug-106.out │ ├── bug-106.xml │ ├── bug-106.xsl │ ├── bug-107.out │ ├── bug-107.xml │ ├── bug-107.xsl │ ├── bug-108.out │ ├── bug-108.xml │ ├── bug-108.xsl │ ├── bug-109.out │ ├── bug-109.xml │ ├── bug-109.xsl │ ├── bug-11-.out │ ├── bug-11-.xml │ ├── bug-11-.xsl │ ├── bug-110.ent │ ├── bug-110.out │ ├── bug-110.xml │ ├── bug-110.xsl │ ├── bug-111.out │ ├── bug-111.xml │ ├── bug-111.xsl │ ├── bug-112.out │ ├── bug-112.xml │ ├── bug-112.xsl │ ├── bug-113.out │ ├── bug-113.xml │ ├── bug-113.xsl │ ├── bug-114.out │ ├── bug-114.xml │ ├── bug-114.xsl │ ├── bug-115.out │ ├── bug-115.xml │ ├── bug-115.xsl │ ├── bug-116.out │ ├── bug-116.xml │ ├── bug-116.xsl │ ├── bug-117.out │ ├── bug-117.xml │ ├── bug-117.xsl │ ├── bug-118.out │ ├── bug-118.xml │ ├── bug-118.xsl │ ├── bug-119.out │ ├── bug-119.xml │ ├── bug-119.xsl │ ├── bug-12-.out │ ├── bug-12-.xml │ ├── bug-12-.xsl │ ├── bug-120.out │ ├── bug-120.xml │ ├── bug-120.xsl │ ├── bug-121.out │ ├── bug-121.xml │ ├── bug-121.xsl │ ├── bug-122.out │ ├── bug-122.xml │ ├── bug-122.xsl │ ├── bug-123.out │ ├── bug-123.xml │ ├── bug-123.xsl │ ├── bug-124.out │ ├── bug-124.xml │ ├── bug-124.xsl │ ├── bug-125.out │ ├── bug-125.xml │ ├── bug-125.xsl │ ├── bug-126.out │ ├── bug-126.xml │ ├── bug-126.xsl │ ├── bug-127.out │ ├── bug-127.xml │ ├── bug-127.xsl │ ├── bug-128.out │ ├── bug-128.xml │ ├── bug-128.xsl │ ├── bug-129.out │ ├── bug-129.xml │ ├── bug-129.xsl │ ├── bug-13-.out │ ├── bug-13-.xml │ ├── bug-13-.xsl │ ├── bug-130-imp1.imp │ ├── bug-130-imp2.imp │ ├── bug-130-imp3.imp │ ├── bug-130-imp4.imp │ ├── bug-130.doc │ ├── bug-130.out │ ├── bug-130.xml │ ├── bug-130.xsl │ ├── bug-131-imp.imp │ ├── bug-131.out │ ├── bug-131.xml │ ├── bug-131.xsl │ ├── bug-132.out │ ├── bug-132.xml │ ├── bug-132.xsl │ ├── bug-133.out │ ├── bug-133.xml │ ├── bug-133.xsl │ ├── bug-134.out │ ├── bug-134.xml │ ├── bug-134.xsl │ ├── bug-135.out │ ├── bug-135.xml │ ├── bug-135.xsl │ ├── bug-136.out │ ├── bug-136.xml │ ├── bug-136.xsl │ ├── bug-137.imp │ ├── bug-137.out │ ├── bug-137.xml │ ├── bug-137.xsl │ ├── bug-138.out │ ├── bug-138.xml │ ├── bug-138.xsl │ ├── bug-139.out │ ├── bug-139.xml │ ├── bug-139.xsl │ ├── bug-14-.out │ ├── bug-14-.xml │ ├── bug-14-.xsl │ ├── bug-140.out │ ├── bug-140.xml │ ├── bug-140.xsl │ ├── bug-141.out │ ├── bug-141.xml │ ├── bug-141.xsl │ ├── bug-142.out │ ├── bug-142.xml │ ├── bug-142.xsl │ ├── bug-143.out │ ├── bug-143.xml │ ├── bug-143.xsl │ ├── bug-144.out │ ├── bug-144.xml │ ├── bug-144.xsl │ ├── bug-145.err │ ├── bug-145.xml │ ├── bug-145.xsl │ ├── bug-147-1.imp │ ├── bug-147-2.imp │ ├── bug-147-3.imp │ ├── bug-147-4.imp │ ├── bug-147-5.imp │ ├── bug-147-6.imp │ ├── bug-147.out │ ├── bug-147.xml │ ├── bug-147.xsl │ ├── bug-148.out │ ├── bug-148.xml │ ├── bug-148.xsl │ ├── bug-149.out │ ├── bug-149.xml │ ├── bug-149.xsl │ ├── bug-15-.out │ ├── bug-15-.xml │ ├── bug-15-.xsl │ ├── bug-150.out │ ├── bug-150.xml │ ├── bug-150.xsl │ ├── bug-151.xml │ ├── bug-151.xsl │ ├── bug-152.out │ ├── bug-152.xml │ ├── bug-152.xsl │ ├── bug-153.doc │ ├── bug-153.out │ ├── bug-153.xml │ ├── bug-153.xsl │ ├── bug-154.xml │ ├── bug-154.xsl │ ├── bug-155.out │ ├── bug-155.xml │ ├── bug-155.xsl │ ├── bug-156.err │ ├── bug-156.imp1.imp │ ├── bug-156.imp2.imp │ ├── bug-156.xml │ ├── bug-156.xsl │ ├── bug-157.err │ ├── bug-157.out │ ├── bug-157.xml │ ├── bug-157.xsl │ ├── bug-158.doc │ ├── bug-158.out │ ├── bug-158.xml │ ├── bug-158.xsl │ ├── bug-159.out │ ├── bug-159.xml │ ├── bug-159.xsl │ ├── bug-16-.out │ ├── bug-16-.xml │ ├── bug-16-.xsl │ ├── bug-160.out │ ├── bug-160.xml │ ├── bug-160.xsl │ ├── bug-161.out │ ├── bug-161.xml │ ├── bug-161.xsl │ ├── bug-163.out │ ├── bug-163.xml │ ├── bug-163.xsl │ ├── bug-164.out │ ├── bug-164.xml │ ├── bug-164.xsl │ ├── bug-165.err │ ├── bug-165.xml │ ├── bug-165.xsl │ ├── bug-166.out │ ├── bug-166.xml │ ├── bug-166.xsl │ ├── bug-167.out │ ├── bug-167.xml │ ├── bug-167.xsl │ ├── bug-168.out │ ├── bug-168.xml │ ├── bug-168.xsl │ ├── bug-169.imp │ ├── bug-169.out │ ├── bug-169.xml │ ├── bug-169.xsl │ ├── bug-17-.out │ ├── bug-17-.xml │ ├── bug-17-.xsl │ ├── bug-170.out │ ├── bug-170.xml │ ├── bug-170.xsl │ ├── bug-171.out │ ├── bug-171.xml │ ├── bug-171.xsl │ ├── bug-172.out │ ├── bug-172.xml │ ├── bug-172.xsl │ ├── bug-173.out │ ├── bug-173.xml │ ├── bug-173.xsl │ ├── bug-174.err │ ├── bug-174.xml │ ├── bug-174.xsl │ ├── bug-175.err │ ├── bug-175.out │ ├── bug-175.xml │ ├── bug-175.xsl │ ├── bug-176.out │ ├── bug-176.xml │ ├── bug-176.xsl │ ├── bug-177.out │ ├── bug-177.xml │ ├── bug-177.xsl │ ├── bug-178.out │ ├── bug-178.xml │ ├── bug-178.xsl │ ├── bug-179.out │ ├── bug-179.xml │ ├── bug-179.xsl │ ├── bug-18-.out │ ├── bug-18-.xml │ ├── bug-18-.xsl │ ├── bug-180.err │ ├── bug-180.xml │ ├── bug-180.xsl │ ├── bug-181.out │ ├── bug-181.xml │ ├── bug-181.xsl │ ├── bug-182.out │ ├── bug-182.xml │ ├── bug-182.xsl │ ├── bug-183.out │ ├── bug-183.xml │ ├── bug-183.xsl │ ├── bug-184.err │ ├── bug-184.xml │ ├── bug-184.xsl │ ├── bug-186.out │ ├── bug-186.xml │ ├── bug-186.xsl │ ├── bug-187.err │ ├── bug-187.out │ ├── bug-187.xml │ ├── bug-187.xsl │ ├── bug-188-imp.xsl │ ├── bug-188.out │ ├── bug-188.xml │ ├── bug-188.xsl │ ├── bug-189.out │ ├── bug-189.xml │ ├── bug-189.xsl │ ├── bug-19-.out │ ├── bug-19-.xml │ ├── bug-19-.xsl │ ├── bug-190-imp.xsl │ ├── bug-190.out │ ├── bug-190.xml │ ├── bug-190.xsl │ ├── bug-191-imp.xsl │ ├── bug-191.err │ ├── bug-191.xml │ ├── bug-191.xsl │ ├── bug-192.out │ ├── bug-192.xml │ ├── bug-192.xsl │ ├── bug-193.out │ ├── bug-193.xml │ ├── bug-193.xsl │ ├── bug-194.err │ ├── bug-194.xml │ ├── bug-194.xsl │ ├── bug-195.out │ ├── bug-195.xml │ ├── bug-195.xsl │ ├── bug-196.out │ ├── bug-196.xml │ ├── bug-196.xsl │ ├── bug-197.out │ ├── bug-197.xml │ ├── bug-197.xsl │ ├── bug-198.out │ ├── bug-198.xml │ ├── bug-198.xsl │ ├── bug-199.out │ ├── bug-199.xml │ ├── bug-199.xsl │ ├── bug-2-.out │ ├── bug-2-.xml │ ├── bug-2-.xsl │ ├── bug-20-.out │ ├── bug-20-.xml │ ├── bug-20-.xsl │ ├── bug-200.out │ ├── bug-200.xml │ ├── bug-200.xsl │ ├── bug-201.err │ ├── bug-201.xml │ ├── bug-201.xsl │ ├── bug-202.err │ ├── bug-202.xml │ ├── bug-202.xsl │ ├── bug-203.err │ ├── bug-203.xml │ ├── bug-203.xsl │ ├── bug-204.err │ ├── bug-204.xml │ ├── bug-204.xsl │ ├── bug-205.out │ ├── bug-205.xml │ ├── bug-205.xsl │ ├── bug-206.out │ ├── bug-206.xml │ ├── bug-206.xsl │ ├── bug-207.out │ ├── bug-207.xml │ ├── bug-207.xsl │ ├── bug-208.err │ ├── bug-208.xml │ ├── bug-208.xsl │ ├── bug-209.out │ ├── bug-209.xml │ ├── bug-209.xsl │ ├── bug-21-.out │ ├── bug-21-.xml │ ├── bug-21-.xsl │ ├── bug-210.out │ ├── bug-210.xml │ ├── bug-210.xsl │ ├── bug-211.out │ ├── bug-211.xml │ ├── bug-211.xsl │ ├── bug-212.out │ ├── bug-212.xml │ ├── bug-212.xsl │ ├── bug-213.out │ ├── bug-213.xml │ ├── bug-213.xsl │ ├── bug-214.out │ ├── bug-214.xml │ ├── bug-214.xsl │ ├── bug-215.err │ ├── bug-215.xml │ ├── bug-215.xsl │ ├── bug-216.out │ ├── bug-216.xml │ ├── bug-216.xsl │ ├── bug-217.out │ ├── bug-217.xml │ ├── bug-217.xsl │ ├── bug-218.out │ ├── bug-218.xml │ ├── bug-218.xsl │ ├── bug-219.out │ ├── bug-219.xml │ ├── bug-219.xsl │ ├── bug-22-.out │ ├── bug-22-.xml │ ├── bug-22-.xsl │ ├── bug-220.out │ ├── bug-220.xml │ ├── bug-220.xsl │ ├── bug-221.out │ ├── bug-221.xml │ ├── bug-221.xsl │ ├── bug-222.out │ ├── bug-222.xml │ ├── bug-222.xsl │ ├── bug-223-imp.xsl │ ├── bug-223-inc.xsl │ ├── bug-223.out │ ├── bug-223.xml │ ├── bug-223.xsl │ ├── bug-224.out │ ├── bug-224.xml │ ├── bug-224.xsl │ ├── bug-225.out │ ├── bug-225.xml │ ├── bug-225.xsl │ ├── bug-23-.out │ ├── bug-23-.xml │ ├── bug-23-.xsl │ ├── bug-24-.out │ ├── bug-24-.xml │ ├── bug-24-.xsl │ ├── bug-25-.out │ ├── bug-25-.xml │ ├── bug-25-.xsl │ ├── bug-26-.out │ ├── bug-26-.xml │ ├── bug-26-.xsl │ ├── bug-27-.out │ ├── bug-27-.xml │ ├── bug-27-.xsl │ ├── bug-28-.out │ ├── bug-28-.xml │ ├── bug-28-.xsl │ ├── bug-29-.ent │ ├── bug-29-.out │ ├── bug-29-.xml │ ├── bug-29-.xsl │ ├── bug-3-.out │ ├── bug-3-.xml │ ├── bug-3-.xsl │ ├── bug-30-.out │ ├── bug-30-.xml │ ├── bug-30-.xsl │ ├── bug-31-.out │ ├── bug-31-.xml │ ├── bug-31-.xsl │ ├── bug-32-.out │ ├── bug-32-.xml │ ├── bug-32-.xsl │ ├── bug-33-.out │ ├── bug-33-.xml │ ├── bug-33-.xsl │ ├── bug-35-.out │ ├── bug-35-.xml │ ├── bug-35-.xsl │ ├── bug-36-.out │ ├── bug-36-.xml │ ├── bug-36-.xsl │ ├── bug-36-inc.xsl │ ├── bug-37-.out │ ├── bug-37-.xml │ ├── bug-37-.xsl │ ├── bug-37-inc.xsl │ ├── bug-38-.out │ ├── bug-38-.xml │ ├── bug-38-.xsl │ ├── bug-39-.out │ ├── bug-39-.xml │ ├── bug-39-.xsl │ ├── bug-4-.out │ ├── bug-4-.xml │ ├── bug-4-.xsl │ ├── bug-40-.out │ ├── bug-40-.xml │ ├── bug-40-.xsl │ ├── bug-41-.out │ ├── bug-41-.xml │ ├── bug-41-.xsl │ ├── bug-42-.out │ ├── bug-42-.xml │ ├── bug-42-.xsl │ ├── bug-43-.out │ ├── bug-43-.xml │ ├── bug-43-.xsl │ ├── bug-44-.out │ ├── bug-44-.xml │ ├── bug-44-.xsl │ ├── bug-45-.out │ ├── bug-45-.xml │ ├── bug-45-.xsl │ ├── bug-46-.out │ ├── bug-46-.xml │ ├── bug-46-.xsl │ ├── bug-47-.out │ ├── bug-47-.xml │ ├── bug-47-.xsl │ ├── bug-48-.out │ ├── bug-48-.xml │ ├── bug-48-.xsl │ ├── bug-49-.out │ ├── bug-49-.xml │ ├── bug-49-.xsl │ ├── bug-5-.out │ ├── bug-5-.xml │ ├── bug-5-.xsl │ ├── bug-50-.out │ ├── bug-50-.xml │ ├── bug-50-.xsl │ ├── bug-52.out │ ├── bug-52.xml │ ├── bug-52.xsl │ ├── bug-53.out │ ├── bug-53.xml │ ├── bug-53.xsl │ ├── bug-54.out │ ├── bug-54.xml │ ├── bug-54.xsl │ ├── bug-55.out │ ├── bug-55.xml │ ├── bug-55.xsl │ ├── bug-56.out │ ├── bug-56.xml │ ├── bug-56.xsl │ ├── bug-57.out │ ├── bug-57.xml │ ├── bug-57.xsl │ ├── bug-58.xsl │ ├── bug-59.out │ ├── bug-59.xml │ ├── bug-59.xsl │ ├── bug-6-.out │ ├── bug-6-.xml │ ├── bug-6-.xsl │ ├── bug-60.err │ ├── bug-60.out │ ├── bug-60.xml │ ├── bug-60.xsl │ ├── bug-61.out │ ├── bug-61.xml │ ├── bug-61.xsl │ ├── bug-62-inc.xsl │ ├── bug-62.out │ ├── bug-62.xml │ ├── bug-62.xsl │ ├── bug-63.out │ ├── bug-63.xml │ ├── bug-63.xsl │ ├── bug-64.out │ ├── bug-64.xml │ ├── bug-64.xsl │ ├── bug-65.ent │ ├── bug-65.out │ ├── bug-65.xml │ ├── bug-65.xsl │ ├── bug-66.out │ ├── bug-66.xml │ ├── bug-66.xsl │ ├── bug-68.out │ ├── bug-68.xml │ ├── bug-68.xsl │ ├── bug-69.out │ ├── bug-69.xml │ ├── bug-69.xsl │ ├── bug-7-.out │ ├── bug-7-.xml │ ├── bug-7-.xsl │ ├── bug-70.out │ ├── bug-70.xml │ ├── bug-70.xsl │ ├── bug-71.out │ ├── bug-71.xml │ ├── bug-71.xsl │ ├── bug-72.out │ ├── bug-72.xml │ ├── bug-72.xsl │ ├── bug-73.out │ ├── bug-73.xml │ ├── bug-73.xsl │ ├── bug-74.out │ ├── bug-74.xml │ ├── bug-74.xsl │ ├── bug-75.out │ ├── bug-75.xml │ ├── bug-75.xsl │ ├── bug-76.out │ ├── bug-76.xml │ ├── bug-76.xsl │ ├── bug-77.out │ ├── bug-77.xml │ ├── bug-77.xsl │ ├── bug-78.out │ ├── bug-78.xml │ ├── bug-78.xsl │ ├── bug-79.out │ ├── bug-79.xml │ ├── bug-79.xsl │ ├── bug-8-.out │ ├── bug-8-.xml │ ├── bug-8-.xsl │ ├── bug-80.out │ ├── bug-80.xml │ ├── bug-80.xsl │ ├── bug-81.out │ ├── bug-81.xml │ ├── bug-81.xsl │ ├── bug-82.out │ ├── bug-82.xml │ ├── bug-82.xsl │ ├── bug-83.out │ ├── bug-83.xml │ ├── bug-83.xsl │ ├── bug-84.out │ ├── bug-84.xml │ ├── bug-84.xsl │ ├── bug-86.out │ ├── bug-86.xml │ ├── bug-86.xsl │ ├── bug-87.out │ ├── bug-87.xml │ ├── bug-87.xsl │ ├── bug-88.out │ ├── bug-88.xml │ ├── bug-88.xsl │ ├── bug-89.out │ ├── bug-89.xml │ ├── bug-89.xsl │ ├── bug-9-.out │ ├── bug-9-.xml │ ├── bug-9-.xsl │ ├── bug-90.out │ ├── bug-90.xml │ ├── bug-90.xsl │ ├── bug-91.out │ ├── bug-91.xml │ ├── bug-91.xsl │ ├── bug-92.out │ ├── bug-92.xml │ ├── bug-92.xsl │ ├── bug-93-inc.xsl │ ├── bug-93.out │ ├── bug-93.xml │ ├── bug-93.xsl │ ├── bug-94.out │ ├── bug-94.xml │ ├── bug-94.xsl │ ├── bug-95.out │ ├── bug-95.xml │ ├── bug-95.xsl │ ├── bug-96.out │ ├── bug-96.xml │ ├── bug-96.xsl │ ├── bug-97.out │ ├── bug-97.xml │ ├── bug-97.xsl │ ├── bug-98.out │ ├── bug-98.xml │ ├── bug-98.xsl │ ├── bug-99.out │ ├── bug-99.xml │ ├── bug-99.xsl │ ├── character.out │ ├── character.xml │ ├── character.xsl │ ├── date_add.out │ ├── date_add.xml │ ├── date_add.xsl │ ├── doc.dtd │ ├── doc.out │ ├── doc.xml │ ├── doc.xsl │ ├── inner.xsl │ └── items.xml ├── keys │ ├── dates.out │ ├── dates.xml │ ├── dates.xsl │ └── month.xml ├── multiple │ ├── Makefile.am │ ├── dict.dtd │ ├── dict.xml │ ├── dict.xsl │ ├── out │ │ ├── lettera.orig │ │ ├── letterb.orig │ │ ├── letterc.orig │ │ ├── letterd.orig │ │ ├── lettere.orig │ │ ├── letterf.orig │ │ ├── letterg.orig │ │ ├── letterh.orig │ │ ├── letterij.orig │ │ ├── letterk.orig │ │ ├── letterl.orig │ │ ├── letterm.orig │ │ ├── lettern.orig │ │ ├── lettero.orig │ │ ├── letterp.orig │ │ ├── letterq.orig │ │ ├── letterr.orig │ │ ├── letters.orig │ │ ├── lettert.orig │ │ ├── letteruv.orig │ │ ├── letterw.orig │ │ ├── letterx.orig │ │ ├── lettery.orig │ │ ├── letterz.orig │ │ └── titlepage.orig │ └── result.xml ├── namespaces │ ├── extra.out │ ├── extra.xml │ ├── extra.xsl │ ├── extra2.err │ ├── extra2.xml │ ├── extra2.xsl │ ├── tst.out │ ├── tst.xml │ ├── tst.xsl │ ├── tst2.out │ ├── tst2.xml │ ├── tst2.xsl │ ├── tst3.out │ ├── tst3.xml │ ├── tst3.xsl │ ├── tst4.out │ ├── tst4.xml │ ├── tst4.xsl │ ├── tst5.out │ ├── tst5.xml │ ├── tst5.xsl │ ├── tst6.out │ ├── tst6.xml │ ├── tst6.xsl │ ├── tst7.out │ ├── tst7.xml │ ├── tst7.xsl │ ├── tst8.out │ ├── tst8.xml │ ├── tst8.xsl │ ├── tst9.out │ ├── tst9.xml │ └── tst9.xsl ├── numbers │ ├── format-number.out │ ├── format-number.xml │ └── format-number.xsl ├── plugins │ ├── plugin.out │ ├── plugin.xml │ └── plugin.xsl ├── reports │ ├── cmdlineparams.out │ ├── cmdlineparams.xml │ ├── cmdlineparams.xsl │ ├── recglobparam.err │ ├── recglobparam.xml │ ├── recglobparam.xsl │ ├── recglobvar.err │ ├── recglobvar.xml │ ├── recglobvar.xsl │ ├── reclocparam.err │ ├── reclocparam.xml │ ├── reclocparam.xsl │ ├── reclocvar.err │ ├── reclocvar.xml │ ├── reclocvar.xsl │ ├── tst-1.err │ ├── tst-1.xml │ ├── tst-1.xsl │ ├── tst-2.err │ ├── tst-2.xml │ ├── tst-2.xsl │ ├── undefvar.err │ ├── undefvar.xml │ └── undefvar.xsl ├── runtest.c ├── testplugin.c ├── xinclude │ ├── Makefile.am │ ├── e.xml │ ├── e.xsl │ ├── normal.out │ ├── x1.xml │ ├── x2.xml │ └── xinclude.out └── xmlspec │ ├── Makefile.am │ ├── REC-xml-20001006-review.html │ ├── REC-xml-20001006.html │ ├── REC-xml-20001006.xml │ ├── REC-xml-2e.xsl │ ├── W3C-REC.css │ ├── diffspec.xsl │ ├── logo-REC │ ├── xmlspec-v21.dtd │ └── xmlspec.xsl ├── vms ├── build_xslt.com ├── diffs.vms └── readme.vms ├── win32 ├── Makefile.mingw ├── Makefile.msvc ├── Readme.txt ├── configure.js ├── libxslt │ ├── libxslt.def │ ├── libxslt.dsw │ ├── libxslt_so.dsp │ └── xsltproc.dsp └── runtests.py ├── xslt-config.in ├── xsltConf.sh.in └── xsltproc ├── Makefile.am ├── testThreads.c └── xsltproc.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab-ci/dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/.gitlab-ci/dist.sh -------------------------------------------------------------------------------- /.gitlab-ci/llvm-symbolizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/.gitlab-ci/llvm-symbolizer -------------------------------------------------------------------------------- /.gitlab-ci/setup_mingw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/.gitlab-ci/setup_mingw.sh -------------------------------------------------------------------------------- /.gitlab-ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/.gitlab-ci/test.sh -------------------------------------------------------------------------------- /.gitlab-ci/test_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/.gitlab-ci/test_cmake.sh -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/Copyright -------------------------------------------------------------------------------- /FEATURES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/FEATURES -------------------------------------------------------------------------------- /FindGcrypt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/FindGcrypt.cmake -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/HACKING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/NEWS -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/NOTES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/config.h.cmake.in -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/EXSLT/devhelp/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/EXSLT/devhelp/home.png -------------------------------------------------------------------------------- /doc/EXSLT/devhelp/html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/EXSLT/devhelp/html.xsl -------------------------------------------------------------------------------- /doc/EXSLT/devhelp/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/EXSLT/devhelp/left.png -------------------------------------------------------------------------------- /doc/EXSLT/devhelp/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/EXSLT/devhelp/right.png -------------------------------------------------------------------------------- /doc/EXSLT/devhelp/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/EXSLT/devhelp/style.css -------------------------------------------------------------------------------- /doc/EXSLT/devhelp/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/EXSLT/devhelp/up.png -------------------------------------------------------------------------------- /doc/EXSLT/libexslt-api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/EXSLT/libexslt-api.xml -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/apibuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/apibuild.py -------------------------------------------------------------------------------- /doc/devhelp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/devhelp/Makefile.am -------------------------------------------------------------------------------- /doc/devhelp/devhelp2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/devhelp/devhelp2.xsl -------------------------------------------------------------------------------- /doc/devhelp/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/devhelp/general.html -------------------------------------------------------------------------------- /doc/devhelp/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/devhelp/home.png -------------------------------------------------------------------------------- /doc/devhelp/html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/devhelp/html.xsl -------------------------------------------------------------------------------- /doc/devhelp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/devhelp/index.html -------------------------------------------------------------------------------- /doc/devhelp/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/devhelp/left.png -------------------------------------------------------------------------------- /doc/devhelp/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/devhelp/right.png -------------------------------------------------------------------------------- /doc/devhelp/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/devhelp/style.css -------------------------------------------------------------------------------- /doc/devhelp/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/devhelp/up.png -------------------------------------------------------------------------------- /doc/libxslt-api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/libxslt-api.xml -------------------------------------------------------------------------------- /doc/xsltproc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/xsltproc.1 -------------------------------------------------------------------------------- /doc/xsltproc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/xsltproc.html -------------------------------------------------------------------------------- /doc/xsltproc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/doc/xsltproc.xml -------------------------------------------------------------------------------- /examples/xsltICUSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/examples/xsltICUSort.c -------------------------------------------------------------------------------- /libexslt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt.pc.in -------------------------------------------------------------------------------- /libexslt/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/Makefile.am -------------------------------------------------------------------------------- /libexslt/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/common.c -------------------------------------------------------------------------------- /libexslt/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/crypto.c -------------------------------------------------------------------------------- /libexslt/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/date.c -------------------------------------------------------------------------------- /libexslt/dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/dynamic.c -------------------------------------------------------------------------------- /libexslt/exslt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/exslt.c -------------------------------------------------------------------------------- /libexslt/exslt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/exslt.h -------------------------------------------------------------------------------- /libexslt/exsltconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/exsltconfig.h.in -------------------------------------------------------------------------------- /libexslt/exsltexports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/exsltexports.h -------------------------------------------------------------------------------- /libexslt/functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/functions.c -------------------------------------------------------------------------------- /libexslt/libexslt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/libexslt.3 -------------------------------------------------------------------------------- /libexslt/libexslt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/libexslt.h -------------------------------------------------------------------------------- /libexslt/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/math.c -------------------------------------------------------------------------------- /libexslt/saxon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/saxon.c -------------------------------------------------------------------------------- /libexslt/sets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/sets.c -------------------------------------------------------------------------------- /libexslt/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libexslt/strings.c -------------------------------------------------------------------------------- /libxslt-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt-config.cmake.in -------------------------------------------------------------------------------- /libxslt.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt.doap -------------------------------------------------------------------------------- /libxslt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt.m4 -------------------------------------------------------------------------------- /libxslt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt.pc.in -------------------------------------------------------------------------------- /libxslt/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/Makefile.am -------------------------------------------------------------------------------- /libxslt/attributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/attributes.c -------------------------------------------------------------------------------- /libxslt/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/attributes.h -------------------------------------------------------------------------------- /libxslt/attrvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/attrvt.c -------------------------------------------------------------------------------- /libxslt/documents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/documents.c -------------------------------------------------------------------------------- /libxslt/documents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/documents.h -------------------------------------------------------------------------------- /libxslt/extensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/extensions.c -------------------------------------------------------------------------------- /libxslt/extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/extensions.h -------------------------------------------------------------------------------- /libxslt/extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/extra.c -------------------------------------------------------------------------------- /libxslt/extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/extra.h -------------------------------------------------------------------------------- /libxslt/functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/functions.c -------------------------------------------------------------------------------- /libxslt/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/functions.h -------------------------------------------------------------------------------- /libxslt/imports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/imports.c -------------------------------------------------------------------------------- /libxslt/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/imports.h -------------------------------------------------------------------------------- /libxslt/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/keys.c -------------------------------------------------------------------------------- /libxslt/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/keys.h -------------------------------------------------------------------------------- /libxslt/libxslt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/libxslt.3 -------------------------------------------------------------------------------- /libxslt/libxslt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/libxslt.h -------------------------------------------------------------------------------- /libxslt/libxslt.syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/libxslt.syms -------------------------------------------------------------------------------- /libxslt/namespaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/namespaces.c -------------------------------------------------------------------------------- /libxslt/namespaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/namespaces.h -------------------------------------------------------------------------------- /libxslt/numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/numbers.c -------------------------------------------------------------------------------- /libxslt/numbersInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/numbersInternals.h -------------------------------------------------------------------------------- /libxslt/pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/pattern.c -------------------------------------------------------------------------------- /libxslt/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/pattern.h -------------------------------------------------------------------------------- /libxslt/preproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/preproc.c -------------------------------------------------------------------------------- /libxslt/preproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/preproc.h -------------------------------------------------------------------------------- /libxslt/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/security.c -------------------------------------------------------------------------------- /libxslt/security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/security.h -------------------------------------------------------------------------------- /libxslt/templates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/templates.c -------------------------------------------------------------------------------- /libxslt/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/templates.h -------------------------------------------------------------------------------- /libxslt/transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/transform.c -------------------------------------------------------------------------------- /libxslt/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/transform.h -------------------------------------------------------------------------------- /libxslt/trio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/trio.h -------------------------------------------------------------------------------- /libxslt/triodef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/triodef.h -------------------------------------------------------------------------------- /libxslt/variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/variables.c -------------------------------------------------------------------------------- /libxslt/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/variables.h -------------------------------------------------------------------------------- /libxslt/win32config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/win32config.h -------------------------------------------------------------------------------- /libxslt/xslt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/xslt.c -------------------------------------------------------------------------------- /libxslt/xslt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/xslt.h -------------------------------------------------------------------------------- /libxslt/xsltInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/xsltInternals.h -------------------------------------------------------------------------------- /libxslt/xsltconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/xsltconfig.h.in -------------------------------------------------------------------------------- /libxslt/xsltexports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/xsltexports.h -------------------------------------------------------------------------------- /libxslt/xsltlocale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/xsltlocale.c -------------------------------------------------------------------------------- /libxslt/xsltlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/xsltlocale.h -------------------------------------------------------------------------------- /libxslt/xsltutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/xsltutils.c -------------------------------------------------------------------------------- /libxslt/xsltutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/libxslt/xsltutils.h -------------------------------------------------------------------------------- /m4/ax_append_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/m4/ax_append_flag.m4 -------------------------------------------------------------------------------- /m4/ax_append_link_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/m4/ax_append_link_flags.m4 -------------------------------------------------------------------------------- /m4/ax_check_link_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/m4/ax_check_link_flag.m4 -------------------------------------------------------------------------------- /m4/ax_require_defined.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/m4/ax_require_defined.m4 -------------------------------------------------------------------------------- /python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/Makefile.am -------------------------------------------------------------------------------- /python/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/generator.py -------------------------------------------------------------------------------- /python/libxml_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/libxml_wrap.h -------------------------------------------------------------------------------- /python/libxsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/libxsl.py -------------------------------------------------------------------------------- /python/libxslt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/libxslt.c -------------------------------------------------------------------------------- /python/libxslt_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/libxslt_wrap.h -------------------------------------------------------------------------------- /python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/pyproject.toml -------------------------------------------------------------------------------- /python/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/setup.py.in -------------------------------------------------------------------------------- /python/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/tests/Makefile.am -------------------------------------------------------------------------------- /python/tests/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/tests/basic.py -------------------------------------------------------------------------------- /python/tests/exslt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/tests/exslt.py -------------------------------------------------------------------------------- /python/tests/extelem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/tests/extelem.py -------------------------------------------------------------------------------- /python/tests/extfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/tests/extfunc.py -------------------------------------------------------------------------------- /python/tests/pyxsltproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/tests/pyxsltproc.py -------------------------------------------------------------------------------- /python/tests/setup_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/tests/setup_test.py -------------------------------------------------------------------------------- /python/tests/test.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /python/tests/test.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/tests/test.xsl -------------------------------------------------------------------------------- /python/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/python/types.c -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/REC/article.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/article.xsl -------------------------------------------------------------------------------- /tests/REC/bigfont.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/bigfont.xsl -------------------------------------------------------------------------------- /tests/REC/stand-2.7-1.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/stand-2.7-1.dtd -------------------------------------------------------------------------------- /tests/REC/stand-2.7-1.out: -------------------------------------------------------------------------------- 1 | 2 | SUCCESS 3 | ... 4 | 5 | -------------------------------------------------------------------------------- /tests/REC/stand-2.7-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/stand-2.7-1.xml -------------------------------------------------------------------------------- /tests/REC/stand-2.7-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/stand-2.7-1.xsl -------------------------------------------------------------------------------- /tests/REC/stand-2.7-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/stand-2.7-2.xml -------------------------------------------------------------------------------- /tests/REC/stand-2.7-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/stand-2.7-3.xml -------------------------------------------------------------------------------- /tests/REC/test-10-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-10-1.out -------------------------------------------------------------------------------- /tests/REC/test-10-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-10-1.xml -------------------------------------------------------------------------------- /tests/REC/test-10-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-10-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-10-2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-10-2.out -------------------------------------------------------------------------------- /tests/REC/test-10-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-10-2.xml -------------------------------------------------------------------------------- /tests/REC/test-10-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-10-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-10-3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-10-3.out -------------------------------------------------------------------------------- /tests/REC/test-10-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-10-3.xml -------------------------------------------------------------------------------- /tests/REC/test-10-3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-10-3.xsl -------------------------------------------------------------------------------- /tests/REC/test-11.2-1.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/REC/test-11.2-1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-11.2-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-11.2-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-11.2-2.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/REC/test-11.2-2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-11.2-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-11.2-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-11.2-3.out: -------------------------------------------------------------------------------- 1 | 2 | item1 3 | -------------------------------------------------------------------------------- /tests/REC/test-11.2-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-11.2-3.xml -------------------------------------------------------------------------------- /tests/REC/test-11.2-3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-11.2-3.xsl -------------------------------------------------------------------------------- /tests/REC/test-11.2-4.out: -------------------------------------------------------------------------------- 1 | 2 | item2 3 | -------------------------------------------------------------------------------- /tests/REC/test-11.2-4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-11.2-4.xml -------------------------------------------------------------------------------- /tests/REC/test-11.2-4.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-11.2-4.xsl -------------------------------------------------------------------------------- /tests/REC/test-11.2-5.out: -------------------------------------------------------------------------------- 1 | 2 | item2 3 | -------------------------------------------------------------------------------- /tests/REC/test-11.2-5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-11.2-5.xml -------------------------------------------------------------------------------- /tests/REC/test-11.2-5.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-11.2-5.xsl -------------------------------------------------------------------------------- /tests/REC/test-11.2-6.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/REC/test-11.2-6.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-11.2-6.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-11.2-6.xsl -------------------------------------------------------------------------------- /tests/REC/test-12.2-1.out: -------------------------------------------------------------------------------- 1 | 2 | Success 3 | -------------------------------------------------------------------------------- /tests/REC/test-12.2-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-12.2-1.xml -------------------------------------------------------------------------------- /tests/REC/test-12.2-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-12.2-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-12.2-2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-12.2-2.out -------------------------------------------------------------------------------- /tests/REC/test-12.2-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-12.2-2.xml -------------------------------------------------------------------------------- /tests/REC/test-12.2-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-12.2-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-12.4-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-12.4-1.out -------------------------------------------------------------------------------- /tests/REC/test-12.4-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-12.4-1.xml -------------------------------------------------------------------------------- /tests/REC/test-12.4-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-12.4-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-15-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-15-1.out -------------------------------------------------------------------------------- /tests/REC/test-15-1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-15-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-15-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-16.1-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-16.1-1.out -------------------------------------------------------------------------------- /tests/REC/test-16.1-1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-16.1-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-16.1-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-16.1-2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-16.1-2.out -------------------------------------------------------------------------------- /tests/REC/test-16.1-2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-16.1-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-16.1-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-2.3-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-2.3-1.out -------------------------------------------------------------------------------- /tests/REC/test-2.3-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-2.3-1.xml -------------------------------------------------------------------------------- /tests/REC/test-2.3-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-2.3-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-2.3-2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-2.3-2.out -------------------------------------------------------------------------------- /tests/REC/test-2.3-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-2.3-2.xml -------------------------------------------------------------------------------- /tests/REC/test-2.3-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-2.3-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-2.5-1.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-2.5-1.err -------------------------------------------------------------------------------- /tests/REC/test-2.5-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-2.5-1.out -------------------------------------------------------------------------------- /tests/REC/test-2.5-1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-2.5-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-2.5-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-2.6.2-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-2.6.2-1.out -------------------------------------------------------------------------------- /tests/REC/test-2.6.2-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-2.6.2-1.xml -------------------------------------------------------------------------------- /tests/REC/test-2.6.2-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-2.6.2-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-3.4-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-3.4-1.out -------------------------------------------------------------------------------- /tests/REC/test-3.4-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-3.4-1.xml -------------------------------------------------------------------------------- /tests/REC/test-3.4-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-3.4-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-3.4-2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-3.4-2.out -------------------------------------------------------------------------------- /tests/REC/test-3.4-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-3.4-2.xml -------------------------------------------------------------------------------- /tests/REC/test-3.4-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-3.4-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-3.4-3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-3.4-3.out -------------------------------------------------------------------------------- /tests/REC/test-3.4-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-3.4-3.xml -------------------------------------------------------------------------------- /tests/REC/test-3.4-3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-3.4-3.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-1.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | Success 4 | 5 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-1.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-10.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | Success 4 | 5 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-10.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-10.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-10.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-11.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-11.out -------------------------------------------------------------------------------- /tests/REC/test-5.2-11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-11.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-11.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-11.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-12.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | Success 4 | 5 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-12.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-12.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-12.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-13.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-13.out -------------------------------------------------------------------------------- /tests/REC/test-5.2-13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-13.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-13.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-13.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-14.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-14.out -------------------------------------------------------------------------------- /tests/REC/test-5.2-14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-14.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-14.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-14.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-15.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | Success 4 | 5 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-15.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-15.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-15.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-16.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-16.out -------------------------------------------------------------------------------- /tests/REC/test-5.2-16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-16.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-16.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-16.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-17.out: -------------------------------------------------------------------------------- 1 | 2 | Success 3 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-17.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-17.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-17.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-18.out: -------------------------------------------------------------------------------- 1 | 2 | Success 3 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-18.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-18.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-18.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-19.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-19.out -------------------------------------------------------------------------------- /tests/REC/test-5.2-19.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-19.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-19.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-19.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-2.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | Success 4 | 5 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-2.xml: -------------------------------------------------------------------------------- 1 | Failed 2 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-20.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-20.out -------------------------------------------------------------------------------- /tests/REC/test-5.2-20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-20.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-20.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-20.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-21.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-21.out -------------------------------------------------------------------------------- /tests/REC/test-5.2-21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-21.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-21.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-21.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-22.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-22.out -------------------------------------------------------------------------------- /tests/REC/test-5.2-22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-22.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-22.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-22.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-3.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | Success 4 | 5 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-3.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-3.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-4.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | Success 4 | 5 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-4.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-4.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-4.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-5.out -------------------------------------------------------------------------------- /tests/REC/test-5.2-5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-5.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-5.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-5.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-6.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | Success 4 | 5 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-6.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-6.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-6.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-7.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | Success 4 | 5 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-7.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-7.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-7.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-8.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | Success 4 | 5 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-8.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-8.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-8.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.2-9.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | Success 4 | 5 | -------------------------------------------------------------------------------- /tests/REC/test-5.2-9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-9.xml -------------------------------------------------------------------------------- /tests/REC/test-5.2-9.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.2-9.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.3.out -------------------------------------------------------------------------------- /tests/REC/test-5.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.3.xml -------------------------------------------------------------------------------- /tests/REC/test-5.3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.3.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.4-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-1.out -------------------------------------------------------------------------------- /tests/REC/test-5.4-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-1.xml -------------------------------------------------------------------------------- /tests/REC/test-5.4-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.4-2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-2.out -------------------------------------------------------------------------------- /tests/REC/test-5.4-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-2.xml -------------------------------------------------------------------------------- /tests/REC/test-5.4-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.4-3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-3.out -------------------------------------------------------------------------------- /tests/REC/test-5.4-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-3.xml -------------------------------------------------------------------------------- /tests/REC/test-5.4-3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-3.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.4-4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-4.out -------------------------------------------------------------------------------- /tests/REC/test-5.4-4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-4.xml -------------------------------------------------------------------------------- /tests/REC/test-5.4-4.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-4.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.4-5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-5.out -------------------------------------------------------------------------------- /tests/REC/test-5.4-5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-5.xml -------------------------------------------------------------------------------- /tests/REC/test-5.4-5.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.4-5.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.5-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.5-1.out -------------------------------------------------------------------------------- /tests/REC/test-5.5-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.5-1.xml -------------------------------------------------------------------------------- /tests/REC/test-5.5-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.5-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-5.8.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.8.out -------------------------------------------------------------------------------- /tests/REC/test-5.8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.8.xml -------------------------------------------------------------------------------- /tests/REC/test-5.8.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-5.8.xsl -------------------------------------------------------------------------------- /tests/REC/test-6.1.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-6.1.err -------------------------------------------------------------------------------- /tests/REC/test-6.1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-6.1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-6.1.xsl -------------------------------------------------------------------------------- /tests/REC/test-6.out: -------------------------------------------------------------------------------- 1 | 2 | doc found 3 | -------------------------------------------------------------------------------- /tests/REC/test-6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-6.xml -------------------------------------------------------------------------------- /tests/REC/test-6.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-6.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.1.1-2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.1.1-2.out -------------------------------------------------------------------------------- /tests/REC/test-7.1.1-2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-7.1.1-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.1.1-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.1.1-3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.1.1-3.out -------------------------------------------------------------------------------- /tests/REC/test-7.1.1-3.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-7.1.1-3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.1.1-3.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.1.1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.1.1.out -------------------------------------------------------------------------------- /tests/REC/test-7.1.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.1.1.xml -------------------------------------------------------------------------------- /tests/REC/test-7.1.1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.1.1.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.1.3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.1.3.out -------------------------------------------------------------------------------- /tests/REC/test-7.1.3.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-7.1.3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.1.3.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.1.4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.1.4.out -------------------------------------------------------------------------------- /tests/REC/test-7.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.1.4.xml -------------------------------------------------------------------------------- /tests/REC/test-7.1.4.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.1.4.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.3.out -------------------------------------------------------------------------------- /tests/REC/test-7.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.3.xml -------------------------------------------------------------------------------- /tests/REC/test-7.3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.3.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.4.out -------------------------------------------------------------------------------- /tests/REC/test-7.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.4.xml -------------------------------------------------------------------------------- /tests/REC/test-7.4.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.4.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.5-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.5-1.out -------------------------------------------------------------------------------- /tests/REC/test-7.5-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.5-1.xml -------------------------------------------------------------------------------- /tests/REC/test-7.5-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.5-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.6.1-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.6.1-1.out -------------------------------------------------------------------------------- /tests/REC/test-7.6.1-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.6.1-1.xml -------------------------------------------------------------------------------- /tests/REC/test-7.6.1-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.6.1-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.6.1-2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.6.1-2.out -------------------------------------------------------------------------------- /tests/REC/test-7.6.1-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.6.1-2.xml -------------------------------------------------------------------------------- /tests/REC/test-7.6.1-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.6.1-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.6.1-3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.6.1-3.out -------------------------------------------------------------------------------- /tests/REC/test-7.6.1-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.6.1-3.xml -------------------------------------------------------------------------------- /tests/REC/test-7.6.1-3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.6.1-3.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.6.2-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.6.2-1.xml -------------------------------------------------------------------------------- /tests/REC/test-7.6.2-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.6.2-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.6.2-2.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/REC/test-7.6.2-2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-7.6.2-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.6.2-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.7-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-1.out -------------------------------------------------------------------------------- /tests/REC/test-7.7-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-1.xml -------------------------------------------------------------------------------- /tests/REC/test-7.7-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.7-2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-2.out -------------------------------------------------------------------------------- /tests/REC/test-7.7-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-2.xml -------------------------------------------------------------------------------- /tests/REC/test-7.7-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.7-3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-3.out -------------------------------------------------------------------------------- /tests/REC/test-7.7-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-3.xml -------------------------------------------------------------------------------- /tests/REC/test-7.7-3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-3.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.7-4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-4.out -------------------------------------------------------------------------------- /tests/REC/test-7.7-4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-4.xml -------------------------------------------------------------------------------- /tests/REC/test-7.7-4.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-4.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.7-5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-5.out -------------------------------------------------------------------------------- /tests/REC/test-7.7-5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-5.xml -------------------------------------------------------------------------------- /tests/REC/test-7.7-5.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-5.xsl -------------------------------------------------------------------------------- /tests/REC/test-7.7-6.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-6.out -------------------------------------------------------------------------------- /tests/REC/test-7.7-6.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/REC/test-7.7-6.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-7.7-6.xsl -------------------------------------------------------------------------------- /tests/REC/test-8-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-8-1.out -------------------------------------------------------------------------------- /tests/REC/test-8-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-8-1.xml -------------------------------------------------------------------------------- /tests/REC/test-8-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-8-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-9.1-1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-9.1-1.out -------------------------------------------------------------------------------- /tests/REC/test-9.1-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-9.1-1.xml -------------------------------------------------------------------------------- /tests/REC/test-9.1-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-9.1-1.xsl -------------------------------------------------------------------------------- /tests/REC/test-9.1-2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-9.1-2.out -------------------------------------------------------------------------------- /tests/REC/test-9.1-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-9.1-2.xml -------------------------------------------------------------------------------- /tests/REC/test-9.1-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-9.1-2.xsl -------------------------------------------------------------------------------- /tests/REC/test-9.2-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC/test-9.2-1.xsl -------------------------------------------------------------------------------- /tests/REC2/html.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC2/html.out -------------------------------------------------------------------------------- /tests/REC2/html.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC2/html.xml -------------------------------------------------------------------------------- /tests/REC2/html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC2/html.xsl -------------------------------------------------------------------------------- /tests/REC2/svg.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC2/svg.out -------------------------------------------------------------------------------- /tests/REC2/svg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC2/svg.xml -------------------------------------------------------------------------------- /tests/REC2/svg.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC2/svg.xsl -------------------------------------------------------------------------------- /tests/REC2/vrml.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC2/vrml.out -------------------------------------------------------------------------------- /tests/REC2/vrml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC2/vrml.xml -------------------------------------------------------------------------------- /tests/REC2/vrml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/REC2/vrml.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/Makefile.am -------------------------------------------------------------------------------- /tests/XSLTMark/attsets.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/attsets.out -------------------------------------------------------------------------------- /tests/XSLTMark/attsets.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/attsets.ref -------------------------------------------------------------------------------- /tests/XSLTMark/attsets.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/attsets.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/avts.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/avts.out -------------------------------------------------------------------------------- /tests/XSLTMark/avts.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/avts.ref -------------------------------------------------------------------------------- /tests/XSLTMark/avts.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/avts.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/axis.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/axis.out -------------------------------------------------------------------------------- /tests/XSLTMark/axis.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/axis.ref -------------------------------------------------------------------------------- /tests/XSLTMark/axis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/axis.xml -------------------------------------------------------------------------------- /tests/XSLTMark/axis.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/axis.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/bottles.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/bottles.out -------------------------------------------------------------------------------- /tests/XSLTMark/bottles.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/bottles.ref -------------------------------------------------------------------------------- /tests/XSLTMark/bottles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/bottles.xml -------------------------------------------------------------------------------- /tests/XSLTMark/bottles.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/bottles.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/breadth.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/breadth.out -------------------------------------------------------------------------------- /tests/XSLTMark/breadth.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/breadth.ref -------------------------------------------------------------------------------- /tests/XSLTMark/breadth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/breadth.xml -------------------------------------------------------------------------------- /tests/XSLTMark/brutal.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/brutal.out -------------------------------------------------------------------------------- /tests/XSLTMark/brutal.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/brutal.ref -------------------------------------------------------------------------------- /tests/XSLTMark/brutal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/brutal.xml -------------------------------------------------------------------------------- /tests/XSLTMark/brutal.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/brutal.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/chart.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/chart.out -------------------------------------------------------------------------------- /tests/XSLTMark/chart.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/chart.ref -------------------------------------------------------------------------------- /tests/XSLTMark/chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/chart.xml -------------------------------------------------------------------------------- /tests/XSLTMark/chart.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/chart.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/creation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/creation.out -------------------------------------------------------------------------------- /tests/XSLTMark/creation.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/creation.ref -------------------------------------------------------------------------------- /tests/XSLTMark/creation.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/creation.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/current.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/current.out -------------------------------------------------------------------------------- /tests/XSLTMark/current.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/current.ref -------------------------------------------------------------------------------- /tests/XSLTMark/current.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/current.xml -------------------------------------------------------------------------------- /tests/XSLTMark/current.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/current.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/dbgen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbgen.pl -------------------------------------------------------------------------------- /tests/XSLTMark/dbhtml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbhtml.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/dbonerow.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbonerow.out -------------------------------------------------------------------------------- /tests/XSLTMark/dbonerow.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbonerow.ref -------------------------------------------------------------------------------- /tests/XSLTMark/dbonerow.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbonerow.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/dbsql10.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbsql10.ref -------------------------------------------------------------------------------- /tests/XSLTMark/dbsql10.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbsql10.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/dbsql100.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbsql100.ref -------------------------------------------------------------------------------- /tests/XSLTMark/dbsql100.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbsql100.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/dbsql250.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbsql250.ref -------------------------------------------------------------------------------- /tests/XSLTMark/dbsql250.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbsql250.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/dbsql50.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbsql50.ref -------------------------------------------------------------------------------- /tests/XSLTMark/dbsql50.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbsql50.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/dbsql500.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbsql500.ref -------------------------------------------------------------------------------- /tests/XSLTMark/dbsql500.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbsql500.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/dbsql750.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbsql750.ref -------------------------------------------------------------------------------- /tests/XSLTMark/dbsql750.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbsql750.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/dbtail.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbtail.out -------------------------------------------------------------------------------- /tests/XSLTMark/dbtail.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbtail.ref -------------------------------------------------------------------------------- /tests/XSLTMark/dbtail.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/dbtail.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/decoy.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/decoy.out -------------------------------------------------------------------------------- /tests/XSLTMark/decoy.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/decoy.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/depth.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/depth.out -------------------------------------------------------------------------------- /tests/XSLTMark/depth.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/depth.ref -------------------------------------------------------------------------------- /tests/XSLTMark/depth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/depth.xml -------------------------------------------------------------------------------- /tests/XSLTMark/encrypt.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/encrypt.out -------------------------------------------------------------------------------- /tests/XSLTMark/encrypt.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/encrypt.ref -------------------------------------------------------------------------------- /tests/XSLTMark/encrypt.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/encrypt.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/find.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/find.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/game.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/game.out -------------------------------------------------------------------------------- /tests/XSLTMark/game.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/game.ref -------------------------------------------------------------------------------- /tests/XSLTMark/game.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/game.xml -------------------------------------------------------------------------------- /tests/XSLTMark/game.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/game.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/html.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/html.out -------------------------------------------------------------------------------- /tests/XSLTMark/html.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/html.ref -------------------------------------------------------------------------------- /tests/XSLTMark/html.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/html.xml -------------------------------------------------------------------------------- /tests/XSLTMark/html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/html.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/identity.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/identity.out -------------------------------------------------------------------------------- /tests/XSLTMark/identity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/identity.ref -------------------------------------------------------------------------------- /tests/XSLTMark/identity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/identity.xml -------------------------------------------------------------------------------- /tests/XSLTMark/identity.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/identity.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/metric.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/metric.out -------------------------------------------------------------------------------- /tests/XSLTMark/metric.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/metric.ref -------------------------------------------------------------------------------- /tests/XSLTMark/metric.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/metric.xml -------------------------------------------------------------------------------- /tests/XSLTMark/metric.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/metric.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/number.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/number.out -------------------------------------------------------------------------------- /tests/XSLTMark/number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/number.xml -------------------------------------------------------------------------------- /tests/XSLTMark/number.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/number.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/patterns.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/patterns.out -------------------------------------------------------------------------------- /tests/XSLTMark/patterns.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/patterns.ref -------------------------------------------------------------------------------- /tests/XSLTMark/patterns.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/patterns.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/priority.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/priority.out -------------------------------------------------------------------------------- /tests/XSLTMark/priority.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/priority.ref -------------------------------------------------------------------------------- /tests/XSLTMark/priority.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/priority.xml -------------------------------------------------------------------------------- /tests/XSLTMark/priority.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/priority.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/products.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/products.out -------------------------------------------------------------------------------- /tests/XSLTMark/products.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/products.ref -------------------------------------------------------------------------------- /tests/XSLTMark/products.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/products.xml -------------------------------------------------------------------------------- /tests/XSLTMark/products.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/products.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/queens.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/queens.out -------------------------------------------------------------------------------- /tests/XSLTMark/queens.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/queens.ref -------------------------------------------------------------------------------- /tests/XSLTMark/queens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/queens.xml -------------------------------------------------------------------------------- /tests/XSLTMark/queens.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/queens.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/reverser.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/reverser.out -------------------------------------------------------------------------------- /tests/XSLTMark/reverser.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/reverser.ref -------------------------------------------------------------------------------- /tests/XSLTMark/reverser.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/reverser.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/total.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/total.out -------------------------------------------------------------------------------- /tests/XSLTMark/total.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/total.ref -------------------------------------------------------------------------------- /tests/XSLTMark/total.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/total.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/tower.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/tower.out -------------------------------------------------------------------------------- /tests/XSLTMark/tower.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/tower.ref -------------------------------------------------------------------------------- /tests/XSLTMark/tower.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/tower.xml -------------------------------------------------------------------------------- /tests/XSLTMark/tower.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/tower.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/tower2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/tower2.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/trend.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/trend.out -------------------------------------------------------------------------------- /tests/XSLTMark/trend.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/trend.ref -------------------------------------------------------------------------------- /tests/XSLTMark/trend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/trend.xml -------------------------------------------------------------------------------- /tests/XSLTMark/trend.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/trend.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/union.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/union.out -------------------------------------------------------------------------------- /tests/XSLTMark/union.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/union.ref -------------------------------------------------------------------------------- /tests/XSLTMark/union.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/union.xml -------------------------------------------------------------------------------- /tests/XSLTMark/union.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/union.xsl -------------------------------------------------------------------------------- /tests/XSLTMark/xpath.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/xpath.out -------------------------------------------------------------------------------- /tests/XSLTMark/xpath.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/xpath.ref -------------------------------------------------------------------------------- /tests/XSLTMark/xpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/xpath.xml -------------------------------------------------------------------------------- /tests/XSLTMark/xpath.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/XSLTMark/xpath.xsl -------------------------------------------------------------------------------- /tests/docbook/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/BUGS -------------------------------------------------------------------------------- /tests/docbook/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/ChangeLog -------------------------------------------------------------------------------- /tests/docbook/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/Makefile.am -------------------------------------------------------------------------------- /tests/docbook/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/README -------------------------------------------------------------------------------- /tests/docbook/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/TODO -------------------------------------------------------------------------------- /tests/docbook/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/VERSION -------------------------------------------------------------------------------- /tests/docbook/WhatsNew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/WhatsNew -------------------------------------------------------------------------------- /tests/docbook/common/ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/ca.xml -------------------------------------------------------------------------------- /tests/docbook/common/cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/cs.xml -------------------------------------------------------------------------------- /tests/docbook/common/da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/da.xml -------------------------------------------------------------------------------- /tests/docbook/common/de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/de.xml -------------------------------------------------------------------------------- /tests/docbook/common/el.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/el.xml -------------------------------------------------------------------------------- /tests/docbook/common/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/en.xml -------------------------------------------------------------------------------- /tests/docbook/common/es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/es.xml -------------------------------------------------------------------------------- /tests/docbook/common/et.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/et.xml -------------------------------------------------------------------------------- /tests/docbook/common/fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/fi.xml -------------------------------------------------------------------------------- /tests/docbook/common/fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/fr.xml -------------------------------------------------------------------------------- /tests/docbook/common/hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/hu.xml -------------------------------------------------------------------------------- /tests/docbook/common/id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/id.xml -------------------------------------------------------------------------------- /tests/docbook/common/it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/it.xml -------------------------------------------------------------------------------- /tests/docbook/common/ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/ja.xml -------------------------------------------------------------------------------- /tests/docbook/common/ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/ko.xml -------------------------------------------------------------------------------- /tests/docbook/common/nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/nl.xml -------------------------------------------------------------------------------- /tests/docbook/common/no.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/no.xml -------------------------------------------------------------------------------- /tests/docbook/common/pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/pl.xml -------------------------------------------------------------------------------- /tests/docbook/common/pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/pt.xml -------------------------------------------------------------------------------- /tests/docbook/common/ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/ro.xml -------------------------------------------------------------------------------- /tests/docbook/common/ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/ru.xml -------------------------------------------------------------------------------- /tests/docbook/common/sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/sk.xml -------------------------------------------------------------------------------- /tests/docbook/common/sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/sl.xml -------------------------------------------------------------------------------- /tests/docbook/common/sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/sr.xml -------------------------------------------------------------------------------- /tests/docbook/common/sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/common/sv.xml -------------------------------------------------------------------------------- /tests/docbook/doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/doc/ChangeLog -------------------------------------------------------------------------------- /tests/docbook/doc/book.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/doc/book.xsl -------------------------------------------------------------------------------- /tests/docbook/doc/ch03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/doc/ch03.html -------------------------------------------------------------------------------- /tests/docbook/doc/ch04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/doc/ch04.html -------------------------------------------------------------------------------- /tests/docbook/doc/pr01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/doc/pr01.html -------------------------------------------------------------------------------- /tests/docbook/dtd/3.1.7/VERSION: -------------------------------------------------------------------------------- 1 | 3.1.7 2 | -------------------------------------------------------------------------------- /tests/docbook/dtd/simple/3.1.7.1/VERSION: -------------------------------------------------------------------------------- 1 | 3.1.7.1 2 | -------------------------------------------------------------------------------- /tests/docbook/dtd/simple/4.1.2.4/VERSION: -------------------------------------------------------------------------------- 1 | 4.1.2.4 2 | -------------------------------------------------------------------------------- /tests/docbook/fo/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/ChangeLog -------------------------------------------------------------------------------- /tests/docbook/fo/LostLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/LostLog -------------------------------------------------------------------------------- /tests/docbook/fo/admon.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/admon.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/biblio.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/biblio.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/block.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/block.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/fo.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/fo.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/fop.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/fop.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/formal.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/formal.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/index.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/index.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/info.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/info.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/inline.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/inline.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/lists.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/lists.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/math.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/math.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/param.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/param.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/pi.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/pi.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/synop.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/synop.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/table.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/table.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/toc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/toc.xsl -------------------------------------------------------------------------------- /tests/docbook/fo/xref.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/fo/xref.xsl -------------------------------------------------------------------------------- /tests/docbook/html/LostLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/html/LostLog -------------------------------------------------------------------------------- /tests/docbook/html/ebnf.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/html/ebnf.xsl -------------------------------------------------------------------------------- /tests/docbook/html/html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/html/html.xsl -------------------------------------------------------------------------------- /tests/docbook/html/info.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/html/info.xsl -------------------------------------------------------------------------------- /tests/docbook/html/math.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/html/math.xsl -------------------------------------------------------------------------------- /tests/docbook/html/pi.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/html/pi.xsl -------------------------------------------------------------------------------- /tests/docbook/html/toc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/html/toc.xsl -------------------------------------------------------------------------------- /tests/docbook/html/xref.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/html/xref.xsl -------------------------------------------------------------------------------- /tests/docbook/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/images/up.png -------------------------------------------------------------------------------- /tests/docbook/lib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/lib/ChangeLog -------------------------------------------------------------------------------- /tests/docbook/lib/LostLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/lib/LostLog -------------------------------------------------------------------------------- /tests/docbook/lib/lib.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/lib/lib.xsl -------------------------------------------------------------------------------- /tests/docbook/test/LostLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/test/LostLog -------------------------------------------------------------------------------- /tests/docbook/test/bib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/test/bib.xml -------------------------------------------------------------------------------- /tests/docbook/test/book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/test/book.xml -------------------------------------------------------------------------------- /tests/docbook/test/emc2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/test/emc2.gif -------------------------------------------------------------------------------- /tests/docbook/test/emc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/test/emc2.png -------------------------------------------------------------------------------- /tests/docbook/test/func.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/test/func.xml -------------------------------------------------------------------------------- /tests/docbook/test/qa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/test/qa.xml -------------------------------------------------------------------------------- /tests/docbook/test/qa2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/test/qa2.xml -------------------------------------------------------------------------------- /tests/docbook/test/set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/docbook/test/set.xml -------------------------------------------------------------------------------- /tests/documents/fragment.out: -------------------------------------------------------------------------------- 1 | 2 |

hello

3 | -------------------------------------------------------------------------------- /tests/documents/fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/documents/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/documents/menu.xml -------------------------------------------------------------------------------- /tests/documents/test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/documents/test.out -------------------------------------------------------------------------------- /tests/documents/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/documents/test.xml -------------------------------------------------------------------------------- /tests/documents/test.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/documents/test.xsl -------------------------------------------------------------------------------- /tests/exslt/common/dynamic-id.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/exslt/common/node-set.7.out: -------------------------------------------------------------------------------- 1 | 2 | A 3 | -------------------------------------------------------------------------------- /tests/exslt/dynamic/recursion.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/exslt/functions/function.10.out: -------------------------------------------------------------------------------- 1 | 2 | 15 3 | -------------------------------------------------------------------------------- /tests/exslt/functions/function.11.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/exslt/functions/function.11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/exslt/math/highest.2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/exslt/math/lowest.2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/exslt/math/max.2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/exslt/math/min.2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/exslt/saxon/eval.2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/exslt/saxon/eval.3.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/exslt/strings/split.1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/exslt/strings/tokenize.2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/extensions/list.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/extensions/module.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/fuzz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/fuzz/.gitignore -------------------------------------------------------------------------------- /tests/fuzz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/fuzz/Makefile.am -------------------------------------------------------------------------------- /tests/fuzz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/fuzz/README -------------------------------------------------------------------------------- /tests/fuzz/fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/fuzz/fuzz.c -------------------------------------------------------------------------------- /tests/fuzz/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/fuzz/fuzz.h -------------------------------------------------------------------------------- /tests/fuzz/genSeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/fuzz/genSeed.c -------------------------------------------------------------------------------- /tests/fuzz/testTargets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/fuzz/testTargets.c -------------------------------------------------------------------------------- /tests/fuzz/xpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/fuzz/xpath.c -------------------------------------------------------------------------------- /tests/fuzz/xpath.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/fuzz/xpath.dict -------------------------------------------------------------------------------- /tests/fuzz/xslt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/fuzz/xslt.c -------------------------------------------------------------------------------- /tests/fuzz/xslt.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/fuzz/xslt.dict -------------------------------------------------------------------------------- /tests/general/array.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/array.out -------------------------------------------------------------------------------- /tests/general/array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/array.xml -------------------------------------------------------------------------------- /tests/general/array.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/array.xsl -------------------------------------------------------------------------------- /tests/general/bug-1-.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-1-.out -------------------------------------------------------------------------------- /tests/general/bug-1-.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-1-.xml -------------------------------------------------------------------------------- /tests/general/bug-1-.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-1-.xsl -------------------------------------------------------------------------------- /tests/general/bug-10-.out: -------------------------------------------------------------------------------- 1 | 2 | Success 3 | -------------------------------------------------------------------------------- /tests/general/bug-10-.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/general/bug-100.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-101.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-102.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-103.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-105.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-109.out: -------------------------------------------------------------------------------- 1 | 2 | This is HTML 3 | 4 | -------------------------------------------------------------------------------- /tests/general/bug-11-.out: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-11-.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/general/bug-110.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-110.out: -------------------------------------------------------------------------------- 1 | SUCCESS 2 | -------------------------------------------------------------------------------- /tests/general/bug-112.out: -------------------------------------------------------------------------------- 1 | 2 | abcd 3 | -------------------------------------------------------------------------------- /tests/general/bug-112.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-115.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-116.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-116.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-121.out: -------------------------------------------------------------------------------- 1 | xxx 2 | -------------------------------------------------------------------------------- /tests/general/bug-121.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-123.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-123.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-126.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-127.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-139.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | My title is FOO BAR and some. 4 | 5 | -------------------------------------------------------------------------------- /tests/general/bug-143.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-144.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-148.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-148.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-149.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-149.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-150.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-151.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-152.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-154.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-156.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-159.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-163.out: -------------------------------------------------------------------------------- 1 | 2 | findme 3 | -------------------------------------------------------------------------------- /tests/general/bug-167.out: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /tests/general/bug-167.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-169.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-17-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-170.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/general/bug-171.out: -------------------------------------------------------------------------------- 1 | 2 | two 3 | -------------------------------------------------------------------------------- /tests/general/bug-173.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/general/bug-173.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-174.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-175.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-176.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-176.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-177.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-177.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-178.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-178.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-179.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-18-.out: -------------------------------------------------------------------------------- 1 | 2 | RIGHT 3 | -------------------------------------------------------------------------------- /tests/general/bug-180.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-184.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-187.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-188.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-189.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-19-.out: -------------------------------------------------------------------------------- 1 | 2 | RIGHT 3 | -------------------------------------------------------------------------------- /tests/general/bug-190.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-191.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-192.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-194.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-2-.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-2-.out -------------------------------------------------------------------------------- /tests/general/bug-2-.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-2-.xml -------------------------------------------------------------------------------- /tests/general/bug-2-.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-2-.xsl -------------------------------------------------------------------------------- /tests/general/bug-200.out: -------------------------------------------------------------------------------- 1 | 2 | found 3 | -------------------------------------------------------------------------------- /tests/general/bug-200.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-201.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-202.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-203.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-204.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-205.out: -------------------------------------------------------------------------------- 1 | 2 | 123,00 3 | -------------------------------------------------------------------------------- /tests/general/bug-205.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-206.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-207.out: -------------------------------------------------------------------------------- 1 | 2 | 111 3 | -------------------------------------------------------------------------------- /tests/general/bug-207.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-209.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-209.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-21-.out: -------------------------------------------------------------------------------- 1 | 2 | test.jpg 3 | -------------------------------------------------------------------------------- /tests/general/bug-210.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-211.out: -------------------------------------------------------------------------------- 1 | 2 | __ 3 | -------------------------------------------------------------------------------- /tests/general/bug-211.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-212.out: -------------------------------------------------------------------------------- 1 | a,a 2 | -------------------------------------------------------------------------------- /tests/general/bug-212.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-213.out: -------------------------------------------------------------------------------- 1 | a,a 2 | -------------------------------------------------------------------------------- /tests/general/bug-213.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-215.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-216.out: -------------------------------------------------------------------------------- 1 | 2 | 10 3 | -------------------------------------------------------------------------------- /tests/general/bug-216.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-217.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-218.out: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | -------------------------------------------------------------------------------- /tests/general/bug-218.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-220.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-220.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-222.out: -------------------------------------------------------------------------------- 1 | 2 | 1⠢0 3 | -------------------------------------------------------------------------------- /tests/general/bug-222.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-223.out: -------------------------------------------------------------------------------- 1 | 0 NaN 2 | -------------------------------------------------------------------------------- /tests/general/bug-223.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-225.xml: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /tests/general/bug-25-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-26-.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-26-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-27-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-28-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-3-.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-3-.out -------------------------------------------------------------------------------- /tests/general/bug-3-.xml: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /tests/general/bug-3-.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-3-.xsl -------------------------------------------------------------------------------- /tests/general/bug-30-.out: -------------------------------------------------------------------------------- 1 | 2 | mark 3 | -------------------------------------------------------------------------------- /tests/general/bug-30-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-32-.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-32-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-35-.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-35-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-38-.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-4-.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-4-.out -------------------------------------------------------------------------------- /tests/general/bug-4-.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-4-.xml -------------------------------------------------------------------------------- /tests/general/bug-4-.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-4-.xsl -------------------------------------------------------------------------------- /tests/general/bug-40-.out: -------------------------------------------------------------------------------- 1 | 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /tests/general/bug-40-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-41-.out: -------------------------------------------------------------------------------- 1 | 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /tests/general/bug-41-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-42-.out: -------------------------------------------------------------------------------- 1 | 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /tests/general/bug-42-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-43-.out: -------------------------------------------------------------------------------- 1 | 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /tests/general/bug-43-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-44-.out: -------------------------------------------------------------------------------- 1 | 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /tests/general/bug-44-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-45-.out: -------------------------------------------------------------------------------- 1 | 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /tests/general/bug-45-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-46-.out: -------------------------------------------------------------------------------- 1 | 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /tests/general/bug-46-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-47-.out: -------------------------------------------------------------------------------- 1 | 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /tests/general/bug-47-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-48-.out: -------------------------------------------------------------------------------- 1 | 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /tests/general/bug-48-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-49-.out: -------------------------------------------------------------------------------- 1 | 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /tests/general/bug-49-.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-5-.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-5-.out -------------------------------------------------------------------------------- /tests/general/bug-5-.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-5-.xml -------------------------------------------------------------------------------- /tests/general/bug-5-.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-5-.xsl -------------------------------------------------------------------------------- /tests/general/bug-52.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-52.out -------------------------------------------------------------------------------- /tests/general/bug-52.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-52.xml -------------------------------------------------------------------------------- /tests/general/bug-52.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-52.xsl -------------------------------------------------------------------------------- /tests/general/bug-53.out: -------------------------------------------------------------------------------- 1 | SUCCESS -------------------------------------------------------------------------------- /tests/general/bug-53.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-53.xml -------------------------------------------------------------------------------- /tests/general/bug-53.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-53.xsl -------------------------------------------------------------------------------- /tests/general/bug-54.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-54.out -------------------------------------------------------------------------------- /tests/general/bug-54.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-54.xml -------------------------------------------------------------------------------- /tests/general/bug-54.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-54.xsl -------------------------------------------------------------------------------- /tests/general/bug-55.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-55.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/general/bug-55.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-55.xsl -------------------------------------------------------------------------------- /tests/general/bug-56.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-56.out -------------------------------------------------------------------------------- /tests/general/bug-56.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-56.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-56.xsl -------------------------------------------------------------------------------- /tests/general/bug-57.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-57.out -------------------------------------------------------------------------------- /tests/general/bug-57.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-57.xml -------------------------------------------------------------------------------- /tests/general/bug-57.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-57.xsl -------------------------------------------------------------------------------- /tests/general/bug-58.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-58.xsl -------------------------------------------------------------------------------- /tests/general/bug-59.out: -------------------------------------------------------------------------------- 1 | 2 | B&B 3 | -------------------------------------------------------------------------------- /tests/general/bug-59.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-59.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-59.xsl -------------------------------------------------------------------------------- /tests/general/bug-6-.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-6-.out -------------------------------------------------------------------------------- /tests/general/bug-6-.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-6-.xml -------------------------------------------------------------------------------- /tests/general/bug-6-.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-6-.xsl -------------------------------------------------------------------------------- /tests/general/bug-60.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-60.err -------------------------------------------------------------------------------- /tests/general/bug-60.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-60.out -------------------------------------------------------------------------------- /tests/general/bug-60.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-60.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-60.xsl -------------------------------------------------------------------------------- /tests/general/bug-61.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-61.out -------------------------------------------------------------------------------- /tests/general/bug-61.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-61.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-61.xsl -------------------------------------------------------------------------------- /tests/general/bug-62.out: -------------------------------------------------------------------------------- 1 | 2 | the-value 3 | -------------------------------------------------------------------------------- /tests/general/bug-62.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-62.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-62.xsl -------------------------------------------------------------------------------- /tests/general/bug-63.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-63.out -------------------------------------------------------------------------------- /tests/general/bug-63.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-63.xml -------------------------------------------------------------------------------- /tests/general/bug-63.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-63.xsl -------------------------------------------------------------------------------- /tests/general/bug-64.out: -------------------------------------------------------------------------------- 1 | 2 | It works! 3 | -------------------------------------------------------------------------------- /tests/general/bug-64.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-64.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-64.xsl -------------------------------------------------------------------------------- /tests/general/bug-65.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-65.ent -------------------------------------------------------------------------------- /tests/general/bug-65.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-65.out -------------------------------------------------------------------------------- /tests/general/bug-65.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-65.xml -------------------------------------------------------------------------------- /tests/general/bug-65.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-65.xsl -------------------------------------------------------------------------------- /tests/general/bug-66.out: -------------------------------------------------------------------------------- 1 | 2 | 2 3 | -------------------------------------------------------------------------------- /tests/general/bug-66.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-66.xml -------------------------------------------------------------------------------- /tests/general/bug-66.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-66.xsl -------------------------------------------------------------------------------- /tests/general/bug-68.out: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-68.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-68.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-68.xsl -------------------------------------------------------------------------------- /tests/general/bug-69.out: -------------------------------------------------------------------------------- 1 | 2 | Success 3 | -------------------------------------------------------------------------------- /tests/general/bug-69.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-69.xml -------------------------------------------------------------------------------- /tests/general/bug-69.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-69.xsl -------------------------------------------------------------------------------- /tests/general/bug-7-.out: -------------------------------------------------------------------------------- 1 | 2 | cccfff 3 | -------------------------------------------------------------------------------- /tests/general/bug-7-.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-7-.xml -------------------------------------------------------------------------------- /tests/general/bug-7-.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-7-.xsl -------------------------------------------------------------------------------- /tests/general/bug-70.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-70.out -------------------------------------------------------------------------------- /tests/general/bug-70.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-70.xml -------------------------------------------------------------------------------- /tests/general/bug-70.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-70.xsl -------------------------------------------------------------------------------- /tests/general/bug-71.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-71.out -------------------------------------------------------------------------------- /tests/general/bug-71.xml: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /tests/general/bug-71.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-71.xsl -------------------------------------------------------------------------------- /tests/general/bug-72.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-72.out -------------------------------------------------------------------------------- /tests/general/bug-72.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/general/bug-72.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-72.xsl -------------------------------------------------------------------------------- /tests/general/bug-73.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-73.out -------------------------------------------------------------------------------- /tests/general/bug-73.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-73.xml -------------------------------------------------------------------------------- /tests/general/bug-73.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-73.xsl -------------------------------------------------------------------------------- /tests/general/bug-74.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-74.out -------------------------------------------------------------------------------- /tests/general/bug-74.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /tests/general/bug-74.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-74.xsl -------------------------------------------------------------------------------- /tests/general/bug-75.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-75.out -------------------------------------------------------------------------------- /tests/general/bug-75.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-75.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-75.xsl -------------------------------------------------------------------------------- /tests/general/bug-76.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-76.out -------------------------------------------------------------------------------- /tests/general/bug-76.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-76.xml -------------------------------------------------------------------------------- /tests/general/bug-76.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-76.xsl -------------------------------------------------------------------------------- /tests/general/bug-77.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-77.out -------------------------------------------------------------------------------- /tests/general/bug-77.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-77.xml -------------------------------------------------------------------------------- /tests/general/bug-77.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-77.xsl -------------------------------------------------------------------------------- /tests/general/bug-78.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-78.out -------------------------------------------------------------------------------- /tests/general/bug-78.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-78.xml -------------------------------------------------------------------------------- /tests/general/bug-78.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-78.xsl -------------------------------------------------------------------------------- /tests/general/bug-79.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-79.out -------------------------------------------------------------------------------- /tests/general/bug-79.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-79.xml -------------------------------------------------------------------------------- /tests/general/bug-79.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-79.xsl -------------------------------------------------------------------------------- /tests/general/bug-8-.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | Big Success 4 | -------------------------------------------------------------------------------- /tests/general/bug-8-.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-8-.xml -------------------------------------------------------------------------------- /tests/general/bug-8-.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-8-.xsl -------------------------------------------------------------------------------- /tests/general/bug-80.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-80.out -------------------------------------------------------------------------------- /tests/general/bug-80.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-80.xml -------------------------------------------------------------------------------- /tests/general/bug-80.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-80.xsl -------------------------------------------------------------------------------- /tests/general/bug-81.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-81.out -------------------------------------------------------------------------------- /tests/general/bug-81.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-81.xml -------------------------------------------------------------------------------- /tests/general/bug-81.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-81.xsl -------------------------------------------------------------------------------- /tests/general/bug-82.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-82.out -------------------------------------------------------------------------------- /tests/general/bug-82.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-82.xml -------------------------------------------------------------------------------- /tests/general/bug-82.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-82.xsl -------------------------------------------------------------------------------- /tests/general/bug-83.out: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-83.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-83.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-83.xsl -------------------------------------------------------------------------------- /tests/general/bug-84.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-84.out -------------------------------------------------------------------------------- /tests/general/bug-84.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-84.xml -------------------------------------------------------------------------------- /tests/general/bug-84.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-84.xsl -------------------------------------------------------------------------------- /tests/general/bug-86.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-86.out -------------------------------------------------------------------------------- /tests/general/bug-86.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-86.xml -------------------------------------------------------------------------------- /tests/general/bug-86.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-86.xsl -------------------------------------------------------------------------------- /tests/general/bug-87.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-87.out -------------------------------------------------------------------------------- /tests/general/bug-87.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-87.xml -------------------------------------------------------------------------------- /tests/general/bug-87.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-87.xsl -------------------------------------------------------------------------------- /tests/general/bug-88.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-88.out -------------------------------------------------------------------------------- /tests/general/bug-88.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-88.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-88.xsl -------------------------------------------------------------------------------- /tests/general/bug-89.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-89.out -------------------------------------------------------------------------------- /tests/general/bug-89.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-89.xml -------------------------------------------------------------------------------- /tests/general/bug-89.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-89.xsl -------------------------------------------------------------------------------- /tests/general/bug-9-.out: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/general/bug-9-.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/general/bug-9-.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-9-.xsl -------------------------------------------------------------------------------- /tests/general/bug-90.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-90.out -------------------------------------------------------------------------------- /tests/general/bug-90.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-90.xml -------------------------------------------------------------------------------- /tests/general/bug-90.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-90.xsl -------------------------------------------------------------------------------- /tests/general/bug-91.out: -------------------------------------------------------------------------------- 1 | 2 | This is HTML 3 | 4 | -------------------------------------------------------------------------------- /tests/general/bug-91.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-91.xml -------------------------------------------------------------------------------- /tests/general/bug-91.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-91.xsl -------------------------------------------------------------------------------- /tests/general/bug-92.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-92.out -------------------------------------------------------------------------------- /tests/general/bug-92.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-92.xml -------------------------------------------------------------------------------- /tests/general/bug-92.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-92.xsl -------------------------------------------------------------------------------- /tests/general/bug-93.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-93.out -------------------------------------------------------------------------------- /tests/general/bug-93.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-93.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-93.xsl -------------------------------------------------------------------------------- /tests/general/bug-94.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-94.out -------------------------------------------------------------------------------- /tests/general/bug-94.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-94.xml -------------------------------------------------------------------------------- /tests/general/bug-94.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-94.xsl -------------------------------------------------------------------------------- /tests/general/bug-95.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-95.out -------------------------------------------------------------------------------- /tests/general/bug-95.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-95.xml -------------------------------------------------------------------------------- /tests/general/bug-95.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-95.xsl -------------------------------------------------------------------------------- /tests/general/bug-96.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-96.out -------------------------------------------------------------------------------- /tests/general/bug-96.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-96.xml -------------------------------------------------------------------------------- /tests/general/bug-96.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-96.xsl -------------------------------------------------------------------------------- /tests/general/bug-97.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-97.out -------------------------------------------------------------------------------- /tests/general/bug-97.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-97.xml -------------------------------------------------------------------------------- /tests/general/bug-97.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-97.xsl -------------------------------------------------------------------------------- /tests/general/bug-98.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-98.out -------------------------------------------------------------------------------- /tests/general/bug-98.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-98.xml -------------------------------------------------------------------------------- /tests/general/bug-98.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-98.xsl -------------------------------------------------------------------------------- /tests/general/bug-99.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-99.out -------------------------------------------------------------------------------- /tests/general/bug-99.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/bug-99.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/bug-99.xsl -------------------------------------------------------------------------------- /tests/general/date_add.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/general/doc.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/doc.dtd -------------------------------------------------------------------------------- /tests/general/doc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/doc.out -------------------------------------------------------------------------------- /tests/general/doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/doc.xml -------------------------------------------------------------------------------- /tests/general/doc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/doc.xsl -------------------------------------------------------------------------------- /tests/general/inner.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/inner.xsl -------------------------------------------------------------------------------- /tests/general/items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/general/items.xml -------------------------------------------------------------------------------- /tests/keys/dates.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/keys/dates.out -------------------------------------------------------------------------------- /tests/keys/dates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/keys/dates.xml -------------------------------------------------------------------------------- /tests/keys/dates.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/keys/dates.xsl -------------------------------------------------------------------------------- /tests/keys/month.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/keys/month.xml -------------------------------------------------------------------------------- /tests/multiple/dict.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/multiple/dict.dtd -------------------------------------------------------------------------------- /tests/multiple/dict.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/multiple/dict.xml -------------------------------------------------------------------------------- /tests/multiple/dict.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/multiple/dict.xsl -------------------------------------------------------------------------------- /tests/multiple/result.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/namespaces/extra.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/namespaces/extra2.err: -------------------------------------------------------------------------------- 1 | Templates: 2 | #0 name / 3 | Variables: 4 | -------------------------------------------------------------------------------- /tests/namespaces/extra2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/namespaces/tst.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/namespaces/tst.out -------------------------------------------------------------------------------- /tests/namespaces/tst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/namespaces/tst.xml -------------------------------------------------------------------------------- /tests/namespaces/tst.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/namespaces/tst.xsl -------------------------------------------------------------------------------- /tests/namespaces/tst7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/namespaces/tst8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/plugins/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/plugins/plugin.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/plugins/plugin.xsl -------------------------------------------------------------------------------- /tests/reports/cmdlineparams.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/reports/recglobparam.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/reports/recglobvar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/reports/reclocparam.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/reports/reclocvar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/reports/tst-1.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/reports/tst-1.err -------------------------------------------------------------------------------- /tests/reports/tst-1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/reports/tst-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/reports/tst-1.xsl -------------------------------------------------------------------------------- /tests/reports/tst-2.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/reports/tst-2.err -------------------------------------------------------------------------------- /tests/reports/tst-2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/reports/tst-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/reports/tst-2.xsl -------------------------------------------------------------------------------- /tests/runtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/runtest.c -------------------------------------------------------------------------------- /tests/testplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/testplugin.c -------------------------------------------------------------------------------- /tests/xinclude/e.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/xinclude/e.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/xinclude/e.xsl -------------------------------------------------------------------------------- /tests/xinclude/x1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/xinclude/x1.xml -------------------------------------------------------------------------------- /tests/xinclude/x2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/xinclude/x2.xml -------------------------------------------------------------------------------- /tests/xmlspec/logo-REC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/tests/xmlspec/logo-REC -------------------------------------------------------------------------------- /vms/build_xslt.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/vms/build_xslt.com -------------------------------------------------------------------------------- /vms/diffs.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/vms/diffs.vms -------------------------------------------------------------------------------- /vms/readme.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/vms/readme.vms -------------------------------------------------------------------------------- /win32/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/win32/Makefile.mingw -------------------------------------------------------------------------------- /win32/Makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/win32/Makefile.msvc -------------------------------------------------------------------------------- /win32/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/win32/Readme.txt -------------------------------------------------------------------------------- /win32/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/win32/configure.js -------------------------------------------------------------------------------- /win32/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/win32/runtests.py -------------------------------------------------------------------------------- /xslt-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/xslt-config.in -------------------------------------------------------------------------------- /xsltConf.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/xsltConf.sh.in -------------------------------------------------------------------------------- /xsltproc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/xsltproc/Makefile.am -------------------------------------------------------------------------------- /xsltproc/testThreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/xsltproc/testThreads.c -------------------------------------------------------------------------------- /xsltproc/xsltproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libxslt/HEAD/xsltproc/xsltproc.c --------------------------------------------------------------------------------