diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 75aadf9..d1a6f81 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -8,6 +8,7 @@ PyHamtools 0.8.7 * Lookuplib/Countryfiles: corrected Brazil to ADIF country id 108 * Lookuplib/Countryfiles: corrected Domenican Republic to ADIF country if 72 +* Changed the remaining Clublog URLs to https://cdn.clublog.org PyHamtools 0.8.6 ================ diff --git a/docs/source/index.rst b/docs/source/index.rst index a3207a1..e5bf097 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -25,7 +25,7 @@ with some modules and classes which are frequently needed: PyHamTools is used in production at the DXHeat.com DXCluster_, performing several thousand lookups and calculations per day. -.. _Clublog.org: https://secure.clublog.org/ +.. _Clublog.org: https://clublog.org/ .. _Country-Files.com: http://www.country-files.com/ .. _QRZ.com: http://qrz.com .. _eQSL: http://eqsl.cc diff --git a/pyhamtools/lookuplib.py b/pyhamtools/lookuplib.py index 5271349..28e0b18 100644 --- a/pyhamtools/lookuplib.py +++ b/pyhamtools/lookuplib.py @@ -689,7 +689,7 @@ class LookupLib(object): #no matching case raise KeyError - def _lookup_clublogAPI(self, callsign=None, timestamp=None, url="https://secure.clublog.org/dxcc", apikey=None): + def _lookup_clublogAPI(self, callsign=None, timestamp=None, url="https://cdn.clublog.org/dxcc", apikey=None): """ Set up the Lookup object for Clublog Online API """ diff --git a/pyhamtools/qsl.py b/pyhamtools/qsl.py index 8cd5cf0..da1e891 100644 --- a/pyhamtools/qsl.py +++ b/pyhamtools/qsl.py @@ -94,7 +94,7 @@ def get_clublog_users(**kwargs): 'lastupload': datetime.datetime(2013, 5, 8, 15, 0, 6), 'oqrs': True} - .. _CLUBLOG: https://secure.clublog.org + .. _CLUBLOG: https://clublog.org __ CLUBLOG_ """ @@ -106,7 +106,7 @@ def get_clublog_users(**kwargs): try: url = kwargs['url'] except KeyError: - url = "https://secure.clublog.org/clublog-users.json.zip" + url = "https://cdn.clublog.org/clublog-users.json.zip" try: result = requests.get(url)