Reinhard Müller
b523b8bd80
All checks were successful
continuous-integration/drone/push Build is passing
The templates are now directly available for use in pages, there's no need for an explict .xsl file any more.
83 lines
3.7 KiB
XML
83 lines
3.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:dt="http://xsltsl.org/date-time"
|
|
exclude-result-prefixes="dt"
|
|
xmlns:str="http://exslt.org/strings"
|
|
extension-element-prefixes="str">
|
|
|
|
<xsl:include href="build/xslt/fsfe_head.xsl" />
|
|
<xsl:include href="build/xslt/fsfe_body.xsl" />
|
|
<xsl:include href="build/xslt/gettext.xsl" />
|
|
<xsl:include href="build/xslt/static-elements.xsl" />
|
|
<xsl:include href="build/xslt/news.xsl" />
|
|
<xsl:include href="build/xslt/events.xsl" />
|
|
|
|
<!-- HTML 5 compatibility doctype, since our XSLT parser doesn't support disabling output escaping -->
|
|
<xsl:output method="html" encoding="utf-8" indent="yes" doctype-system="about:legacy-compat" />
|
|
|
|
<!-- EXTRACT / DESCRIPTION of each page -->
|
|
<xsl:variable name="metadesc">
|
|
<!-- Get the meta element description -->
|
|
<xsl:value-of select="/buildinfo/document/head/meta[@name = 'description']/@content" />
|
|
</xsl:variable>
|
|
|
|
<!-- if there is a meta description, take that as an extract -->
|
|
<xsl:variable name="extract">
|
|
<xsl:choose>
|
|
<!-- case 1: if there is a meta description, take that -->
|
|
<xsl:when test="$metadesc != ''">
|
|
<xsl:value-of select="$metadesc" />
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<!-- take a first extract which should be sufficient for most pages -->
|
|
<xsl:variable name="extract1">
|
|
<!-- retrieve the first 200 letters of the first p element after h1 -->
|
|
<xsl:value-of select="substring(normalize-space(/buildinfo/document/body/h1[1]/following::p[1]),1,155)" />
|
|
</xsl:variable>
|
|
<!-- define cases what happens with which extract length -->
|
|
<xsl:choose>
|
|
<!-- case 2: first paragraph is long enough -->
|
|
<xsl:when test="string-length($extract1) > 50">
|
|
<xsl:value-of select="$extract1" />
|
|
<xsl:text>...</xsl:text>
|
|
</xsl:when>
|
|
<!-- case 3: first paragraph is too short -->
|
|
<xsl:otherwise>
|
|
<xsl:variable name="extract2">
|
|
<!-- retrieve the first 200 letters of the *second* p element after h1 -->
|
|
<xsl:value-of select="substring(normalize-space(/buildinfo/document/body/h1[1]/following::p[2]),1,155)" />
|
|
</xsl:variable>
|
|
<xsl:choose>
|
|
<!-- case 3a: second paragraph is long enough -->
|
|
<xsl:when test="string-length($extract2) > 50">
|
|
<!-- Combine $extract1 and $extract2 with max. 155 characters -->
|
|
<xsl:value-of select="substring(normalize-space(concat($extract1, ' ', $extract2)),1,155)" />
|
|
<xsl:text>...</xsl:text>
|
|
</xsl:when>
|
|
<!-- case 3b: also second extract is too short, so take a default text -->
|
|
<xsl:otherwise>
|
|
<xsl:text>Free Software Foundation Europe is a charity that empowers users to control technology. We enable people to use, understand, adapt and share software.</xsl:text>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
|
|
<xsl:include href="build/xslt/fsfe_document.xsl" />
|
|
<xsl:include href="build/xslt/fsfe_headings.xsl" />
|
|
<xsl:include href="build/xslt/fsfe_localmenu.xsl" />
|
|
|
|
<!-- Do not copy non-HTML elements to output -->
|
|
<xsl:include href="build/xslt/fsfe_nolocal.xsl" />
|
|
|
|
<!-- Static elements which can be included everywhere -->
|
|
<xsl:template match="static-element">
|
|
<xsl:variable name="id"><xsl:value-of select="@id"/></xsl:variable>
|
|
<xsl:copy-of select="/buildinfo/document/set/element[@id=$id]/node()" />
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|