You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by je...@apache.org on 2003/05/06 02:47:31 UTC

cvs commit: xml-forrest/src/resources/stylesheets html2htmlbody.xsl

jefft       2003/05/05 17:47:31

  Modified:    src/resources/stylesheets html2htmlbody.xsl
  Log:
  
  
  Revision  Changes    Path
  1.2       +3 -3      xml-forrest/src/resources/stylesheets/html2htmlbody.xsl
  
  Index: html2htmlbody.xsl
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/stylesheets/html2htmlbody.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- html2htmlbody.xsl	25 Jan 2003 10:39:41 -0000	1.1
  +++ html2htmlbody.xsl	6 May 2003 00:47:31 -0000	1.2
  @@ -10,11 +10,11 @@
     version="1.0">
   
     <xsl:import href="copyover.xsl"/>
  -  <xsl:template match="/html">
  -    <xsl:apply-templates select="body"/>
  +  <xsl:template match="/*[local-name()='html']">
  +	  <xsl:apply-templates select="*[local-name()='body']"/>
     </xsl:template>
   
  -  <xsl:template match="/html/body">
  +  <xsl:template match="/*[local-name()='html']/*[local-name()='body']">
       <div class="content">
         <xsl:apply-templates/>
       </div>