xsl-list
[Top] [All Lists]

Re: [xsl] Generating JSP/JSTL

2007-04-24 15:47:47
In the following transformation the name space URI will not appear in
the c:choose tag, since it is already present in it's parent tag
jsp:root.

<?xml version="1.0"?>
<xsl:stylesheet
       xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
       version="2.0">

   <xsl:output method="xml" omit-xml-declaration="no"/>

   <xsl:template match="/">

       <jsp:root
               xmlns:jsp="http://java.sun.com/JSP/Page";
               xmlns:c="http://java.sun.com/jsp/jstl/core";
               version="2.0">
           <ul>
               <c:choose>
                   <c:when test="">Print Something</c:when>
                   <c:otherwise></c:otherwise>
               </c:choose>
           </ul>
       </jsp:root>

   </xsl:template>

</xsl:stylesheet>

I think there are more challenges when it comes to transforming EL,
but since these questions pertain to JSP/JSTL - the JSTL mailing list
may know how to represent EL in XML syntax.

-Regards
Rashmi

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--