[a9e389d] | 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>
|
---|
[e5cc0ec] | 17 | Cross-Compiled Linux From Scratch - Embedded
|
---|
[a9e389d] | 18 | </title>
|
---|
| 19 | <style type="text/css">
|
---|
| 20 | <xsl:text>
|
---|
| 21 | body {
|
---|
| 22 | font-family: sans-serif;
|
---|
| 23 | text-align: left;
|
---|
| 24 | background: #fff;
|
---|
| 25 | color: #333;
|
---|
| 26 | margin: 1em;
|
---|
| 27 | padding: 0;
|
---|
| 28 | font-size: 1em;
|
---|
| 29 | line-height: 1.2em
|
---|
| 30 | }
|
---|
| 31 |
|
---|
| 32 | a:link { color: #22b; }
|
---|
| 33 | a:visited { color: #7e4988; }
|
---|
| 34 | a:hover, a:focus { color: #d30e08; }
|
---|
| 35 | a:active { color: #6b77b1;}
|
---|
| 36 |
|
---|
| 37 | h1, h2 {
|
---|
| 38 | color: #000;
|
---|
| 39 | font-weight: bold;
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | h3, h4, h5, h6 {
|
---|
| 43 | color: #222;
|
---|
| 44 | }
|
---|
| 45 |
|
---|
| 46 | h1 { font-size: 173%; text-align: center; }
|
---|
| 47 | h2 { font-size: 144%; text-align: center; }
|
---|
| 48 | h3 { font-size: 120%; padding-top: 0.2em; margin-top: 0.3em; }
|
---|
| 49 | h4 { font-size: 110%;}
|
---|
| 50 |
|
---|
| 51 | div.toc {
|
---|
| 52 | padding-left: 1em;
|
---|
| 53 | margin-top: 1em;
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | div.toc ul li h3, div.toc ul li h4 {
|
---|
| 57 | margin: .4em;
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | div.book {
|
---|
| 61 | padding-bottom: 0.5em;
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | div.book h1 {
|
---|
| 65 | background: #f5f6f7;
|
---|
| 66 | margin: 0px auto;
|
---|
| 67 | padding: 0.5em;
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | div.book h2 {
|
---|
| 71 | background: #dbddec;
|
---|
| 72 | margin: 0px auto;
|
---|
| 73 | padding: 0.2em;
|
---|
| 74 | }
|
---|
| 75 | div.authorgroup, div p.copyright {
|
---|
| 76 | background: #f5f6f7;
|
---|
| 77 | margin: 0px auto;
|
---|
| 78 | padding: 1em 0.5em;
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | hr {
|
---|
| 82 | background: #dbddec;
|
---|
| 83 | height: .3em;
|
---|
| 84 | border: 0px;
|
---|
| 85 | margin: 0px auto;
|
---|
| 86 | padding: 0;
|
---|
| 87 | }
|
---|
| 88 | </xsl:text>
|
---|
| 89 | </style>
|
---|
| 90 | </head>
|
---|
| 91 | <body>
|
---|
| 92 | <xsl:apply-templates/>
|
---|
| 93 | </body>
|
---|
| 94 | </html>
|
---|
| 95 | </xsl:template>
|
---|
| 96 |
|
---|
| 97 | <xsl:template match="bookinfo">
|
---|
| 98 | <div class="book">
|
---|
| 99 | <div class="titlepage">
|
---|
| 100 | <xsl:apply-templates/>
|
---|
| 101 | <hr/>
|
---|
| 102 | </div>
|
---|
| 103 | <div class="toc">
|
---|
| 104 | <h3>
|
---|
[4ef72df] | 105 | <xsl:text>Embedded Architecture (Under Development)</xsl:text>
|
---|
[a9e389d] | 106 | </h3>
|
---|
| 107 | <ul>
|
---|
| 108 | <li>
|
---|
| 109 | <h4>
|
---|
| 110 | <a href="x86">
|
---|
| 111 | <xsl:text>X86</xsl:text>
|
---|
| 112 | </a>
|
---|
| 113 | </h4>
|
---|
| 114 | </li>
|
---|
[99fc891] | 115 | <li>
|
---|
| 116 | <h4>
|
---|
| 117 | <a href="mips">
|
---|
[33bc2cb] | 118 | <xsl:text>MIPS</xsl:text>
|
---|
[99fc891] | 119 | </a>
|
---|
| 120 | </h4>
|
---|
| 121 | </li>
|
---|
[cbe8492] | 122 | <li>
|
---|
| 123 | <h4>
|
---|
| 124 | <a href="wrt">
|
---|
| 125 | <xsl:text>WRT - MIPS Based</xsl:text>
|
---|
| 126 | </a>
|
---|
| 127 | </h4>
|
---|
| 128 | </li>
|
---|
[a9e389d] | 129 | </ul>
|
---|
| 130 | </div>
|
---|
| 131 | </div>
|
---|
| 132 | </xsl:template>
|
---|
| 133 |
|
---|
| 134 | <xsl:template match="title">
|
---|
| 135 | <div>
|
---|
| 136 | <h1 class="title">
|
---|
| 137 | <xsl:value-of select="."/>
|
---|
| 138 | </h1>
|
---|
| 139 | </div>
|
---|
| 140 | <div>
|
---|
| 141 | <h2 class="subtitle">
|
---|
| 142 | <xsl:text>Version &version;</xsl:text>
|
---|
| 143 | </h2>
|
---|
| 144 | </div>
|
---|
| 145 | </xsl:template>
|
---|
| 146 |
|
---|
| 147 | <xsl:template match="authorgroup">
|
---|
| 148 | <div class="authorgroup">
|
---|
| 149 | <h3 class="author">
|
---|
| 150 | <xsl:value-of select="author[1]/firstname"/>
|
---|
| 151 | <xsl:text> </xsl:text>
|
---|
| 152 | <xsl:value-of select="author[1]/surname"/>
|
---|
| 153 | </h3>
|
---|
| 154 | <h3 class="author">
|
---|
| 155 | <xsl:value-of select="author[2]/firstname"/>
|
---|
| 156 | <xsl:text> </xsl:text>
|
---|
| 157 | <xsl:value-of select="author[2]/surname"/>
|
---|
| 158 | </h3>
|
---|
[99fc891] | 159 | <h3 class="author">
|
---|
| 160 | <xsl:value-of select="author[3]/firstname"/>
|
---|
| 161 | <xsl:text> </xsl:text>
|
---|
| 162 | <xsl:value-of select="author[3]/surname"/>
|
---|
| 163 | </h3>
|
---|
[a9e389d] | 164 | </div>
|
---|
| 165 | </xsl:template>
|
---|
| 166 |
|
---|
| 167 | <xsl:template match="copyright">
|
---|
| 168 | <div>
|
---|
| 169 | <p class="copyright">
|
---|
| 170 | <xsl:text>Copyright ©</xsl:text>
|
---|
| 171 | <xsl:apply-templates/>
|
---|
| 172 | </p>
|
---|
| 173 | </div>
|
---|
| 174 | </xsl:template>
|
---|
| 175 |
|
---|
| 176 | <xsl:template match="year">
|
---|
| 177 | <xsl:value-of select="."/>
|
---|
| 178 | </xsl:template>
|
---|
| 179 |
|
---|
| 180 | <xsl:template match="holder">
|
---|
| 181 | <xsl:value-of select="."/>
|
---|
| 182 | </xsl:template>
|
---|
| 183 |
|
---|
| 184 | <xsl:template match="bibliosource">
|
---|
| 185 | <div>
|
---|
| 186 | <p class="copyright">
|
---|
| 187 | <em>
|
---|
| 188 | <xsl:apply-templates/>
|
---|
| 189 | </em>
|
---|
| 190 | </p>
|
---|
| 191 | </div>
|
---|
| 192 | </xsl:template>
|
---|
| 193 |
|
---|
| 194 | <xsl:template match="subtitle|author|firstname|surname|legalnotice"/>
|
---|
| 195 |
|
---|
| 196 | </xsl:stylesheet>
|
---|