diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-06-18 23:56:32 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-06-18 23:56:32 +0800 |
commit | 13699e023a50f88055f24c0230c28a7163c8356d (patch) | |
tree | c67f9dd787efec9e7210eb48c9a94b4c296004c0 /libempathy/empathy-log-manager.xsl | |
parent | d345fc72a9ff9ce2af454f428b56f78cb611416a (diff) | |
download | gsoc2013-empathy-13699e023a50f88055f24c0230c28a7163c8356d.tar gsoc2013-empathy-13699e023a50f88055f24c0230c28a7163c8356d.tar.gz gsoc2013-empathy-13699e023a50f88055f24c0230c28a7163c8356d.tar.bz2 gsoc2013-empathy-13699e023a50f88055f24c0230c28a7163c8356d.tar.lz gsoc2013-empathy-13699e023a50f88055f24c0230c28a7163c8356d.tar.xz gsoc2013-empathy-13699e023a50f88055f24c0230c28a7163c8356d.tar.zst gsoc2013-empathy-13699e023a50f88055f24c0230c28a7163c8356d.zip |
remove old logger files
Diffstat (limited to 'libempathy/empathy-log-manager.xsl')
-rw-r--r-- | libempathy/empathy-log-manager.xsl | 148 |
1 files changed, 0 insertions, 148 deletions
diff --git a/libempathy/empathy-log-manager.xsl b/libempathy/empathy-log-manager.xsl deleted file mode 100644 index a934f3ab3..000000000 --- a/libempathy/empathy-log-manager.xsl +++ /dev/null @@ -1,148 +0,0 @@ -<xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> - - <xsl:output method="html" encoding="utf-8" indent="yes"/> - - <xsl:template match="/"> - <html> - <head> - <style type="text/css"> - <xsl:text> - body { - background: #fff; - font-family: Verdana, "Bitstream Vera Sans", Sans-Serif; - font-size: 10pt; - } - .stamp { - color: #999; - } - .top-day-stamp { - color: #999; - text-align: center; - margin-bottom: 1em; - } - .new-day-stamp { - color: #999; - text-align: center; - margin-bottom: 1em; - margin-top: 1em; - } - .nick { - color: rgb(54,100, 139); - } - .nick-self { - color: rgb(46,139,87); - } - .nick-highlight { - color: rgb(205,92,92); - } - </xsl:text> - </style> - <title><xsl:value-of select="$title"/></title> - </head> - <body> - <xsl:apply-templates/> - </body> - </html> - </xsl:template> - - <xsl:template name="get-day"> - <xsl:param name="stamp"/> - <xsl:value-of select="substring ($stamp, 1, 8)"/> - </xsl:template> - - <xsl:template name="format-stamp"> - <xsl:param name="stamp"/> - <xsl:variable name="hour" select="substring ($stamp, 10, 2)"/> - <xsl:variable name="min" select="substring ($stamp, 13, 2)"/> - - <xsl:value-of select="$hour"/>:<xsl:value-of select="$min"/> - </xsl:template> - - <xsl:template name="format-day-stamp"> - <xsl:param name="stamp"/> - <xsl:variable name="year" select="substring ($stamp, 1, 4)"/> - <xsl:variable name="month" select="substring ($stamp, 5, 2)"/> - <xsl:variable name="day" select="substring ($stamp, 7, 2)"/> - - <xsl:value-of select="$year"/>-<xsl:value-of select="$month"/>-<xsl:value-of select="$day"/> - </xsl:template> - - <xsl:template name="header"> - <xsl:param name="stamp"/> - <div class="top-day-stamp"> - <xsl:call-template name="format-day-stamp"> - <xsl:with-param name="stamp" select="@time"/> - </xsl:call-template> - </div> - </xsl:template> - - <xsl:template match="a"> - <xsl:text disable-output-escaping="yes"><a href="</xsl:text> - - <xsl:value-of disable-output-escaping="yes" select="@href"/> - - <xsl:text disable-output-escaping="yes">"></xsl:text> - - <xsl:value-of select="@href"/> - <xsl:text disable-output-escaping="yes"></a></xsl:text> - </xsl:template> - - <xsl:template match="log"> - - <div class="top-day-stamp"> - <xsl:call-template name="format-day-stamp"> - <xsl:with-param name="stamp" select="//message[1]/@time"/> - </xsl:call-template> - </div> - - <xsl:for-each select="*"> - - <xsl:variable name="prev-time"> - <xsl:call-template name="get-day"> - <xsl:with-param name="stamp" select="preceding-sibling::*[1]/@time"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="this-time"> - <xsl:call-template name="get-day"> - <xsl:with-param name="stamp" select="@time"/> - </xsl:call-template> - </xsl:variable> - - <xsl:if test="$prev-time < $this-time"> - <div class="new-day-stamp"> - <xsl:call-template name="format-day-stamp"> - <xsl:with-param name="stamp" select="@time"/> - </xsl:call-template> - </div> - </xsl:if> - - <xsl:variable name="stamp"> - <xsl:call-template name="format-stamp"> - <xsl:with-param name="stamp" select="@time"/> - </xsl:call-template> - </xsl:variable> - - <span class="stamp"> - <xsl:value-of select="$stamp"/> - </span> - - <xsl:variable name="nick-class"> - <xsl:choose> - <xsl:when test="not(string(@id))">nick-self</xsl:when> - <xsl:otherwise>nick</xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <span class="{$nick-class}"> - <<xsl:value-of select="@name"/>> - </span> - - <xsl:apply-templates/> - <br/> - - </xsl:for-each> - - </xsl:template> - -</xsl:stylesheet> |