source: branches/2.2/expressoMail1_2/stylesheet/news_add.xsl @ 4684

Revision 4684, 752 bytes checked in by alexandrecorreia, 13 years ago (diff)

Ticket #2083 - Melhorias no leitor de RSS do expressoMail

Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3   
4    <xsl:param name="linkURL" />
5   
6    <xsl:template match="rss/channel">
7       
8        <img src='../phpgwapi/templates/default/images/foldertree_trash.png'>
9            <xsl:attribute name="onclick">
10                    news_edit.unsubscribe('<xsl:value-of select="$linkURL"/>',this);
11            </xsl:attribute>
12            <xsl:attribute name="style">
13                width:16px; height:16px; cursor: pointer;
14            </xsl:attribute>
15        </img>
16       
17        <label titleRss="{title}">
18            <xsl:value-of select = "title" />
19        </label>
20       
21    </xsl:template>
22   
23</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.