Git commit e02be166a78d8cea499b9062d081f470525f0992 by Friedrich W. H. Kossebau. Committed on 16/02/2019 at 21:14. Pushed by kossebau into branch 'master'.
Use more https in links M +9 -9 CMakeLists.txt M +2 -2 doc/index.docbook M +1 -1 libk3b/projects/datacd/k3bmkisofshandler.cpp M +1 -1 src/main.cpp https://commits.kde.org/k3b/e02be166a78d8cea499b9062d081f470525f0992 diff --git a/CMakeLists.txt b/CMakeLists.txt index 43c8ac07b..d5408a2d3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -91,7 +91,7 @@ set_package_properties(Samplerate PROPERTIES find_package(KF5Cddb) set_package_properties(KF5Cddb PROPERTIES DESCRIPTION "KF5 branch for CDDB library" - URL "http://projects.kde.org/projects/kde/kdemultimedia/libkcddb" + URL "https://commits.kde.org/libkcddb" TYPE REQUIRED PURPOSE "libkcddb is used to retrieve audio CD meta data from the internet.") @@ -99,7 +99,7 @@ if(K3B_ENABLE_DVD_RIPPING) find_package(DvdRead) set_package_properties(DvdRead PROPERTIES DESCRIPTION "Libdvdread provides a simple foundation for reading DVD video disks." - URL "http://www.dtek.chalmers.se/groups/dvd/downloads.shtml" + URL "https://www.videolan.org/developers/libdvdnav.html" TYPE OPTIONAL) set(ENABLE_DVD_RIPPING "${DVDREAD_FOUND}") @@ -109,7 +109,7 @@ if(K3B_ENABLE_TAGLIB) find_package(Taglib) set_package_properties(Taglib PROPERTIES DESCRIPTION "Read and write tags in audio files" - URL "http://www.freshmeat.net/projects/taglib" + URL "https://taglib.org/" TYPE OPTIONAL) set(ENABLE_TAGLIB "${TAGLIB_FOUND}") @@ -119,7 +119,7 @@ if(K3B_ENABLE_MUSICBRAINZ) find_package(MusicBrainz) set_package_properties(MusicBrainz PROPERTIES DESCRIPTION "Provide information about the CD, about the artist or about related information" - URL "http://musicbrainz.org" + URL "https://musicbrainz.org/" TYPE OPTIONAL) set(ENABLE_MUSICBRAINZ "${MUSICBRAINZ_FOUND}") @@ -129,7 +129,7 @@ if(K3B_BUILD_FFMPEG_DECODER_PLUGIN) find_package(FFmpeg) set_package_properties(FFmpeg PROPERTIES PURPOSE "Needed for the K3b FFmpeg decoder plugin which can decode virtually all audio types." - URL "http://ffmpeg.org" + URL "https://ffmpeg.org/" TYPE OPTIONAL) if(FFMPEG_FOUND) @@ -195,13 +195,13 @@ if(K3B_BUILD_FLAC_DECODER_PLUGIN) find_package(Flac) set_package_properties(Flac PROPERTIES PURPOSE "Needed for the Flac audio decoder plugin." - URL "http://flac.sourceforge.net" + URL "https://xiph.org/flac/" TYPE OPTIONAL) find_package(Flac++) set_package_properties(Flac++ PROPERTIES PURPOSE "Needed for the Flac audio decoder plugin." - URL "http://flac.sourceforge.net" + URL "https://xiph.org/flac/" TYPE OPTIONAL) if(FLAC_FOUND AND FLAC++_FOUND) @@ -213,7 +213,7 @@ if(K3B_BUILD_MAD_DECODER_PLUGIN) find_package(Mad) set_package_properties(Mad PROPERTIES PURPOSE "Needed for the mp3 audio decoder plugin." - URL "http://www.underbit.com/products/mad" + URL "https://www.underbit.com/products/mad" TYPE OPTIONAL) set(BUILD_MAD_DECODER_PLUGIN "${MAD_FOUND}") @@ -223,7 +223,7 @@ if(K3B_BUILD_MUSE_DECODER_PLUGIN) find_package(Muse) set_package_properties(Muse PROPERTIES PURPOSE "Needed for the Musepack audio decoder plugin" - URL "http://www.musepack.net" + URL "https://www.musepack.net/" TYPE OPTIONAL) set(BUILD_MUSE_DECODER_PLUGIN "${MUSE_FOUND}") diff --git a/doc/index.docbook b/doc/index.docbook index 98c3f6c03..fb5e9d1f4 100644 --- a/doc/index.docbook +++ b/doc/index.docbook @@ -10,7 +10,7 @@ <authorgroup> <author> <personname> - <firstname>This documentation was converted from the KDE UserBase <ulink url=" http://userbase.kde.org/K3b">K3b</ulink> page at 2011-01-20.</firstname> + <firstname>This documentation was converted from the KDE UserBase <ulink url=" https://userbase.kde.org/K3b">K3b</ulink> page at 2011-01-20.</firstname> <surname></surname> </personname> </author> @@ -254,7 +254,7 @@ all modern systems optical devices belongs to a certain user group (⪚ <quote> <title>Credits and License</title> <para> Documentation Copyright see the UserBase -<ulink url="http://userbase.kde.org/index.php?title=K3b&action=history">K3b page history</ulink></para> +<ulink url="https://userbase.kde.org/index.php?title=K3b&action=history">K3b page history</ulink></para> <!-- TRANS:CREDIT_FOR_TRANSLATORS --> &underFDL; </chapter> diff --git a/libk3b/projects/datacd/k3bmkisofshandler.cpp b/libk3b/projects/datacd/k3bmkisofshandler.cpp index 1444ab678..feec1b55c 100644 --- a/libk3b/projects/datacd/k3bmkisofshandler.cpp +++ b/libk3b/projects/datacd/k3bmkisofshandler.cpp @@ -111,7 +111,7 @@ void K3b::MkisofsHandler::parseMkisofsOutput( const QString& line ) handleMkisofsInfoMessage( i18n("Encountered an incorrectly encoded filename '%1'", line.section( QRegExp("[\\(\\)]"), 1, 1 )), K3b::Job::MessageError ); handleMkisofsInfoMessage( i18n("This may be caused by a system update which changed the local character set."), K3b::Job::MessageError ); - handleMkisofsInfoMessage( i18n("You may use convmv (http://j3e.de/linux/convmv/) to fix the filename encoding."), K3b::Job::MessageError ); + handleMkisofsInfoMessage( i18n("You may use convmv (https://j3e.de/linux/convmv/) to fix the filename encoding."), K3b::Job::MessageError ); d->readError = true; } else if( line.endsWith( "has not an allowable size." ) ) { diff --git a/src/main.cpp b/src/main.cpp index 8fc11b465..9d4821d24 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -39,7 +39,7 @@ int main( int argc, char* argv[] ) KAboutLicense::GPL, i18n("Copyright © 1998–2018 K3b authors"), QString(), - i18n("http://www.k3b.org" ) ); + i18n("https://www.k3b.org" ) ); aboutData.setOrganizationDomain("kde"); aboutData.setDesktopFileName(QStringLiteral("org.kde.k3b.desktop"));
