  | Mailing List | | Home | | Forum Home | | JBoss - Java Application Server | | Tomcat - JSP/Servlet container | | Struts - A MVC web framework | | iText - An open source PDF Java Library | | JDOM - JDOM XML Parser | | JSP - A mailing list about Java Server Pages specification and reference | | J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition | | J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog | | Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology | |
Struts & Hibernate
|
|
|
  | | | HELP NEEDED IN XSLT | HELP NEEDED IN XSLT 2007-04-27 - By Zeeshan
Back Hi every one
I am unable to transform the xml to text using the xslt. the contents of the files are also pasted below
page.xml <Event> <Page> <DIV StyleClass="top_banner_right1"> <H1 Class="h1_1">This is heading</H1> <B>(August 31-September 3, 2007)</B> <BREAK /> <B>Saroba garden lahore</B> </DIV> </Page> </Event>
page.xslt
<xsl:template match="Event/Page/DIV"><xsl:text><![CDATA[<s:div ]]></xsl:text> <xsl:if test="@(protected)"><xsl:text><![CDATA[StyleClass ="]]></xsl:text><xsl :value-of select="@(protected)" /><xsl:text><![CDATA[">]]></xsl:text></xsl:if> <xsl:text><![CDATA[ ]]></xsl:text><xsl:value-of select="."/><xsl:text><![CDATA[] ]></xsl:text></xsl:template> <xsl:template match="Event/Page/DIV/H1"><xsl:text><![CDATA[<h1>]]></xsl:text> <xsl:value-of select="."/><xsl:text><![CDATA[</h1>]]></xsl:text></xsl:template>
<xsl:template match="Event/Page/DIV/B"><xsl:text><![CDATA[<B>]]></xsl:text><xsl :value-of select="."/><xsl:text><![CDATA[</B>]]></xsl:text></xsl:template>
<xsl:template match="Event/Page/DIV/BREAK">
<xsl:text><![CDATA[<br>]]></xsl:text><xsl:value-of select="."/><xsl:text>< !CDATA[</br>]]></xsl:text></xsl:template>
in fact I am getting following as output
<s:div StyleClass ="top_banner_right1"> This is heading(August 31-September 3, 2007) Saroba garden lahore
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859 (See http://iso-8859.ora-code.com)-1"> <META content="MSHTML 6.00.2900.2180" name=GENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=#ffffff> <DIV><FONT face=Arial size=2> <DIV><FONT face=Arial size=2>Hi every one</FONT></DIV> <DIV><FONT face=Arial size=2></FONT> </DIV> <DIV><FONT face=Arial size=2>I am unable to trans</FONT><FONT face=Arial size=2>form the xml to text using the xslt. </FONT><FONT face=Arial size=2>the contents of the files are also pasted below</FONT></DIV> <DIV> </DIV> <DIV><FONT face=Arial size=2>page.xml</FONT></DIV> <DIV><FONT face=Arial size=2><Event><BR><Page><BR><DIV StyleClass="top_banner_right1"><BR><H1 Class="h1_1">This is heading</H1><BR><B>(August 31-September 3, 2007)</B><BR><BREAK /><BR><B>Saroba garden lahore</B><BR></DIV><BR></Page><BR></Event><BR></FONT>< /DIV> <DIV><FONT face=Arial size=2></FONT> </DIV> <DIV><FONT face=Arial size=2>page.xslt</FONT></DIV> <DIV> </DIV> <DIV><FONT face=Arial size=2><FONT size=2><xsl:template match="Event/Page/DIV"><xsl:text><![CDATA[<s:div ]]></xsl:text><xsl:if test="@(protected)"><xsl:text><![CDATA[StyleClass ="]]></xsl:text><xsl:value-of select="@(protected)" /><xsl:text><![CDATA[">]]></xsl:text></xsl:if>< ;xsl:text><![CDATA[ ]]></xsl:text><xsl:value-of select="."/><xsl:text><![CDATA[]]></xsl:text></xsl :template></DIV> <DIV> <P><xsl:template match="Event/Page/DIV/H1"><xsl:text><![CDATA[<h1>]]>< /xsl:text><xsl:value-of select="."/><xsl:text><![CDATA[</h1>]]></xsl:text> </xsl:template></P> <P><xsl:template match="Event/Page/DIV/B"><xsl:text><![CDATA[<B>]]></xsl :text><xsl:value-of select="."/><xsl:text><![CDATA[</B>]]></xsl:text>< ;/xsl:template></P> <P><xsl:template match="Event/Page/DIV/BREAK"></P> <P><xsl:text><![CDATA[<br>]]></xsl:text><xsl:value -of select="."/><xsl:text><!CDATA[</br>]]></xsl:text>< ;/xsl:template></P> <P> </P> <P>in fact I am getting following as output</P> <P><FONT face=Arial size=2> <s:div StyleClass ="top_banner_right1"> This is heading(August 31-September 3, 2007) Saroba garden lahore</FONT></P> <P> </P></FONT></FONT></DIV></FONT></DIV></BODY></HTML>
__ ____ ____ ____ ____ ____ ____ ____ ____ ____ To control your jdom-interest membership: http://www.jdom.org/mailman/options/jdom-interest/youraddr@(protected)
|
|
 |