[snowy] Add Tomboy's note xsl, and remove version numbers from jquery filenames



commit 9a8054aeae0f94e54c7ba2cae8df2b2c510e8800
Author: Brad Taylor <brad getcoded net>
Date:   Fri Apr 24 11:13:12 2009 -0400

    Add Tomboy's note xsl, and remove version numbers from jquery filenames
---
 site_media/js/{jquery-1.3.2.js => jquery.js}       |    0
 .../js/{jquery-1.3.2.min.js => jquery.min.js}      |    0
 tomboy-note.xsl                                    |  182 ++++++++++++++++++++
 3 files changed, 182 insertions(+), 0 deletions(-)

diff --git a/site_media/js/jquery-1.3.2.js b/site_media/js/jquery.js
similarity index 100%
rename from site_media/js/jquery-1.3.2.js
rename to site_media/js/jquery.js
diff --git a/site_media/js/jquery-1.3.2.min.js b/site_media/js/jquery.min.js
similarity index 100%
rename from site_media/js/jquery-1.3.2.min.js
rename to site_media/js/jquery.min.js
diff --git a/tomboy-note.xsl b/tomboy-note.xsl
new file mode 100644
index 0000000..0b0b55d
--- /dev/null
+++ b/tomboy-note.xsl
@@ -0,0 +1,182 @@
+<?xml version='1.0'?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
+		xmlns:tomboy="http://beatniksoftware.com/tomboy";
+		xmlns:size="http://beatniksoftware.com/tomboy/size";
+		xmlns:link="http://beatniksoftware.com/tomboy/link";
+                version='1.0'>
+
+<xsl:output method="html" indent="no" />
+<xsl:preserve-space elements="*" />
+
+<xsl:param name="font" />
+<xsl:param name="export-linked" />
+<xsl:param name="export-linked-all" />
+<xsl:param name="root-note" />
+
+<xsl:param name="newline" select="'&#xA;'" />
+
+<xsl:template match="/">
+	<html>
+	<head>
+	<title><xsl:value-of select="/tomboy:note/tomboy:title" /></title>
+	<style type="text/css">
+	body { <xsl:value-of select="$font" /> }
+	h1 { font-size: xx-large;
+     	     font-weight: bold;
+     	     border-bottom: 1px solid black; }
+	div.note { overflow: auto;
+		   position: relative;
+		   display: block;
+		   padding: 5pt;
+		   margin: 5pt; 
+		   white-space: -moz-pre-wrap; /* Mozilla */
+ 	      	   white-space: -pre-wrap;     /* Opera 4 - 6 */
+ 	      	   white-space: -o-pre-wrap;   /* Opera 7 */
+ 	      	   white-space: pre-wrap;      /* CSS3 */
+ 	      	   word-wrap: break-word;      /* IE 5.5+ */ }
+	</style>
+	</head>
+	<body>
+
+	<xsl:apply-templates select="tomboy:note"/>
+
+	</body>
+	</html>
+</xsl:template>
+
+<xsl:template match="text()">
+   <xsl:call-template name="softbreak"/>
+</xsl:template>
+
+<xsl:template name="softbreak">
+	<xsl:param name="text" select="."/>
+	<xsl:choose>
+		<xsl:when test="contains($text, '&#x2028;')">
+			<xsl:value-of select="substring-before($text, '&#x2028;')"/>
+			<br/>
+			<xsl:call-template name="softbreak">
+				<xsl:with-param name="text" select="substring-after($text, '&#x2028;')"/>
+			</xsl:call-template>
+		</xsl:when>
+		
+		<xsl:otherwise>
+			<xsl:value-of select="$text"/>
+		</xsl:otherwise>
+	</xsl:choose>
+</xsl:template>
+
+<xsl:template match="tomboy:note">
+	<xsl:apply-templates select="tomboy:text"/>
+</xsl:template>
+
+<xsl:template match="tomboy:text">
+	<div class="note" 
+	     id="{/tomboy:note/tomboy:title}">
+		<a name="#{/tomboy:note/tomboy:title}" />
+		<xsl:apply-templates select="node()" />
+	</div>
+	
+	<xsl:if test="$export-linked and ((not($export-linked-all) and /tomboy:note/tomboy:title/text() = $root-note) or $export-linked-all)">
+		<xsl:for-each select=".//link:internal/text()">
+			<!-- Load in the linked note's XML for processing. -->
+			<xsl:apply-templates select="document(.)/node()"/>
+		</xsl:for-each>
+	</xsl:if>
+</xsl:template>
+
+<xsl:template match="tomboy:note/tomboy:text/*[1]/text()[1]">
+	<h1><xsl:value-of select="substring-before(., $newline)"/></h1>
+	<xsl:value-of select="substring-after(., $newline)"/>
+</xsl:template>
+
+<xsl:template match="tomboy:bold">
+	<b><xsl:apply-templates select="node()"/></b>
+</xsl:template>
+
+<xsl:template match="tomboy:italic">
+	<i><xsl:apply-templates select="node()"/></i>
+</xsl:template>
+
+<xsl:template match="tomboy:strikethrough">
+	<strike><xsl:apply-templates select="node()"/></strike>
+</xsl:template>
+
+<xsl:template match="tomboy:highlight">
+	<span style="background:yellow"><xsl:apply-templates select="node()"/></span>
+</xsl:template>
+
+<xsl:template match="tomboy:datetime">
+	<span style="font-style:italic;font-size:small;color:#888A85">
+		<xsl:apply-templates select="node()"/>
+	</span>
+</xsl:template>
+
+<xsl:template match="size:small">
+	<span style="font-size:small"><xsl:apply-templates select="node()"/></span>
+</xsl:template>
+
+<xsl:template match="size:large">
+	<span style="font-size:large"><xsl:apply-templates select="node()"/></span>
+</xsl:template>
+
+<xsl:template match="size:huge">
+	<span style="font-size:xx-large"><xsl:apply-templates select="node()"/></span>
+</xsl:template>
+
+<xsl:template match="link:broken">
+	<span style="color:#555753;text-decoration:underline">
+		<xsl:value-of select="node()"/>
+	</span>
+</xsl:template>
+
+<xsl:template match="link:internal">
+	<a style="color:#204A87" href="#{node()}">
+		<xsl:value-of select="node()"/>
+	</a>
+</xsl:template>
+
+<xsl:template match="link:url">
+	<a style="color:#3465A4" href="{node()}"><xsl:value-of select="node()"/></a>
+</xsl:template>
+
+<xsl:template match="tomboy:list">
+	<ul>
+		<xsl:apply-templates select="tomboy:list-item" />
+	</ul>
+</xsl:template>
+
+<xsl:template match="tomboy:list-item">
+	<li>
+		<xsl:if test="normalize-space(text()) = ''">
+			<xsl:attribute name="style">list-style-type: none</xsl:attribute>
+		</xsl:if>
+		<xsl:attribute name="dir">
+			<xsl:value-of select="@dir"/>
+		</xsl:attribute>
+		<xsl:apply-templates select="node()" />
+	</li>
+</xsl:template>
+
+<!-- Evolution.dll Plugin -->
+<xsl:template match="link:evo-mail">
+	<a href="{./@uri}">
+		<img alt="Open Email Link" width="16" height="10" border="0">
+			<!-- Inline Base64 encoded stock_mail.png =) -->
+			<xsl:attribute name="src">data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAKCAYAAAC9vt6cAAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAAAsQAAALEAGtI711AAAAB3RJTUUH1QkeAjYaRAvZgAAAALxJREFUKM+NkjGKw1AMRN+GhRS/ 2xP4EHZr0E1UxFVuoiKdikCKfxMfwKdw+3t1gb/F4hASe50BgZjRDEII/jAAtWmaCnxSAy+oZlYj YrfMbAkB4GsJiAjcnfPpRNzvrCHnjIjQdd3De3geUFX8diMdj6tmVX3jD6+EquLXKz9p37waANC2 LRfPpJTIOdP3PXuoEVFLKdXMaills5+m6f8jbq26dcTvRXR3RIR5njcDRIRxHFe14cMHenukX9eX mbvfl0q9AAAAAElFTkSuQmCC</xsl:attribute>
+		</img>
+		<xsl:value-of select="node()"/>
+	</a>
+</xsl:template>
+
+<!-- FixedWidth.dll Plugin -->
+<xsl:template match="tomboy:monospace">
+	<span style="font-family:monospace"><xsl:apply-templates select="node()"/></span>
+</xsl:template>
+
+<!-- Bugzilla.dll Plugin -->
+<xsl:template match="link:bugzilla">
+	<a href="{ uri}"><xsl:value-of select="node()" /></a>
+</xsl:template>
+
+</xsl:stylesheet>
+



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]