source: companies/serpro/instant_messenger/xsl/info_contact.xsl @ 903

Revision 903, 1.6 KB checked in by niltonneto, 15 years ago (diff)

Importacao inicial do Expresso do Serpro

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="no"/>
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                                <tr>
12                                        <td width="30%" align="right">
13                                                <xsl:value-of select="getlang/FN" /> :
14                                        </td>
15                                        <td width="70%" align="left">
16                                                <xsl:value-of select="vcard/FN" />
17                                                <xsl:value-of select="vcard/fn" />                                             
18                                        </td>
19                                </tr>
20                                <tr>
21                                        <td width="30%" align="right">
22                                                <xsl:value-of select="getlang/NICKNAME" /> :
23                                        </td>
24                                        <td width="70%" align="left">
25                                                <xsl:value-of select="vcard/NICKNAME" />
26                                                <xsl:value-of select="vcard/nickname" />                                               
27                                        </td>
28                                </tr>
29                                <tr>
30                                        <td width="30%" align="right">
31                                                <xsl:value-of select="getlang/ORGUNIT" /> :
32                                        </td>
33                                        <td width="70%" align="left">
34                                                <xsl:value-of select="vcard/ORGUNIT" />
35                                                <xsl:value-of select="vcard/orgunit" />                                         
36                                        </td>
37                                </tr>
38                                <tr>
39                                        <td width="30%" align="right">
40                                                <xsl:value-of select="getlang/ROLE" /> :
41                                        </td>
42                                        <td width="70%" align="left">
43                                                <xsl:value-of select="vcard/ROLE" />
44                                                <xsl:value-of select="vcard/role" />                                           
45                                        </td>
46                                </tr>
47                                <tr>
48                                        <td width="30%" align="right">
49                                                <xsl:value-of select="getlang/BDAY" /> :
50                                        </td>
51                                        <td width="70%" align="left">
52                                                <xsl:value-of select="vcard/BDAY" />
53                                                <xsl:value-of select="vcard/bday" />
54                                        </td>
55                                </tr>
56                        </table>
57                </body>
58        </html>
59</xsl:template>
60
61</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.