source: trunk/instant_messenger/xsl/info_contact_ldap.xsl @ 55

Revision 55, 990 bytes checked in by niltonneto, 17 years ago (diff)

Nova versão do Instant Messenger.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
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<xsl:output method="html" omit-xml-declaration="yes"/>
4
5<xsl:template match="/info_user">
6 <html>
7  <head>
8  </head>
9  <body>
10        <table style="background-color:#cbdae4;width:100%;border:1px solid #809aa9">
11                <tr>
12                   <td style="vertical-align:top;width:80%">
13                                <xsl:apply-templates select="item" />
14                   </td>
15                   <td style="vertical-align:top">
16                                <span id="im_span_avatar"></span>
17                   </td>
18            </tr>
19        </table>       
20 </body>
21 </html>
22</xsl:template>
23
24<xsl:template match="item">
25        <div style="padding-bottom">
26           <span>
27                        <b><label><xsl:value-of select='@lang_name' /></label></b>
28                        <br/><xsl:value-of select='@name' />
29           </span>
30                        <br/>
31                        <br/>
32           <span>
33                        <b><label><xsl:value-of select='@lang_email' /></label></b>
34                        <br/><xsl:value-of select='@email' />
35           </span>
36                        <br/>
37   </div>
38</xsl:template>
39
40</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.