1 | <?xml version='1.0' encoding='ISO-8859-1'?>
|
---|
2 | <!DOCTYPE xsl:stylesheet [
|
---|
3 | <!ENTITY % general-entities SYSTEM "../general.ent">
|
---|
4 | %general-entities;
|
---|
5 | ]>
|
---|
6 |
|
---|
7 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
8 | xmlns="http://www.w3.org/1999/xhtml"
|
---|
9 | version="1.0">
|
---|
10 |
|
---|
11 | <xsl:output method="html" encoding="iso-8859-1"/>
|
---|
12 |
|
---|
13 | <xsl:template match="/">
|
---|
14 | <html>
|
---|
15 | <head>
|
---|
16 | <title>
|
---|
17 | Cross-Compiled Linux From Scratch - Embedded
|
---|
18 | </title>
|
---|
19 | <style type="text/css">
|
---|
20 | <xsl:text>
|
---|
21 | /* Global settings */
|
---|
22 | body {
|
---|
23 | font-family: verdana, tahoma, helvetica, arial, sans-serif;
|
---|
24 | text-align: left;
|
---|
25 | background: #fff;
|
---|
26 | color: #222;
|
---|
27 | margin: 1em;
|
---|
28 | padding: 0;
|
---|
29 | font-size: 1em;
|
---|
30 | line-height: 1.2em
|
---|
31 | }
|
---|
32 |
|
---|
33 | a:link { color: #22b; }
|
---|
34 | a.ulink:link { font-weight: bold; color: #55f; }
|
---|
35 | a:visited { color: #7e4988 ! important; }
|
---|
36 | a:hover, a:focus { color: #d30e08 ! important; }
|
---|
37 | a:active { color: #6b77b1 ! important;}
|
---|
38 |
|
---|
39 | h1, h2 h3, h4 {
|
---|
40 | color: #000;
|
---|
41 | font-weight: bold;
|
---|
42 | line-height: 1em;
|
---|
43 | }
|
---|
44 |
|
---|
45 | h1 { font-size: 173%; text-align: center; }
|
---|
46 | h2 { font-size: 144%; text-align: center; }
|
---|
47 | h3 { font-size: 120%; }
|
---|
48 | h4 { font-size: 110%; }
|
---|
49 |
|
---|
50 | .toc {
|
---|
51 | padding-left: 1em;
|
---|
52 | }
|
---|
53 |
|
---|
54 | .toc ul li h3, .toc ul li h4 {
|
---|
55 | margin: .4em;
|
---|
56 | }
|
---|
57 |
|
---|
58 | .book h1 {
|
---|
59 | background: #f5f6f7;
|
---|
60 | margin: 0px auto;
|
---|
61 | padding: 0.5em;
|
---|
62 | }
|
---|
63 |
|
---|
64 | .book h2 {
|
---|
65 | background: #dbddec;
|
---|
66 | margin: 0px auto;
|
---|
67 | padding: 0.2em;
|
---|
68 | }
|
---|
69 | .author, .copyright {
|
---|
70 | background: #f5f6f7;
|
---|
71 | margin: 0px auto;
|
---|
72 | padding: 0.5em 1em;
|
---|
73 | }
|
---|
74 |
|
---|
75 | hr {
|
---|
76 | background: #dbddec;
|
---|
77 | height: .3em;
|
---|
78 | border: 0px;
|
---|
79 | margin: 0px auto;
|
---|
80 | padding: 0;
|
---|
81 | }
|
---|
82 | </xsl:text>
|
---|
83 | </style>
|
---|
84 | </head>
|
---|
85 | <body>
|
---|
86 | <xsl:apply-templates/>
|
---|
87 | </body>
|
---|
88 | </html>
|
---|
89 | </xsl:template>
|
---|
90 |
|
---|
91 | <xsl:template match="bookinfo">
|
---|
92 | <div class="book">
|
---|
93 | <xsl:apply-templates/>
|
---|
94 | <hr/>
|
---|
95 | <div class="toc">
|
---|
96 | <h3>
|
---|
97 | <xsl:text>Embedded Architecture (Under Development)</xsl:text>
|
---|
98 | </h3>
|
---|
99 | <ul>
|
---|
100 | <li>
|
---|
101 | <h4>
|
---|
102 | <a href="x86">
|
---|
103 | <xsl:text>x86 and x86_64</xsl:text>
|
---|
104 | </a>
|
---|
105 | </h4>
|
---|
106 | </li>
|
---|
107 | <li>
|
---|
108 | <h4>
|
---|
109 | <a href="mips">
|
---|
110 | <xsl:text>MIPS</xsl:text>
|
---|
111 | </a>
|
---|
112 | </h4>
|
---|
113 | </li>
|
---|
114 | <li>
|
---|
115 | <h4>
|
---|
116 | <a href="arm">
|
---|
117 | <xsl:text>ARM</xsl:text>
|
---|
118 | </a>
|
---|
119 | </h4>
|
---|
120 | </li>
|
---|
121 | <li>
|
---|
122 | <h4>
|
---|
123 | <a href="wrt">
|
---|
124 | <xsl:text>Wireless Routers -- MIPS Based</xsl:text>
|
---|
125 | </a>
|
---|
126 | </h4>
|
---|
127 | </li>
|
---|
128 | </ul>
|
---|
129 | </div>
|
---|
130 | </div>
|
---|
131 | </xsl:template>
|
---|
132 |
|
---|
133 | <xsl:template match="title">
|
---|
134 | <h1 class="title">
|
---|
135 | <xsl:value-of select="."/>
|
---|
136 | </h1>
|
---|
137 | <h2 class="subtitle">
|
---|
138 | <xsl:text>Version &version;</xsl:text>
|
---|
139 | </h2>
|
---|
140 | </xsl:template>
|
---|
141 |
|
---|
142 | <xsl:template match="copyright">
|
---|
143 | <p class="copyright">
|
---|
144 | <xsl:text>Copyright ©</xsl:text>
|
---|
145 | <xsl:apply-templates/>
|
---|
146 | </p>
|
---|
147 | </xsl:template>
|
---|
148 |
|
---|
149 | <xsl:template match="year">
|
---|
150 | <xsl:value-of select="."/>
|
---|
151 | </xsl:template>
|
---|
152 |
|
---|
153 | <xsl:template match="holder">
|
---|
154 | <xsl:value-of select="."/>
|
---|
155 | </xsl:template>
|
---|
156 |
|
---|
157 | <xsl:template match="bibliosource">
|
---|
158 | <p class="copyright">
|
---|
159 | <em>
|
---|
160 | <xsl:apply-templates/>
|
---|
161 | </em>
|
---|
162 | </p>
|
---|
163 | </xsl:template>
|
---|
164 |
|
---|
165 | <xsl:template match="subtitle|author|firstname|surname|legalnotice"/>
|
---|
166 |
|
---|
167 | </xsl:stylesheet>
|
---|