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 05:28:19 UTC

svn commit: r1348526 - in /lucene/dev/branches/branch_4x: ./ dev-tools/ dev-tools/scripts/checkJavadocLinks.py lucene/ solr/

Author: sarowe
Date: Sun Jun 10 03:28:18 2012
New Revision: 1348526

URL: http://svn.apache.org/viewvc?rev=1348526&view=rev
Log:
- Update JIRA REST API URL ("rest/api/2.0.alpha1/" -> "rest/api/2/")
- Simplify release-recognizing regex
- Recognize and linkify non-Bugzilla URLs (the Bugzilla issue URLs are broken now)

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/dev-tools/   (props changed)
    lucene/dev/branches/branch_4x/dev-tools/scripts/checkJavadocLinks.py
    lucene/dev/branches/branch_4x/lucene/   (props changed)
    lucene/dev/branches/branch_4x/solr/   (props changed)

Modified: lucene/dev/branches/branch_4x/dev-tools/scripts/checkJavadocLinks.py
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/dev-tools/scripts/checkJavadocLinks.py?rev=1348526&r1=1348525&r2=1348526&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/dev-tools/scripts/checkJavadocLinks.py (original)
+++ lucene/dev/branches/branch_4x/dev-tools/scripts/checkJavadocLinks.py Sun Jun 10 03:28:18 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