766e51af4c
Add packaging instructions; Add modules to handle Gemini file type (no Gemini server yet); Improve handling of configuration.
531 lines
36 KiB
XML
531 lines
36 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<!--
|
|
Copyright (C) 2016 - 2024 Schimon Jehuda. Released under MIT license
|
|
Feeds rendered using this XSLT stylesheet, or it's derivatives, must
|
|
include https://schimon.i2p/ in attribute name='generator' of
|
|
element <meta/> inside of html element </head>
|
|
-->
|
|
|
|
<xsl:stylesheet version='1.0'
|
|
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
|
|
xmlns:xml='http://www.w3.org/XML/1998/namespace'
|
|
xmlns:media='http://search.yahoo.com/mrss/'
|
|
xmlns:georss='http://www.georss.org/georss'
|
|
xmlns:geo='http://www.w3.org/2003/01/geo/wgs84_pos#'
|
|
xmlns:atom10='http://www.w3.org/2005/Atom'
|
|
xmlns:atom='http://www.w3.org/2005/Atom'>
|
|
<xsl:template match='/atom:feed'>
|
|
<!-- index right-to-left language codes -->
|
|
<!-- TODO http://www.w3.org/TR/xpath/#function-lang -->
|
|
<xsl:variable name='rtl'
|
|
select='@xml:lang[
|
|
contains(self::node(),"ar") or
|
|
contains(self::node(),"fa") or
|
|
contains(self::node(),"he") or
|
|
contains(self::node(),"ji") or
|
|
contains(self::node(),"ku") or
|
|
contains(self::node(),"ur") or
|
|
contains(self::node(),"yi")]'/>
|
|
<html>
|
|
<head>
|
|
<xsl:call-template name='metadata'>
|
|
<xsl:with-param name='name' select='"description"' />
|
|
<xsl:with-param name='content' select='atom:subtitle' />
|
|
</xsl:call-template>
|
|
<xsl:call-template name='metadata'>
|
|
<xsl:with-param name='name' select='"generator"' />
|
|
<xsl:with-param name='content' select='Rivista' />
|
|
</xsl:call-template>
|
|
<xsl:call-template name='metadata'>
|
|
<xsl:with-param name='name' select='"mimetype"' />
|
|
<xsl:with-param name='content' select='"application/atom+xml"' />
|
|
</xsl:call-template>
|
|
<title>
|
|
<xsl:choose>
|
|
<xsl:when test='atom:title and not(atom:title="") and count(atom:entry) > 1'>
|
|
<xsl:value-of select='atom:title'/>
|
|
</xsl:when>
|
|
<xsl:when test='atom:entry'>
|
|
<xsl:value-of select='atom:entry/atom:title'/>
|
|
</xsl:when>
|
|
<xsl:otherwise>Rivista</xsl:otherwise>
|
|
</xsl:choose>
|
|
</title>
|
|
<!-- TODO media='print' -->
|
|
<link rel='stylesheet' type='text/css' media='screen' href='/css/stylesheet.css'/>
|
|
<link rel='icon' type='image/svg+xml' href='/graphic/xmpp.svg'/>
|
|
<!-- whether language code is of direction right-to-left -->
|
|
<xsl:if test='$rtl'>
|
|
<link id='semitic' href='/css/stylesheet-rtl.css' rel='stylesheet' type='text/css' />
|
|
</xsl:if>
|
|
<script type='text/javascript' src='/script/marked.min.js'/>
|
|
<script type='text/javascript' src='/script/postprocess.js'/>
|
|
</head>
|
|
<body>
|
|
<div id='actions'>
|
|
<a id='follow' title='Subscribe the latest updates and news.'
|
|
onclick='window.open(location.href.replace(/^https?:/, "feed:"), "_self")'>
|
|
<!-- xsl:attribute name="href">
|
|
feed:<xsl:value-of select="atom:link[@rel='self']/@href" />
|
|
</xsl:attribute -->
|
|
Follow
|
|
</a>
|
|
<a id='subtome' title='Subscribe via SubToMe.'>
|
|
<xsl:attribute name='href'>
|
|
javascript:location.href='https://www.subtome.com/#/subscribe?feeds='+location.href;
|
|
</xsl:attribute>
|
|
<xsl:attribute name='onclick'>
|
|
(
|
|
function(btn){
|
|
var z=document.createElement('script');
|
|
document.subtomeBtn=btn;
|
|
z.src='https://www.subtome.com/load.js';document.body.appendChild(z);
|
|
}
|
|
)(this);
|
|
return false;
|
|
</xsl:attribute>
|
|
SubToMe
|
|
</a>
|
|
<a href='https://xmpp.org/about/technology-overview/'
|
|
title='Of the benefits of XMPP.'>
|
|
XMPP
|
|
</a>
|
|
<a href='https://join.jabber.network/#syndication@conference.movim.eu?join'
|
|
title='Syndictaion and PubSub.'>
|
|
Groupchat
|
|
</a>
|
|
<a href='https://aboutfeeds.com/'
|
|
title='Of the benefits of syndication feed.'
|
|
id='aboutfeeds'>
|
|
Help
|
|
</a>
|
|
</div>
|
|
<div id='feed'>
|
|
<div id='header'>
|
|
<!-- feed title -->
|
|
<h1 id='title'>
|
|
<xsl:choose>
|
|
<xsl:when test='atom:title and not(atom:title="") and count(atom:entry) > 1'>
|
|
<xsl:value-of select='atom:title'/>
|
|
</xsl:when>
|
|
<xsl:when test='atom:entry'>
|
|
<xsl:value-of select='atom:entry/atom:title'/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
No title
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</h1>
|
|
<!-- feed subtitle -->
|
|
<h2 id='subtitle'>
|
|
<xsl:choose>
|
|
<xsl:when test='atom:title and not(atom:title="") and count(atom:entry) > 1'>
|
|
<xsl:value-of select='atom:subtitle'/>
|
|
</xsl:when>
|
|
<xsl:when test='atom:entry'>
|
|
<xsl:attribute name='class'><xsl:text>date</xsl:text></xsl:attribute>
|
|
<xsl:value-of select='atom:entry/atom:updated'/>
|
|
</xsl:when>
|
|
<xsl:when test='atom:entry'>
|
|
<xsl:attribute name='class'><xsl:text>date</xsl:text></xsl:attribute>
|
|
<xsl:value-of select='atom:entry/atom:published'/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
Rivista XMPP Journal Publisher
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</h2>
|
|
</div>
|
|
<xsl:if test='count(atom:entry) > 1'>
|
|
<div id='menu'>
|
|
<h3>Latest Posts</h3>
|
|
<!-- xsl:for-each select='atom:entry[position() <21]' -->
|
|
<ol>
|
|
<xsl:for-each select='atom:entry[not(position() > 20)]'>
|
|
<li>
|
|
<xsl:element name='a'>
|
|
<xsl:attribute name='href'>
|
|
<xsl:text>#rivista-</xsl:text>
|
|
<xsl:value-of select='position()'/>
|
|
</xsl:attribute>
|
|
<xsl:choose>
|
|
<xsl:when test='string-length(atom:title) > 0'>
|
|
<xsl:value-of select='atom:title'/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
*** No Title ***
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:element>
|
|
</li>
|
|
</xsl:for-each>
|
|
</ol>
|
|
</div>
|
|
</xsl:if>
|
|
<div id='articles'>
|
|
<!-- feed entry -->
|
|
<xsl:choose>
|
|
<xsl:when test='atom:entry'>
|
|
<ul>
|
|
<xsl:for-each select='atom:entry[not(position() >20)]'>
|
|
<li>
|
|
<div class='entry'>
|
|
<!-- entry title -->
|
|
<h3 class='title'>
|
|
<xsl:element name='a'>
|
|
<xsl:attribute name='href'>
|
|
<xsl:choose>
|
|
<xsl:when test='atom:link[@rel="self"]'>
|
|
<xsl:value-of select='atom:link[@rel="self"]/@href'/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select='atom:link/@href'/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:attribute>
|
|
<xsl:attribute name='id'>
|
|
<xsl:text>rivista-</xsl:text>
|
|
<xsl:value-of select='position()'/>
|
|
</xsl:attribute>
|
|
<xsl:choose>
|
|
<xsl:when test='string-length(atom:title) > 0'>
|
|
<xsl:value-of select='atom:title'/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
*** No Title ***
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:element>
|
|
</h3>
|
|
<!-- geographic location -->
|
|
<xsl:choose>
|
|
<xsl:when test='geo:lat and geo:long'>
|
|
<xsl:variable name='lat' select='geo:lat'/>
|
|
<xsl:variable name='lng' select='geo:long'/>
|
|
<span class='geolocation'>
|
|
<a href='geo:{$lat},{$lng}'>📍</a>
|
|
</span>
|
|
</xsl:when>
|
|
<xsl:when test='geo:Point'>
|
|
<xsl:variable name='lat' select='geo:Point/geo:lat'/>
|
|
<xsl:variable name='lng' select='geo:Point/geo:long'/>
|
|
<span class='geolocation'>
|
|
<a href='geo:{$lat},{$lng}'>📍</a>
|
|
</span>
|
|
</xsl:when>
|
|
<xsl:when test='georss:point'>
|
|
<xsl:variable name='lat' select='substring-before(georss:point, " ")'/>
|
|
<xsl:variable name='lng' select='substring-after(georss:point, " ")'/>
|
|
<xsl:variable name='name' select='georss:featurename'/>
|
|
<span class='geolocation'>
|
|
<a href='geo:{$lat},{$lng}' title='{$name}'>📍</a>
|
|
</span>
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
<!-- entry date -->
|
|
<xsl:element name='h4'>
|
|
<xsl:choose>
|
|
<xsl:when test='atom:updated'>
|
|
<xsl:attribute name='class'>
|
|
<xsl:text>updated</xsl:text>
|
|
</xsl:attribute>
|
|
<xsl:value-of select='atom:updated'/>
|
|
</xsl:when>
|
|
<xsl:when test='atom:published'>
|
|
<xsl:attribute name='class'>
|
|
<xsl:text>published</xsl:text>
|
|
</xsl:attribute>
|
|
<xsl:value-of select='atom:published'/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<h4 class='warning atom1 published'></h4>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:element>
|
|
<!-- entry author -->
|
|
<xsl:if test='atom:author'>
|
|
<h4 class='author'>
|
|
<xsl:text>By </xsl:text>
|
|
<xsl:choose>
|
|
<xsl:when test='atom:author/atom:email'>
|
|
<xsl:element name='a'>
|
|
<xsl:attribute name='href'>
|
|
<xsl:text>mailto:</xsl:text>
|
|
<xsl:value-of select='atom:author/atom:email'/>
|
|
</xsl:attribute>
|
|
<xsl:attribute name='title'>
|
|
<xsl:text>Send an Email to </xsl:text>
|
|
<xsl:value-of select='atom:author/atom:email'/>
|
|
</xsl:attribute>
|
|
<xsl:value-of select='atom:author/atom:name'/>
|
|
</xsl:element>
|
|
</xsl:when>
|
|
<xsl:when test='atom:author/atom:uri'>
|
|
<xsl:element name='a'>
|
|
<xsl:attribute name='href'>
|
|
<xsl:value-of select='atom:author/atom:uri'/>
|
|
</xsl:attribute>
|
|
<xsl:attribute name='title'>
|
|
<xsl:value-of select='atom:author/atom:summary'/>
|
|
</xsl:attribute>
|
|
<xsl:value-of select='atom:author/atom:name'/>
|
|
</xsl:element>
|
|
</xsl:when>
|
|
<xsl:when test='atom:author/atom:name'>
|
|
<xsl:value-of select='atom:author/atom:name'/>
|
|
</xsl:when>
|
|
<xsl:when test='atom:uri'>
|
|
<xsl:value-of select='atom:uri'/>
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
</h4>
|
|
</xsl:if>
|
|
<h5 class='related'>
|
|
<xsl:if test='atom:link[@rel="alternate" and @type="x-scheme-handler/xmpp"]'>
|
|
<xsl:element name='a'>
|
|
<xsl:attribute name='href'>
|
|
<xsl:value-of select='atom:link[@rel="alternate" and @type="x-scheme-handler/xmpp"]/@href'/>
|
|
</xsl:attribute>
|
|
<xsl:attribute name='class'>
|
|
<xsl:text>rivista-jabber</xsl:text>
|
|
</xsl:attribute>
|
|
💡️ Source
|
|
</xsl:element>
|
|
<xsl:element name='a'>
|
|
<xsl:attribute name='href'>
|
|
<xsl:value-of select='atom:link[@rel="alternate" and @type="x-scheme-handler/xmpp"]/@href'/>
|
|
</xsl:attribute>
|
|
(XMPP)
|
|
</xsl:element>
|
|
</xsl:if>
|
|
<xsl:if test='atom:link[@rel="contact"]'>
|
|
<xsl:element name='a'>
|
|
<xsl:attribute name='href'>
|
|
<xsl:value-of select='atom:link[@rel="contact"]/@href'/>
|
|
</xsl:attribute>
|
|
<xsl:attribute name='class'>
|
|
<xsl:text>contact-uri</xsl:text>
|
|
</xsl:attribute>
|
|
🪪️ Contact
|
|
</xsl:element>
|
|
</xsl:if>
|
|
<xsl:if test='atom:link[@rel="replies"]'>
|
|
<xsl:element name='a'>
|
|
<xsl:attribute name='href'>
|
|
<xsl:value-of select='atom:link[@rel="replies"]/@href'/>
|
|
</xsl:attribute>
|
|
<xsl:attribute name='class'>
|
|
<xsl:text>rivista-replies</xsl:text>
|
|
</xsl:attribute>
|
|
💬 Discussion
|
|
</xsl:element>
|
|
<xsl:element name='a'>
|
|
<xsl:attribute name='href'>
|
|
<xsl:value-of select='atom:link[@rel="replies"]/@href'/>
|
|
</xsl:attribute>
|
|
(XMPP)
|
|
</xsl:element>
|
|
</xsl:if>
|
|
<xsl:if test='atom:link[@rel="alternate" and @type="text/html"]'>
|
|
<xsl:element name='a'>
|
|
<xsl:attribute name='href'>
|
|
<xsl:value-of select='atom:link[@rel="alternate" and @type="text/html"]/@href'/>
|
|
</xsl:attribute>
|
|
📜 HTML
|
|
</xsl:element>
|
|
</xsl:if>
|
|
<xsl:if test='atom:link[@rel="related" and @type="text/html"]'>
|
|
<xsl:element name='a'>
|
|
<xsl:attribute name='href'>
|
|
<xsl:value-of select='atom:link[@rel="related" and @type="text/html"]/@href'/>
|
|
</xsl:attribute>
|
|
📜 HTML (Related)
|
|
</xsl:element>
|
|
</xsl:if>
|
|
</h5>
|
|
<!-- entry content -->
|
|
<xsl:if test='atom:content or atom:summary'>
|
|
<div class='content'>
|
|
<xsl:choose>
|
|
<xsl:when test='atom:summary[contains(@type,"text")]'>
|
|
<xsl:attribute name='type'>
|
|
<xsl:value-of select='atom:summary/@type'/>
|
|
</xsl:attribute>
|
|
<xsl:value-of select='atom:summary'/>
|
|
</xsl:when>
|
|
<xsl:when test='atom:summary[contains(@type,"html")]'>
|
|
<xsl:attribute name='type'>
|
|
<xsl:value-of select='atom:summary/@type'/>
|
|
</xsl:attribute>
|
|
<xsl:value-of select='atom:summary' disable-output-escaping='yes'/>
|
|
</xsl:when>
|
|
<xsl:when test='atom:summary[contains(@type,"base64")]'>
|
|
<!-- TODO add xsl:template to handle inline media -->
|
|
</xsl:when>
|
|
<xsl:when test='atom:content[contains(@type,"text")]'>
|
|
<xsl:attribute name='type'>
|
|
<xsl:value-of select='atom:content/@type'/>
|
|
</xsl:attribute>
|
|
<xsl:value-of select='atom:content'/>
|
|
</xsl:when>
|
|
<xsl:when test='atom:content[contains(@type,"html")]'>
|
|
<xsl:attribute name='type'>
|
|
<xsl:value-of select='atom:content/@type'/>
|
|
</xsl:attribute>
|
|
<xsl:value-of select='atom:content' disable-output-escaping='yes'/>
|
|
</xsl:when>
|
|
<xsl:when test='atom:content[contains(@type,"base64")]'>
|
|
<!-- TODO add xsl:template to handle inline media -->
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:choose>
|
|
<xsl:when test='atom:summary and not(atom:summary="")'>
|
|
<xsl:value-of select='atom:summary' disable-output-escaping='yes'/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select='atom:content' disable-output-escaping='yes'/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</div>
|
|
</xsl:if>
|
|
<!-- entry tags -->
|
|
<xsl:if test='atom:category/@term'>
|
|
<h4>Tags</h4>
|
|
<span class='tags'>
|
|
<xsl:for-each select='atom:category'>
|
|
<xsl:element name='div'>
|
|
<xsl:value-of select='@term'/>
|
|
</xsl:element>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
<!-- entry enclosure -->
|
|
<xsl:if test='atom:link[@rel="enclosure"]'>
|
|
<h4>Media</h4>
|
|
<span class='enclosures' title='Right-click and Save link as…'>
|
|
<xsl:for-each select='atom:link[@rel="enclosure"]'>
|
|
<div class='enclosure' title='Right-click and Save link as…'>
|
|
<xsl:element name='span'>
|
|
<xsl:attribute name='icon'>
|
|
<xsl:value-of select='substring-before(@type,"/")'/>
|
|
</xsl:attribute>
|
|
</xsl:element>
|
|
<xsl:element name='a'>
|
|
<xsl:attribute name='href'>
|
|
<xsl:value-of select='@href'/>
|
|
</xsl:attribute>
|
|
<xsl:attribute name='download'/>
|
|
<xsl:call-template name='extract-filename'>
|
|
<xsl:with-param name='url' select='@href' />
|
|
</xsl:call-template>
|
|
</xsl:element>
|
|
<xsl:element name='span'>
|
|
<xsl:attribute name='class'>
|
|
<xsl:value-of select='substring-before(@type,"/")'/>
|
|
</xsl:attribute>
|
|
</xsl:element>
|
|
<xsl:if test='@length > 0'>
|
|
<xsl:call-template name='transform-filesize'>
|
|
<xsl:with-param name='length' select='@length' />
|
|
</xsl:call-template>
|
|
</xsl:if>
|
|
<br/>
|
|
</div>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
</div>
|
|
<!-- entry id -->
|
|
<xsl:if test='not(atom:id)'>
|
|
<div class='warning atom1 id'>No entry ID</div>
|
|
</xsl:if>
|
|
</li>
|
|
</xsl:for-each>
|
|
</ul>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<ul>
|
|
<li>
|
|
<div class='entry'>
|
|
<h3 class='title'>
|
|
<a href='javascript:alert("Please check that the mother PubSub node is populated with content.")'>
|
|
No content
|
|
</a>
|
|
</h3>
|
|
<h4>This entry is empty</h4>
|
|
<div class='content'>Please check that the mother PubSub node is populated with content.</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</div>
|
|
</div>
|
|
<div id='references'>
|
|
<a href='https://joinjabber.org/'
|
|
title='An Inclusive Space On The Jabber Network.'>
|
|
JoinJabber
|
|
</a>
|
|
<a href='https://libervia.org/'
|
|
title='The Universal Communication Ecosystem.'>
|
|
Libervia
|
|
</a>
|
|
<a href='https://join.movim.eu/'
|
|
title='The Social Platform Shaped For Your Community.'>
|
|
Movim
|
|
</a>
|
|
<a href='https://git.xmpp-it.net/sch/Rivista'
|
|
title='A Journal Publisher And Browser For XMPP.'>
|
|
Rivista
|
|
</a>
|
|
<a href='https://git.xmpp-it.net/sch/Blasta'
|
|
title='A Social Bookmark Manager For XMPP.'>
|
|
Blasta
|
|
</a>
|
|
<a href='https://github.com/SeveFP/Reeder'
|
|
title='An XMPP-Based Feed Reader.'>
|
|
Reeder
|
|
</a>
|
|
<a href='https://modernxmpp.org/'
|
|
title='A Project To Improve The Quality Of User-To-User Messaging Applications That Use XMPP.'>
|
|
Modern
|
|
</a>
|
|
<a href='https://xmpp.org/'
|
|
title='The Universal Messaging Standard.'>
|
|
XMPP
|
|
</a>
|
|
<a href='https://xmpp.org/extensions/xep-0060.html'
|
|
title='XEP-0060: Publish-Subscribe.'>
|
|
PubSub
|
|
</a>
|
|
</div>
|
|
<!-- note -->
|
|
<p id='note'>
|
|
This an Atom document which can also be viewed with
|
|
a Syndication Feed Reader (also referred to as News Reader
|
|
or RSS Reader) which provides automated news updates and
|
|
notifications on desktop and mobile.
|
|
<span id="selection-link">Click here</span> for a
|
|
selection of software and pick the ones that would fit
|
|
to you best!
|
|
</p>
|
|
<p id='small'>
|
|
<i>
|
|
This ASF (Atom Syndication Format)
|
|
document is conveyed as an XHTML document.
|
|
This document was produced by an
|
|
XSLT <a href="xsl/atom.xsl">stylesheet</a>.
|
|
XSLT is a powerful technology which transforms XML
|
|
documents into HTML, JSON, PDF, Text XHTML, and
|
|
(modified) XML documents;
|
|
<a href="https://www.w3.org/Style/XSL/">Learn more</a>
|
|
about The Extensible Stylesheet Language Family (XSL).
|
|
</i>
|
|
</p>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|