source: stylesheets/xhtml/lfs-legalnotice.xsl@ bad8b53

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.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 bad8b53 was b26d107, checked in by Bruce Dubbs <bdubbs@…>, 19 years ago

Updated license of book to

make compatible with OSI

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

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