2015-02-06 02:08:48 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
|
|
<Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
|
2022-01-28 12:48:06 -04:00
|
|
|
<Package InstallerVersion="500" Compressed="yes" InstallScope="perUser" />
|
2015-02-06 02:08:48 -04:00
|
|
|
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
|
|
|
|
|
2022-03-07 13:23:11 -04:00
|
|
|
<PropertyRef Id="DetectTargetDir" />
|
2015-02-06 02:08:48 -04:00
|
|
|
<PropertyRef Id="UpgradeTable" />
|
|
|
|
<PropertyRef Id="REGISTRYKEY" />
|
|
|
|
|
|
|
|
<Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
|
2022-03-21 22:08:37 -03:00
|
|
|
<ComponentGroupRef Id="doc_html" Primary="yes" />
|
2015-07-09 00:18:44 -03:00
|
|
|
<ComponentRef Id="OptionalFeature" />
|
2022-03-21 22:08:37 -03:00
|
|
|
|
|
|
|
<Component Id="doc_reg" Directory="Doc" Guid="*">
|
|
|
|
<RegistryKey Root="HKMU" Key="[REGISTRYKEY]">
|
|
|
|
<RegistryValue Key="Help\Main Python Documentation" Type="string" Value="[#Doc_html_index.html]" KeyPath="yes" />
|
|
|
|
</RegistryKey>
|
|
|
|
</Component>
|
2022-08-01 12:37:32 -03:00
|
|
|
|
|
|
|
<Component Id="doc_folder" Directory="Doc" Guid="{22FD42DB-EC66-4B1C-B1FC-44E0CF7B2462}">
|
|
|
|
<CreateFolder />
|
|
|
|
<RemoveFolder Id="Remove_doc_folder" On="uninstall" />
|
|
|
|
</Component>
|
2015-05-03 18:54:32 -03:00
|
|
|
</Feature>
|
|
|
|
<Feature Id="Shortcuts" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
|
2022-03-21 22:08:37 -03:00
|
|
|
<ComponentGroupRef Id="doc_html" />
|
2015-02-06 02:08:48 -04:00
|
|
|
|
|
|
|
<Component Id="doc_shortcut" Directory="MenuDir" Guid="*">
|
2015-07-09 00:18:44 -03:00
|
|
|
<RegistryKey Root="HKMU" Key="[OPTIONALFEATURESREGISTRYKEY]">
|
|
|
|
<RegistryValue Name="$(var.OptionalFeatureName)_shortcut" Type="string" Value="$(var.Version)" KeyPath="yes" />
|
|
|
|
</RegistryKey>
|
2022-03-21 22:08:37 -03:00
|
|
|
<Shortcut Id="python.html"
|
|
|
|
Target="[#Doc_html_index.html]"
|
2015-02-06 02:08:48 -04:00
|
|
|
Name="!(loc.ShortcutName)"
|
2015-10-31 16:41:46 -03:00
|
|
|
Description="!(loc.ShortcutDescription)"
|
2016-09-22 21:07:56 -03:00
|
|
|
WorkingDirectory="InstallDirectory"
|
|
|
|
Show="maximized" />
|
2015-02-06 02:08:48 -04:00
|
|
|
<RemoveFolder Id="Remove_MenuDir" On="uninstall" />
|
|
|
|
</Component>
|
|
|
|
</Feature>
|
|
|
|
</Product>
|
|
|
|
</Wix>
|