You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2012/06/10 04:50:47 UTC

svn commit: r1348524 - /lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py

Author: sarowe
Date: Sun Jun 10 02:50:46 2012
New Revision: 1348524

URL: http://svn.apache.org/viewvc?rev=1348524&view=rev
Log:
Allow {svn,lucene}.apache.org links in Changes.html

Modified:
    lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py

Modified: lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py?rev=1348524&r1=1348523&r2=1348524&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py (original)
+++ lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py Sun Jun 10 02:50:46 2012
@@ -171,7 +171,9 @@ def checkAll(dirName):
         elif link.find('lucene.apache.org/solr/features.html') != -1:
           # OK
           pass
-        elif link.find('svn.apache.org') != -1 or link.find('lucene.apache.org') != -1:
+        elif (link.find('svn.apache.org') != -1
+              or link.find('lucene.apache.org') != -1)\
+             and os.path.basename(fullPath) != 'Changes.html':
           if not printed:
             printed = True
             print