X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=utils%2FHelpLinksChecker.java;h=7c57cc7b5806f794d83365e20f5a8f46b6b4e482;hb=2cef2c13e720e889304333e70f893a23d1a98f42;hp=8085446aa23eaba1c9c5fccb5b50bb8855befeb9;hpb=853624fb32058cccc544ae7d13af6ad4b0800b6c;p=jalview.git diff --git a/utils/HelpLinksChecker.java b/utils/HelpLinksChecker.java index 8085446..7c57cc7 100644 --- a/utils/HelpLinksChecker.java +++ b/utils/HelpLinksChecker.java @@ -1,5 +1,23 @@ - - +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ import java.io.BufferedReader; import java.io.File; import java.io.FileReader; @@ -159,9 +177,8 @@ public class HelpLinksChecker unusedTargets.remove(image); if (!tocTargets.containsKey(image)) { - log(String.format( - "Invalid image '%s' at line %d of %s", image, lineNo, - HELP_HS)); + log(String.format("Invalid image '%s' at line %d of %s", image, + lineNo, HELP_HS)); invalidImageCount++; } } @@ -184,23 +201,18 @@ public class HelpLinksChecker log(unusedTargets.size() + " unused targets"); for (String target : unusedTargets.keySet()) { - log(String.format(" %s: %s", target, - unusedTargets.get(target))); + log(String.format(" %s: %s", target, unusedTargets.get(target))); } log(invalidMapUrlCount + " invalid map urls"); log(invalidImageCount + " invalid image attributes"); - log(String.format( - "%d internal href links (%d with anchors)", internalHrefCount, - anchorRefCount)); - log(invalidInternalHrefCount - + " invalid internal href links"); - log(invalidAnchorRefCount - + " invalid internal anchor links"); + log(String.format("%d internal href links (%d with anchors)", + internalHrefCount, anchorRefCount)); + log(invalidInternalHrefCount + " invalid internal href links"); + log(invalidAnchorRefCount + " invalid internal anchor links"); log(externalHrefCount + " external href links"); if (internetAvailable) { - log(invalidExternalHrefCount - + " invalid external href links"); + log(invalidExternalHrefCount + " invalid external href links"); } else { @@ -284,9 +296,8 @@ public class HelpLinksChecker { if (!checkAnchorExists(hrefFile, anchor)) { - log(String.format( - "Invalid anchor: %s at line %d of %s", anchor, - lineNo, getPath(htmlFile))); + log(String.format("Invalid anchor: %s at line %d of %s", + anchor, lineNo, getPath(htmlFile))); invalidAnchorRefCount++; } } @@ -294,9 +305,8 @@ public class HelpLinksChecker } if (badLink) { - log(String.format( - "Invalid href %s at line %d of %s", href, lineNo, - getPath(htmlFile))); + log(String.format("Invalid href %s at line %d of %s", href, + lineNo, getPath(htmlFile))); } } data = br.readLine(); @@ -455,9 +465,8 @@ public class HelpLinksChecker } if (!new File(helpFolder, url).exists()) { - log(String.format( - "Invalid url path '%s' at line %d of %s", url, lineNo, - HELP_JHM)); + log(String.format("Invalid url path '%s' at line %d of %s", url, + lineNo, HELP_JHM)); invalidMapUrlCount++; } } @@ -498,9 +507,8 @@ public class HelpLinksChecker unusedTargets.remove(target); if (!tocTargets.containsKey(target)) { - log(String.format( - "Invalid target '%s' at line %d of %s", target, lineNo, - HELP_TOC_XML)); + log(String.format("Invalid target '%s' at line %d of %s", target, + lineNo, HELP_TOC_XML)); invalidTargetCount++; } }