Use shibboleth-sp as package name for compatibility.
[shibboleth/cpp-sp.git] / msi / WiX / ShibbolethSP-update-dlg.wxs
1 <?xml version='1.0' encoding='UTF-8'?>
2
3 <!-- Licensed to the University Corporation for Advanced Internet
4      Development, Inc. (UCAID) under one or more contributor license
5      agreements.  See the NOTICE file distributed with this work for
6      additional information regarding copyright ownership. The UCAID
7      licenses this file to You under the Apache License, Version 2.0
8      (the 'License'); you may not use this file except in compliance
9      with 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
16      implied.  See the License for the specific language governing
17      permissions and limitations under the License.  -->
18
19 <Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
20   <!-- The dialog to display if we sense an upgrade -->
21   <Fragment>
22
23     <UI>
24       <Dialog Id='UpdateDlgShib' Width='370' Height='270' Title='[ProductName] Update'>
25         <!-- Stuff at the top: picture, some text, a line -->
26         <Control Id='TopBitMap' Type='Bitmap' X='0' Y='0' Width='370' Height='44' Text='WixUI_Bmp_Banner' />
27         <Control Id='TopInfo' Type='Text' X='15' Y='6' Width='150' Height='12' 
28                  Text='{\WixUI_Font_Title}Update Shibboleth' Transparent='yes'/>
29         <Control Id='TopDetailed' Type='Text' X='25' Y='24' Width='320' Height='12' 
30                  Text='Update to [ProductName]' Transparent='yes'/>
31         <Control Id='TopLine' Type='Line' X='0' Y='44' Width='370' Height='1' />
32
33         <!-- Buttons to control Shibboleth Setup -->
34         <Control Id='DescriptionLine1' Type='Text' X='25' Y='51' Height='12' Width='320' 
35                  Text='The updated files for [ProductName] will be installed to [INSTALLDIR]'/>
36
37         <!-- Stuff at the bottom: line, Back,Next, [space] Cancel -->
38         <Control Id='BottomLine' Type='Line' X='0' Y='234' Width='370' Height='1' />
39         <Control Id='Back' Type='PushButton' X='180' Y='243' Width='56' Height='17' Text='&amp;Back'>
40           <Publish  Event='NewDialog' Value='WelcomeDlg'>1</Publish>
41         </Control>
42
43         <Control Id='Next' Type='PushButton' X='236' Y='243' Width='56' Height='17' Text='&amp;Next' Default='yes'>
44           <Publish Event='NewDialog' Value='VerifyReadyDlg'/>
45         </Control>
46
47         <Control Id='Cancel' Type='PushButton' X='304' Y='243' Width='56' Height='17' Text='&amp;Cancel' Cancel='yes'>
48           <Publish  Event='SpawnDialog' Value='CancelDlg'>1</Publish>
49         </Control>
50       </Dialog>
51     </UI>
52   </Fragment>
53 </Wix>