mirror of https://github.com/python/cpython
44 lines
2.4 KiB
XML
44 lines
2.4 KiB
XML
<?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)">
|
|
<Package InstallerVersion="500" Compressed="yes" InstallScope="perUser" />
|
|
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
|
|
|
|
<PropertyRef Id="DetectTargetDir" />
|
|
<PropertyRef Id="UpgradeTable" />
|
|
<PropertyRef Id="REGISTRYKEY" />
|
|
|
|
<Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
|
|
<ComponentGroupRef Id="doc_html" Primary="yes" />
|
|
<ComponentRef Id="OptionalFeature" />
|
|
|
|
<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>
|
|
|
|
<Component Id="doc_folder" Directory="Doc" Guid="{22FD42DB-EC66-4B1C-B1FC-44E0CF7B2462}">
|
|
<CreateFolder />
|
|
<RemoveFolder Id="Remove_doc_folder" On="uninstall" />
|
|
</Component>
|
|
</Feature>
|
|
<Feature Id="Shortcuts" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
|
|
<ComponentGroupRef Id="doc_html" />
|
|
|
|
<Component Id="doc_shortcut" Directory="MenuDir" Guid="*">
|
|
<RegistryKey Root="HKMU" Key="[OPTIONALFEATURESREGISTRYKEY]">
|
|
<RegistryValue Name="$(var.OptionalFeatureName)_shortcut" Type="string" Value="$(var.Version)" KeyPath="yes" />
|
|
</RegistryKey>
|
|
<Shortcut Id="python.html"
|
|
Target="[#Doc_html_index.html]"
|
|
Name="!(loc.ShortcutName)"
|
|
Description="!(loc.ShortcutDescription)"
|
|
WorkingDirectory="InstallDirectory"
|
|
Show="maximized" />
|
|
<RemoveFolder Id="Remove_MenuDir" On="uninstall" />
|
|
</Component>
|
|
</Feature>
|
|
</Product>
|
|
</Wix>
|