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.xsluRM0WLH{m{RoW&ؖ=fYp}k85ȒT69Vns*H
  _M9dIiY? ߾ԭ? e܎<EShftaB!h]8c2>%1vo     
   {
BjvĭmJ4d
\08UFTi#aÔwZ1AnKzr6q^;)=y=`u<s,]圾70S`*qQ^!OV-pW5.U'$Uز,PHfkKKi%{rO?҅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