1 | <?xml version="1.0"?>
|
---|
2 |
|
---|
3 | <!--
|
---|
4 | Generate a list of dependencies from a wixobj file.
|
---|
5 |
|
---|
6 | Copyright (C) 2015-2016 Oracle Corporation
|
---|
7 |
|
---|
8 | This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | available from http://www.virtualbox.org. This file is free software;
|
---|
10 | you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | General Public License (GPL) as published by the Free Software
|
---|
12 | Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | -->
|
---|
16 |
|
---|
17 | <xsl:stylesheet
|
---|
18 | version="1.0"
|
---|
19 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
20 | xmlns:wix="http://schemas.microsoft.com/wix/2006/objects"
|
---|
21 | >
|
---|
22 | <xsl:output method="text" encoding="utf-8"/>
|
---|
23 |
|
---|
24 | <xsl:strip-space elements="*"/>
|
---|
25 |
|
---|
26 | <xsl:include href="../../Main/idl/typemap-shared.inc.xsl"/>
|
---|
27 |
|
---|
28 |
|
---|
29 | <xsl:template name="output-file">
|
---|
30 | <xsl:param name="name"/>
|
---|
31 | <xsl:if test="1 or substring($name, 2, 1) = ':'">
|
---|
32 | <xsl:text> </xsl:text>
|
---|
33 | <xsl:value-of select="translate($name, '\', '/')"/>
|
---|
34 | <xsl:text> \</xsl:text>
|
---|
35 | <xsl:call-template name="xsltprocNewlineOutputHack"/>
|
---|
36 | </xsl:if>
|
---|
37 | </xsl:template>
|
---|
38 |
|
---|
39 | <xsl:template match="wix:table[@name = 'Binary' or @name = 'Icon']">
|
---|
40 | <xsl:for-each select="wix:row/wix:field[2]">
|
---|
41 | <xsl:call-template name="output-file">
|
---|
42 | <xsl:with-param name="name" select="normalize-space(.)"/>
|
---|
43 | </xsl:call-template>
|
---|
44 | </xsl:for-each>
|
---|
45 | </xsl:template>
|
---|
46 |
|
---|
47 | <xsl:template match="wix:table[@name = 'WixFile']">
|
---|
48 | <xsl:for-each select="wix:row/wix:field[7]">
|
---|
49 | <xsl:call-template name="output-file">
|
---|
50 | <xsl:with-param name="name" select="normalize-space(.)"/>
|
---|
51 | </xsl:call-template>
|
---|
52 | </xsl:for-each>
|
---|
53 | </xsl:template>
|
---|
54 |
|
---|
55 | <xsl:template match="wix:wixObject">
|
---|
56 | <xsl:apply-templates/>
|
---|
57 | </xsl:template>
|
---|
58 |
|
---|
59 | <xsl:template match="wix:section">
|
---|
60 | <xsl:apply-templates/>
|
---|
61 | </xsl:template>
|
---|
62 |
|
---|
63 | <!-- Eat everything that's unmatched. -->
|
---|
64 | <xsl:template match="*">
|
---|
65 | </xsl:template>
|
---|
66 |
|
---|
67 | </xsl:stylesheet>
|
---|
68 |
|
---|