~ubuntu-branches/ubuntu/maverick/telepathy-salut/maverick

« back to all changes in this revision

Viewing changes to lib/tools/make-all-async.xsl

  • Committer: Bazaar Package Importer
  • Author(s): Sjoerd Simons
  • Date: 2007-06-13 10:54:25 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070613105425-mwwsplxbk8n6z5t6
Tags: 0.1.3-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
2
 
 
3
 
  <xsl:output method="xml" indent="yes" encoding="ascii"/>
4
 
 
5
 
  <xsl:template match="method">
6
 
    <xsl:copy>
7
 
      <xsl:apply-templates select="@*|node()"/>
8
 
      <xsl:if test="not(annotation[name='org.freedesktop.DBus.GLib.Async'])">
9
 
        <annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
10
 
      </xsl:if>
11
 
    </xsl:copy>
12
 
  </xsl:template>
13
 
 
14
 
  <xsl:template match="@*|node()">
15
 
    <xsl:copy>
16
 
      <xsl:apply-templates select="@*|node()"/>
17
 
    </xsl:copy>
18
 
  </xsl:template>
19
 
 
20
 
</xsl:stylesheet>
21
 
 
22
 
<!-- vim:set sw=2 sts=2 et: -->