source: trunk/jabberit_messenger/jmessenger/xsl/listRooms.xsl @ 3059

Revision 3059, 434 bytes checked in by alexandrecorreia, 14 years ago (diff)

Ticket #1091 - Implementado a busca de salas para bate-papo no novo modulo Expresso messenger XEP-0045-MUC.

Line 
1<?xml version="1.0" encoding="utf-8"?>
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="child::*">
6                <xsl:for-each select="descendant::*">
7                        <xsl:if test="name( ) = 'item'">
8                                :: <xsl:value-of select="name( )" /> - <xsl:value-of select="@jid" /> ::<br/>
9                        </xsl:if>
10                </xsl:for-each>
11        </xsl:template>
12
13
14</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.