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

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

beginning of documentations : draft guides

  • Property svn:keywords set to Id
File size: 1.3 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/amsu/amsu_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<!--
18<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"/>
19-->
20<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.73.2/xhtml/docbook.xsl"/>
21
22
23<xsl:output method="xml"
24encoding="utf-8"
25indent="yes"
26omit-xml-declaration="no"
27doctype-public="-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
28doctype-system="http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd"/>
29
30<xsl:template match="pubdate">
31  <span class="{name(.)}">
32    <xsl:text>svn Id of xml source file : </xsl:text>
33    <xsl:apply-templates/>
34    <br/>
35    <br/>
36  </span>
37</xsl:template>
38
39<xsl:template name="user.head.content">
40<!-- pour palier au manque de xsl:output -->
41<meta>
42 <xsl:attribute name="http-equiv">Content-Type</xsl:attribute>
43 <xsl:attribute name="content">text/html; charset=utf-8</xsl:attribute>
44</meta>
45 <meta name="robots">
46  <xsl:attribute name="content">noindex,nofollow,noarchive</xsl:attribute>
47 </meta>
48</xsl:template>
49
50</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.