source: tags/instant_messenger/xsl/fast_menu.xsl @ 305

Revision 305, 944 bytes checked in by niltonneto, 16 years ago (diff)

Correçoes

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="fast_menu">
6
7        <dl style="background: #b4cfe5;margin:5px">
8                <dt><a href="javascript:void(0);" onclick="im.presence('available');"><img src="{img1}"/><xsl:value-of select="lang1"/></a></dt>
9                <dt><a href="javascript:void(0);" onclick="im.presence('away');"><img src="{img2}"/><xsl:value-of select="lang2"/></a></dt>
10                <dt><a href="javascript:void(0);" onclick="im.presence('dnd');"><img src="{img3}"/><xsl:value-of select="lang3"/></a></dt>
11                <dt><a href="javascript:void(0);" onclick="im.presence('unavailable');"><img src="{img4}"/><xsl:value-of select="lang4"/></a></dt>
12                <dt><a href="javascript:void(0);" onclick="im.presence('custom');"><img src="{img5}"/><xsl:value-of select="lang5"/></a></dt>
13        </dl>
14
15</xsl:template>
16
17</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.