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

Revision 55, 667 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_contact">
6        <html>
7                <head>
8                </head>
9                <body>
10                        <table border="0" cellpading="1" cellspacing="2" width="90%" style="margin-top:10px">
11                                        <xsl:apply-templates select="body" />
12                        </table>
13                </body>
14        </html>
15</xsl:template>
16
17<xsl:template match="body">
18                <tr>
19                        <td width="30%" align="right">
20                                <xsl:value-of select="@lang" /> :
21                        </td>
22                        <td width="70%" align="left">
23                                <label id="{@label}"></label>
24                        </td>
25                </tr>
26</xsl:template>
27
28</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.