moglen work in progress
[librarian.git] / librarian / epub / xsltContent.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dc="http://purl.org/dc/elements/1.1/">
3   <xsl:output method="html" version="1.0" omit-xml-declaration="no" />
4
5   <xsl:template match="/">
6     <package xmlns="http://www.idpf.org/2007/opf" unique-identifier="BookId" version="2.0">
7       <metadata xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:opf="http://www.idpf.org/2007/opf">
8         <xsl:apply-templates select="//dc:title" />
9         <dc:language xsi:type="dcterms:RFC3066">
10           <xsl:apply-templates select="//dc:language" />
11         </dc:language>
12         <dc:identifier id="BookId" opf:scheme="URI">
13           <xsl:apply-templates select="//dc:identifier.url" />
14         </dc:identifier>
15         <dc:subject>
16           <xsl:apply-templates select="//dc:identifier.url" />
17         </dc:subject>
18         <!--dc:creator>
19           <xsl:apply-templates select="//dc:creator" />
20         </dc:creator-->
21         <dc:publisher>
22           <xsl:apply-templates select="//dc:publisher" />
23         </dc:publisher>
24         <dc:date xsi:type="dcterms:W3CDTF">
25           <xsl:apply-templates select="//dc:date" />
26         </dc:date>
27       </metadata>
28       <manifest>
29         <item id="logo" href="logo.png" media-type="image/png" />
30         <item id="toc" href="toc.ncx" media-type="application/x-dtbncx+xml" />
31         <item id="style" href="style.css" media-type="text/css" />
32         <item id="titlePage" href="title.html" media-type="application/xhtml+xml" />
33       </manifest>
34       <spine toc="toc">
35         <itemref idref="titlePage" />
36       </spine>
37       <guide>
38         <reference type="text" title="PoczÄ…tek" href="part1.html" />
39       </guide>
40     </package>
41   </xsl:template>
42
43   <xsl:template match="dc:title" >
44     <dc:title>
45       <xsl:value-of select="." />
46     </dc:title>
47   </xsl:template>
48
49 </xsl:stylesheet>