diff options
author | Noah Kantrowitz <noah@coderanger.net> | 2021-07-30 13:54:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 13:54:46 (GMT) |
commit | be42c06bb01206209430f3ac08b72643dc7cad1c (patch) | |
tree | 85df7eaca19021bab89cb63f7c8022dcbe13c2fb /Tools/msi | |
parent | ea4673ed0757e9bfe8774e60cfae3313e9927b5f (diff) | |
download | cpython-be42c06bb01206209430f3ac08b72643dc7cad1c.zip cpython-be42c06bb01206209430f3ac08b72643dc7cad1c.tar.gz cpython-be42c06bb01206209430f3ac08b72643dc7cad1c.tar.bz2 |
Update URLs in comments and metadata to use HTTPS (GH-27458)
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/README.txt | 2 | ||||
-rw-r--r-- | Tools/msi/buildrelease.bat | 2 | ||||
-rw-r--r-- | Tools/msi/bundle/bundle.wxs | 2 | ||||
-rw-r--r-- | Tools/msi/common_en-US.wxl_template | 2 | ||||
-rw-r--r-- | Tools/msi/exe/exe_en-US.wxl_template | 2 | ||||
-rw-r--r-- | Tools/msi/msi.props | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/Tools/msi/README.txt b/Tools/msi/README.txt index 82635f3..c85ee45 100644 --- a/Tools/msi/README.txt +++ b/Tools/msi/README.txt @@ -167,7 +167,7 @@ The following properties may be passed when building these projects. by providing a unique URI for this property. It does not need to be an active internet address. Defaults to $(ComputerName). - Official releases use http://www.python.org/(architecture name) + Official releases use https://www.python.org/(architecture name) /p:DownloadUrlBase=(any URI) Specifies the base of a URL where missing parts of the installer layout diff --git a/Tools/msi/buildrelease.bat b/Tools/msi/buildrelease.bat index b72eede..4fbaf2c 100644 --- a/Tools/msi/buildrelease.bat +++ b/Tools/msi/buildrelease.bat @@ -12,7 +12,7 @@ rem rem The following substitutions will be applied to the release URI: rem Variable Description Example rem {arch} architecture amd64, win32 -set RELEASE_URI=http://www.python.org/{arch} +set RELEASE_URI=https://www.python.org/{arch} rem This is the URL that will be used to download installation files. rem The files available from the default URL *will* conflict with your diff --git a/Tools/msi/bundle/bundle.wxs b/Tools/msi/bundle/bundle.wxs index ddd6870..e2f8718 100644 --- a/Tools/msi/bundle/bundle.wxs +++ b/Tools/msi/bundle/bundle.wxs @@ -7,7 +7,7 @@ Version="$(var.Version)" IconSourceFile="..\..\..\PC\icons\setup.ico" Manufacturer="!(loc.Manufacturer)" - AboutUrl="http://www.python.org/" + AboutUrl="https://www.python.org/" Compressed="no" dep:ProviderKey="CPython-$(var.MajorVersionNumber).$(var.MinorVersionNumber)$(var.PyArchExt)$(var.PyTestExt)"> <BootstrapperApplication Id="PythonBA" SourceFile="$(var.BootstrapApp)"> diff --git a/Tools/msi/common_en-US.wxl_template b/Tools/msi/common_en-US.wxl_template index c95c271..adb8f40 100644 --- a/Tools/msi/common_en-US.wxl_template +++ b/Tools/msi/common_en-US.wxl_template @@ -14,5 +14,5 @@ <String Id="NoDowngrade">A newer version of !(loc.ProductName) is already installed.</String> <String Id="IncorrectCore">An incorrect version of a prerequisite package is installed. Please uninstall any other versions of !(loc.ProductName) and try installing this again.</String> <String Id="NoTargetDir">The TARGETDIR variable must be provided when invoking this installer.</String> - <String Id="ManufacturerSupportUrl">http://www.python.org/</String> + <String Id="ManufacturerSupportUrl">https://www.python.org/</String> </WixLocalization> diff --git a/Tools/msi/exe/exe_en-US.wxl_template b/Tools/msi/exe/exe_en-US.wxl_template index 1f9e290..4cd9e3e 100644 --- a/Tools/msi/exe/exe_en-US.wxl_template +++ b/Tools/msi/exe/exe_en-US.wxl_template @@ -4,5 +4,5 @@ <String Id="ShortDescriptor">executable</String> <String Id="ShortcutName">Python {{ShortVersion}} ({{Bitness}})</String> <String Id="ShortcutDescription">Launches the !(loc.ProductName) interpreter.</String> - <String Id="SupportUrl">http://www.python.org/</String> + <String Id="SupportUrl">https://www.python.org/</String> </WixLocalization> diff --git a/Tools/msi/msi.props b/Tools/msi/msi.props index 3f14501..cb9221f 100644 --- a/Tools/msi/msi.props +++ b/Tools/msi/msi.props @@ -28,7 +28,7 @@ that intend to bundle Python should rebuild these modules with their own URI to avoid conflicting with the official releases. - The official releases use "http://www.python.org/$(ArchName)" + The official releases use "https://www.python.org/$(ArchName)" This is not the same as the DownloadUrl property used in the bundle projects. |