File: mysql_query_browser.xml

package info (click to toggle)
mysql-gui-tools 5.0r14%2BopenSUSE-2.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 116,956 kB
  • ctags: 48,715
  • sloc: sql: 341,918; pascal: 276,698; ansic: 91,020; cpp: 90,451; objc: 33,236; sh: 29,481; yacc: 10,756; xml: 10,589; java: 10,079; php: 2,806; python: 2,092; makefile: 1,783; perl: 4
file content (206 lines) | stat: -rw-r--r-- 9,804 bytes parent folder | download
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<?xml version="1.0" encoding="utf-8" ?>
<Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi">

  <!-- *****************************************************************************************
    Product
  -->
  <!-- 
    SetVersion updates: Name, Id, Version. Do not change them manually.
  -->

  <Product Id="75309579-75AA-46D5-B0EA-DDF562090897" UpgradeCode="FBF3BCB3-4BE7-47A3-AA89-A6AF5291609B"
    Language="1033" Manufacturer="MySQL AB" Name="MySQL Query Browser 1.0" Version="1.0.8">

  <!-- *****************************************************************************************
    Package
  -->

    <Package Keywords="Installer,MSI,Database" Description="MySQL Query Browser" Manufacturer="MySQL AB"
      InstallerVersion="200" Platforms="Intel" Languages="1033" SummaryCodepage="1252" Compressed='yes' 
      Id="????????-????-????-????-????????????" />

    <Condition Message="The operating system is not adequate for running [ProductName].">VersionNT</Condition>
    <Condition Message="The processor is not adequate for running [ProductName].">Intel &gt;= 5</Condition>
    <Condition Message="The amount of RAM is not adequate for running [ProductName].">PhysicalMemory &gt;= 64</Condition>

    <!-- *****************************************************************************************
      Custom Actions
    -->

    <CustomAction Id="NewerVersionInstalled" Error="A newer version of this product is already installed." />

    <!-- *****************************************************************************************
      Upgrade Information
    -->

    <Upgrade Id="FBF3BCB3-4BE7-47A3-AA89-A6AF5291609B">
      <!-- 
        SetVersion updates: Maximum
        -->
      <UpgradeVersion Property="PREVIOUSVERSIONINSTALLED" Minimum="1.0.0" Maximum="1.0.8" IncludeMaximum="no"
        IncludeMinimum="yes" />
      <!-- 
        SetVersion updates: Minimum
        Don't change the Property and Minimum attributes order and values since they are used by SetVersion
        -->
      <UpgradeVersion Property="NEWERPRODUCTFOUND" Minimum="1.0.8" Maximum="1.0.999" OnlyDetect="yes" 
        IncludeMinimum="no" />
    </Upgrade>

    <!-- *****************************************************************************************
      CAB file
    -->

    <Media Id="1" Cabinet="product.cab" EmbedCab="yes" />
    
    <!-- *****************************************************************************************
      Registry entries
    -->
    
    <DirectoryRef Id="INSTALLDIR">
      <Component Id="RegKeys" Guid="B8F721D8-95AC-48FA-BAFD-CB94646A0BC2" DiskId="1">
        <Registry Id="MysqlKey" Root="HKLM" Key="SOFTWARE\MySQL AB\[ProductName]" 
                  Action="createKeyAndRemoveKeyOnUninstall"/>
                  
        <Registry Id="Version" Root="HKLM" Key="SOFTWARE\MySQL AB\[ProductName]" 
                  Name="Version" Type="string" 
                  Value="[ProductVersion]"/>
                  
        <Registry Id="Location" Root="HKLM" Key="SOFTWARE\MySQL AB\[ProductName]" 
                  Name="Location" Type="string" 
                  Value="[INSTALLDIR]"/>                                
      </Component>
    </DirectoryRef>

    <!-- *****************************************************************************************
      Installation Features
    -->

    <!-- *****************************************************************************************
      MySQL Query Browser
    -->

    <Feature Id="MysqlQueryBrowser" Title="MySQL Query Browser" Description="MySQL Query Browser"
      Level="1" ConfigurableDirectory="INSTALLDIR" Absent="disallow" AllowAdvertise="yes">
      
      <ComponentRef Id="Third_Party_Libraries" />
      <ComponentRef Id="Gui_Libraries" />
      <ComponentRef Id="RegKeys" />
      <ComponentRef Id="MySQLQueryBrowser.exe" />
      <ComponentRef Id="mysqlquerybrowser.chm" />
      <ComponentRef Id="Documentation" />
      <ComponentRef Id="Font1" />
      <ComponentRef Id="Font2" />
      <ComponentRef Id="Font3" />
      <ComponentRef Id="Font4" />
      <ComponentRef Id="XmlFiles" />
      <ComponentRef Id="locale_files" />
    </Feature>

    <!-- *****************************************************************************************
      End of Feature
    -->

    <!-- *****************************************************************************************
      Include UI
    -->

    <?include ../../../common/setup/windows/mysql_common_ui.inc ?>
    
    <!-- *****************************************************************************************
      Properties
    -->
    
    <!-- The properties are sorted alphabetically after their Id's -->
    <Property Id="_IsMaintenance">Change</Property>
    <Property Id="_IsSetupTypeMin">Complete</Property>
        
    <Property Id="AgreeToLicense">No</Property>
    <Property Id="ApplicationUsers">AllUsers</Property>    
    <Property Id="ARPPRODUCTICON">QBIcon.exe</Property>
    <Property Id="ARPNOMODIFY">1</Property>
    <Property Id="ARPURLUPDATEINFO">http://www.mysql.com/</Property>    
    <Property Id="ARPURLINFOABOUT">http://www.mysql.com/</Property>
    
    <Property Id="INSTALLLEVEL">200</Property>    
         
    <Property Id="ProgressType3">installs</Property>
    <Property Id="ProgressType2">installed</Property>
    <Property Id="ProgressType1">Installing</Property>
    <Property Id="ProgressType0">install</Property>
                
    <Property Id="ReinstallFileVersion">o</Property>
    <Property Id="RebootYesNo">Yes</Property>
    <Property Id="ReinstallModeText">omus</Property>
    <Property Id="ReinstallRepair">r</Property>
    
    <!-- make a per-machine installation if possible -->
    <Property Id="ALLUSERS" Value="2" />


    <!-- *****************************************************************************************
      Admin UI Sequence
    -->

    <AdminUISequence>
      <Show Dialog="SetupCompleteErrorDialog" OnExit="error" />
      <Show Dialog="SetupInterruptedDialog" OnExit="cancel" />
      <Show Dialog="SetupCompleteSuccessDialog" OnExit="success" />
      
      <Show Dialog="SetupInitializationDialog" Before="CostInitialize" />
      <Show Dialog="AdminWelcomeDialog" After="CostFinalize" />
      <Show Dialog="SetupProgressDialog" After="AdminWelcomeDialog" />
    </AdminUISequence>
 
    <!-- *****************************************************************************************
      Install Execute Sequence
    -->

     <InstallExecuteSequence>
      <Custom Action="NewerVersionInstalled" After="FindRelatedProducts">NEWERPRODUCTFOUND</Custom>            
      <RemoveExistingProducts After="InstallValidate" />
    </InstallExecuteSequence>

    <!-- *****************************************************************************************
      Install UI Sequence
    -->

    <InstallUISequence>
      <Show Dialog="SetupCompleteErrorDialog" OnExit="error" />
      <Show Dialog="SetupInterruptedDialog" OnExit="cancel" />
      <Show Dialog="SetupCompleteSuccessDialog" OnExit="success" />
      
      <Custom Action="NewerVersionInstalled" After="FindRelatedProducts">NEWERPRODUCTFOUND</Custom>      
      <Show Dialog="InstallWelcomeDialog" After="CostFinalize">Not Installed And (Not PATCH Or IS_MAJOR_UPGRADE)</Show>
      <Show Dialog="SetupResumeDialog" After="InstallWelcomeDialog">Installed And (RESUME Or Preselected) And Not PATCH</Show>
      <Show Dialog="MaintenanceWelcomeDialog" After="SetupResumeDialog">Installed And Not RESUME And Not Preselected And Not PATCH</Show>
      <Show Dialog="SetupProgressDialog" After="MaintenanceWelcomeDialog" />
      <ExecuteAction />
    </InstallUISequence>

    <!-- *****************************************************************************************
      Binary files
    -->

    <Binary Id="AdminBackground" src="resources/AdminBackground.jpg" />
    <Binary Id="AdminHeader" src="resources/AdminHeader.jpg" />     
    
    <Binary Id="NewBinary2" src="../../../common/setup/windows/resources/binary/binary2" />     
    <Binary Id="NewBinary3" src="../../../common/setup/windows/resources/binary/binary3" />     
    <Binary Id="NewBinary4" src="../../../common/setup/windows/resources/binary/binary4" />
    <Binary Id="NewBinary5" src="../../../common/setup/windows/resources/binary/binary5" />
    <Binary Id="NewBinary6" src="../../../common/setup/windows/resources/binary/binary6" />
    <Binary Id="NewBinary7" src="../../../common/setup/windows/resources/binary/binary7" />
    <Binary Id="NewBinary8" src="../../../common/setup/windows/resources/binary/binary8" />
    <Binary Id="NewBinary9" src="../../../common/setup/windows/resources/binary/binary9" />
    <Binary Id="NewBinary10" src="../../../common/setup/windows/resources/binary/binary10" />
    <Binary Id="NewBinary11" src="../../../common/setup/windows/resources/binary/binary11" />
    <Binary Id="NewBinary12" src="../../../common/setup/windows/resources/binary/binary12" />
    <Binary Id="NewBinary13" src="../../../common/setup/windows/resources/binary/binary13" />
    <Binary Id="NewBinary14" src="../../../common/setup/windows/resources/binary/binary14" />
    <Binary Id="NewBinary15" src="../../../common/setup/windows/resources/binary/binary15" />    
    <Binary Id="NewBinary16" src="../../../common/setup/windows/resources/binary/binary16" />
    <Binary Id="NewBinary17" src="../../../common/setup/windows/resources/binary/binary17" />
    <Binary Id="NewBinary18" src="../../../common/setup/windows/resources/binary/binary18" />
  </Product>
</Wix>