diff options
author | Kasimier T. Buchcik <kbuchcik@src.gnome.org> | 2006-06-21 13:16:57 +0000 |
---|---|---|
committer | Kasimier T. Buchcik <kbuchcik@src.gnome.org> | 2006-06-21 13:16:57 +0000 |
commit | 36615d1c6d582ef9bd2f2a451fae6c12b97d3ede (patch) | |
tree | 02fb18b5ce9b5495e7b6f8a20f202a8f3c723665 | |
parent | c09974f82f86d2eca4d3788c089eb41a7ad8bb65 (diff) | |
download | libxslt-36615d1c6d582ef9bd2f2a451fae6c12b97d3ede.tar.gz libxslt-36615d1c6d582ef9bd2f2a451fae6c12b97d3ede.tar.bz2 libxslt-36615d1c6d582ef9bd2f2a451fae6c12b97d3ede.zip |
Fixed incorrect regression tests/results.
* tests/docs/bug-54.xml tests/general/bug-54.out
tests/general/bug-99.out tests/general/bug-136.out
tests/REC/test-7.1.3.xsl tests/REC/test-7.1.4.xsl
tests/REC/test-7.3.xsl tests/REC/test-7.4.xsl:
Fixed incorrect regression tests/results.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | tests/REC/test-7.1.3.xsl | 5 | ||||
-rw-r--r-- | tests/REC/test-7.1.4.xsl | 5 | ||||
-rw-r--r-- | tests/REC/test-7.3.xsl | 5 | ||||
-rw-r--r-- | tests/REC/test-7.4.xsl | 5 | ||||
-rw-r--r-- | tests/docs/bug-54.xml | 5 | ||||
-rw-r--r-- | tests/general/bug-136.out | 2 | ||||
-rw-r--r-- | tests/general/bug-54.out | 5 | ||||
-rw-r--r-- | tests/general/bug-99.out | 2 |
9 files changed, 16 insertions, 26 deletions
@@ -1,3 +1,11 @@ +Wed Jun 21 15:13:27 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net> + + * tests/docs/bug-54.xml tests/general/bug-54.out + tests/general/bug-99.out tests/general/bug-136.out + tests/REC/test-7.1.3.xsl tests/REC/test-7.1.4.xsl + tests/REC/test-7.3.xsl tests/REC/test-7.4.xsl: + Fixed incorrect regression tests/results. + Mon Jun 19 13:33:50 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net> * libxslt/attributes.c libxslt/attrvt.c libxslt/namespaces.c diff --git a/tests/REC/test-7.1.3.xsl b/tests/REC/test-7.1.3.xsl index 36d5b752..f04f5095 100644 --- a/tests/REC/test-7.1.3.xsl +++ b/tests/REC/test-7.1.3.xsl @@ -1,9 +1,6 @@ <xsl:stylesheet version="1.0" - xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:axsl="http://www.w3.org/1999/XSL/TransformAlias"> - -<xsl:namespace-alias stylesheet-prefix="axsl" result-prefix="xsl"/> + xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="doc"> <doc> diff --git a/tests/REC/test-7.1.4.xsl b/tests/REC/test-7.1.4.xsl index 88c61b99..ab0e7689 100644 --- a/tests/REC/test-7.1.4.xsl +++ b/tests/REC/test-7.1.4.xsl @@ -1,10 +1,7 @@ <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:fo="http://www.w3.org/1999/XSL/Format" - xmlns:axsl="http://www.w3.org/1999/XSL/TransformAlias"> - -<xsl:namespace-alias stylesheet-prefix="axsl" result-prefix="xsl"/> + xmlns:fo="http://www.w3.org/1999/XSL/Format"> <xsl:template match="chapter/heading"> <fo:block quadding="start" xsl:use-attribute-sets="title-style"> diff --git a/tests/REC/test-7.3.xsl b/tests/REC/test-7.3.xsl index 2f5675c0..dbf54d07 100644 --- a/tests/REC/test-7.3.xsl +++ b/tests/REC/test-7.3.xsl @@ -1,9 +1,6 @@ <xsl:stylesheet version="1.0" - xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:axsl="http://www.w3.org/1999/XSL/TransformAlias"> - -<xsl:namespace-alias stylesheet-prefix="axsl" result-prefix="xsl"/> + xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="doc"> <doc> diff --git a/tests/REC/test-7.4.xsl b/tests/REC/test-7.4.xsl index 8e9cdff2..08dbbe3b 100644 --- a/tests/REC/test-7.4.xsl +++ b/tests/REC/test-7.4.xsl @@ -1,9 +1,6 @@ <xsl:stylesheet version="1.0" - xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:axsl="http://www.w3.org/1999/XSL/TransformAlias"> - -<xsl:namespace-alias stylesheet-prefix="axsl" result-prefix="xsl"/> + xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="doc"> <doc> diff --git a/tests/docs/bug-54.xml b/tests/docs/bug-54.xml index bf13d1c8..188b15af 100644 --- a/tests/docs/bug-54.xml +++ b/tests/docs/bug-54.xml @@ -1,5 +1,2 @@ <?xml version="1.0"?> -<all> -<one xmlns="http://www.test1.com">1</one> -<two xmlns="http://www.test2.com">2</two> -</all> +<all><one xmlns="http://www.test1.com"></one><two xmlns="http://www.test2.com"></two></all> diff --git a/tests/general/bug-136.out b/tests/general/bug-136.out index 8016df35..c0937558 100644 --- a/tests/general/bug-136.out +++ b/tests/general/bug-136.out @@ -1,4 +1,4 @@ <?xml version="1.0"?> - <ns1:foobar xmlns:ns1="http://some/namespace/uri"/> + <foobar xmlns="http://some/namespace/uri"/> diff --git a/tests/general/bug-54.out b/tests/general/bug-54.out index cd6ab81c..cde276f8 100644 --- a/tests/general/bug-54.out +++ b/tests/general/bug-54.out @@ -1,5 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<root xmlns:libxslt="http://xmlsoft.org/XSLT/namespace" xmlns:test1="http://www.test1.com" xmlns:test2="http://www.test2.com" xmlns="http://www.test1.com"> - - -</root> +<root xmlns:libxslt="http://xmlsoft.org/XSLT/namespace" xmlns:test1="http://www.test1.com" xmlns:test2="http://www.test2.com"/> diff --git a/tests/general/bug-99.out b/tests/general/bug-99.out index 70c32f25..724bad54 100644 --- a/tests/general/bug-99.out +++ b/tests/general/bug-99.out @@ -1,2 +1,2 @@ <?xml version="1.0"?> -<doc xmlns="ns1" xmlns:ns1="ns1" ns1:attr="foo!"/> +<doc xmlns="ns1" xmlns:ns_1="ns1" ns_1:attr="foo!"/> |