Clementine-audio-player-Mac.../src/networkremote
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
..
avahi.cpp networkremote: Fix some log noise. 2021-05-03 14:45:00 +01:00
avahi.h Reformat all non-3rd-party C/C++/Objective-C++. 2014-02-07 16:34:20 +01:00
bonjour.h Reformat all non-3rd-party C/C++/Objective-C++. 2014-02-07 16:34:20 +01:00
bonjour.mm Reformat all C++ 2020-09-22 14:56:06 +01:00
incomingdataparser.cpp protobuf: Fix namespace conflict 2021-02-21 14:17:26 +00:00
incomingdataparser.h protobuf: Fix namespace conflict 2021-02-21 14:17:26 +00:00
networkremote.cpp protobuf: Fix namespace conflict 2021-02-21 14:17:26 +00:00
networkremote.h All changes for ClemRemote v1.0 (in one go) 2020-12-17 12:23:30 +00:00
networkremotehelper.cpp Fix misc. source comment typos 2019-08-21 23:43:16 -04:00
networkremotehelper.h Reformat all C++ 2020-09-22 14:56:06 +01:00
outgoingdatacreator.cpp Lyrics Providers: Remove unreachable ones 2023-09-12 13:33:01 +01:00
outgoingdatacreator.h protobuf: Fix namespace conflict 2021-02-21 14:17:26 +00:00
remoteclient.cpp protobuf: Fix namespace conflict 2021-02-21 14:17:26 +00:00
remoteclient.h protobuf: Fix namespace conflict 2021-02-21 14:17:26 +00:00
songsender.cpp Transcoder now accepts URLs for sources. 2022-01-10 16:39:58 +00:00
songsender.h Transcoder now accepts URLs for sources. 2022-01-10 16:39:58 +00:00
tinysvcmdns.cpp Reformat all C++ 2020-09-22 14:56:06 +01:00
tinysvcmdns.h Reformat all C++ 2020-09-22 14:56:06 +01:00
zeroconf.cpp Convert all instances of foreach() to a C++11 for 2014-02-10 14:43:32 +01:00
zeroconf.h Reformat all non-3rd-party C/C++/Objective-C++. 2014-02-07 16:34:20 +01:00