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

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

new User's guide production

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