Ignore:
Timestamp:
07/15/11 18:03:42 (13 years ago)
Author:
fernando-alberto
Message:

Ticket #1269 - Mergiando revisoes do branch22 de rev4644 ate rev4755

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/expressoMail1_2/MailArchiver/2.2/expressoMail1_2/stylesheet/news_add.xsl

    r3178 r4778  
    11<?xml version="1.0" encoding="ISO-8859-1"?> 
    22<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
    3 <xsl:template match="rss/channel"> 
    4         <span><xsl:value-of select = "title" /></span><span> - <xsl:value-of select="count(item)"/> news</span> 
    5         <img src='../phpgwapi/templates/default/images/foldertree_trash.png'> 
    6                 <xsl:attribute name="onclick"> 
    7                         news_edit.unsubscribe('<xsl:value-of select="link"/>',this); 
    8                 </xsl:attribute> 
    9         </img> 
    10 </xsl:template> 
     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     
    1123</xsl:stylesheet> 
Note: See TracChangeset for help on using the changeset viewer.