Skip to content

Commit

Permalink
Use https for bugs.kde.org
Browse files Browse the repository at this point in the history
  • Loading branch information
Pino Toscano committed Jun 28, 2020
1 parent 3afd3cf commit 6aebf1f
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ Amarok does not have clear maintainers of all parts of the codebase. The current

You are welcome to work on any part of it provided you coordinate with others working in that part.

If you need to contact someone about a particular part it is best to contact the developer mailing list at amarok-devel@kde.org or the assignee of the corresponding component on http://bugs.kde.org directly.
If you need to contact someone about a particular part it is best to contact the developer mailing list at amarok-devel@kde.org or the assignee of the corresponding component on https://bugs.kde.org directly.
2 changes: 1 addition & 1 deletion Mainpage.dox
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ of the <a href="http://techbase.kde.org">KDE Techbase</a>.

@maintainers
Amarok does not have clear maintainers of any part of the codebase. You are welcome to work on any part of it provided you coordinate with others working in that part. <br/>
If you need to contact someone about a particular part it is best to contact the developer mailing list at amarok-devel@kde.org or the assignee of the corresponding component on http://bugs.kde.org directly.
If you need to contact someone about a particular part it is best to contact the developer mailing list at amarok-devel@kde.org or the assignee of the corresponding component on https://bugs.kde.org directly.

@authors
<!--
Expand Down
2 changes: 1 addition & 1 deletion release_scripts/generate_changelog.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
$changelog.gsub!(/\n{2,}/, "\n")

# Replace bug number with direct link to bugs.kde.org
$changelog.gsub!(/BR (\d+)/, '<a href="http://bugs.kde.org/show_bug.cgi?id=\\1">\\0</a>')
$changelog.gsub!(/BR (\d+)/, '<a href="https://bugs.kde.org/show_bug.cgi?id=\\1">\\0</a>')

# Make bullets
bullet_item_regexp =
Expand Down
2 changes: 1 addition & 1 deletion src/EngineController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ EngineController::restoreSession()
Meta::TrackPtr track = CollectionManager::instance()->trackForUrl( url );

// Only give a resume time for local files, because resuming remote protocols can have weird side effects.
// See: http://bugs.kde.org/show_bug.cgi?id=172897
// See: https://bugs.kde.org/show_bug.cgi?id=172897
if( url.isLocalFile() )
play( track, AmarokConfig::resumeTime(), AmarokConfig::resumePaused() );
else
Expand Down
2 changes: 1 addition & 1 deletion src/aboutdialog/ExtendedAboutDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ ExtendedAboutDialog::ExtendedAboutDialog(const KAboutData &about, const OcsData
if (!aboutData->customAuthorTextEnabled())
{
if (aboutData->bugAddress().isEmpty() || aboutData->bugAddress() == "submit@bugs.kde.org")
bugsLabel->setText( i18n("Please use <a href=\"http://bugs.kde.org\">http://bugs.kde.org</a> to report bugs.\n") );
bugsLabel->setText( i18n("Please use <a href=\"https://bugs.kde.org\">https://bugs.kde.org</a> to report bugs.\n") );
else
{
if(aboutData->authors().count() == 1 && (aboutData->authors().first().emailAddress() == aboutData->bugAddress()))
Expand Down
2 changes: 1 addition & 1 deletion src/browsers/CollectionTreeView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,7 @@ CollectionTreeView::createExtendedActions( const QModelIndexList &indices )
QActionList gActions = The::globalCollectionActions()->actionsFor( item->data() );
foreach( QAction *action, gActions )
{
if( action ) // Can become 0-pointer, see http://bugs.kde.org/show_bug.cgi?id=183250
if( action ) // Can become 0-pointer, see https://bugs.kde.org/show_bug.cgi?id=183250
{
actions.append( action );
debug() << "Got global action: " << action->text();
Expand Down
2 changes: 1 addition & 1 deletion src/core/meta/Meta.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Meta::Track::operator==( const Meta::Track &track ) const
bool
Meta::Track::lessThan( const Meta::TrackPtr& left, const Meta::TrackPtr& right )
{
if( !left || !right ) // These should never be 0, but it can apparently happen (http://bugs.kde.org/show_bug.cgi?id=181187)
if( !left || !right ) // These should never be 0, but it can apparently happen (https://bugs.kde.org/show_bug.cgi?id=181187)
return false;

if( left->album() && right->album() )
Expand Down
4 changes: 2 additions & 2 deletions src/core/podcasts/PodcastReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ PodcastReader::endItem()
}

//make sure that the episode is not a bogus match. The channel has to be correct.
// See http://bugs.kde.org/show_bug.cgi?id=227515
// See https://bugs.kde.org/show_bug.cgi?id=227515
if( !episode.isNull() && episode->channel() == m_channel )
{
debug() << "updating episode: " << episode->title();
Expand Down Expand Up @@ -1611,7 +1611,7 @@ PodcastReader::parsePubDate( const QString &dateString )
parseInput = rfcDateDayRegex.cap(1);
}
//Hack around a to strict RFCDate implementation in KDateTime.
//See http://bugs.kde.org/show_bug.cgi?id=231062
//See https://bugs.kde.org/show_bug.cgi?id=231062
QRegExp rfcMonthLowercase( QStringLiteral("^\\d+\\s+\\b(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\\b") );
if( rfcMonthLowercase.indexIn( parseInput ) != -1 )
{
Expand Down

0 comments on commit 6aebf1f

Please sign in to comment.