source: branches/samba-3.2.x/docs-xml/xslt/db2latex-xsl/xsl/slides/slidesinfo.mod.xsl@ 203

Last change on this file since 203 was 203, checked in by Herwig Bauernfeind, 17 years ago

Missing 3.2.2 client and HOWTO files

File size: 1.6 KB
Line 
1<?xml version='1.0'?>
2<!--#############################################################################
3| $Id: slidesinfo.mod.xsl,v 1.2 2003/07/22 07:12:13 rcasellas Exp $
4|- #############################################################################
5| $Author: rcasellas $
6|
7| PURPOSE:
8+ ############################################################################## -->
9
10<xsl:stylesheet
11 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
12 xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
13 exclude-result-prefixes="doc" version='1.0'>
14
15
16
17<xsl:template match="slidesinfo">
18<xsl:text>%--------------------------------------------------SLIDES INFORMATION&#10;</xsl:text>
19<xsl:text>\title{{\black </xsl:text>
20<xsl:apply-templates select="title"/>
21<xsl:text>}}&#10;</xsl:text>
22<xsl:text>\subtitle{{\black </xsl:text>
23<xsl:apply-templates select="titleabbrev"/>
24<xsl:text>}}&#10;</xsl:text>
25<xsl:text>\author{{\black </xsl:text>
26<xsl:apply-templates select="author|authorgroup"/>
27<xsl:text>}}&#10;</xsl:text>
28<xsl:text>
29</xsl:text>
30<xsl:text>\renewcommand{\slideparindent}{0mm}&#10;</xsl:text>
31</xsl:template>
32
33
34
35
36<xsl:template match="slidesinfo/title|slidesinfo/titleabbrev">
37<xsl:apply-templates/>
38</xsl:template>
39
40
41<xsl:template match="slidesinfo/authorgroup">
42<xsl:apply-imports/>
43</xsl:template>
44
45<xsl:template match="slidesinfo/author|slidesinfo/authorgroup/author">
46<xsl:apply-imports/>
47</xsl:template>
48
49<xsl:template match="slidesinfo/releaseinfo">
50<xsl:apply-templates/>
51</xsl:template>
52
53<xsl:template match="slidesinfo/date">
54<xsl:apply-templates/>
55</xsl:template>
56
57<xsl:template match="slidesinfo/copyright">
58</xsl:template>
59
60
61</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.