/usr/share/kde4/apps/akonadi-kde/kcfg2dbus.xsl is in libakonadi-kde4 4:4.14.10-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | <!--
Copyright (c) 2008 Volker Krause <vkrause@kde.org>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:kcfg="http://www.kde.org/standards/kcfg/1.0"
xmlns="http://www.kde.org/standards/kcfg/1.0">
<xsl:param name="code">interfaceName</xsl:param>
<xsl:template match="/">
<node>
<interface>
<xsl:attribute name="name"><xsl:value-of select="$interfaceName"/></xsl:attribute>
<method>
<xsl:attribute name="name">writeConfig</xsl:attribute>
</method>
<xsl:for-each select="kcfg:kcfg/kcfg:group/kcfg:entry">
<xsl:variable name="annotation"><xsl:call-template name="typeAnnotation"/></xsl:variable>
<method>
<xsl:attribute name="name">
<xsl:value-of select="concat(translate(substring(@name,1,1),'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'), substring(@name,2))"/>
</xsl:attribute>
<arg direction="out">
<xsl:attribute name="type"><xsl:call-template name="convertType"/></xsl:attribute>
</arg>
<xsl:if test="$annotation != ''">
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0">
<xsl:attribute name="value"><xsl:value-of select="$annotation"/></xsl:attribute>
</annotation>
</xsl:if>
</method>
<method>
<xsl:attribute name="name">
<xsl:value-of select="concat( 'set', concat(translate(substring(@name,1,1),'abcdefghijklmnopqrstuvwxyz', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'), substring(@name,2)) )"/>
</xsl:attribute>
<arg direction="in" identifier="value">
<xsl:attribute name="type"><xsl:call-template name="convertType"/></xsl:attribute>
</arg>
<xsl:if test="$annotation != ''">
<annotation name="org.qtproject.QtDBus.QtTypeName.In0">
<xsl:attribute name="value"><xsl:value-of select="$annotation"/></xsl:attribute>
</annotation>
</xsl:if>
</method>
</xsl:for-each>
</interface>
</node>
</xsl:template>
<xsl:template name="convertType">
<xsl:choose>
<xsl:when test="@type = 'String'">s</xsl:when>
<xsl:when test="@type = 'StringList'">as</xsl:when>
<xsl:when test="@type = 'Font'">?</xsl:when>
<xsl:when test="@type = 'Rect'">(iiii)</xsl:when>
<xsl:when test="@type = 'Size'">(ii)</xsl:when>
<xsl:when test="@type = 'Color'">?</xsl:when>
<xsl:when test="@type = 'Point'">(ii)</xsl:when>
<xsl:when test="@type = 'Int'">i</xsl:when>
<xsl:when test="@type = 'UInt'">u</xsl:when>
<xsl:when test="@type = 'Bool'">b</xsl:when>
<xsl:when test="@type = 'Double'">d</xsl:when>
<xsl:when test="@type = 'DateTime'">((iii)(iiii)i)</xsl:when>
<xsl:when test="@type = 'LongLong'">x</xsl:when>
<xsl:when test="@type = 'ULongLong'">t</xsl:when>
<xsl:when test="@type = 'IntList'">ai</xsl:when>
<xsl:when test="@type = 'Enum'">i</xsl:when>
<xsl:when test="@type = 'Path'">s</xsl:when>
<xsl:when test="@type = 'PathList'">as</xsl:when>
<xsl:when test="@type = 'Password'">s</xsl:when>
<xsl:when test="@type = 'Url'">s</xsl:when>
<xsl:when test="@type = 'UrlList'">as</xsl:when>
<xsl:otherwise>v</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="typeAnnotation">
<xsl:choose>
<xsl:when test="@type = 'Rect'">QRect</xsl:when>
<xsl:when test="@type = 'Size'">QSize</xsl:when>
<xsl:when test="@type = 'Point'">QPoint</xsl:when>
<xsl:when test="@type = 'DateTime'">QDateTime</xsl:when>
<xsl:when test="@type = 'IntList'">QList<int></xsl:when>
<xsl:otherwise></xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
|