105 lines
3.7 KiB
XML
105 lines
3.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
xmlns:fo="http://www.w3.org/1999/XSL/Format" exclude-result-prefixes="xs" version="2.0">
|
|
|
|
|
|
<xsl:import href="pages.xslt"/>
|
|
<xsl:import href="meta.xslt"/>
|
|
<xsl:import href="toc.xslt"/>
|
|
<xsl:import href="structure.xslt"/>
|
|
<xsl:import href="att-set.xslt"/>
|
|
<xsl:import href="block.xslt"/>
|
|
<xsl:import href="findings.xslt"/>
|
|
<xsl:import href="auto.xslt"/>
|
|
<xsl:import href="table.xslt"/>
|
|
<xsl:import href="lists.xslt"/>
|
|
<xsl:import href="inline.xslt"/>
|
|
<xsl:import href="graphics.xslt"/>
|
|
<xsl:import href="generic.xslt"/>
|
|
<xsl:import href="numbering.xslt"/>
|
|
<xsl:import href="quickscoping.xslt"/>
|
|
|
|
<xsl:include href="styles_a4.xslt"/>
|
|
|
|
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
|
|
|
|
<xsl:key name="rosid" match="section|finding|appendix|non-finding" use="@id"/>
|
|
|
|
<!-- ****** AUTO_NUMBERING_FORMAT: value of the <xsl:number> element used for auto numbering -->
|
|
<xsl:param name="AUTO_NUMBERING_FORMAT" select="'1.1.1'"/>
|
|
|
|
<xsl:variable name="CLASSES" select="document('../xslt/styles_a4.xslt')/*/xsl:attribute-set"/>
|
|
|
|
<xsl:variable name="latestVersionDate">
|
|
<xsl:for-each select="/*/version">
|
|
<xsl:sort select="xs:date(@date)" order="descending"/>
|
|
<xsl:if test="position() = 1">
|
|
<xsl:value-of select="format-date(@date, '[MNn] [D1], [Y]', 'en', (), ())"/>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</xsl:variable>
|
|
|
|
<!-- ROOT -->
|
|
<xsl:template match="/">
|
|
|
|
<fo:root>
|
|
|
|
<xsl:call-template name="layout-master-set"/>
|
|
<xsl:call-template name="Content"/>
|
|
|
|
</fo:root>
|
|
</xsl:template>
|
|
|
|
<!-- OVERRIDES -->
|
|
|
|
<!-- FRONT PAGE -->
|
|
<xsl:template match="meta">
|
|
<fo:block xsl:use-attribute-sets="graphics-block">
|
|
<fo:external-graphic xsl:use-attribute-sets="logo"/>
|
|
</fo:block>
|
|
<fo:block xsl:use-attribute-sets="title-0">
|
|
<xsl:text>RADICALLY OPEN SECURITY</xsl:text>
|
|
</fo:block>
|
|
<fo:block xsl:use-attribute-sets="for">
|
|
<xsl:text>OFFER</xsl:text>
|
|
</fo:block>
|
|
<fo:block xsl:use-attribute-sets="title-0">
|
|
<xsl:value-of select="upper-case(offered_service_long)"/>
|
|
</fo:block>
|
|
<fo:block xsl:use-attribute-sets="for">
|
|
<xsl:text>FOR</xsl:text>
|
|
</fo:block>
|
|
<fo:block xsl:use-attribute-sets="title-client">
|
|
<xsl:value-of select="permission_parties/client/full_name"/>
|
|
</fo:block>
|
|
<!-- NO DOCUMENT CONTROL, JUST THE DATE ON THE FP -->
|
|
<fo:block xsl:use-attribute-sets="for break-after">
|
|
<xsl:value-of select="$latestVersionDate"/>
|
|
</fo:block>
|
|
</xsl:template>
|
|
|
|
<!-- TITLES (NO NUMBERING) -->
|
|
<xsl:template match="title">
|
|
<xsl:variable name="LEVEL" select="count(ancestor::*) - 1"/>
|
|
<xsl:variable name="CLASS">
|
|
<!-- use title-x for all levels -->
|
|
<xsl:text>title-</xsl:text>
|
|
<xsl:value-of select="$LEVEL"/>
|
|
</xsl:variable>
|
|
|
|
<fo:block>
|
|
<xsl:call-template name="use-att-set">
|
|
<xsl:with-param name="CLASS" select="$CLASS"/>
|
|
</xsl:call-template>
|
|
<xsl:apply-templates/>
|
|
</fo:block>
|
|
</xsl:template>
|
|
|
|
<!-- TITLES (ALL CAPS) -->
|
|
<xsl:template match="title/text()">
|
|
<xsl:value-of select="upper-case(.)"/>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|