<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:dxl='http://www.lotus.com/dxl'>
<xsl:output method='text'/>
<xsl:strip-space elements='*'/>
<xsl:template match='dxl:view'>
<xsl:apply-templates select="dxl:column"/>
</xsl:template>
<xsl:template match='dxl:column'>
<xsl:value-of select="dxl:columnheader/@title"/>:
<xsl:value-of select="@itemname"/>:
<xsl:value-of select="@separatemultiplevalues"/>
<xsl:text>
</xsl:text> <!-- newline character -->
</xsl:template>
<!-- Match all text that has not yet been picked up by the templates, and discard it. -->
<xsl:template match="text()">
</xsl:template>
</xsl:stylesheet>