Ignore:
Timestamp:
01/18/08 15:17:58 (16 years ago)
Author:
niltonneto
Message:

Commit da nova versão do módulo, usando agente em C.
Vide Página do módulo do Trac:
http://www.expressolivre.org/dev/wiki/messenger

A versão anterior encontra-se na subpasta bkp (32/64).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/instant_messenger/xsl/message.xsl

    r55 r151  
    11<?xml version="1.0" encoding="ISO-8859-1"?> 
    2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
     2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" > 
    33<xsl:output method="html" omit-xml-declaration="yes"/> 
    44 
    5 <xsl:template match="/"> 
    6    <html> 
    7    <head> 
    8    </head> 
    9    <body> 
    10       <xsl:copy-of select="." /> 
    11    </body> 
    12    </html> 
     5<xsl:template match="message"> 
     6        <!-- <b><xsl:value-of select="@from" /> :</b><br /> --> 
     7        <b> :</b><br />  
     8        <!-- 
     9        linha abaixo apresenta problema quando envia mtas msg seguidas 
     10        entretanto linha que está habilitada na sequencia nãofunciona no psy 
     11        --> 
     12         
     13        <xsl:apply-templates select="descendant::*[name()='body' and preceding::body]" mode='body' /> 
     14         
     15        <!-- 
     16        <xsl:apply-templates select="html/body" mode='body' /> 
     17        --> 
     18</xsl:template> 
     19 
     20<xsl:template match="*" mode="body"> 
     21        <xsl:copy-of select="." /> 
     22        <br /> 
     23        <br /> 
    1324</xsl:template> 
    1425 
Note: See TracChangeset for help on using the changeset viewer.