see changelog

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@281 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2001-08-01 20:31:43 +00:00
parent b28bd12161
commit efd110b912
8 changed files with 24 additions and 9 deletions

2
FAQ
View file

@ -22,7 +22,7 @@ A: No. It never will. JavaScript sucks. If your page is not
Q: I have a pretty large site to check. How can I restrict link checking
to check only my own pages?
A: Look at the options --intern, --extern, --strict, --allowdeny and
A: Look at the options --intern, --extern, --strict, --denyallow and
--recursion-level.

10
debian/changelog vendored
View file

@ -1,3 +1,13 @@
linkchecker (1.3.5) unstable; urgency=low
* add traceback import into testsuite
* fix HTTPS support by using correct import statement and
calling HTTPS.connect()
* standards version 3.5.6 (no changes)
* updated german translation
-- Bastian Kleineidam <calvin@debian.org> Wed, 1 Aug 2001 22:32:55 +0200
linkchecker (1.3.4) unstable; urgency=low
* dont display number of warnings because the number of warnings

2
debian/control vendored
View file

@ -4,7 +4,7 @@ Priority: optional
Maintainer: Bastian Kleineidam <calvin@debian.org>
Build-Depends: python2-base, python2-dev, debhelper (>= 3.0.0)
Build-Depends-Indep: gettext
Standards-Version: 3.5.5
Standards-Version: 3.5.6
Package: linkchecker
Architecture: all

View file

@ -19,14 +19,19 @@ from UrlData import UrlData
from HttpUrlData import HttpUrlData
from linkcheck import _
_supportHttps=1
try: import httpslib
except ImportError: _supportHttps=0
try:
from linkcheckssl import httpslib
except ImportError:
_supportHttps=0
class HttpsUrlData(HttpUrlData):
"""Url link with https scheme"""
def _getHTTPObject(self, host):
return httpslib.HTTPS(host)
h = httpslib.HTTPS()
h.connect(host)
return h
def check(self, config):
if _supportHttps:

View file

@ -23,7 +23,7 @@ msgid "minutes"
msgstr "Minuten"
msgid "No newsgroup specified in NNTP URL"
msgstr "Keine newsgroup in der NNTP URL spezifiziert"
msgstr "Keine Newsgroup in der NNTP URL spezifiziert"
#, fuzzy
msgid "No mail host for %s found"
@ -350,7 +350,7 @@ msgid "checktime"
msgstr "Prüfzeit"
msgid "dltime"
msgstr ""
msgstr "D/L Zeit"
msgid "invalid log option '%s'"
msgstr "ungültige Log Option '%s'"

View file

@ -235,7 +235,7 @@ myname = "Bastian Kleineidam"
myemail = "calvin@users.sourceforge.net"
setup (name = "linkchecker",
version = "1.3.4",
version = "1.3.5",
description = "check HTML documents for broken links",
author = myname,
author_email = myemail,

View file

@ -3,5 +3,4 @@ url file:///home/calvin/projects/linkchecker/test/html/https.html
valid
url https://sourceforge.net/
name https
warning HTTPS url ignored
valid

View file

@ -196,6 +196,7 @@ def runtest(test, generate, verbose, quiet, testdir = None):
type, value = sys.exc_info()[:2]
print "test", test, "crashed --", str(type) + ":", value
if verbose:
import traceback
traceback.print_exc(file=sys.stdout)
return 0
else: