Git commit fc6cdb16151687c97febafe8ba91a67745bac805 by Volker Krause. Committed on 23/03/2019 at 15:43. Pushed by vkrause into branch 'master'.
Change URLs to https where possible Summary: Also, update a few outdated or redirecting URLs. Reviewers: yurchor Reviewed By: yurchor Subscribers: yurchor, plasma-devel, kde-doc-english Tags: #plasma, #documentation Differential Revision: https://phabricator.kde.org/D19995 M +2 -2 CMakeLists.txt M +1 -1 HACKING M +1 -1 applets/icontasks/metadata.desktop M +1 -1 applets/kickoff/package/metadata.desktop M +1 -1 applets/taskmanager/package/metadata.desktop M +3 -3 attica-kde/kdeplugin/kdeplatformdependent.cpp M +1 -1 doc/kcontrol/keyboard/index.docbook M +1 -1 doc/kcontrol/spellchecking/index.docbook M +1 -1 doc/kcontrol/splashscreen/index.docbook M +1 -1 imports/activitymanager/CMakeLists.txt M +1 -1 kcms/CMakeLists.txt M +1 -1 kcms/emoticons/emoticonslist.ui M +1 -1 kcms/kfontinst/CMakeLists.txt M +1 -1 kcms/kfontinst/viewpart/download-unicode-files.sh M +1 -1 knetattach/main.cpp https://commits.kde.org/plasma-desktop/fc6cdb16151687c97febafe8ba91a67745bac805 diff --git a/CMakeLists.txt b/CMakeLists.txt index 0846ea57..fa93420e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -92,14 +92,14 @@ set_package_properties(KF5Baloo PROPERTIES DESCRIPTION "File Searching" find_package(Fontconfig) set_package_properties(Fontconfig PROPERTIES DESCRIPTION "Font access configuration library" - URL "http://www.freedesktop.org/wiki/Software/fontconfig" + URL "https://www.freedesktop.org/wiki/Software/fontconfig" TYPE OPTIONAL PURPOSE "Needed to build font configuration and installation tools" ) find_package(X11) set_package_properties(X11 PROPERTIES DESCRIPTION "X11 libraries" - URL "http://www.x.org" + URL "https://www.x.org" TYPE REQUIRED PURPOSE "Required for building the X11 based workspace" ) diff --git a/HACKING b/HACKING index fb2b95bc..5024d948 100644 --- a/HACKING +++ b/HACKING @@ -14,7 +14,7 @@ Coding Style ============ New code should follow the kdelibs hacking style, as found here: - http://techbase.kde.org/Policies/Kdelibs_Coding_Style + https://community.kde.org/Policies/Kdelibs_Coding_Style Existing code that does not follow this style should be migrated over during editting. diff --git a/applets/icontasks/metadata.desktop b/applets/icontasks/metadata.desktop index eaac1ca6..bd09601f 100644 --- a/applets/icontasks/metadata.desktop +++ b/applets/icontasks/metadata.desktop @@ -131,7 +131,7 @@ X-KDE-PluginInfo-Author=Eike Hein [email protected] X-KDE-PluginInfo-Name=org.kde.plasma.icontasks X-KDE-PluginInfo-Version=3.0 -X-KDE-PluginInfo-Website=http://userbase.kde.org/Plasma/Tasks +X-KDE-PluginInfo-Website=https://userbase.kde.org/Plasma/Tasks X-KDE-PluginInfo-Category=Windows and Tasks X-KDE-PluginInfo-Depends= X-KDE-PluginInfo-License=GPL-2.0+ diff --git a/applets/kickoff/package/metadata.desktop b/applets/kickoff/package/metadata.desktop index 64e2e4a7..490f1167 100644 --- a/applets/kickoff/package/metadata.desktop +++ b/applets/kickoff/package/metadata.desktop @@ -176,7 +176,7 @@ X-KDE-PluginInfo-Author=Martin Graesslin [email protected] X-KDE-PluginInfo-Name=org.kde.plasma.kickoff X-KDE-PluginInfo-Version=1.0 -X-KDE-PluginInfo-Website=http://userbase.kde.org/Plasma/Kickoff +X-KDE-PluginInfo-Website=https://userbase.kde.org/Plasma/Kickoff X-KDE-PluginInfo-Category=Application Launchers X-KDE-PluginInfo-Depends= X-KDE-PluginInfo-License=GPL-2.0+ diff --git a/applets/taskmanager/package/metadata.desktop b/applets/taskmanager/package/metadata.desktop index 390c16d2..22cb4234 100644 --- a/applets/taskmanager/package/metadata.desktop +++ b/applets/taskmanager/package/metadata.desktop @@ -164,7 +164,7 @@ X-KDE-PluginInfo-Author=Eike Hein [email protected] X-KDE-PluginInfo-Name=org.kde.plasma.taskmanager X-KDE-PluginInfo-Version=4.0 -X-KDE-PluginInfo-Website=http://userbase.kde.org/Plasma/Tasks +X-KDE-PluginInfo-Website=https://userbase.kde.org/Plasma/Tasks X-KDE-PluginInfo-Category=Windows and Tasks X-KDE-PluginInfo-Depends= X-KDE-PluginInfo-License=GPL-2.0+ diff --git a/attica-kde/kdeplugin/kdeplatformdependent.cpp b/attica-kde/kdeplugin/kdeplatformdependent.cpp index 027aaf7c..cab9483e 100644 --- a/attica-kde/kdeplugin/kdeplatformdependent.cpp +++ b/attica-kde/kdeplugin/kdeplatformdependent.cpp @@ -202,7 +202,7 @@ bool Attica::KdePlatformDependent::askForCredentials(const QUrl& baseUrl, QStrin QList<QUrl> KdePlatformDependent::getDefaultProviderFiles() const { KConfigGroup group(m_config, "General"); - QStringList pathStrings = group.readPathEntry("providerFiles", QStringList(QStringLiteral("http://download.kde.org/ocs/providers.xml"))); + QStringList pathStrings = group.readPathEntry("providerFiles", QStringList(QStringLiteral("https://download.kde.org/ocs/providers.xml"))); QList<QUrl> paths; foreach (const QString& pathString, pathStrings) { paths.append(QUrl(pathString)); @@ -214,7 +214,7 @@ QList<QUrl> KdePlatformDependent::getDefaultProviderFiles() const void KdePlatformDependent::addDefaultProviderFile(const QUrl& url) { KConfigGroup group(m_config, "General"); - QStringList pathStrings = group.readPathEntry("providerFiles", QStringList(QStringLiteral("http://download.kde.org/ocs/providers.xml"))); + QStringList pathStrings = group.readPathEntry("providerFiles", QStringList(QStringLiteral("https://download.kde.org/ocs/providers.xml"))); QString urlString = url.toString(); if(!pathStrings.contains(urlString)) { pathStrings.append(urlString); @@ -227,7 +227,7 @@ void KdePlatformDependent::addDefaultProviderFile(const QUrl& url) void KdePlatformDependent::removeDefaultProviderFile(const QUrl& url) { KConfigGroup group(m_config, "General"); - QStringList pathStrings = group.readPathEntry("providerFiles", QStringList(QStringLiteral("http://download.kde.org/ocs/providers.xml"))); + QStringList pathStrings = group.readPathEntry("providerFiles", QStringList(QStringLiteral("https://download.kde.org/ocs/providers.xml"))); pathStrings.removeAll(url.toString()); group.writeEntry("providerFiles", pathStrings); } diff --git a/doc/kcontrol/keyboard/index.docbook b/doc/kcontrol/keyboard/index.docbook index edd0bf20..8fb38d7a 100644 --- a/doc/kcontrol/keyboard/index.docbook +++ b/doc/kcontrol/keyboard/index.docbook @@ -204,7 +204,7 @@ then you choose your setting in the expanded list.</para> <para>This is a &GUI; to help creating custom keyboard layouts for X11 using XKB. </para> <para>For more information please refer to the <emphasis>Links</emphasis> section on the -<ulink url="http://www.freedesktop.org/wiki/Software/XKeyboardConfig">XKeyboardConfig +<ulink url="https://www.freedesktop.org/wiki/Software/XKeyboardConfig">XKeyboardConfig page on freedesktop.org</ulink>. </para> </sect1> diff --git a/doc/kcontrol/spellchecking/index.docbook b/doc/kcontrol/spellchecking/index.docbook index 3e84b5ba..7bed948c 100644 --- a/doc/kcontrol/spellchecking/index.docbook +++ b/doc/kcontrol/spellchecking/index.docbook @@ -35,7 +35,7 @@ applications that use &sonnet;, which is a frontend to various free spell checke <para>To use &sonnet; you need to install spell checkers like ⪚ <ulink url="http://aspell.net/">GNU Aspell</ulink>, <ulink url="http://hspell.ivrix.org.il/">Hspell</ulink> or -<ulink url="http://hunspell.sourceforge.net/">Hunspell</ulink> +<ulink url="https://hunspell.github.io/">Hunspell</ulink> and additionally the corresponding dictionaries for your language.</para> <para>The configuration options selected here can be overridden by each application.</para> diff --git a/doc/kcontrol/splashscreen/index.docbook b/doc/kcontrol/splashscreen/index.docbook index 58274188..c1a02273 100644 --- a/doc/kcontrol/splashscreen/index.docbook +++ b/doc/kcontrol/splashscreen/index.docbook @@ -54,7 +54,7 @@ Press this button to view the splashscreen in action.</para> <varlistentry><term><guilabel>Get New Theme...</guilabel></term> <listitem> <para> -You need to be connected to the Internet to use this action. A dialog will display a list of themes from the <ulink url="http://www.kde-look.org">http://www.kde-look.org</ulink> website. Clicking the <guibutton>Install</guibutton> button associated with a theme will install this theme locally. +You need to be connected to the Internet to use this action. A dialog will display a list of themes from the <ulink url="https://store.kde.org">https://store.kde.org</ulink> website. Clicking the <guibutton>Install</guibutton> button associated with a theme will install this theme locally. </para> <para> <screenshot> diff --git a/imports/activitymanager/CMakeLists.txt b/imports/activitymanager/CMakeLists.txt index c09651a5..9087c4fc 100644 --- a/imports/activitymanager/CMakeLists.txt +++ b/imports/activitymanager/CMakeLists.txt @@ -14,7 +14,7 @@ find_package (KF5WindowSystem ${KF5_DEP_VERSION} CONFIG REQUIRED) find_package (X11) set_package_properties ( X11 PROPERTIES DESCRIPTION "X11 libraries" - URL "http://www.x.org" + URL "https://www.x.org" TYPE REQUIRED ) diff --git a/kcms/CMakeLists.txt b/kcms/CMakeLists.txt index 672d5cfc..3ad0c52d 100644 --- a/kcms/CMakeLists.txt +++ b/kcms/CMakeLists.txt @@ -2,7 +2,7 @@ remove_definitions(-DQT_NO_CAST_FROM_ASCII -DQT_STRICT_ITERATORS -DQT_NO_CAST_FR find_package(Freetype) set_package_properties(Freetype PROPERTIES DESCRIPTION "A font rendering engine" - URL "http://www.freetype.org" + URL "https://www.freetype.org" TYPE OPTIONAL PURPOSE "Needed to build kfontinst, a simple font installer." ) diff --git a/kcms/emoticons/emoticonslist.ui b/kcms/emoticons/emoticonslist.ui index 092eb46c..0afe384b 100644 --- a/kcms/emoticons/emoticonslist.ui +++ b/kcms/emoticons/emoticonslist.ui @@ -115,7 +115,7 @@ <string>Get new emoticon icon themes from the Internet</string> </property> <property name="whatsThis"> - <string>You need to be connected to the Internet to use this action. A dialog will display a list of emoticon themes from the http://www.kde-look.org website. Clicking the Install button associated with a theme will install this theme locally.</string> + <string>You need to be connected to the Internet to use this action. A dialog will display a list of emoticon themes from the https://store.kde.org website. Clicking the Install button associated with a theme will install this theme locally.</string> </property> <property name="text"> <string>Get New Emoticons...</string> diff --git a/kcms/kfontinst/CMakeLists.txt b/kcms/kfontinst/CMakeLists.txt index a8a870e4..32548520 100644 --- a/kcms/kfontinst/CMakeLists.txt +++ b/kcms/kfontinst/CMakeLists.txt @@ -6,7 +6,7 @@ if (KFI_BUILD_STANDALONE) find_package(Fontconfig REQUIRED) find_package(Strigi REQUIRED) find_package(X11 REQUIRED) - macro_log_feature(X11_Xft_FOUND "libxft" "X FreeType interface library" "http://www.x.org" FALSE "" "Font installer and font previews") + macro_log_feature(X11_Xft_FOUND "libxft" "X FreeType interface library" "https://www.x.org" FALSE "" "Font installer and font previews") include(KDE4Defaults) endif () diff --git a/kcms/kfontinst/viewpart/download-unicode-files.sh b/kcms/kfontinst/viewpart/download-unicode-files.sh index 440f039e..46ad8c02 100644 --- a/kcms/kfontinst/viewpart/download-unicode-files.sh +++ b/kcms/kfontinst/viewpart/download-unicode-files.sh @@ -19,7 +19,7 @@ FILES='UnicodeData.txt Blocks.txt Scripts.txt' mkdir -p ${1:-unicode} for x in $FILES; do - wget "http://www.unicode.org/Public/UNIDATA/$x" -O "${1:-unicode}/$x" + wget "https://www.unicode.org/Public/UNIDATA/$x" -O "${1:-unicode}/$x" done echo 'Done.' diff --git a/knetattach/main.cpp b/knetattach/main.cpp index 5e7a6600..aa572660 100644 --- a/knetattach/main.cpp +++ b/knetattach/main.cpp @@ -30,7 +30,7 @@ int main(int argc, char **argv) QApplication app(argc, argv); KLocalizedString::setApplicationDomain("knetattach5"); - KAboutData aboutData(QLatin1String("knetattach"), i18n("KDE Network Wizard"), QLatin1String(PROJECT_VERSION), i18n("KDE Network Wizard"),KAboutLicense::GPL, i18n("(c) 2004 George Staikos"), QLatin1String("http://www.kde.org/")); + KAboutData aboutData(QLatin1String("knetattach"), i18n("KDE Network Wizard"), QLatin1String(PROJECT_VERSION), i18n("KDE Network Wizard"),KAboutLicense::GPL, i18n("(c) 2004 George Staikos"), QLatin1String("https://www.kde.org/")); aboutData.addAuthor(i18n("George Staikos"), i18n("Primary author and maintainer"), QStringLiteral("[email protected]"));
