source: trunk/SRC/Documentation/xmldoc/saxo_html.xsl @ 139

Last change on this file since 139 was 139, checked in by pinsard, 18 years ago

modification of some .xml (add Id, aspell checking), add style.css file and titlepage technique

  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?> 
2<!--
3module :
4transformation docbook en un html
5
6source :
7./SAXO_DIR/SRC/Documentation/xmldoc/saxo_html.xsl sur aedon.locean-ipsl.upmc.fr
8
9update
10$Id$
11fplod 2006-07-11T08:51:41Z aedon.locean-ipsl.upmc.fr (Darwin)
12modif d'après http://www.sagehill.net/docbookxsl/ModifyElemTemplates.html
13pour mettre autour et email comme le souhaite Gurvan
14et mettre pubdate
15-->
16<xsl:stylesheet  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  version="1.0"> 
17
18<!-- if there is some trouble with network, you can replace the following line
19by this one on Mac
20<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/>
21-->
22
23
24<xsl:import href="/sw/share/xml/xsl/docbook-xsl/html/docbook.xsl"/>
25<!--
26<xsl:output method="xml"
27encoding="utf-8"
28indent="yes"
29omit-xml-declaration="no"
30doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
31doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
32-->
33
34<xsl:include href="titlepage.saxo.xsl"/>
35
36<xsl:template match="*" mode="book.titlepage.mode"/>
37
38<xsl:template match="author" mode="titlepage.mode">
39  <div class="{name(.)}">
40    <h3 class="{name(.)}"><xsl:call-template name="person.name"/>
41    <xsl:text> </xsl:text>
42    <xsl:apply-templates mode="titlepage.mode" select="./email"/>
43    </h3>
44    <xsl:apply-templates mode="titlepage.mode" select="./contrib"/>
45    <xsl:apply-templates mode="titlepage.mode" select="./affiliation"/>
46  </div>
47</xsl:template>
48
49<xsl:template match="pubdate" mode="titlepage.mode">
50  <span class="{name(.)}">
51    <xsl:text>svn Id of xml source file : </xsl:text>
52    <xsl:apply-templates mode="titlepage.mode"/>
53    <br/>
54    <br/>
55  </span>
56</xsl:template>
57
58</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.