From: Egon W. <eg...@us...> - 2004-10-07 13:02:42
|
Update of /cvsroot/woc/woc/bin/news In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8980 Modified Files: rss.xsl Log Message: Updated for new DTD and pointed to new URL for page with specific news item Index: rss.xsl =================================================================== RCS file: /cvsroot/woc/woc/bin/news/rss.xsl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** rss.xsl 6 Oct 2004 14:28:58 -0000 1.1 --- rss.xsl 7 Oct 2004 13:02:13 -0000 1.2 *************** *** 10,14 **** xmlns:dc="http://purl.org/dc/elements/1.1/" > ! <channel rdf:about="http://www.woc.science.ru.nl/">> <title>Woordenboek Organische Chemie</title> <link>http://www.woc.science.ru.nl/</link> --- 10,14 ---- xmlns:dc="http://purl.org/dc/elements/1.1/" > ! <channel rdf:about="http://www.woc.science.ru.nl/woc.rss">> <title>Woordenboek Organische Chemie</title> <link>http://www.woc.science.ru.nl/</link> *************** *** 17,20 **** --- 17,21 ---- <dc:creator>wo...@sc...</dc:creator> <image rdf:resource="http://www.woc.science.ru.nl/favicon.png"/> + <items/> </channel> *************** *** 34,50 **** <xsl:variable name="pos" select="position()"/> <xsl:if test="21>$pos"> ! <item rdf:about="http://www.woc.science.ru.nl/"> ! <link>http://www.woc.science.ru.nl/cgi-bin/news</link> <title><xsl:value-of select="./TITLE"/></title> <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/"><xsl:value-of select="./@ID"/></dc:date> ! <xsl:apply-templates select="TEKST"/> </item> </xsl:if> </xsl:template> ! <xsl:template match="//a"> <xsl:choose> <xsl:when test="./@target='_top'"> ! <a href="{@href}" target="{@target}"> <xsl:apply-templates/> </a> --- 35,51 ---- <xsl:variable name="pos" select="position()"/> <xsl:if test="21>$pos"> ! <item rdf:about="http://www.woc.science.ru.nl/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> ! <link>http://www.woc.science.ru.nl/cgi-bin/newsitem?<xsl:value-of select="./@ID"/></link> <title><xsl:value-of select="./TITLE"/></title> <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/"><xsl:value-of select="./@ID"/></dc:date> ! <xsl:apply-templates select=".//p"/> </item> </xsl:if> </xsl:template> ! <xsl:template match="a"> <xsl:choose> <xsl:when test="./@target='_top'"> ! <a href="{@href}" target="{@target}" xmlns="http://www.w3.org/1999/xhtml"> <xsl:apply-templates/> </a> *************** *** 58,73 **** </xsl:template> ! <xsl:template match="//img"> ! <img src="{@src}" width="{@width}" border="{@border}" alt="{@alt}"/> </xsl:template> ! <xsl:template match="//p"> ! <p align="{@align}"> <xsl:apply-templates/> </p> </xsl:template> ! <xsl:template match="//br"> ! <br /> </xsl:template> --- 59,74 ---- </xsl:template> ! <xsl:template match="img"> ! <img src="{@src}" width="{@width}" border="{@border}" alt="{@alt}" xmlns="http://www.w3.org/1999/xhtml"/> </xsl:template> ! <xsl:template match="p"> ! <p align="{@align}" xmlns="http://www.w3.org/1999/xhtml"> <xsl:apply-templates/> </p> </xsl:template> ! <xsl:template match="br"> ! <br xmlns="http://www.w3.org/1999/xhtml"/> </xsl:template> |