lenya/src/webapp/lenya/pubs/default/xslt toDoc.xsl,NONE,1.1

Edith Chevrier <[email protected]> Wed, 21 May 2003 18:25:44 +0200
Newsgroups gmane.comp.cms.wyona.cvs
Message-ID <[email protected]>
Update of /usr/local/repositories/lenya/src/webapp/lenya/pubs/default/xslt
In directory erbium:/tmp/cvs-serv2404/src/webapp/lenya/pubs/default/xslt

Added Files:
	toDoc.xsl 
Log Message:
Revision Controller for the default publication works

--- NEW FILE: toDoc.xsl ---

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
                xmlns:rc="http://www.lenya.org/2002/rc" >

<xsl:template match="rc:backup">
        <xsl:apply-templates/> 
</xsl:template>

<xsl:template match="* | @*">
 <xsl:copy>
    <xsl:copy-of select="@*"/>
    <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>
                                                                                                                                            
</xsl:stylesheet>