mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2026-01-07 21:58:22 +03:00
added the example for bug #112904 in the regression tests, the bug fix is
* tests/docs/Makefile.am tests/docs/bug-121.* tests/general/Makefile.am tests/general/bug-121*: added the example for bug #112904 in the regression tests, the bug fix is actually in libxml2 Daniel
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
Fri May 16 13:22:31 EDT 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* tests/docs/Makefile.am tests/docs/bug-121.*
|
||||
tests/general/Makefile.am tests/general/bug-121*: added the
|
||||
example for bug #112904 in the regression tests, the bug fix is
|
||||
actually in libxml2
|
||||
|
||||
Thu May 15 16:26:34 EDT 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xsltproc/xsltproc.c: fixing portability bug #113002 on HP-UX
|
||||
|
||||
@@ -119,6 +119,8 @@ EXTRA_DIST = \
|
||||
bug-117.xml \
|
||||
bug-118.xml \
|
||||
bug-119.xml \
|
||||
bug-120.xml \
|
||||
bug-121.xml \
|
||||
character.xml \
|
||||
array.xml \
|
||||
items.xml
|
||||
|
||||
1
tests/docs/bug-121.xml
Normal file
1
tests/docs/bug-121.xml
Normal file
@@ -0,0 +1 @@
|
||||
<doc/>
|
||||
@@ -124,6 +124,8 @@ EXTRA_DIST = \
|
||||
bug-117.out bug-117.xsl \
|
||||
bug-118.out bug-118.xsl \
|
||||
bug-119.out bug-119.xsl \
|
||||
bug-120.out bug-120.xsl \
|
||||
bug-121.out bug-121.xsl \
|
||||
character.out character.xsl \
|
||||
character2.out character2.xsl \
|
||||
itemschoose.out itemschoose.xsl \
|
||||
|
||||
1
tests/general/bug-121.out
Normal file
1
tests/general/bug-121.out
Normal file
@@ -0,0 +1 @@
|
||||
<a href="a?b+c">xxx</a>
|
||||
8
tests/general/bug-121.xsl
Normal file
8
tests/general/bug-121.xsl
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
<xsl:output method="html" />
|
||||
|
||||
<xsl:template match="/">
|
||||
<a href="a?b+c">xxx</a>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
Reference in New Issue
Block a user