xhtmltools-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Xhtmltools-devel] Changes to xhtmltools/xhtml2html.xsl


From: Jaime E. Villate
Subject: [Xhtmltools-devel] Changes to xhtmltools/xhtml2html.xsl
Date: Wed, 20 Feb 2002 16:28:19 -0500

Index: xhtmltools/xhtml2html.xsl
diff -c xhtmltools/xhtml2html.xsl:1.2 xhtmltools/xhtml2html.xsl:1.3
*** xhtmltools/xhtml2html.xsl:1.2       Wed Nov  7 17:18:19 2001
--- xhtmltools/xhtml2html.xsl   Wed Feb 20 16:28:18 2002
***************
*** 3,40 ****
  <!ENTITY copy "&#169;">]>
  
  <!-- Style-sheet to produce HTML output from XHTML
!  $Id: xhtml2html.xsl,v 1.2 2001/11/07 22:18:19 villate Exp $
  
!  Copyright (C) Jaime Villate <address@hidden>, 2001
  
-  This program is free software; you can redistribute it and/or
-  modify it under the terms of the GNU General Public License
-  as published by the Free Software Foundation; either version 2
-  of the License, or (at your option) any later version.
- 
-  This program is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-  GNU General Public License for more details.
- 
-  You should have received a copy of the GNU General Public License
-  along with this program; if not, write to the Free Software
-  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  -->
  
! <xsl:stylesheet version="1.0"
!        xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
! <xsl:output method="html"
!        encoding="ISO-8859-1"
!        doctype-public="-//W3C//DTD HTML 4.0 Transitional//EN"
!        doctype-system="http://www.w3.org/TR/REC-html40/loose.dtd";
!        indent="yes"
! />
! 
! <xsl:template match="@*|node()" priority="-1">
!   <xsl:copy>
!     <xsl:apply-templates select="@*|node()"/>
!   </xsl:copy>
! </xsl:template>
  
  </xsl:stylesheet>
--- 3,29 ----
  <!ENTITY copy "&#169;">]>
  
  <!-- Style-sheet to produce HTML output from XHTML
!  $Id: xhtml2html.xsl,v 1.3 2002/02/20 21:28:18 villate Exp $
  
!  Copyright (C) 2001, 2002 Jaime Villate <address@hidden>
  
  -->
  
! <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
version="1.0">
! 
!   <xsl:output method="html"
!             encoding="ISO-8859-1"
!             doctype-public="-//W3C//DTD HTML 4.0 Transitional//EN"
!             doctype-system="http://www.w3.org/TR/REC-html40/loose.dtd";
!             indent="yes"
!             />
! 
!   <xsl:template match="node() | comment()">
!     <xsl:copy>
!       <xsl:apply-templates />
!     </xsl:copy>
!   </xsl:template>
  
  </xsl:stylesheet>
+ 
+ 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]