diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-15 09:36:18 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-15 09:36:18 +0700 |
commit | cbdbba0ab06898cd7ab6d69e33d2db990d8b8799 (patch) | |
tree | c3b626837aecc15c53330d6afd68f94d136ff641 /testing/testdata/badLinks.html | |
parent | 70fb6131935806f7e2041c5dfd0ac81164670875 (diff) | |
download | aspectj-cbdbba0ab06898cd7ab6d69e33d2db990d8b8799.tar.gz aspectj-cbdbba0ab06898cd7ab6d69e33d2db990d8b8799.zip |
Globally replace "http:" by "https:" in non-XML files
Maybe, the XML files and Maven wrapper files will follow. First, let us
find out if this breaks the build, maybe some tests are asserting on
"http:". But there, the replacement would also have taken place, so
probably it just works.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'testing/testdata/badLinks.html')
-rw-r--r-- | testing/testdata/badLinks.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testing/testdata/badLinks.html b/testing/testdata/badLinks.html index 95f51b996..b0a331895 100644 --- a/testing/testdata/badLinks.html +++ b/testing/testdata/badLinks.html @@ -1,24 +1,24 @@ <html> <body> <a href="#unmatched"></a> -<!-- positive tests +<!-- positive tests --> <a href="badLinks.html"></a> <a href="#matched"></a> <a href="badLinks.html#matched"></a> <a name="matched"></a> -<a href="http://java.sun.com"></a> +<a href="https://java.sun.com"></a> -<!-- flag but not fail +<!-- flag but not fail --> <a href="ftp://ftp.sun.com"></a> -<!-- should fail +<!-- should fail --> <a href=""></a> <a href="#unmatched"></a> <a href="noSuchFile.html"></a> -<a href="http://no.such.place"></a> +<a href="https://no.such.place"></a> <a href="malformed://java.sun.com"></a> </body> |