Intelligent Notification Services

Instant messaging (IMS) trancoder stylesheet


The stylesheet file, IMSTranscoder_SS.xsl contains the following stylesheet code.

<?xml version="1.0"?> 
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:output omit-xml-declaration="yes" method="text"/>
<xsl:template match="message">
	From: <xsl:value-of select="from"/>
	Sub: <xsl:value-of select="subject"/>
	Msg: <xsl:value-of select="text" />
     <xsl:for-each select="url">
     <xsl:text>
	</xsl:text><xsl:value-of select="." />
     </xsl:for-each>
<xsl:text>
	
</xsl:text>
</xsl:template>
</xsl:stylesheet>