source: stylesheets/xhtml/lfs-legalnotice.xsl@ 276015d2

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 276015d2 was 276015d2, checked in by Randy McMurchy <randy@…>, 17 years ago

Added the LastChangedBy and Date keywords then set the corresponding keyword property on each file in the repo

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@6430 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 3.1 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?>
2
3<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns="http://www.w3.org/1999/xhtml"
5 version="1.0">
6
7<!--
8$LastChangedBy$
9$Date$
10-->
11
12 <!-- Generating the page -->
13 <xsl:template match="legalnotice" mode="titlepage.mode">
14 <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable>
15 <xsl:variable name="filename" select="concat($base.dir, 'legalnotice.html')"/>
16 <xsl:variable name="title">
17 <xsl:apply-templates select="." mode="title.markup"/>
18 </xsl:variable>
19 <xsl:call-template name="write.chunk">
20 <xsl:with-param name="filename" select="$filename"/>
21 <xsl:with-param name="quiet" select="$chunk.quietly"/>
22 <xsl:with-param name="content">
23 <html>
24 <head>
25 <xsl:call-template name="system.head.content"/>
26 <xsl:call-template name="head.content"/>
27 <xsl:call-template name="user.head.content"/>
28 </head>
29 <body>
30 <xsl:call-template name="body.attributes"/>
31 <div class="{local-name(.)}">
32 <xsl:apply-templates mode="titlepage.mode"/>
33 </div>
34 <div class="navfooter">
35 <ul class="footerlinks">
36 <li class="home">
37 <a accesskey="h">
38 <xsl:attribute name="href">
39 <xsl:text>index.html</xsl:text>
40 </xsl:attribute>
41 <xsl:attribute name="title">
42 <xsl:value-of select="/book/bookinfo/title"/>
43 <xsl:text> - </xsl:text>
44 <xsl:value-of select="/book/bookinfo/subtitle"/>
45 </xsl:attribute>
46 <xsl:call-template name="navig.content">
47 <xsl:with-param name="direction" select="'home'"/>
48 </xsl:call-template>
49 </a>
50 </li>
51 </ul>
52 </div>
53 </body>
54 </html>
55 </xsl:with-param>
56 </xsl:call-template>
57 </xsl:template>
58
59 <!-- Making the link-->
60 <xsl:template match="copyright" mode="titlepage.mode">
61 <p class="{name(.)}">
62 <a>
63 <xsl:attribute name="href">
64 <xsl:value-of select="'legalnotice.html'"/>
65 </xsl:attribute>
66 <xsl:call-template name="gentext">
67 <xsl:with-param name="key" select="'Copyright'"/>
68 </xsl:call-template>
69 </a>
70 <xsl:call-template name="gentext.space"/>
71 <xsl:call-template name="dingbat">
72 <xsl:with-param name="dingbat">copyright</xsl:with-param>
73 </xsl:call-template>
74 <xsl:call-template name="gentext.space"/>
75 <xsl:call-template name="copyright.years">
76 <xsl:with-param name="years" select="year"/>
77 <xsl:with-param name="print.ranges" select="$make.year.ranges"/>
78 <xsl:with-param name="single.year.ranges" select="$make.single.year.ranges"/>
79 </xsl:call-template>
80 <xsl:call-template name="gentext.space"/>
81 <xsl:apply-templates select="holder" mode="titlepage.mode"/>
82 </p>
83 </xsl:template>
84
85</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.