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

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

new release of docbook XSL

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