| [3f8be484] | 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> | 
|---|
| [abdbe76] | 17 | Cross-Compiled Linux From Scratch | 
|---|
| [3f8be484] | 18 | </title> | 
|---|
|  | 19 | <style type="text/css"> | 
|---|
|  | 20 | <xsl:text> | 
|---|
| [de64fc88] | 21 | /* Global settings */ | 
|---|
| [3f8be484] | 22 | body { | 
|---|
| [de64fc88] | 23 | font-family: verdana, tahoma, helvetica, arial, sans-serif; | 
|---|
| [3f8be484] | 24 | text-align: left; | 
|---|
|  | 25 | background: #fff; | 
|---|
| [de64fc88] | 26 | color: #222; | 
|---|
| [3f8be484] | 27 | margin: 1em; | 
|---|
|  | 28 | padding: 0; | 
|---|
|  | 29 | font-size: 1em; | 
|---|
|  | 30 | line-height: 1.2em | 
|---|
|  | 31 | } | 
|---|
|  | 32 |  | 
|---|
|  | 33 | a:link { color: #22b; } | 
|---|
| [de64fc88] | 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;} | 
|---|
| [3f8be484] | 38 |  | 
|---|
| [de64fc88] | 39 | h1, h2 h3, h4 { | 
|---|
| [3f8be484] | 40 | color: #000; | 
|---|
|  | 41 | font-weight: bold; | 
|---|
| [de64fc88] | 42 | line-height: 1em; | 
|---|
| [3f8be484] | 43 | } | 
|---|
|  | 44 |  | 
|---|
|  | 45 | h1 { font-size: 173%; text-align: center; } | 
|---|
| [de64fc88] | 46 | h2 { font-size: 144%; text-align: center; } | 
|---|
|  | 47 | h3 { font-size: 120%; } | 
|---|
|  | 48 | h4 { font-size: 110%; } | 
|---|
| [3f8be484] | 49 |  | 
|---|
| [de64fc88] | 50 | .toc { | 
|---|
| [3f8be484] | 51 | padding-left: 1em; | 
|---|
|  | 52 | } | 
|---|
|  | 53 |  | 
|---|
| [de64fc88] | 54 | .toc ul li h3, .toc ul li h4 { | 
|---|
| [3f8be484] | 55 | margin: .4em; | 
|---|
|  | 56 | } | 
|---|
|  | 57 |  | 
|---|
| [de64fc88] | 58 | .book h1 { | 
|---|
| [3f8be484] | 59 | background: #f5f6f7; | 
|---|
|  | 60 | margin: 0px auto; | 
|---|
|  | 61 | padding: 0.5em; | 
|---|
|  | 62 | } | 
|---|
|  | 63 |  | 
|---|
| [de64fc88] | 64 | .book h2 { | 
|---|
| [3f8be484] | 65 | background: #dbddec; | 
|---|
|  | 66 | margin: 0px auto; | 
|---|
|  | 67 | padding: 0.2em; | 
|---|
|  | 68 | } | 
|---|
| [de64fc88] | 69 | .author, .copyright { | 
|---|
| [3f8be484] | 70 | background: #f5f6f7; | 
|---|
|  | 71 | margin: 0px auto; | 
|---|
| [de64fc88] | 72 | padding: 0.5em 1em; | 
|---|
| [3f8be484] | 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 | <div class="titlepage"> | 
|---|
|  | 94 | <xsl:apply-templates/> | 
|---|
|  | 95 | <hr/> | 
|---|
|  | 96 | </div> | 
|---|
|  | 97 | <div class="toc"> | 
|---|
|  | 98 | <h3> | 
|---|
|  | 99 | <xsl:text>32 Bit Builds</xsl:text> | 
|---|
|  | 100 | </h3> | 
|---|
|  | 101 | <ul> | 
|---|
|  | 102 | <h3> | 
|---|
|  | 103 | <xsl:text>Working. Testers and comments welcomed.</xsl:text> | 
|---|
|  | 104 | </h3> | 
|---|
|  | 105 | <li> | 
|---|
|  | 106 | <h4> | 
|---|
|  | 107 | <a href="x86"> | 
|---|
|  | 108 | <xsl:text>Intel/AMD x86</xsl:text> | 
|---|
|  | 109 | </a> | 
|---|
|  | 110 | </h4> | 
|---|
|  | 111 | </li> | 
|---|
|  | 112 | <li> | 
|---|
|  | 113 | <h4> | 
|---|
|  | 114 | <a href="ppc"> | 
|---|
|  | 115 | <xsl:text>PowerPC</xsl:text> | 
|---|
|  | 116 | </a> | 
|---|
|  | 117 | </h4> | 
|---|
|  | 118 | </li> | 
|---|
|  | 119 | <li> | 
|---|
|  | 120 | <h4> | 
|---|
|  | 121 | <a href="mips"> | 
|---|
|  | 122 | <xsl:text>MIPS</xsl:text> | 
|---|
|  | 123 | </a> | 
|---|
|  | 124 | </h4> | 
|---|
|  | 125 | </li> | 
|---|
|  | 126 | <li> | 
|---|
|  | 127 | <h4> | 
|---|
|  | 128 | <a href="sparc"> | 
|---|
| [0e47947] | 129 | <xsl:text>Sparc v8</xsl:text> | 
|---|
| [3f8be484] | 130 | </a> | 
|---|
|  | 131 | </h4> | 
|---|
|  | 132 | </li> | 
|---|
|  | 133 | </ul> | 
|---|
|  | 134 | <h3> | 
|---|
|  | 135 | <xsl:text>64 Bit Builds</xsl:text> | 
|---|
|  | 136 | </h3> | 
|---|
|  | 137 | <ul> | 
|---|
|  | 138 | <h3> | 
|---|
| [5acad79] | 139 | <xsl:text>Working. Testers and comments welcomed.</xsl:text> | 
|---|
| [3f8be484] | 140 | </h3> | 
|---|
|  | 141 | <li> | 
|---|
|  | 142 | <h4> | 
|---|
|  | 143 | <a href="x86_64-64"> | 
|---|
|  | 144 | <xsl:text>x86_64</xsl:text> | 
|---|
|  | 145 | </a> | 
|---|
|  | 146 | </h4> | 
|---|
|  | 147 | </li> | 
|---|
|  | 148 | <li> | 
|---|
|  | 149 | <h4> | 
|---|
|  | 150 | <a href="mips64-64"> | 
|---|
|  | 151 | <xsl:text>MIPS</xsl:text> | 
|---|
|  | 152 | </a> | 
|---|
|  | 153 | </h4> | 
|---|
|  | 154 | </li> | 
|---|
|  | 155 | <li> | 
|---|
|  | 156 | <h4> | 
|---|
|  | 157 | <a href="sparc64-64"> | 
|---|
| [0e47947] | 158 | <xsl:text>Sparc v9/Ultrasparc</xsl:text> | 
|---|
| [3f8be484] | 159 | </a> | 
|---|
|  | 160 | </h4> | 
|---|
|  | 161 | </li> | 
|---|
|  | 162 | <li> | 
|---|
|  | 163 | <h4> | 
|---|
|  | 164 | <a href="alpha"> | 
|---|
|  | 165 | <xsl:text>Alpha</xsl:text> | 
|---|
|  | 166 | </a> | 
|---|
|  | 167 | </h4> | 
|---|
|  | 168 | </li> | 
|---|
|  | 169 | </ul> | 
|---|
|  | 170 | <h3> | 
|---|
|  | 171 | <xsl:text>Multilib Builds</xsl:text> | 
|---|
|  | 172 | </h3> | 
|---|
|  | 173 | <ul> | 
|---|
|  | 174 | <h3> | 
|---|
|  | 175 | <xsl:text>Working. Testers and comments welcomed.</xsl:text> | 
|---|
|  | 176 | </h3> | 
|---|
|  | 177 | <li> | 
|---|
|  | 178 | <h4> | 
|---|
|  | 179 | <a href="x86_64"> | 
|---|
|  | 180 | <xsl:text>x86_64</xsl:text> | 
|---|
|  | 181 | </a> | 
|---|
|  | 182 | </h4> | 
|---|
|  | 183 | </li> | 
|---|
|  | 184 | <li> | 
|---|
|  | 185 | <h4> | 
|---|
|  | 186 | <a href="mips64"> | 
|---|
|  | 187 | <xsl:text>MIPS</xsl:text> | 
|---|
|  | 188 | </a> | 
|---|
|  | 189 | </h4> | 
|---|
|  | 190 | </li> | 
|---|
|  | 191 | <li> | 
|---|
|  | 192 | <h4> | 
|---|
|  | 193 | <a href="sparc64"> | 
|---|
| [0e47947] | 194 | <xsl:text>Sparc v9/Ultrasparc</xsl:text> | 
|---|
| [3f8be484] | 195 | </a> | 
|---|
|  | 196 | </h4> | 
|---|
|  | 197 | </li> | 
|---|
| [d49b9e8] | 198 | <li> | 
|---|
|  | 199 | <h4> | 
|---|
|  | 200 | <a href="ppc64"> | 
|---|
|  | 201 | <xsl:text>PowerPC64</xsl:text> | 
|---|
|  | 202 | </a> | 
|---|
|  | 203 | </h4> | 
|---|
|  | 204 | </li> | 
|---|
| [3f8be484] | 205 | </ul> | 
|---|
|  | 206 | </div> | 
|---|
|  | 207 | </div> | 
|---|
|  | 208 | </xsl:template> | 
|---|
|  | 209 |  | 
|---|
|  | 210 | <xsl:template match="title"> | 
|---|
| [de64fc88] | 211 | <h1 class="title"> | 
|---|
|  | 212 | <xsl:value-of select="."/> | 
|---|
|  | 213 | </h1> | 
|---|
|  | 214 | <h2 class="subtitle"> | 
|---|
|  | 215 | <xsl:text>Version &version;</xsl:text> | 
|---|
|  | 216 | </h2> | 
|---|
| [3f8be484] | 217 | </xsl:template> | 
|---|
|  | 218 |  | 
|---|
|  | 219 | <xsl:template match="copyright"> | 
|---|
| [de64fc88] | 220 | <p class="copyright"> | 
|---|
|  | 221 | <xsl:text>Copyright ©</xsl:text> | 
|---|
|  | 222 | <xsl:apply-templates/> | 
|---|
|  | 223 | </p> | 
|---|
| [3f8be484] | 224 | </xsl:template> | 
|---|
|  | 225 |  | 
|---|
|  | 226 | <xsl:template match="year"> | 
|---|
|  | 227 | <xsl:value-of select="."/> | 
|---|
|  | 228 | </xsl:template> | 
|---|
|  | 229 |  | 
|---|
|  | 230 | <xsl:template match="holder"> | 
|---|
|  | 231 | <xsl:value-of select="."/> | 
|---|
|  | 232 | </xsl:template> | 
|---|
|  | 233 |  | 
|---|
| [e629d35] | 234 | <xsl:template match="bibliosource"> | 
|---|
| [de64fc88] | 235 | <p class="copyright"> | 
|---|
|  | 236 | <em> | 
|---|
|  | 237 | <xsl:apply-templates/> | 
|---|
|  | 238 | </em> | 
|---|
|  | 239 | </p> | 
|---|
| [e629d35] | 240 | </xsl:template> | 
|---|
|  | 241 |  | 
|---|
| [3f8be484] | 242 | <xsl:template match="subtitle|author|firstname|surname|legalnotice"/> | 
|---|
|  | 243 |  | 
|---|
|  | 244 | </xsl:stylesheet> | 
|---|