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

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

add doc (sources, tools and products)

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