XML Editor
Sign up for a WebBoard account Sign Up Keyword Search Search More Options... Options
Chat Rooms Chat Help Help News News Log in to WebBoard Log in Not Logged in
Show tree view Topic
Topic Page 1 2 3 4 5 6 7 8 9 Go to previous topicPrev TopicGo to next topicNext Topic
Postnext
Mark BaridSubject: Preventing namespace declaration from showing up in HTML
Author: Mark Barid
Date: 28 Mar 2008 11:23 AM
I have the following XSLT which has an internal XML data structure. This sytle sheet outputs HTML. How do I prevent the namespace from being output to the HTML.

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:n="hRule" version="2.0">
<xsl:output method="html" indent="yes"/>
<!-- Horizontal Rule-Size Island -->
<n:horizontalRuleConversion xmlns="hRule">
<n:RuleSize points=".5" size="1"/>
<n:RuleSize points="1" size="1"/>
<n:RuleSize points="1.5" size="2"/>
<n:RuleSize points="2" size="3"/>
<n:RuleSize points="2.25" size="3"/>
<n:RuleSize points="3" size="4"/>
<n:RuleSize points="3.5" size="5"/>
<n:RuleSize points="4" size="5"/>
<n:RuleSize points="4.5" size="6"/>
<n:RuleSize points="5" size="7"/>
<n:RuleSize points="5.5" size="7"/>
<n:RuleSize points="6" size="8"/>
<n:RuleSize points="6.5" size="9"/>
<n:RuleSize points="7" size="9"/>
<n:RuleSize points="7.5" size="10"/>
</n:horizontalRuleConversion>

It is being used as such.
<xsl:apply-templates select="n:RuleSize|document('')/xsl:stylesheet/n:horizontalRuleConversion/n:RuleSize" >
<xsl:with-param name="szInPoint"><xsl:value-of select="$sizeInPoint"/></xsl:with-param>
</xsl:apply-templates>

<xsl:template match="n:RuleSize">
<xsl:param name="szInPoint"/>
<xsl:choose>
<xsl:when test="@points=$szInPoint"><xsl:value-of select="@size" /></xsl:when>
<xsl:otherwise></xsl:otherwise>
</xsl:choose>
</xsl:template>

Posttop
(Deleted User) Subject: Preventing namespace declaration from showing up in HTML
Author: (Deleted User)
Date: 31 Mar 2008 06:34 AM
Hi Mark,
you could write that fragment inside an xsl:variable declaration, and either use the same approach to retrieve it, or use the variable directly (if the XSLT processor you are using supports tree fragments in variables).

Hope this helps,
Alberto

 
Topic Page 1 2 3 4 5 6 7 8 9 Go to previous topicPrev TopicGo to next topicNext Topic
Download A Free Trial of Stylus Studio 6 XML Professional Edition Today! Powered by Stylus Studio, the world's leading XML IDE for XML, XSLT, XQuery, XML Schema, DTD, XPath, WSDL, XHTML, SQL/XML, and XML Mapping!  
go

Log In Options

Site Map | Privacy Policy | Terms of Use | Trademarks
Stylus Scoop XML Newsletter:
W3C Member
Stylus Studio® and DataDirect XQuery ™are from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2016 All Rights Reserved.