felipe          Sun May 10 15:48:39 2009 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/xsl/tests      bug48221.phpt 
  Log:
  - Simplify test (cweiske)
  
http://cvs.php.net/viewvc.cgi/php-src/ext/xsl/tests/bug48221.phpt?r1=1.1.2.2&r2=1.1.2.3&diff_format=u
Index: php-src/ext/xsl/tests/bug48221.phpt
diff -u php-src/ext/xsl/tests/bug48221.phpt:1.1.2.2 
php-src/ext/xsl/tests/bug48221.phpt:1.1.2.3
--- php-src/ext/xsl/tests/bug48221.phpt:1.1.2.2 Sun May 10 15:13:05 2009
+++ php-src/ext/xsl/tests/bug48221.phpt Sun May 10 15:48:39 2009
@@ -6,80 +6,12 @@
 ?>
 --FILE--
 <?php
-
-$xsl = new DOMDocument;
-$xsl->loadXML('<html xsl:version="1.0"
-      xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
-      lang="en">
-    <head>
-        <title>Sales Results By Division</title>
-    </head>
-    <body>
-        <table border="1">
-            <tr>
-                <th>Division</th>
-                <th>Revenue</th>
-                <th>Growth</th>
-                <th>Bonus</th>
-            </tr>
-            <xsl:for-each select="sales/division">
-                <!-- order the result by revenue -->
-                <xsl:sort select="revenue"
-                          data-type="number"
-                          order="descending"/>
-                <tr>
-                    <td>
-                        <em><xsl:value-of select="@id"/></em>
-                    </td>
-                    <td>
-                        <xsl:value-of select="revenue"/>
-                    </td>
-                    <td>
-                        <!-- highlight negative growth in red -->
-                        <xsl:if test="growth &lt; 0">
-                             <xsl:attribute name="style">
-                                 <xsl:text>color:red</xsl:text>
-                             </xsl:attribute>
-                        </xsl:if>
-                        <xsl:value-of select="growth"/>
-                    </td>
-                    <td>
-                        <xsl:value-of select="bonus"/>
-                    </td>
-                </tr>
-            </xsl:for-each>
-        </table>
-    </body>
-</html>');
-
-$dom = new DOMDocument;
-$dom->loadXMl('<sales>
-
-        <division id="North">
-                <revenue>10</revenue>
-                <growth>9</growth>
-                <bonus>7</bonus>
-        </division>
-
-        <division id="South">
-                <revenue>4</revenue>
-                <growth>3</growth>
-                <bonus>4</bonus>
-        </division>
-
-        <division id="West">
-                <revenue>6</revenue>
-                <growth>-1.5</growth>
-                <bonus>2</bonus>
-        </division>
-
-</sales>');
-
-$proc = new xsltprocessor;
+include('prepare.inc');
 $proc->importStylesheet($xsl);
 $proc->setParameter('', '', '"\'');
 $proc->transformToXml($dom);
-
-?>
 --EXPECTF--
 Warning: XSLTProcessor::transformToXml(): Cannot create XPath expression 
(string contains both quote and double-quotes) in %s on line %d
+--CREDITS--
+Christian Weiske, cwei...@php.net
+PHP Testfest Berlin 2009-05-09



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

Reply via email to