| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <!-- |
| # Licensed to the Subversion Corporation (SVN Corp.) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The SVN Corp. licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| --> |
| <!-- |
| First-time install dialog sequence: Maintenance dialog sequence: |
| - WixUI_WelcomeDlgSubv - WixUI_MaintenanceWelcomeDlgSubv |
| - WixUI_InfoDlg - WixUI_MaintenanceTypeDlg |
| - WixUI_InstallDirDlg - WixUI_InstallDirDlg |
| - WixUI_VerifyReadyDlg - WixUI_VerifyReadyDlg |
| - WixUI_DiskCostDlg |
| --> |
| |
| <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
| <Fragment> |
| <UI Id="WixUI_Subversion"> |
| <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" /> |
| <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" Bold="yes" /> |
| <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" /> |
| <TextStyle Id="WixUI_Font_Bold" FaceName="Tahoma" Size="8" Bold="yes" /> |
| |
| <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" /> |
| <Property Id="WixUI_Mode" Value="InstallDir" /> |
| |
| <DialogRef Id="BrowseDlg" /> |
| <DialogRef Id="DiskCostDlg" /> |
| <DialogRef Id="ErrorDlg" /> |
| <DialogRef Id="FatalError" /> |
| <DialogRef Id="FilesInUse" /> |
| <DialogRef Id="MsiRMFilesInUse" /> |
| <DialogRef Id="PrepareDlg" /> |
| <DialogRef Id="ProgressDlg" /> |
| <DialogRef Id="ResumeDlg" /> |
| <DialogRef Id="UserExit" /> |
| |
| <Publish Dialog="PostDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999"></Publish> |
| |
| <Publish Dialog="WelcomeDlgSubv" Control="Next" Event="NewDialog" Value="InfoDlg">1</Publish> |
| |
| <Publish Dialog="InfoDlg" Control="Back" Event="NewDialog" Value="WelcomeDlgSubv">1</Publish> |
| <Publish Dialog="InfoDlg" Control="Next" Event="NewDialog" Value="InstallDirDlg">1</Publish> |
| |
| <Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="InfoDlg">1</Publish> |
| <Publish Dialog="InstallDirDlg" Control="Next" Event="SetTargetPath" Value="[WIXUI_INSTALLDIR]" Order="1">1</Publish> |
| <Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="2">1</Publish> |
| <Publish Dialog="InstallDirDlg" Control="ChangeFolder" Property="_BrowseProperty" Value="[WIXUI_INSTALLDIR]" Order="1">1</Publish> |
| <Publish Dialog="InstallDirDlg" Control="ChangeFolder" Event="SpawnDialog" Value="BrowseDlg" Order="2">1</Publish> |
| |
| <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="InstallDirDlg" Order="1">NOT Installed</Publish> |
| <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="2">Installed</Publish> |
| |
| <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish> |
| |
| <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish> |
| <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish> |
| <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish> |
| |
| <Property Id="ARPNOMODIFY" Value="1" /> |
| </UI> |
| |
| <UIRef Id="WixUI_Common" /> |
| </Fragment> |
| </Wix> |