8000 bpo-47086: Remove .chm from Windows installer and add HTML docs by zooba · Pull Request #32038 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-47086: Remove .chm from Windows installer and add HTML docs #32038

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Mar 22, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Missing attributes
  • Loading branch information
zooba committed Mar 21, 2022
commit f913deabc0899b44359c59cf39a877a9efb57868
4 changes: 2 additions & 2 deletions Tools/msi/doc/doc.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<ComponentGroupRef Id="doc_html" Primary="yes" />
<ComponentRef Id="OptionalFeature" />

<Component Id="doc_reg">
<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]" />
<RegistryValue Key="Help\Main Python Documentation" Type="string" Value="[#Doc_html_index.html]" KeyPath="yes" />
</RegistryKey>
</Component>
</Feature>
Expand Down
0