chregu          Mon Oct 27 10:12:22 2003 EDT

  Added files:                 
    /php-src/ext/xsl/tests      documentxpath.xsl streamsinclude.xsl 
                                xslt.xsl.gz xslt008.phpt xslt009.phpt 
  Log:
  - streams test
  
  

Index: php-src/ext/xsl/tests/documentxpath.xsl
+++ php-src/ext/xsl/tests/documentxpath.xsl
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Id: documentxpath.xsl,v 1.1 2003/10/27 15:12:20 chregu Exp $ -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; >
    <xsl:output  method="xml" encoding="iso-8859-1" indent="no"/>
<xsl:template match="/">

<xsl:value-of 
select="document('compress.zlib://ext/xsl/tests/xslt.xsl.gz')/xsl:stylesheet/xsl:param/@name"/>
</xsl:template>
    
 </xsl:stylesheet>

Index: php-src/ext/xsl/tests/streamsinclude.xsl
+++ php-src/ext/xsl/tests/streamsinclude.xsl
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Id: streamsinclude.xsl,v 1.1 2003/10/27 15:12:20 chregu Exp $ -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; >
    <xsl:output  method="xml" encoding="iso-8859-1" indent="no"/>
    <xsl:include href="compress.zlib://xslt.xsl.gz"/>
</xsl:stylesheet>

Index: php-src/ext/xsl/tests/xslt.xsl.gz
+++ php-src/ext/xsl/tests/xslt.xsl.gz
�ۜ?xslt.xsluRM��0��WL�H{��m�{�Ro��W&�ؖ=�����fY��p���}����k8��5�ȒT��6�9��Vn�����s�*�H
  �_M�9���dI�i��Y��? ��߾�ԭ��?�� e܎�<�ESh���ftaB!�h�]�8�c2>%�1��v���o��     
   �{�
��Bjv�ĭmJ��4d��
\08�UF�T���i�#�a��Ô�wZ1A��nK��z�r����6��q^;)=����y=�`u�<s,��]圾�7�0S`�*��q�����Q��^����!OV���-�pW��5.�U���'���$U���ز�,P��HfkK�K�i%���{��r���O�������?҅w�
Index: php-src/ext/xsl/tests/xslt008.phpt
+++ php-src/ext/xsl/tests/xslt008.phpt
--TEST--
Test 8: Stream Wrapper Includes
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
echo "Test 8: Stream Wrapper Includes ";
include("prepare.inc");

$xsl = new domDocument;
$xsl->load(dirname(__FILE__)."/streamsinclude.xsl");
if(!$xsl) {
  echo "Error while parsing the document\n";
  exit;
}
$xp = new domxpath($xsl);
$res = $xp->query("/xsl:stylesheet/xsl:include/@href");
$res[0]->value = "compress.zlib://".dirname(__FILE__)."/xslt.xsl.gz";
$proc->importStylesheet($xsl);
print "\n";
print $proc->transformToXML($dom);


--EXPECT--
Test 8: Stream Wrapper Includes 
<?xml version="1.0" encoding="iso-8859-1"?>
<html><body>bar
a1 b1 c1 <br/> 
a2 c2 <br/> 
�3 b3 c3 <br/> 
</body></html>

Index: php-src/ext/xsl/tests/xslt009.phpt
+++ php-src/ext/xsl/tests/xslt009.phpt
--TEST--
Test 9: Stream Wrapper XPath-Document() 
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
echo "Test 9: Stream Wrapper XPath-Document()";
include("prepare.inc");

$xsl = new domDocument;
$xsl->load(dirname(__FILE__)."/documentxpath.xsl");
if(!$xsl) {
  echo "Error while parsing the document\n";
  exit;
}

$proc->importStylesheet($xsl);
print "\n";
print $proc->transformToXML($dom);


--EXPECT--
Test 9: Stream Wrapper XPath-Document()
<?xml version="1.0" encoding="iso-8859-1"?>
foo

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to