diff --git a/src/apple.py b/src/apple.py index 501e8a42..c0167ee9 100644 --- a/src/apple.py +++ b/src/apple.py @@ -12,9 +12,10 @@ URLS = [ "https://support.apple.com/kb/HT205759", # 2013 "https://support.apple.com/kb/HT204611", # 2011 to 2012 # Apple still links to the following articles, but they are 404: - "http://web.archive.org/web/20230404214605_/https://support.apple.com/en-us/HT5165", # 2010 - "http://web.archive.org/web/20230327200842_/https://support.apple.com/en-us/HT4218", # 2008-2009 - "http://web.archive.org/web/20230204234533_/https://support.apple.com/en-us/HT1263", # 2005-2007 + # Disabled, too much timed out. + # "http://web.archive.org/web/20230404214605_/https://support.apple.com/en-us/HT5165", # 2010 + # "http://web.archive.org/web/20230327200842_/https://support.apple.com/en-us/HT4218", # 2008-2009 + # "http://web.archive.org/web/20230204234533_/https://support.apple.com/en-us/HT1263", # 2005-2007 ] # If you are changing these, please use diff --git a/src/couchbase-server.py b/src/couchbase-server.py index dc6086b0..61675d55 100644 --- a/src/couchbase-server.py +++ b/src/couchbase-server.py @@ -19,12 +19,14 @@ Notes: PRODUCT = "couchbase-server" REGEX = r"^Release (?P\d+\.\d+(\.\d+)?) \((?P.+)\)$" URLS = [ - "https://web.archive.org/web/20230519160357/https://docs.couchbase.com/server/", + # Disabled, too much timed out. + # "https://web.archive.org/web/20230519160357/https://docs.couchbase.com/server/", "https://docs.couchbase.com/server", ] FIXED_VERSIONS = { "6.0.0": "2018-10-31", # https://www.couchbase.com/blog/announcing-couchbase-6-0/ - "6.0.1": "2019-02-15", # https://web.archive.org/web/20190307191211/https://docs.couchbase.com/server/6.0/release-notes/relnotes.html + "6.0.1": "2019-02-15", + # https://web.archive.org/web/20190307191211/https://docs.couchbase.com/server/6.0/release-notes/relnotes.html "7.2.0": "2023-06-01", # https://www.couchbase.com/blog/couchbase-capella-spring-release-72/ } diff --git a/src/eks.py b/src/eks.py index 125bfa4a..ec1478ea 100644 --- a/src/eks.py +++ b/src/eks.py @@ -9,9 +9,11 @@ from datetime import datetime # Keep older pages at top of the list URLS = [ # 1.19.eks.1 - "https://web.archive.org/web/20221007150452/https://docs.aws.amazon.com/eks/latest/userguide/platform-versions.html", + # Disabled, too much timed out. + # "https://web.archive.org/web/20221007150452/https://docs.aws.amazon.com/eks/latest/userguide/platform-versions.html", # + 1.20 - "https://web.archive.org/web/20230521061347/https://docs.aws.amazon.com/eks/latest/userguide/platform-versions.html", + # Disabled, too much timed out. + # "https://web.archive.org/web/20230521061347/https://docs.aws.amazon.com/eks/latest/userguide/platform-versions.html", # + latest "https://docs.aws.amazon.com/eks/latest/userguide/platform-versions.html", ]