docstrip.xsl revision c58f1213e628a545081c70e26c6b67a841cff880
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync<?xml version="1.0"?>
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync<!--
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync Copies the source XIDL file to the output, except that all <desc>
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync tags are stripped in the process. This is to generate a copy
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync of VirtualBox.xidl which is then used as a source for generating
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync the COM/XPCOM headers, the webservice files, the Qt bindings and
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync others. The idea is that updating the documentation tags in the
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync original XIDL should not cause a full recompile of nearly all of
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync VirtualBox.
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync Copyright (C) 2009-2012 Oracle Corporation
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync This file is part of VirtualBox Open Source Edition (OSE), as
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync available from http://www.virtualbox.org. This file is free software;
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync you can redistribute it and/or modify it under the terms of the GNU
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync General Public License (GPL) as published by the Free Software
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync Foundation, in version 2 as it comes in the "COPYING" file of the
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync VirtualBox OSE distribution. VirtualBox OSE is distributed in the
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync-->
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync<xsl:output method="xml" indent="yes"/>
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync<!-- copy everything unless there's a more specific template -->
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync<xsl:template match="@*|node()">
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync <xsl:copy>
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync <xsl:apply-templates select="@*|node()"/>
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync </xsl:copy>
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync</xsl:template>
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync<!-- swallow desc -->
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync<xsl:template match="desc" />
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync<!-- swallow all comments -->
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync<xsl:template match="comment()" />
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync</xsl:stylesheet>
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync
03532efdc331b598d3dedc8cc7477641c3b0dd12vboxsync