You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ja...@apache.org on 2016/09/22 08:53:33 UTC

lucene-solr:branch_6x: SOLR-6871: Fix precommit - accept /solr/downloads.html as valid link

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x 082f8e3f9 -> 9611478c7


SOLR-6871: Fix precommit - accept /solr/downloads.html as valid link

(cherry picked from commit d146354)


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/9611478c
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/9611478c
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/9611478c

Branch: refs/heads/branch_6x
Commit: 9611478c7e249b7c65d3807e2ae672aabaefa50b
Parents: 082f8e3
Author: Jan H�ydahl <ja...@apache.org>
Authored: Thu Sep 22 10:52:01 2016 +0200
Committer: Jan H�ydahl <ja...@apache.org>
Committed: Thu Sep 22 10:53:21 2016 +0200

----------------------------------------------------------------------
 dev-tools/scripts/checkJavadocLinks.py | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/9611478c/dev-tools/scripts/checkJavadocLinks.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/checkJavadocLinks.py b/dev-tools/scripts/checkJavadocLinks.py
index 74b843a..e5ff2f3 100644
--- a/dev-tools/scripts/checkJavadocLinks.py
+++ b/dev-tools/scripts/checkJavadocLinks.py
@@ -213,6 +213,9 @@ def checkAll(dirName):
         elif link.find('lucene.apache.org/solr/quickstart.html') != -1:
           # OK
           pass
+        elif link.find('lucene.apache.org/solr/downloads.html') != -1:
+          # OK
+          pass
         elif (link.find('svn.apache.org') != -1
               or link.find('lucene.apache.org') != -1)\
              and os.path.basename(fullPath) != 'Changes.html':