yacy_search_server/htroot/yacy/ui/xsl/xbel2folder-ul.xsl
apfelmaennchen 848dbbd280 YaCy-UI:
- added bookmark folder widget to sidebar (it uses the xbel.xml with XSLT!

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5206 6c8d7289-2bf4-0310-a012-ef5d649a1542
2008-09-24 21:09:12 +00:00

39 lines
934 B
XML

<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
<xsl:output method="html" />
<xsl:template match="xbel">
<ul><xsl:apply-templates/></ul>
</xsl:template>
<!-- Only partial support for xbel elements -->
<xsl:template match="xbel/info|xbel/title|xbel/desc|xbel/alias|xbel/separator">
<!-- No op -->
</xsl:template>
<xsl:template match="folder">
<li>
<xsl:apply-templates select="title"/>
<ul>
<xsl:apply-templates select="folder|bookmark"/>
</ul>
</li>
</xsl:template>
<xsl:template match="folder/title">
<span class="folder"><xsl:apply-templates/></span>
</xsl:template>
<xsl:template match="bookmark">
<li>
<a href="{@href}">
<xsl:apply-templates select="title"/>
</a>
</li>
</xsl:template>
<xsl:template match="bookmark/title">
<span class="file"><xsl:apply-templates/></span>
</xsl:template>
</xsl:stylesheet>