mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-06 23:31:34 +01:00
2a14ec9d4d
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> |
||
---|---|---|
.. | ||
icons | ||
last.fm | ||
lyrics | ||
playstore | ||
providers | ||
schema | ||
blank.ttf | ||
clem_remote_android_qr.png | ||
clem_remote_iOS_qr.png | ||
clementine_remote_qr.png | ||
clementine-spotify-public.pem | ||
currenttrack_bar_left.png | ||
currenttrack_bar_mid.png | ||
currenttrack_bar_right.png | ||
currenttrack_pause.png | ||
currenttrack_play.png | ||
data.qrc | ||
en_available_apple_store_45.png | ||
globalsearch.css | ||
hypnotoad.gif | ||
icon_large_grey.png | ||
icon_large.png | ||
icon_outline.xcf | ||
icon.png | ||
icon.svg | ||
logo.png | ||
logo.xcf | ||
lumberjacksong.txt | ||
mainwindow.css | ||
nocover.png | ||
nomusic.png | ||
nyancat.png | ||
oauthsuccess.html | ||
osd_background.png | ||
osd_shadow_corner.png | ||
osd_shadow_edge.png | ||
rainbowdash.png | ||
sample.mood | ||
sidebar_background.png | ||
smartplaylistsearchterm.css | ||
songinfo.css | ||
soundcloud-ca.pem | ||
spinner.gif | ||
spotify-attribution.png | ||
star-off.png | ||
star-on.png | ||
tiny-pause.png | ||
tiny-start.png | ||
volumeslider-gradient.png | ||
volumeslider-handle_glow.png | ||
volumeslider-handle.png |