|
| 1 | +<?xml version='1.0' encoding='windows-1252'?> |
| 2 | + |
| 3 | +<!-- |
| 4 | + Licensed to the Apache Software Foundation (ASF) under one or more |
| 5 | + contributor license agreements. See the NOTICE file distributed with |
| 6 | + this work for additional information regarding copyright ownership. |
| 7 | + The ASF licenses this file to You under the Apache License, Version 2.0 |
| 8 | + (the "License"); you may not use this file except in compliance with |
| 9 | + the License. You may obtain a copy of the License at |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | + Unless required by applicable law or agreed to in writing, software |
| 14 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | + See the License for the specific language governing permissions and |
| 17 | + limitations under the License. |
| 18 | +--> |
| 19 | + |
| 20 | +<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'> |
| 21 | + <Product Name='@WIX_PRODUCT_NAME@' Manufacturer='@WIX_MANUFACTURER@' |
| 22 | + Id='@WIX_PRODUCT_ID@' |
| 23 | + UpgradeCode='@WIX_UPGRADE_CODE@' |
| 24 | + Language='1033' Codepage='1252' Version='@CMAKE_PROJECT_VERSION@'> |
| 25 | + |
| 26 | + <Package Id='*' Keywords='Installer' Description="@WIX_PRODUCT_NAME@ Installer" |
| 27 | + Comments='@WIX_COPYRIGHT_COMMENT@' Platform="@WIX_PACKAGE_PLATFORM@" |
| 28 | + InstallerVersion='301' Languages='1033' Compressed='yes' SummaryCodepage='1252' /> |
| 29 | + |
| 30 | + <Media Id='1' Cabinet='package.cab' EmbedCab='yes' DiskPrompt='CD-ROM #1' /> |
| 31 | + <Property Id='DiskPrompt' Value="@WIX_PRODUCT_NAME@ Installation [1]" /> |
| 32 | + |
| 33 | + <Directory Id='TARGETDIR' Name='SourceDir'> |
| 34 | + <Directory Id='@WIX_PROGRAM_FILES_FOLDER_ID@' Name='ProgramFiles'> |
| 35 | + <Directory Id='ApacheIgnite' Name='Apache Ignite'> |
| 36 | + <Directory Id='INSTALLDIR' Name='ODBC Driver'> |
| 37 | + <Component Id='Driver' Guid='@WIX_COMPONENT_ID@' Win64='@WIX_COMPONENT_IS_WIN64@'> |
| 38 | + <File Id='IgniteOdbcDll' Name='ignite.odbc.dll' DiskId='1' Source='@WIX_ODBC_LIBRARY_PATH@' KeyPath='yes'/> |
| 39 | + |
| 40 | + <RegistryValue Root='HKLM' Key='Software\ODBC\ODBCINST.INI\ODBC Drivers' Name='Apache Ignite' Type='string' Value='Installed'/> |
| 41 | + |
| 42 | + <RegistryKey Id='OdbcDriverRegInfo' Root='HKLM' Key='Software\ODBC\ODBCINST.INI\Apache Ignite' ForceCreateOnInstall='yes' ForceDeleteOnUninstall='yes'> |
| 43 | + <RegistryValue Type='string' Name='DriverODBCVer' Value='03.00'/> |
| 44 | + <RegistryValue Type='string' Name='Driver' Value='[#IgniteOdbcDll]'/> |
| 45 | + <RegistryValue Type='string' Name='Setup' Value='[#IgniteOdbcDll]'/> |
| 46 | + <RegistryValue Type='integer' Name='UsageCount' Value='1'/> |
| 47 | + </RegistryKey> |
| 48 | + </Component> |
| 49 | + </Directory> |
| 50 | + </Directory> |
| 51 | + </Directory> |
| 52 | + </Directory> |
| 53 | + |
| 54 | + <Feature Id='Complete' Title='ODBC Driver' Description='@WIX_PRODUCT_NAME@.' Level='1' |
| 55 | + ConfigurableDirectory='INSTALLDIR' Absent='disallow' AllowAdvertise='no' InstallDefault='local'> |
| 56 | + <ComponentRef Id='Driver' /> |
| 57 | + </Feature> |
| 58 | + |
| 59 | + <Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" /> |
| 60 | + |
| 61 | + <UI Id="WixUI_InstallDir"> |
| 62 | + <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" /> |
| 63 | + <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" /> |
| 64 | + <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" /> |
| 65 | + |
| 66 | + <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" /> |
| 67 | + <Property Id="WixUI_Mode" Value="InstallDir" /> |
| 68 | + |
| 69 | + <DialogRef Id="BrowseDlg" /> |
| 70 | + <DialogRef Id="DiskCostDlg" /> |
| 71 | + <DialogRef Id="ErrorDlg" /> |
| 72 | + <DialogRef Id="FatalError" /> |
| 73 | + <DialogRef Id="FilesInUse" /> |
| 74 | + <DialogRef Id="MsiRMFilesInUse" /> |
| 75 | + <DialogRef Id="PrepareDlg" /> |
| 76 | + <DialogRef Id="ProgressDlg" /> |
| 77 | + <DialogRef Id="ResumeDlg" /> |
| 78 | + <DialogRef Id="UserExit" /> |
| 79 | + |
| 80 | + <Publish Dialog="BrowseDlg" Control="OK" Event="DoAction" Value="WixUIValidatePath" Order="3">1</Publish> |
| 81 | + <Publish Dialog="BrowseDlg" Control="OK" Event="SpawnDialog" Value="InvalidDirDlg" Order="4"><![CDATA[WIXUI_INSTALLDIR_VALID<>"1"]]></Publish> |
| 82 | + |
| 83 | + <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish> |
| 84 | + |
| 85 | + <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="InstallDirDlg">NOT Installed</Publish> |
| 86 | + <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">Installed AND PATCH</Publish> |
| 87 | + |
| 88 | + <Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg">1</Publish> |
| 89 | + <Publish Dialog="InstallDirDlg" Control="Next" Event="SetTargetPath" Value="[WIXUI_INSTALLDIR]" Order="1">1</Publish> |
| 90 | + <Publish Dialog="InstallDirDlg" Control="Next" Event="DoAction" Value="WixUIValidatePath" Order="2">NOT WIXUI_DONTVALIDATEPATH</Publish> |
| 91 | + <Publish Dialog="InstallDirDlg" Control="Next" Event="SpawnDialog" Value="InvalidDirDlg" Order="3"><![CDATA[NOT WIXUI_DONTVALIDATEPATH AND WIXUI_INSTALLDIR_VALID<>"1"]]></Publish> |
| 92 | + <Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="4">WIXUI_DONTVALIDATEPATH OR WIXUI_INSTALLDIR_VALID="1"</Publish> |
| 93 | + <Publish Dialog="InstallDirDlg" Control="ChangeFolder" Property="_BrowseProperty" Value="[WIXUI_INSTALLDIR]" Order="1">1</Publish> |
| 94 | + <Publish Dialog="InstallDirDlg" Control="ChangeFolder" Event="SpawnDialog" Value="BrowseDlg" Order="2">1</Publish> |
| 95 | + |
| 96 | + <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="InstallDirDlg" Order="1">NOT Installed</Publish> |
| 97 | + <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="2">Installed AND NOT PATCH</Publish> |
| 98 | + <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2">Installed AND PATCH</Publish> |
| 99 | + |
| 100 | + <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish> |
| 101 | + |
| 102 | + <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish> |
| 103 | + <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish> |
| 104 | + <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish> |
| 105 | + |
| 106 | + <Property Id="ARPNOMODIFY" Value="1" /> |
| 107 | + </UI> |
| 108 | + |
| 109 | + <UIRef Id="WixUI_Common" /> |
| 110 | + <UIRef Id="WixUI_ErrorProgressText" /> |
| 111 | + |
| 112 | + </Product> |
| 113 | +</Wix> |
0 commit comments