159 lines
7.6 KiB
XML
159 lines
7.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<xsl:transform
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:ser="urn:david-sermon"
|
|
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
|
|
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
|
|
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
|
|
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
|
|
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
|
|
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
|
|
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
|
|
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
|
|
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
|
|
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
|
|
xmlns:math="http://www.w3.org/1998/Math/MathML"
|
|
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
|
|
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
|
|
xmlns:ooo="http://openoffice.org/2004/office"
|
|
xmlns:ooow="http://openoffice.org/2004/writer"
|
|
xmlns:oooc="http://openoffice.org/2004/calc"
|
|
xmlns:dom="http://www.w3.org/2001/xml-events"
|
|
xmlns:xforms="http://www.w3.org/2002/xforms"
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:rpt="http://openoffice.org/2005/report"
|
|
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2"
|
|
xmlns:rdfa="http://docs.oasis-open.org/opendocument/meta/rdfa#"
|
|
xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0"
|
|
xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
|
|
version="1.0">
|
|
|
|
<xsl:output method="xml" indent="yes"/>
|
|
|
|
<xsl:template match="ser:link">
|
|
<!-- links are not needed in manuscript - simply copy text -->
|
|
<xsl:apply-templates match="*|text()"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="ser:br">
|
|
<text:line-break/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="ser:em">
|
|
<text:span text:style-name="T1"><xsl:apply-templates select="*|text()"/></text:span>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="ser:strong">
|
|
<text:span text:style-name="T3"><xsl:apply-templates select="*|text()"/></text:span>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="ser:greek">
|
|
<xsl:apply-templates select="*|text()"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="ser:hebrew">
|
|
<text:span text:style-name="Hebrew"><text:span text:style-name="T2"><xsl:apply-templates select="*|text()"/></text:span></text:span>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="ser:unicode">
|
|
<xsl:apply-templates select="*|text()"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="ser:cite">
|
|
<!-- empty: not needed -->
|
|
</xsl:template>
|
|
|
|
<xsl:template match="ser:ref">
|
|
<!-- empty (handled by ser:cite template) -->
|
|
</xsl:template>
|
|
|
|
<!-- match block-level elements in body -->
|
|
<xsl:template match="ser:p" mode="body">
|
|
<text:p text:style-name="Text"><xsl:apply-templates select="*|text()"/></text:p>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="ser:p" mode="quote">
|
|
<text:p text:style-name="Quotations"><text:span text:style-name="T2"><xsl:apply-templates select="*|text()"/></text:span></text:p>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="ser:quote" mode="body">
|
|
<xsl:apply-templates mode="quote" select="*|text()"/>
|
|
</xsl:template>
|
|
|
|
<!-- match toplevel element -->
|
|
<xsl:template match="/ser:sermon">
|
|
<office:document-content
|
|
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
|
|
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
|
|
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
|
|
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
|
|
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
|
|
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
|
|
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
|
|
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
|
|
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
|
|
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
|
|
xmlns:math="http://www.w3.org/1998/Math/MathML"
|
|
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
|
|
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
|
|
xmlns:ooo="http://openoffice.org/2004/office"
|
|
xmlns:ooow="http://openoffice.org/2004/writer"
|
|
xmlns:oooc="http://openoffice.org/2004/calc"
|
|
xmlns:dom="http://www.w3.org/2001/xml-events"
|
|
xmlns:xforms="http://www.w3.org/2002/xforms"
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:rpt="http://openoffice.org/2005/report"
|
|
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2"
|
|
xmlns:xhtml="http://www.w3.org/1999/xhtml"
|
|
xmlns:grddl="http://www.w3.org/2003/g/data-view#"
|
|
xmlns:tableooo="http://openoffice.org/2009/table"
|
|
xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0"
|
|
xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
|
|
xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2">
|
|
<office:scripts/>
|
|
<office:font-face-decls>
|
|
<style:font-face style:name="Tahoma1" svg:font-family="Tahoma"/>
|
|
<style:font-face style:name="Calibri" svg:font-family="Calibri" style:font-adornments="Bold" style:font-pitch="variable"/>
|
|
<style:font-face style:name="Bitstream Vera Sans" svg:font-family="'Bitstream Vera Sans'" style:font-family-generic="roman" style:font-pitch="variable"/>
|
|
<style:font-face style:name="Palatino Linotype" svg:font-family="'Palatino Linotype'" style:font-adornments="Regular" style:font-family-generic="roman" style:font-pitch="variable"/>
|
|
<style:font-face style:name="Bitstream Vera Sans1" svg:font-family="'Bitstream Vera Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
|
|
<style:font-face style:name="Tahoma" svg:font-family="Tahoma" style:font-family-generic="system" style:font-pitch="variable"/>
|
|
</office:font-face-decls>
|
|
<office:automatic-styles>
|
|
<style:style style:name="T1" style:family="text">
|
|
<style:text-properties fo:font-style="italic" style:font-style-asian="italic" style:font-style-complex="italic"/>
|
|
</style:style>
|
|
<style:style style:name="T2" style:family="text">
|
|
<style:text-properties fo:font-style="normal" style:font-style-asian="normal" style:font-style-complex="normal"/>
|
|
</style:style>
|
|
<style:style style:name="T3" style:family="text">
|
|
<style:text-properties fo:font-style="normal" fo:font-weight="bold" style:font-style-asian="normal" style:font-style-complex="normal"/>
|
|
</style:style>
|
|
</office:automatic-styles>
|
|
<office:body>
|
|
<office:text>
|
|
<office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
|
|
<text:sequence-decls>
|
|
<text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
|
|
<text:sequence-decl text:display-outline-level="0" text:name="Table"/>
|
|
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
|
|
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
|
|
</text:sequence-decls>
|
|
<text:p text:style-name="Title"><xsl:value-of select="ser:header/ser:title"/></text:p>
|
|
<xsl:apply-templates select="ser:body/*" mode="body"/>
|
|
</office:text>
|
|
</office:body>
|
|
</office:document-content>
|
|
</xsl:template>
|
|
</xsl:transform>
|
|
|