You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by ed...@apache.org on 2004/01/28 17:29:46 UTC

cvs commit: cocoon-lenya/src/webapp/lenya/xslt/rc toDoc.xsl

edith       2004/01/28 08:29:46

  Added:       src/webapp/lenya/xslt/rc toDoc.xsl
  Log:
  stylesheet to change the rc backup xml in the desired doctype's xml
  
  Revision  Changes    Path
  1.1                  cocoon-lenya/src/webapp/lenya/xslt/rc/toDoc.xsl
  
  Index: 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>
  
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-cvs-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-cvs-help@cocoon.apache.org