Improve cache handling;

Order items descendingly.
This commit is contained in:
Schimon Jehudah, Adv. 2024-09-04 15:11:45 +03:00
parent ad34af72ff
commit b5762e90ef
3 changed files with 66 additions and 30 deletions

View file

@ -246,6 +246,7 @@ xmlns:atom='http://www.w3.org/2005/Atom'>
<!-- 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'>
@ -272,9 +273,11 @@ xmlns:atom='http://www.w3.org/2005/Atom'>
</xsl:element>
</xsl:when>
<xsl:when test='atom:author/atom:name'>
<xsl:text>By </xsl:text>
<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>