]> git.0d.be Git - empathy.git/blob - tools/ls-interfaces.xsl
Update tools from tp-glib 0.7.6
[empathy.git] / tools / ls-interfaces.xsl
1 <!--
2 Extract a space-separated list of interface classnames from the Telepathy spec.
3 The master copy of this stylesheet is in the Telepathy spec repository -
4 please make any changes there.
5
6 Copyright (C) 2006, 2007 Collabora Limited
7
8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or (at your option) any later version.
12
13 This library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public
19 License along with this library; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 -->
22
23 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
24
25   <xsl:output method="text" indent="no" encoding="ascii"/>
26
27   <xsl:template match="text()"/>
28
29   <xsl:template match="node">
30     <xsl:value-of select="concat(' ', translate(@name, '/', ''), ' ')"/>
31   </xsl:template>
32
33 </xsl:stylesheet>
34
35 <!-- vim:set sw=2 sts=2 et noai noci: -->