source: trunk/adm/guides/html.xsl @ 30

Last change on this file since 30 was 30, checked in by pinsard, 15 years ago

new release of docbook XSL

  • Property svn:keywords set to Id
File size: 1.2 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?> 
2<xsl:stylesheet
3version="1.0"
4xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
5<!--
6
7module
8======
9transformation docbook en un html
10
11EVOLUTIONS
12==========
13
14$Id$
15
16- fplod 2008-10-13T09:15:33Z aedon.locean-ipsl.upmc.fr (Darwin)
17
18   * creation
19
20-->
21
22<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.75.2/xhtml/docbook.xsl"/>
23
24
25<xsl:output method="xml"
26encoding="utf-8"
27indent="yes"
28omit-xml-declaration="no"
29doctype-public="-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
30doctype-system="http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd"/>
31
32<xsl:template match="pubdate">
33  <span class="{name(.)}">
34    <xsl:text>svn Id of xml source file : </xsl:text>
35    <xsl:apply-templates/>
36    <br/>
37    <br/>
38  </span>
39</xsl:template>
40
41<xsl:template name="user.head.content">
42<!-- pour palier au manque de xsl:output -->
43<meta>
44 <xsl:attribute name="http-equiv">Content-Type</xsl:attribute>
45 <xsl:attribute name="content">text/html; charset=utf-8</xsl:attribute>
46</meta>
47 <meta name="robots">
48  <xsl:attribute name="content">noindex,nofollow,noarchive</xsl:attribute>
49 </meta>
50</xsl:template>
51
52</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.