Skip to content
Snippets Groups Projects
index.html.xslt 12.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
                    xmlns:atom="http://www.w3.org/2005/Atom"
                    xmlns:xhtml="http://www.w3.org/1999/xhtml"
                    xmlns:planet="http://planet.intertwingly.net/"
                    xmlns="http://www.w3.org/1999/xhtml"
                    exclude-result-prefixes="atom planet xhtml">
    
      <xsl:output method="xml" omit-xml-declaration="yes"/>
    
      <xsl:template match="atom:feed">
        <xsl:text disable-output-escaping="yes">&lt;!DOCTYPE html&gt;</xsl:text>
        <xsl:text>&#10;</xsl:text>
        <html xmlns="http://www.w3.org/1999/xhtml">
    
          <!-- head -->
          <xsl:text>&#10;&#10;</xsl:text>
          <head>
            <link rel="stylesheet" href="default.css" type="text/css" />
            <title><xsl:value-of select="atom:title"/></title>
            <meta name="robots" content="noindex,nofollow" />
            <meta name="generator" content="{atom:generator}" />
            <xsl:if test="atom:link[@rel='self']">
              <link rel="alternate" href="{atom:link[@rel='self']/@href}"
                title="{atom:title}" type="{atom:link[@rel='self']/@type}" />
            </xsl:if>
            <link rel="shortcut icon" href="/favicon.ico" />
            <script type="text/javascript" src="personalize.js">
              <xsl:comment><!--HTML Compatibility--></xsl:comment>
            </script>
          </head>
    
          <xsl:text>&#10;&#10;</xsl:text>
          <body>
            <xsl:text>&#10;</xsl:text>
            <h1><xsl:value-of select="atom:title"/></h1>
    
            <xsl:text>&#10;&#10;</xsl:text>
            <div id="body">
              <xsl:apply-templates select="atom:entry"/>
              <xsl:text>&#10;&#10;</xsl:text>
            </div>
    
            <h1>Footnotes</h1>
            <xsl:text>&#10;&#10;</xsl:text>
    
            <div id="sidebar">
              <h2>Info</h2>
    
              <dl>
                <dt>Last updated:</dt>
                <dd>
                  <time datetime="{atom:updated}" title="GMT">
                    <xsl:value-of select="atom:updated/@planet:format"/>
                  </time>
                </dd>
                <dt>Powered by:</dt>
                <dd>
                  <a href="http://intertwingly.net/code/venus/">
                    <img src="images/venus.png" width="80" height="15"
                      alt="Venus" border="0"/>
                  </a>
                </dd>
                <dt>Export:</dt>
                <dd>
                  <ul>
                    <li>
                      <a href="opml.xml">
                        <img src="images/opml.png" alt="OPML"/>
                      </a>
                    </li>
                    <li>
                      <a href="foafroll.xml">
                        <img src="images/foaf.png" alt="FOAF"/>
                      </a>
                    </li>
                  </ul>
                </dd>
              </dl>
            </div>
    
            <xsl:text>&#10;&#10;</xsl:text>
            <div id="footer">
              <h2>Subscriptions</h2>
              <ul>
                <xsl:for-each select="planet:source">
                  <xsl:sort select="planet:name"/>
                  <xsl:variable name="id" select="atom:id"/>
                  <xsl:variable name="posts"
                    select="/atom:feed/atom:entry[atom:source/atom:id = $id]"/>
                  <xsl:text>&#10;</xsl:text>
                  <li>
                    <!-- icon -->
                    <a title="subscribe">
                      <xsl:choose>
                        <xsl:when test="planet:http_location">
                          <xsl:attribute name="href">
                            <xsl:value-of select="planet:http_location"/>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:when test="atom:link[@rel='self']/@href">
                          <xsl:attribute name="href">
                            <xsl:value-of select="atom:link[@rel='self']/@href"/>
                          </xsl:attribute>
                        </xsl:when>
                      </xsl:choose>
                      <img src="images/feed-icon-10x10.png" alt="(feed)"/>
                    </a>
                    <xsl:text> </xsl:text>
    
                    <!-- name -->
                    <a>
                      <xsl:if test="atom:link[@rel='alternate']/@href">
                        <xsl:attribute name="href">
                          <xsl:value-of select="atom:link[@rel='alternate']/@href"/>
                        </xsl:attribute>
                      </xsl:if>
    
                      <xsl:choose>
                        <xsl:when test="planet:message">
                          <xsl:attribute name="class">
                            <xsl:if test="$posts">active message</xsl:if>
                            <xsl:if test="not($posts)">message</xsl:if>
                          </xsl:attribute>
                          <xsl:attribute name="title">
                            <xsl:value-of select="planet:message"/>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:when test="atom:title">
                          <xsl:attribute name="title">
                            <xsl:value-of select="atom:title"/>
                          </xsl:attribute>
                          <xsl:if test="$posts">
                            <xsl:attribute name="class">active</xsl:attribute>
                          </xsl:if>
                        </xsl:when>
                      </xsl:choose>
                      <xsl:value-of select="planet:name"/>
                    </a>
    
                    <xsl:if test="$posts[string-length(atom:title) &gt; 0]">
                      <ul>
                        <xsl:for-each select="$posts">
                          <xsl:if test="string-length(atom:title) &gt; 0">
                            <li>
                              <a href="{atom:link[@rel='alternate']/@href}">
                                <xsl:if test="atom:title/@xml:lang != @xml:lang">
                                  <xsl:attribute name="xml:lang"
                                    select="{atom:title/@xml:lang}"/>
                                </xsl:if>
                                <xsl:value-of select="atom:title"/>
                              </a>
                            </li>
                          </xsl:if>
                        </xsl:for-each>
                      </ul>
                    </xsl:if>
                  </li>
                </xsl:for-each>
                <xsl:text>&#10;</xsl:text>
              </ul>
            </div>
    
            <xsl:text>&#10;</xsl:text>
          </body>
        </html>
      </xsl:template>
    
      <xsl:template match="atom:entry">
        <!-- date header -->
        <xsl:variable name="date" select="substring(atom:updated,1,10)"/>
        <xsl:if test="not(preceding-sibling::atom:entry
          [substring(atom:updated,1,10) = $date])">
          <xsl:text>&#10;&#10;</xsl:text>
          <h2>
            <time datetime="{$date}">
              <xsl:value-of select="substring-before(atom:updated/@planet:format,', ')"/>
              <xsl:text>, </xsl:text>
              <xsl:value-of select="substring-before(substring-after(atom:updated/@planet:format,', '), ' ')"/>
            </time>
          </h2>
        </xsl:if>
    
        <xsl:text>&#10;&#10;</xsl:text>
        <div class="news {atom:source/planet:css-id}">
    
          <xsl:if test="@xml:lang">
            <xsl:attribute name="xml:lang">
              <xsl:value-of select="@xml:lang"/>
            </xsl:attribute>
          </xsl:if>
    
          <!-- entry title -->
          <xsl:text>&#10;</xsl:text>
          <h3>
            <xsl:if test="atom:source/atom:icon">
              <img src="{atom:source/atom:icon}" class="icon"/>
            </xsl:if>
            <a>
              <xsl:if test="atom:source/atom:link[@rel='alternate']/@href">
                <xsl:attribute name="href">
                  <xsl:value-of
                    select="atom:source/atom:link[@rel='alternate']/@href"/>
                </xsl:attribute>
              </xsl:if>
    
              <xsl:attribute name="title">
                <xsl:value-of select="atom:source/atom:title"/>
              </xsl:attribute>
              <xsl:value-of select="atom:source/planet:name"/>
            </a>
            <xsl:if test="string-length(atom:title) &gt; 0">
              <xsl:text>&#x2014;</xsl:text>
              <a href="{atom:link[@rel='alternate']/@href}">
                <xsl:if test="atom:title/@xml:lang != @xml:lang">
                  <xsl:attribute name="xml:lang" select="{atom:title/@xml:lang}"/>
                </xsl:if>
                <xsl:value-of select="atom:title"/>
              </a>
            </xsl:if>
          </h3>
    
          <!-- entry content -->
          <xsl:text>&#10;</xsl:text>
          <xsl:choose>
            <xsl:when test="atom:content">
              <xsl:apply-templates select="atom:content"/>
            </xsl:when>
            <xsl:otherwise>
              <xsl:apply-templates select="atom:summary"/>
            </xsl:otherwise>
          </xsl:choose>
    
          <!-- entry footer -->
          <xsl:text>&#10;</xsl:text>
          <div class="permalink">
            <xsl:if test="atom:link[@rel='license'] or
                          atom:source/atom:link[@rel='license'] or
                          atom:rights or atom:source/atom:rights">
              <a>
                <xsl:if test="atom:source/atom:link[@rel='license']/@href">
                  <xsl:attribute name="rel">license</xsl:attribute>
                  <xsl:attribute name="href">
                    <xsl:value-of select="atom:source/atom:link[@rel='license']/@href"/>
                  </xsl:attribute>
                </xsl:if>
                <xsl:if test="atom:link[@rel='license']/@href">
                  <xsl:attribute name="rel">license</xsl:attribute>
                  <xsl:attribute name="href">
                    <xsl:value-of select="atom:link[@rel='license']/@href"/>
                  </xsl:attribute>
                </xsl:if>
                <xsl:if test="atom:source/atom:rights">
                  <xsl:attribute name="title">
                    <xsl:value-of select="atom:source/atom:rights"/>
                  </xsl:attribute>
                </xsl:if>
                <xsl:if test="atom:rights">
                  <xsl:attribute name="title">
                    <xsl:value-of select="atom:rights"/>
                  </xsl:attribute>
                </xsl:if>
                <xsl:text>&#169;</xsl:text>
              </a>
              <xsl:text> </xsl:text>
            </xsl:if>
            <a href="{atom:link[@rel='alternate']/@href}">
              <xsl:choose>
                <xsl:when test="atom:author/atom:name">
                  <xsl:if test="not(atom:link[@rel='license'] or
                                    atom:source/atom:link[@rel='license'] or
                                    atom:rights or atom:source/atom:rights)">
                    <xsl:text>by </xsl:text>
                  </xsl:if>
                  <xsl:value-of select="atom:author/atom:name"/>
                  <xsl:text> at </xsl:text>
                </xsl:when>
                <xsl:when test="atom:source/atom:author/atom:name">
                  <xsl:if test="not(atom:link[@rel='license'] or
                                    atom:source/atom:link[@rel='license'] or
                                    atom:rights or atom:source/atom:rights)">
                    <xsl:text>by </xsl:text>
                  </xsl:if>
                  <xsl:value-of select="atom:source/atom:author/atom:name"/>
                  <xsl:text> at </xsl:text>
                </xsl:when>
              </xsl:choose>
              <time datetime="{atom:updated}" title="GMT">
                <xsl:value-of select="atom:updated/@planet:format"/>
              </time>
            </a>
          </div>
        </div>
    
      </xsl:template>
    
      <!-- xhtml content -->
      <xsl:template match="atom:content/xhtml:div | atom:summary/xhtml:div">
        <xsl:copy>
          <xsl:if test="../@xml:lang and not(../@xml:lang = ../../@xml:lang)">
            <xsl:attribute name="xml:lang">
              <xsl:value-of select="../@xml:lang"/>
            </xsl:attribute>
          </xsl:if>
          <xsl:attribute name="class">content</xsl:attribute>
          <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
      </xsl:template>
    
      <!-- plain text content -->
      <xsl:template match="atom:content/text() | atom:summary/text()">
        <div class="content" xmlns="http://www.w3.org/1999/xhtml">
          <xsl:if test="../@xml:lang and not(../@xml:lang = ../../@xml:lang)">
            <xsl:attribute name="xml:lang">
              <xsl:value-of select="../@xml:lang"/>
            </xsl:attribute>
          </xsl:if>
          <xsl:copy-of select="."/>
        </div>
      </xsl:template>
    
      <!-- Remove stray atom elements -->
      <xsl:template match="atom:*">
        <xsl:apply-templates/>
      </xsl:template>
    
      <!-- Feedburner detritus -->
      <xsl:template match="xhtml:div[@class='feedflare']"/>
    
      <!-- Strip site meter -->
      <xsl:template match="xhtml:div[comment()[. = ' Site Meter ']]"/>
    
      <!-- pass through everything else -->
      <xsl:template match="@*|node()">
        <xsl:copy>
          <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
      </xsl:template>
    
    </xsl:stylesheet>