123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489 |
- <?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:a="http://www.w3.org/2005/Atom"
- xmlns:as="https://www.w3.org/ns/activitystreams#"
- xmlns:georss="http://www.georss.org/georss"
- xmlns:ldp="http://www.w3.org/ns/ldp#"
- xmlns:media="http://search.yahoo.com/mrss/"
- xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:schema="http://schema.org#"
- xmlns:se="http://seppo.social/"
- xmlns:seppo="http://seppo.social/2023/ns#"
- xmlns:toot="http://joinmastodon.org/ns#"
- xmlns:wf="urn:ietf:rfc:7033"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- exclude-result-prefixes="a as opensearch ldp media georss rdf se"
- xmlns:math="http://exslt.org/math"
- extension-element-prefixes="math"
- version="1.0">
- <!-- maybe mitigate the white flash via https://www.w3.org/Style/styling-XML.en.html -->
- <!-- 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"/>
- <xsl:variable name="xml_base" select="normalize-space($xml_base_absolute)"/>
- <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_url" select="concat($xml_base,'seppo.cgi')"/>
- <!-- a bit hairy, but actually works -->
- <xsl:variable name="xml_base_relative">../../<xsl:choose>
- <xsl:when test="'seppo.cgi/search/?q=' = substring($self, 1, 24)"/>
- <xsl:when test="'//' = translate($self, 'abcdefghijklmnopqrstuvwxyz0123456789-', '')"/>
- <xsl:otherwise>../</xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
- <xsl:variable name="is_cgi" select="starts-with($self, 'seppo.cgi/')"/>
- <xsl:variable name="lang" select="/*/@xml:lang"/>
- <xsl:variable name="perso" select="document(concat($xml_base,'activitypub/actor.xml'))/rdf:RDF/as:Person"/>
- <xsl:variable name="niy">!! Not implemented yet !!</xsl:variable>
- <xsl:template match="/">
- <!--
- Do not set a class="logged-out" initially, but do via early JavaScript.
- If JavaScript is off, we need a compromise between logged-in and -out.
- -->
- <html xmlns="http://www.w3.org/1999/xhtml" data-seppo-cgi-url="{$cgi_url}" lang="{$lang}" xml:lang="{$lang}" class="script-inactive" bgcolor="darkgreen">
- <xsl:if test="234 < count(a:feed/a:category)">
- <xsl:attribute name="class"><xsl:value-of select="@class"/> manytags</xsl:attribute>
- </xsl:if>
- <xsl:if test="$is_cgi">
- <!-- not striclty accurate (login, search?), but the cgi knows itself and can decide what to serve. -->
- <xsl:attribute name="class"><xsl:value-of select="@class"/> logged-in</xsl:attribute>
- </xsl:if>
- <xsl:call-template name="head"/>
- <body>
- <xsl:apply-templates select="a:feed|a:entry" mode="root"/>
- </body>
- </html>
- </xsl:template>
- <xsl:template name="head">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
- <meta name="viewport" content="width=device-width,initial-scale=1.0"/>
- <link rel="icon" type="image/jpg" href="{$xml_base}me-avatar.jpg"/>
- <link rel="stylesheet" type="text/css" href="{$skin_base}/awesomplete.css"/>
- <link rel="stylesheet" type="text/css" href="{$skin_base}/style.css"/>
- <script src="{$skin_base}/posts.js"></script>
- <script src="{$skin_base}/awesomplete.js"></script>
- <!-- script src="{$skin_base}/../../live.js"></script -->
- <link rel="alternate" type="application/atom+xml" href="."/>
- <link rel="self" type="application/xhtml+xml" href="."/>
- <title><xsl:value-of select="a:*/a:title"/></title>
- </head>
- </xsl:template>
- <xsl:template match="a:feed" mode="root">
- <noscript><p>JavaScript deactivated, almost fully functional, but <em>nicer</em> if on.</p></noscript>
- <xsl:call-template name="header"/>
- <!-- h1><xsl:value-of select="a:title"/></h1 -->
- <p id="tags" class="categories">
- <xsl:variable name="countMax">
- <!-- https://stackoverflow.com/a/17966412 -->
- <xsl:for-each select="a:category">
- <xsl:sort select="@label" data-type="number" order="descending"/>
- <xsl:if test="position() = 1"><xsl:value-of select="@label"/></xsl:if>
- </xsl:for-each>
- </xsl:variable>
- <xsl:variable name="labelsDesc">
- <xsl:for-each select="a:category">
- <xsl:sort select="@label" order="descending"/>
- <xsl:value-of select="@label"/>
- </xsl:for-each>
- </xsl:variable>
- <xsl:for-each select="a:category[@label >= 1]">
- <xsl:sort select="@term" order="ascending"/>
- <!-- not log, just linear, similar to https://github.com/sebsauvage/Shaarli/blob/master/index.php#L1254 -->
- <xsl:variable name="size" select="8 + 40 * @label div $countMax"/>
- <a style="font-size:{$size}pt" href="{$cgi_url}/search/?q=%23{@term}+" class="tag" data-count="{@label}"><span class="label"><xsl:value-of select="@term"/></span><span style="font-size:8pt"> (<span class="count"><xsl:value-of select="@label"/></span>)</span></a><xsl:text> </xsl:text>
- </xsl:for-each>
- </p>
- <xsl:if test="count(a:entry) < 1">
- <p>Here will show up a paged list of all your posts. There are none until you create one, however.</p>
- </xsl:if>
- <ol id="entries" data-level="0" class="even" role="feed">
- <xsl:apply-templates select="a:entry"/>
- </ol>
- <xsl:call-template name="pagination">
- <xsl:with-param name="id">pagination-lower</xsl:with-param>
- </xsl:call-template>
- <xsl:call-template name="footer"/>
- </xsl:template>
- <xsl:template name="pagination">
- <xsl:param name="id">-</xsl:param>
- <xsl:variable name="self" select="a:link[@rel='self']"/>
- <xsl:if test="a:link[@rel='previous'] or a:link[@rel='next']">
- <ol id="{$id}" class="noshade" role="navigation" aria-label="pagination">
- <li>
- <xsl:variable name="link" select="a:link[@rel='first']"/>
- <a title="most recent page" href="{$xml_base_relative}{$link/@href}#pagination-upper" rel="first" role="button"><xsl:value-of select="$link/@title"/></a>
- </li>
- <li>
- <a title="more recent page" rel="previous" role="button">
- <xsl:variable name="link" select="a:link[@rel='previous']"/>
- <xsl:choose>
- <xsl:when test="$link/@href">
- <xsl:attribute name="href"><xsl:value-of select="concat($xml_base_relative, $link/@href, '#pagination-lower')"/></xsl:attribute>
- <xsl:attribute name="class">probe-2xx</xsl:attribute>
- </xsl:when>
- <xsl:otherwise>
- <xsl:attribute name="aria-disabled">true</xsl:attribute>
- </xsl:otherwise>
- </xsl:choose>
-  <xsl:value-of select="$link/@title"/> </a>
- </li>
- <li aria-current="page">
- <a href="{$xml_base_relative}{$self/@href}#{$id}" title="current page" rel="self"><xsl:value-of select="$self/@title"/></a>
- </li>
- <li>
- <a title="next older page" rel="next" role="button">
- <xsl:variable name="link" select="a:link[@rel='next']"/>
- <xsl:choose>
- <xsl:when test="$link/@href">
- <xsl:attribute name="href"><xsl:value-of select="concat($xml_base_relative, $link/@href, '#pagination-upper')"/></xsl:attribute>
- <xsl:attribute name="class">probe-2xx</xsl:attribute>
- </xsl:when>
- <xsl:otherwise>
- <xsl:attribute name="aria-disabled">true</xsl:attribute>
- </xsl:otherwise>
- </xsl:choose>
-  <xsl:value-of select="$link/@title"/> </a>
- </li>
- <li>
- <xsl:variable name="link" select="a:link[@rel='last']"/>
- <a title="oldest page" href="{$xml_base_relative}{$link/@href}#pagination-lower" rel="last" role="button"><xsl:value-of select="$link/@title"/></a>
- </li>
- </ol>
- </xsl:if>
- </xsl:template>
- <xsl:template name="header">
- <xsl:choose>
- <xsl:when test="$is_cgi">
- <xsl:call-template name="header_cgi"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:call-template name="header_static"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <xsl:template name="header_cgi">
- <div aria-label="Header" id="header" role="banner">
- <a href="{$xml_base}" rel="start" role="button" title="Public Feed">📜</a>
- <!-- a href="{$cgi_url}/timeline/p/" rel="start" role="button">🕞 <span class="hidden-xs">Timeline</span></a -->
- <a href="{$cgi_url}/timeline/p/" rel="start" role="button" title="Private/internal">🏡 <span class="hidden-xs">Home</span></a>
- <a href="{$cgi_url}/people" rel="nofollow" role="button">👥 <span class="hidden-xs">People</span></a>
- <a href="{$cgi_url}/backoffice/" rel="nofollow" role="button">⚙️ <span class="hidden-xs">Settings</span></a>
- <form disabled="disabled" role="search" title="{$niy}" id="form_search" name="form_search" class="combined" action="{$cgi_url}/search/">
- <input disabled="disabled awesomplete" tabindex="100" name="q" id="q" value="{@se:searchTerms}" type="text" placeholder="🔍
- Search text or #tag or @person" data-multiple="true"/>
- <button type="Submit">Search</button>
- </form>
- <form role="form" id="form_post" name="form_post" class="hidden-logged-out combined" action="{$cgi_url}/post">
- <input tabindex="300" name="post" type="text" placeholder="✍️ Enter text and create a post." autofocus="autofocus"/>
- <button type="Submit">Create Post</button>
- </form>
- <p class="whitespace"></p>
- <xsl:call-template name="pagination">
- <xsl:with-param name="id">pagination-upper</xsl:with-param>
- </xsl:call-template>
- </div>
- </xsl:template>
- <xsl:template name="header_static">
- <div aria-label="Header" id="header" role="banner">
- <div id="banner">
- <div id="banner-img">
- <img alt="Banner" src="{$xml_base}me-banner.jpg"/>
- </div>
- <div id="head-grid">
- <a href="{$xml_base}" rel="start" role="button" title="Public Feed">📜</a>
- <form action="{$cgi_url}/notifyme" id="form_notifyme" name="notifyme" class="hidden-logged-in">
- <input name="resource" required="required" pattern="(acct:|@)?[a-zA-Z0-9._~\-]+@[a-zA-Z0-9._~\-]+"
- placeholder="@alice@example.com" title="Subscribe to this feed with your ActivtyPub account" />
- <input name="rel" type="hidden" value="http://ostatus.org/schema/1.0/subscribe"/>
- <input type="submit" value="Subscribe 🔔" title="Subscribe with your ActivtyPub account"/>
- </form>
- <span class="hidden-logged-in">
- <a id="link_login" href="{$cgi_url}/timeline/p/" rel="nofollow"
- name="link_login" role="button"><span class="hidden-xs">Login </span> 👋</a>
- </span>
- <span class="visible-logged-in">
- <a href="{$cgi_url}/timeline/p/" rel="start nofollow" role="button" title="Private/internal">🏡 <span class="hidden-xs">Home</span></a>
- </span>
- <a id="link_logout" href=
- "{$cgi_url}/logout" class="hidden-logged-out" rel="nofollow" name=
- "link_logout" role="button"><span class="hidden-xs" title="Switch to public view">Logout</span> 👋</a>
- </div>
- <!--
- <div id="subscribe" class="hidden-logged-out">
- <a href="{$xml_base}activitypub/subscribed/" rel="nofollow" title="a.k.a. Following" role="button">📄 <span class="hidden-xs">Subscribed</span> 👂</a>
- <a href="{$xml_base}activitypub/subscribers/" rel="nofollow" title="a.k.a. Followers" role="button">📄 <span class="hidden-xs">Subscribers</span> 📣</a>
- <a aria-disabled="true" href="{$xml_base}activitypub/blocked/" rel="nofollow" role="button">📄 <span class="hidden-xs">Blocked</span> 🤐</a>
- </div>
- -->
- </div>
- <div class="" id="avatar">
- <a href="{$xml_base}"><img alt="Avatar" src="{$xml_base}me-avatar.jpg" rel="icon"/></a>
- </div>
- <h3 class="" id="name"><a href="{$perso/as:url/@rdf:resource}"><xsl:value-of select="$perso/as:name"/></a></h3>
- <xsl:variable name="host1" select="$perso/as:url/@rdf:resource"/>
- <xsl:variable name="host0" select="substring-after($host1,'://')"/>
- <xsl:variable name="host" select="substring-before($host0,'/')"/>
- <p class=""><a href="{$perso/as:url/@rdf:resource}">@<span id="preferredUsername"><xsl:value-of select="$perso/as:preferredUsername"/></span>@<xsl:value-of select="$host"/></a></p>
- <xsl:if test="1 or a:link[@rel='first']/@href = a:link[@rel='self']/@href">
- <div class="noshade" id="bio">
- <p class="clickable" title="summary">
- <xsl:call-template name="linefeed2br">
- <xsl:with-param name="string" select="$perso/as:summary"/>
- </xsl:call-template>
- </p>
- <dl>
- <xsl:for-each select="$perso/as:attachment/schema:PropertyValue[schema:value]">
- <dt class="clickable"><xsl:value-of select="as:name"/></dt>
- <dd class="clickable"><xsl:value-of select="schema:value"/></dd>
- </xsl:for-each>
- </dl>
- </div>
- </xsl:if>
- <xsl:comment> https://stackoverflow.com/a/18520870 http://jsfiddle.net/66Ynx/ </xsl:comment>
- <form disabled="disabled" role="search" id="form_search" name="form_search" class="combined" action="{$cgi_url}/search/">
- <input disabled="disabled" class="awesomplete" tabindex="100" name="q" id="q" value="{@se:searchTerms}" type="text" placeholder="🔍
- Search text or #tag or @person" data-multiple="true"/>
- <button type="Submit">Search</button>
- </form>
- <form role="form" id="form_post" name="form_post" class="hidden-logged-out combined" action="{$cgi_url}/post">
- <input tabindex="300" name="post" type="text" placeholder="✍️ Enter text to start a post." autofocus="autofocus"/>
- <button type="Submit">Create Post</button>
- </form>
- <p class="whitespace"></p>
- <xsl:call-template name="pagination">
- <xsl:with-param name="id">pagination-upper</xsl:with-param>
- </xsl:call-template>
- </div>
- </xsl:template>
- <xsl:template name="footer">
- <p role="contentinfo" aria-label="Footer" id="footer">
- <a title="Syndicate" href="{$xml_base_absolute}{a:link[@rel='self']/@href}">
- <img alt="Feed" src="{$skin_base}/feed-icon.svg"/>
- </a>
- <xsl:text> </xsl:text>
- <a title="Validate (Atom 1.0)" href="https://validator.w3.org/feed/check.cgi?url={$xml_base_absolute}{a:link[@rel='self']/@href}">
- <img alt="Validity badge (Atom 1.0)" src="{$skin_base}/valid-atom.svg"/>
- </a>
- <!-- <xsl:text> </xsl:text>
- <a href="https://validator.w3.org/check?uri=referer">
- <img alt="Valid XHTML 1.0 Strict" src="{$skin_base}/valid-xhtml10-blue-v.svg"/>
- </a>
- <a href="https://jigsaw.w3.org/css-validator/check/referer?profile=css3&usermedium=screen&warning=2&vextwarning=false&lang={$lang}">
- <img alt="CSS ist valide!" src="{$skin_base}/valid-css-blue-v.svg"/>
- </a>
- -->
- <xsl:text> </xsl:text>
- <!--
- <a href="{a:link[@rel='about']/@href}">
- About<xsl:if test="string-length(a:link[@rel='about']/@href) < 2"><span> link rel='about' missing.</span></xsl:if>
- </a>
- <xsl:text> </xsl:text>
- <a href="{a:link[@rel='license']/@href}">
- <xsl:value-of select="a:link[@rel='license']/@title"/><xsl:if test="string-length(a:link[@rel='license']/@href) < 2"><span> link rel='license' missing.</span></xsl:if>
- </a>
- <xsl:text> </xsl:text>
- <a href="{a:link[@rel='terms-of-service']/@href}">
- § Imprint<xsl:if test="string-length(a:link[@rel='terms-of-service']/@href) < 2"><span> link rel='terms-of-service' missing.</span></xsl:if>
- </a>
- <xsl:text> </xsl:text>
- <a href="{a:link[@rel='privacy-policy']/@href}">
- 🤫 Privacy<xsl:if test="string-length(a:link[@rel='terms-of-service']/@href) < 2"><span> link rel='terms-of-service' missing.</span></xsl:if>
- </a>
- -->
- <xsl:text> </xsl:text>
- <a title="Generator" href="https://{a:generator/@uri}">
- <xsl:value-of select="a:generator"/>
- </a>
- </p>
- </xsl:template>
- <xsl:template match="a:entry" mode="root">
- <noscript><p>JavaScript deactivated, almost fully functional, but <em>nicer</em> if on.</p></noscript>
- <xsl:call-template name="header"/>
- <ol id="entries" data-level="0" class="even">
- <xsl:apply-templates select="."/>
- </ol>
- <xsl:call-template name="footer"/>
- </xsl:template>
- <xsl:template match="a:entry">
- <xsl:variable name="link" select="a:link[not(@rel)]/@href"/>
- <xsl:variable name="self" select="a:link[@rel='self']/@href"/>
- <xsl:variable name="id_slash" select="substring-after($self, '/p/')"/>
- <xsl:variable name="id" select="substring-after($self, '#')"/>
- <li class="noshade" id="{$id}" data-id="{a:id}" role="article">
- <h3>
- <xsl:if test="media:thumbnail/@url">
- <!-- https://varvy.com/pagespeed/defer-images.html -->
- <!-- img alt="Vorschaubild" data-src="{media:thumbnail/@url}" src="data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" / -->
- </xsl:if>
- <xsl:choose>
- <xsl:when test="$link">
- <a href="{$redirector}{$link}" rel="noopener noreferrer" referrerpolicy="no-referrer"><xsl:value-of select="a:title"/></a>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="a:title"/>
- </xsl:otherwise>
- </xsl:choose>
- </h3>
- <xsl:if test="a:summary">
- <h5>
- <xsl:call-template name="linefeed2br">
- <xsl:with-param name="string" select="a:summary"/>
- </xsl:call-template>
- </h5>
- </xsl:if>
- <!-- p class="small text-right"><a><xsl:value-of select="$link"/></a></p -->
- <!-- html content won't work that easy (out-of-the-firebox): https://bugzilla.mozilla.org/show_bug.cgi?id=98168#c140 -->
- <!-- workaround via jquery: http://stackoverflow.com/a/9714567 -->
- <!-- Überbleibsel vom Shaarli Atom Feed raus: -->
- <!-- xsl:value-of select="substring-before(a:content[not(@src)], '<br>(<a href="https://links.mro.name/?')" disable-output-escaping="yes" / -->
- <xsl:apply-templates select="a:content"/>
- <xsl:if test="a:category">
- <p class="categories">
- <xsl:for-each select="a:category">
- <xsl:sort select="@term"/>
- <xsl:if test="position() != 1">
- <xsl:text>, </xsl:text>
- </xsl:if>
- <a href="{@scheme}{@term}/" class="tag">#<xsl:value-of select="@term"/></a>
- </xsl:for-each>
- </p>
- </xsl:if>
- <p class="footer">
- <xsl:variable name="entry_updated" select="a:updated"/>
- <xsl:variable name="entry_updated_human"><xsl:call-template name="human_time"><xsl:with-param name="time" select="$entry_updated"/></xsl:call-template></xsl:variable>
- <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>
- <a class="updated" title="Go to Original" rel="canonical via" href="{a:link[@rel='self']/@href}"
- data-rfc3339="{a:updated}"><xsl:value-of select="$entry_updated_human"/> 🔗</a>
- <xsl:for-each select="a:author[wf:uri]">
- <xsl:text> * </xsl:text>
- <a class="from rfc7565" title="Go to Author" href="{$cgi_url}/activitypub/actor.xml?resource={wf:uri}">
- <!-- img alt="Avatar" src="{wf:icon}"/ -->
- @<xsl:value-of select="substring-after(wf:uri,'acct:')"/>
- </a>
- </xsl:for-each>
- <!--
- <xsl:if test="$link">
- *
- <a href="{$archive}{$link}" rel="noopener noreferrer" referrerpolicy="no-referrer">@archive.org</a>
- </xsl:if>
- -->
- <span class="hidden-logged-out">
- <xsl:variable name="id_esc" select="translate(a:id,'#','$')"/>
- <xsl:variable name="can_edit" select="a:link[@rel='edit']/@href"/>
- <xsl:if test="$can_edit">
- *
- <!-- a href="{$cgi_url}/edit?id={$id_esc}" rel="nofollow">XY</a><xsl:text> </xsl:text -->
- <a href="{$can_edit}" rel="nofollow">Edit</a><xsl:text> </xsl:text>
- </xsl:if>
- *
- <xsl:variable name="ap_inbox" select="a:link[@rel='ap_inbox']/@href"/>
- <xsl:if test="$ap_inbox">
- <a href="{$cgi_url}/activitypub/like?id={$id_esc}&inbox={$ap_inbox}" rel="nofollow" title="Like">❤️ </a>
-  
- <a href="{$cgi_url}/activitypub/announce?id={$id_esc}&inbox={$ap_inbox}" rel="nofollow" title="Announce">📣 </a>
-  
- <a aria-disabled="true" href="{$cgi_url}/activitypub/reply?id={$id_esc}&inbox={$ap_inbox}" rel="nofollow" title="Reply">↩️ </a>
- </xsl:if>
- </span>
- <!--
- *
- <a aria-disabled="true" href="{$cgi_url}/replies?id={a:id}">Replies</a>
- -->
- </p>
- <!-- iframe data-src="{$cgi_url}/replies?id={a:id}"/ -->
- </li>
- </xsl:template>
- <xsl:template match="a:content[not(@type) or @type = 'text']">
- <xsl:if test="string-length(.) > 0">
- <p class="clickable rendered type-text">
- <xsl:call-template name="linefeed2br">
- <xsl:with-param name="string" select="."/>
- </xsl:call-template>
- </p>
- </xsl:if>
- </xsl:template>
- </xsl:stylesheet>
|