aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2022-03-30 21:09:37 +0200
committerCristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2022-03-31 11:51:39 +0200
commit424620e72b2e0e9d71e178fe9a453583c8b5c59a (patch)
tree4033d5ef38884bf103cca2322646e3c3dfc44ecb
parent66e9e9e0674dff4ac0715faf17bf039eeb287df7 (diff)
doc: use https in some source code files
Pick-to: 6.2 Change-Id: Ic48c1016638cb6fca544139ef589223b45c656c7 Reviewed-by: Christian Tismer <tismer@stackless.com> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
-rw-r--r--build_scripts/platforms/windows_desktop.py2
-rw-r--r--sources/shiboken6/ApiExtractor/qtdocparser.cpp2
-rw-r--r--sources/shiboken6/generator/qtdoc/qtxmltosphinx.cpp2
-rw-r--r--tools/missing_bindings/main.py4
4 files changed, 5 insertions, 5 deletions
diff --git a/build_scripts/platforms/windows_desktop.py b/build_scripts/platforms/windows_desktop.py
index 68ad003c3..f4e85e9a6 100644
--- a/build_scripts/platforms/windows_desktop.py
+++ b/build_scripts/platforms/windows_desktop.py
@@ -269,7 +269,7 @@ def copy_msvc_redist_files(vars, redist_target_path):
# Extract Qt dependency dlls when building on Qt CI.
in_coin = os.environ.get('COIN_LAUNCH_PARAMETERS', None)
if in_coin is not None:
- redist_url = "http://download.qt.io/development_releases/prebuilt/vcredist/"
+ redist_url = "https://download.qt.io/development_releases/prebuilt/vcredist/"
zip_file = "pyside_qt_deps_64_2019.7z"
if "{target_arch}".format(**vars) == "32":
zip_file = "pyside_qt_deps_32_2019.7z"
diff --git a/sources/shiboken6/ApiExtractor/qtdocparser.cpp b/sources/shiboken6/ApiExtractor/qtdocparser.cpp
index 7f5b71363..ee6df92ca 100644
--- a/sources/shiboken6/ApiExtractor/qtdocparser.cpp
+++ b/sources/shiboken6/ApiExtractor/qtdocparser.cpp
@@ -338,7 +338,7 @@ static QString qmlReferenceLink(const QFileInfo &qmlModuleFi)
{
QString result;
QTextStream(&result) << "<para>The module also provides <link"
- << R"( type="page" page="http://doc.qt.io/qt-)" << QT_VERSION_MAJOR
+ << R"( type="page" page="https://doc.qt.io/qt-)" << QT_VERSION_MAJOR
<< '/' << qmlModuleFi.baseName() << R"(.html")"
<< ">QML types</link>.</para>";
return result;
diff --git a/sources/shiboken6/generator/qtdoc/qtxmltosphinx.cpp b/sources/shiboken6/generator/qtdoc/qtxmltosphinx.cpp
index 0cc796d30..cc57fff7e 100644
--- a/sources/shiboken6/generator/qtdoc/qtxmltosphinx.cpp
+++ b/sources/shiboken6/generator/qtdoc/qtxmltosphinx.cpp
@@ -1118,7 +1118,7 @@ QtXmlToSphinxLink *QtXmlToSphinx::handleLinkStart(const QString &type, QString r
// <link raw="Model/View Classes" href="model-view-programming.html#model-view-classes"
// type="page" page="Model/View Programming">Model/View Classes</link>
-// <link type="page" page="http://doc.qt.io/qt-5/class.html">QML types</link>
+// <link type="page" page="https://doc.qt.io/qt-5/class.html">QML types</link>
// <link raw="Qt Quick" href="qtquick-index.html" type="page" page="Qt Quick">Qt Quick</link>
// <link raw="QObject" href="qobject.html" type="class">QObject</link>
// <link raw="Qt::Window" href="qt.html#WindowType-enum" type="enum" enum="Qt::WindowType">Qt::Window</link>
diff --git a/tools/missing_bindings/main.py b/tools/missing_bindings/main.py
index 7390687ff..c2754d5bd 100644
--- a/tools/missing_bindings/main.py
+++ b/tools/missing_bindings/main.py
@@ -65,8 +65,8 @@ from bs4 import BeautifulSoup
from config import modules_to_test, types_to_ignore
qt_documentation_website_prefixes = {
- "6.0": "http://doc.qt.io/qt-6/",
- "dev": "http://doc-snapshots.qt.io/qt5-dev/",
+ "6.0": "https://doc.qt.io/qt-6/",
+ "dev": "https://doc-snapshots.qt.io/qt5-dev/",
}