mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-17 03:22:14 +03:00
- libxslt/transform.c libxslt/xsltutils.c: fixed DOCTYPE generation - libxslt/xsltproc.c: cleaned up the --repeat loop - tests/documents/result.xhtml tests/xmlspec/REC-xml-20001006*.html: fixed the DOCTYPE in tests output - tests/docs/bug-25-.xml tests/doc/Makefile.am tests/general/bug-25-.* tests/general/Makefile.am : added a new test case and fixed the EXTRA_DIST Daniel
11 lines
297 B
XML
11 lines
297 B
XML
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
<xsl:output method="xml" encoding="UTF-8"
|
|
doctype-public="-//WAPFORUM//DTD WML 1.1//EN"
|
|
doctype-system="http://www.wapforum.org/DTD/wml_1.1.xml"/>
|
|
|
|
<xsl:template match="/">
|
|
<doc/>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|