123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- _ _ ____ _
- _| || |_/ ___| ___ _ __ _ __ ___ | |
- |_ .. _\___ \ / _ \ '_ \| '_ \ / _ \| |
- |_ _|___) | __/ |_) | |_) | (_) |_|
- |_||_| |____/ \___| .__/| .__/ \___/(_)
- |_| |_|
- Personal Social Web.
- Copyright (C) The #Seppo contributors. All rights reserved.
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- https://w3.org/TR/xslt-10
- https://w3.org/TR/xpath-10
- -->
- <xsl:stylesheet
- xmlns="http://www.w3.org/1999/xhtml"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- exclude-result-prefixes="rdf"
- xmlns:math="http://exslt.org/math"
- extension-element-prefixes="math"
- version="1.0">
- <xsl:variable name="nbsp"> </xsl:variable>
- <!-- replace linefeeds with <br> tags -->
- <xsl:template name="linefeed2br">
- <xsl:param name="string" select="''"/>
- <xsl:param name="pattern" select="' '"/>
- <xsl:choose>
- <xsl:when test="contains($string, $pattern)">
- <xsl:value-of select="substring-before($string, $pattern)"/><br class="br"/><xsl:comment> Why do we see 2 br on Safari and output/@method=html here? http://purl.mro.name/safari-xslt-br-bug </xsl:comment>
- <xsl:call-template name="linefeed2br">
- <xsl:with-param name="string" select="substring-after($string, $pattern)"/>
- <xsl:with-param name="pattern" select="$pattern"/>
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="$string"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <xsl:template name="calculate-day-of-the-week">
- <!-- https://www.oreilly.com/library/view/xslt-cookbook/0596003722/ch03s02.html -->
- <xsl:param name="date-time"/>
- <xsl:param name="date" select="substring-before($date-time,'T')"/>
- <xsl:param name="year" select="substring-before($date,'-')"/>
- <xsl:param name="month" select="substring-before(substring-after($date,'-'),'-')"/>
- <xsl:param name="day" select="substring-after(substring-after($date,'-'),'-')"/>
- <xsl:variable name="a" select="floor((14 - $month) div 12)"/>
- <xsl:variable name="y" select="$year - $a"/>
- <xsl:variable name="m" select="$month + 12 * $a - 2"/>
- <xsl:value-of select="($day + $y + floor($y div 4) - floor($y div 100) + floor($y div 400) + floor((31 * $m) div 12)) mod 7"/>
- </xsl:template>
- <xsl:template name="human_time">
- <xsl:param name="time">-</xsl:param>
- <xsl:variable name="wday">
- <xsl:call-template name="calculate-day-of-the-week">
- <xsl:with-param name="date-time" select="$time"/>
- </xsl:call-template>
- </xsl:variable>
- <xsl:choose>
- <xsl:when test="0 = $wday">Sun</xsl:when>
- <xsl:when test="1 = $wday">Mon</xsl:when>
- <xsl:when test="2 = $wday">Tue</xsl:when>
- <xsl:when test="3 = $wday">Wed</xsl:when>
- <xsl:when test="4 = $wday">Thu</xsl:when>
- <xsl:when test="5 = $wday">Fri</xsl:when>
- <xsl:when test="6 = $wday">Sat</xsl:when>
- <xsl:otherwise>?</xsl:otherwise>
- </xsl:choose>
- <xsl:text>, </xsl:text>
- <xsl:value-of select="substring($time, 9, 2)"/><xsl:text>. </xsl:text>
- <xsl:variable name="month" select="substring($time, 6, 2)"/>
- <xsl:choose>
- <xsl:when test="'01' = $month">Jan</xsl:when>
- <xsl:when test="'02' = $month">Feb</xsl:when>
- <xsl:when test="'03' = $month">Mar</xsl:when>
- <xsl:when test="'04' = $month">Apr</xsl:when>
- <xsl:when test="'05' = $month">May</xsl:when>
- <xsl:when test="'06' = $month">Jun</xsl:when>
- <xsl:when test="'07' = $month">Jul</xsl:when>
- <xsl:when test="'08' = $month">Aug</xsl:when>
- <xsl:when test="'09' = $month">Sep</xsl:when>
- <xsl:when test="'10' = $month">Oct</xsl:when>
- <xsl:when test="'11' = $month">Nov</xsl:when>
- <xsl:when test="'12' = $month">Dec</xsl:when>
- <xsl:otherwise>?</xsl:otherwise>
- </xsl:choose><xsl:text> </xsl:text>
- <xsl:value-of select="substring($time, 1, 4)"/><xsl:text> </xsl:text>
- <xsl:value-of select="substring($time, 12, 5)"/><!-- xsl:text> Uhr</xsl:text -->
- </xsl:template>
- <xsl:template name="degrees">
- <xsl:param name="num" select="0"/>
- <xsl:choose>
- <xsl:when test="$num < 0">-<xsl:call-template name="degrees"><xsl:with-param name="num" select="-$num"/></xsl:call-template></xsl:when>
- <xsl:when test="$num >= 0">
- <xsl:variable name="deg" select="floor($num)"/>
- <xsl:variable name="min" select="floor(($num * 60) mod 60)"/>
- <xsl:variable name="sec" select="format-number((($num * 36000) mod 600) div 10, '0.0')"/>
- <xsl:value-of select="$deg"/>° <!--
- --><xsl:value-of select="$min"/>' <!--
- --><xsl:value-of select="$sec"/>"
- </xsl:when>
- <xsl:otherwise>?</xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- </xsl:stylesheet>
|