Atributes do not work in Xalan XSLTC 2.1.0 and 2.2.x using TrAX

PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT
ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW
AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE
DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL
BE LOST SOMEWHERE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2465

*** shadow/2465 Tue Jul 10 16:26:02 2001
--- shadow/2465.tmp.11278       Wed Aug 15 07:33:37 2001
***************
*** 1,11 ****
  +============================================================================+
! | Atributes do not work in Xalan XSLTC 2.1.0 and 2.2.x                       |
  +----------------------------------------------------------------------------+
  |        Bug #: 2465                        Product: XalanJ2                 |
  |       Status: NEW                         Version: 2.1.0                   |
  |   Resolution:                            Platform: All                     |
  |     Severity: Blocker                  OS/Version: All                     |
! |     Priority: Other                     Component: Xalan-Xsltc             |
  +----------------------------------------------------------------------------+
  |  Assigned To: [EMAIL PROTECTED]                                     |
  |  Reported By: [EMAIL PROTECTED]                                            |
--- 1,11 ----
  +============================================================================+
! | Atributes do not work in Xalan XSLTC 2.1.0 and 2.2.x using TrAX            |
  +----------------------------------------------------------------------------+
  |        Bug #: 2465                        Product: XalanJ2                 |
  |       Status: NEW                         Version: 2.1.0                   |
  |   Resolution:                            Platform: All                     |
  |     Severity: Blocker                  OS/Version: All                     |
! |     Priority: High                      Component: Xalan-Xsltc             |
  +----------------------------------------------------------------------------+
  |  Assigned To: [EMAIL PROTECTED]                                     |
  |  Reported By: [EMAIL PROTECTED]                                            |
***************
*** 25,28 ****
  explain what output you are expecting versus what you are seeing.
  
  Thanks,
! Gary
--- 25,66 ----
  explain what output you are expecting versus what you are seeing.
  
  Thanks,
! Gary
! 
! ------- Additional Comments From [EMAIL PROTECTED]  2001-08-15 07:33 -------
! I got more infomation from Seth and will try to clarify what the problem is 
! here. When you attempt to run the JAXPTransletOneTransformation sample (in 
! xml-xalan/java/samples/translets), the ouput html is missing the developers 
! names and email address, among other things. So this template in the todo.xsl 
! stylesheet is failing to produce the expected output:
! 
!   <xsl:template name="developer-list">
!     <H3>
!       <xsl:element name="a">
!         <xsl:attribute name="name">developer-list</xsl:attribute>
!         <xsl:text>Developers:</xsl:text>
!       </xsl:element>
!     </H3>
!     <p>A list of some of people currently working on working on <xsl:value-of 
! select="/todo/@project"/>:</p>
!     <ul>
!     <xsl:for-each select="devs/person">
!       <li>
!         <a href="mailto:{@email}";>
!           <xsl:value-of select="@name"/>
!         </a>
!          <xsl:element name="a">
!            <xsl:attribute 
! name="name"><xsl:text>personref-</xsl:text><xsl:value-of 
! select="@id"/></xsl:attribute>
!            <xsl:text> (</xsl:text><xsl:value-of 
! select="@id"/><xsl:text>)</xsl:text>
!          </xsl:element>
!          <BR/><xsl:value-of select="."/>
!       </li>
!     </xsl:for-each>
!     </ul>
!   </xsl:template>
! 
! The is a TrAX specific problem, because the same transformation works fine when 
! using XSLTC's cmdline Transform class, which implements the navtive API.

Reply via email to