mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-17 11:01:06 +00:00
updated
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@2642 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
c9fb011a79
commit
6cfe4f1058
3 changed files with 10 additions and 6 deletions
2
TODO
2
TODO
|
|
@ -1,5 +1,7 @@
|
|||
Possible improvements people could work on:
|
||||
|
||||
- limit psyco memory (http://psyco.sourceforge.net/psycoguide/memlimits.html)
|
||||
|
||||
- [BUGFIX] when an URL is found in the cache and it has a broken anchor,
|
||||
the broken anchor name is not displayed as a warning
|
||||
|
||||
|
|
|
|||
4
debian/control
vendored
4
debian/control
vendored
|
|
@ -33,8 +33,8 @@ Package: linkchecker-gui
|
|||
Architecture: all
|
||||
Depends: linkchecker, python2.4-glade2
|
||||
Description: check websites and HTML documents for broken links (GUI version)
|
||||
Provides a graphical interface to check links of websites and HTML
|
||||
documents.
|
||||
Provides a graphical interface "glinkchecker" to check links of websites
|
||||
and HTML documents.
|
||||
Features:
|
||||
o recursive checking
|
||||
o multithreaded
|
||||
|
|
|
|||
10
test.py
10
test.py
|
|
@ -996,14 +996,16 @@ def main(argv):
|
|||
|
||||
# Configure doctests
|
||||
if cfg.first_doctest_failure:
|
||||
import doctest
|
||||
# The doctest module in Python 2.3 does not have this feature
|
||||
if hasattr(doctest, 'REPORT_ONLY_FIRST_FAILURE'):
|
||||
doctest.set_unittest_reportflags(doctest.REPORT_ONLY_FIRST_FAILURE)
|
||||
# Also apply the flag to zope.testing.doctest, if it exists
|
||||
try:
|
||||
from zope.testing import doctest
|
||||
except ImportError:
|
||||
print >> sys.stderr, ("cannot import zope.testing.doctest,"
|
||||
" ignoring -1")
|
||||
else:
|
||||
doctest.set_unittest_reportflags(doctest.REPORT_ONLY_FIRST_FAILURE)
|
||||
except ImportError:
|
||||
pass
|
||||
|
||||
# Configure the logging module
|
||||
import logging
|
||||
|
|
|
|||
Loading…
Reference in a new issue