Clementine-audio-player-Mac.../src/songinfo
Marcus Müller 2a14ec9d4d Lyrics Providers: Remove unreachable ones
This was determined programmatically by means of trying to do a simple
HTTP request to / of any of the URLs given:

```python
from lxml import etree
from urllib import parse
import requests
doc = etree.parse("ultimate_providers.xml")
root = doc.getroot()
for provider in root:
    parsed_url = parse.urlparse(provider.get("url"))
    url = f"{parsed_url.scheme}://{parsed_url.netloc}/"
    try:
        requests.head(url, timeout=5)
    except Exception as e:
        print(parsed_url.netloc)
```

Note that these were also removed from songinfoview as present, and from
outgoingdatacreator. The two lists there were found to be inconsistent,
but this isn't subject of this PR.

Signed-off-by: Marcus Müller <marcus_clementine@baseband.digital>
2023-09-12 13:33:01 +01:00
..
artistbiography.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
artistbiography.h Fetch whole wikipedia article (as extract). 2016-07-05 15:09:12 +01:00
artistinfoview.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
artistinfoview.h Use nullptr as parent parameter default everywhere 2014-02-10 16:03:54 +01:00
collapsibleinfoheader.cpp Reformat all non-3rd-party C/C++/Objective-C++. 2014-02-07 16:34:20 +01:00
collapsibleinfoheader.h Reformat all C++ 2020-09-22 14:56:06 +01:00
collapsibleinfopane.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
collapsibleinfopane.h Reformat all C++ 2020-09-22 14:56:06 +01:00
lastfmtrackinfoprovider.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
lastfmtrackinfoprovider.h Reformat all non-3rd-party C/C++/Objective-C++. 2014-02-07 16:34:20 +01:00
songinfobase.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
songinfobase.h Reformat all C++ 2020-09-22 14:56:06 +01:00
songinfofetcher.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
songinfofetcher.h Reformat all C++ 2020-09-22 14:56:06 +01:00
songinfoprovider.cpp Reformat all non-3rd-party C/C++/Objective-C++. 2014-02-07 16:34:20 +01:00
songinfoprovider.h Reformat all C++ 2020-09-22 14:56:06 +01:00
songinfosettingspage.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
songinfosettingspage.h Reformat all non-3rd-party C/C++/Objective-C++. 2014-02-07 16:34:20 +01:00
songinfosettingspage.ui Increase default timeout for loading song/artist info. 2013-12-30 20:34:24 +01:00
songinfotextview.cpp Songinfo/lyrics: Improve generation of paragraphs 2015-10-10 22:04:37 +02:00
songinfotextview.h Reformat all C++ 2020-09-22 14:56:06 +01:00
songinfoview.cpp Lyrics Providers: Remove unreachable ones 2023-09-12 13:33:01 +01:00
songinfoview.h Remove most usages of QFutureWatcher 2015-11-27 14:28:12 +00:00
songkickconcerts.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
songkickconcerts.h Reformat all C++ 2020-09-22 14:56:06 +01:00
songkickconcertwidget.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
songkickconcertwidget.h Use nullptr as parent parameter default everywhere 2014-02-10 16:03:54 +01:00
songkickconcertwidget.ui Make SongKick results a bit prettier 2012-08-27 12:25:33 +01:00
songplaystats.cpp Convert all instances of foreach() to a C++11 for 2014-02-10 14:43:32 +01:00
songplaystats.h Use nullptr as parent parameter default everywhere 2014-02-10 16:03:54 +01:00
spotifyimages.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
spotifyimages.h Replace echonest artist images with spotify #5416 2016-06-22 14:54:57 +01:00
streamdiscoverer.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
streamdiscoverer.h Reformat all C++ 2020-09-22 14:56:06 +01:00
taglyricsinfoprovider.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
taglyricsinfoprovider.h IDv3 tag lyrics support. 2015-04-10 21:05:07 +02:00
tagwidget.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
tagwidget.h Reformat all C++ 2020-09-22 14:56:06 +01:00
ultimatelyricslyric.cpp Songinfo/lyrics: Improve generation of paragraphs 2015-10-10 22:04:37 +02:00
ultimatelyricslyric.h Use nullptr as parent parameter default everywhere 2014-02-10 16:03:54 +01:00
ultimatelyricsprovider.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
ultimatelyricsprovider.h lyrics: Add 30s timeout for lyrics provider requests 2020-05-24 15:54:49 +01:00
ultimatelyricsreader.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
ultimatelyricsreader.h Reformat all C++ 2020-09-22 14:56:06 +01:00