ID: 27236 Updated by: [EMAIL PROTECTED] Reported By: bo at theaddedones dot com -Status: Feedback +Status: No Feedback Bug Type: XSLT related Operating System: solaris 8, OSX 10.3, Redhat PHP Version: 4.3.4 New Comment:
No feedback was provided. The bug is being suspended because we assume that you are no longer experiencing the problem. If this is not the case and you are able to provide the information that was requested earlier, please do so and change the status of the bug back to "Open". Thank you. Previous Comments: ------------------------------------------------------------------------ [2004-02-14 10:59:27] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php4-STABLE-latest.tar.gz For Windows: http://snaps.php.net/win32/php4-win32-STABLE-latest.zip Can not reproduce with latest stable CVS snapshot, using these libxml/libxslt versions: libxml Version => 20604 libxslt Version => 1.0.32 ------------------------------------------------------------------------ [2004-02-13 12:27:43] bo at theaddedones dot com As one more note i tried using the normal 'xsltproc' command built from the same libs with the same inputs as the example and i get no error ------------------------------------------------------------------------ [2004-02-13 12:16:28] bo at theaddedones dot com i should mention that the versions on the different systems that the error seems to appear on the OSX 10.3 system is php = 4.3.2 libxml = 20507, libxslt = 1.0.30 the verion on Solaris 8 php = 4.3.4, libxml = 20510, libxslt = 1.0.19 the version on Redhat 9 php 4.3.4, libxml = 20504, libxslt = 1.0.27 ------------------------------------------------------------------------ [2004-02-13 12:08:16] bo at theaddedones dot com here is compact code bit that seesms to give the error i speak of ---- <?php $inSheet = '<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html" /> <xsl:key name="state_key" match="images" use="state"/> <xsl:template name="TestKey"> <xsl:for-each select="//images[generate-id()=generate-id(key(\'state_key\',state)[1])]"> <xsl:value-of select="state"/>, </xsl:for-each> </xsl:template> <xsl:template match="/" /> </xsl:stylesheet>'; $inXML = '<?xml version="1.0" encoding="ISO-8859-1"?> <images> <author>Karl Larsen</author> <city>Culver City</city> <state>CA</state> <country>USA</country> </images>'; $xsltString = domxml_xslt_stylesheet_doc(domxml_open_mem($inSheet)); $xmlString = domxml_open_mem($inXML); $res = $xsltString->process($xmlString); print $xsltString->result_dump_mem($res); ?> ------------------------------------------------------------------------ [2004-02-12 19:59:20] bo at theaddedones dot com sorry, in the 'reporduce code' the proper xsl would be (just mistyped it) <xsl:key name="state_key" match="data" use="state"/> <xsl:for-each select="//data[generate-id()=generate-id(key('state_key',state)[1])]"><xsl:value-of select="state"/>, </xsl:for-each> ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at http://bugs.php.net/27236 -- Edit this bug report at http://bugs.php.net/?id=27236&edit=1
