123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <xsl:stylesheet
- xmlns="http://www.w3.org/1999/xhtml"
- xmlns:a="http://www.w3.org/2005/Atom"
- xmlns:media="http://search.yahoo.com/mrss/"
- xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/"
- xmlns:thr="http://purl.org/syndication/thread/1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- exclude-result-prefixes="a media opensearch thr"
- xmlns:math="http://exslt.org/math"
- extension-element-prefixes="math"
- version="1.0">
- <!-- xsl:variable name="redirector">https://anonym.to/?</xsl:variable --> <!-- mask the HTTP_REFERER -->
- <xsl:variable name="redirector"></xsl:variable>
- <xsl:variable name="archive">https://web.archive.org/web/</xsl:variable>
- <xsl:include href="util.xsl"/>
- <xsl:output
- method="html"
- doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
- doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"/>
- <!-- http://stackoverflow.com/a/16328207 -->
- <xsl:key name="CategorY" match="a:entry/a:category" use="@term" />
- <xsl:variable name="self" select="/*/a:link[@rel = 'self']/@href"/>
- <xsl:variable name="xml_base_absolute" select="/*/@xml:base"/>
- <!-- a bit hairy, but actually works -->
- <xsl:variable name="xml_base_relative">../../<xsl:choose>
- <xsl:when test="'shaarligo.cgi/search/?q=' = substring($self, 1, 24)"/>
- <xsl:when test="'//' = translate($self, 'abcdefghijklmnopqrstuvwxyz0123456789-', '')"/>
- <xsl:otherwise>../</xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
- <xsl:variable name="xml_base" select="normalize-space($xml_base_relative)"/>
- <xsl:variable name="xml_base_pub" select="concat($xml_base,'o')"/>
- <xsl:variable name="skin_base" select="concat($xml_base,'themes/current')"/>
- <xsl:variable name="cgi_base" select="concat($xml_base,'shaarligo.cgi')"/>
- <xsl:template match="/">
- <html xmlns="http://www.w3.org/1999/xhtml" data-xml-base-pub="{$xml_base_pub}">
- <head>
- <link href="../../themes/current/replies.css" rel="stylesheet" type="text/css" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="generator" content="HTML Tidy for HTML5 for FreeBSD version 5.8.0" />
- <meta name="viewport" content="width=device-width,initial-scale=1.0" />
- <!-- script src="../live.js"></script -->
- <title>Threaded Atom Feeds RFC 4685</title>
- </head>
- <body>
- <xsl:apply-templates select="a:feed"/>
- </body>
- </html>
- </xsl:template>
- <xsl:template match="a:feed">
- <h1><xsl:value-of select="a:title"/></h1>
- <ol class="odd" data-level="1">
- <!-- level=0 is reserved for the primary source -->
- <xsl:apply-templates select="a:entry[not(thr:in-reply-to)]">
- <!-- entries pointing to undefined ids are lost -->
- <xsl:with-param name="level" select="1 + 1"/>
- </xsl:apply-templates>
- </ol>
- </xsl:template>
- <xsl:template match="a:entry">
- <xsl:param name="level" />
- <xsl:variable name="entry_published" select="a:published"/>
- <xsl:variable name="entry_published_human"><xsl:call-template name="human_time"><xsl:with-param name="time" select="$entry_published"/></xsl:call-template></xsl:variable>
- <li>
- <p>
- <img class="avatar" alt="Avatar" src= "{a:author/a:icon}" />
- <a href="{a:id}" data-rfc3339="{a:published}" title="{a:published}">
- <xsl:value-of select="$entry_published_human"/>
- </a>
- <span class="name"><xsl:value-of select="a:author/a:name"/></span>
- <a href="{a:author/a:uri}" data-rfc7033="{a:author/a:email}"><xsl:value-of select="a:author/a:email"/></a>
- </p>
- <p class="plaintext">
- <xsl:call-template name="linefeed2br">
- <xsl:with-param name="string" select="a:content"/>
- </xsl:call-template>
- </p>
- <xsl:variable name="me" select="a:id"/>
- <xsl:variable name="clz">
- <xsl:choose>
- <xsl:when test="$level mod 2 = 0">even</xsl:when>
- <xsl:otherwise>odd</xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
- <xsl:variable name="more" select="following-sibling::a:entry[thr:in-reply-to/@ref = $me]"/>
- <xsl:if test="count($more) > 0">
- <ol class="{$clz}" data-level="{$level}">
- <xsl:apply-templates select="$more">
- <xsl:with-param name="lvl" select="$level + 1"/>
- </xsl:apply-templates>
- </ol>
- </xsl:if>
- </li>
- </xsl:template>
- </xsl:stylesheet>
|