mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-08 16:41:00 +00:00
authentication fixes
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@205 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
dfb774c4b4
commit
7f2c89e75a
3 changed files with 7 additions and 3 deletions
6
debian/changelog
vendored
6
debian/changelog
vendored
|
|
@ -5,8 +5,12 @@ linkchecker (1.2.9) unstable; urgency=low
|
|||
* linkchecker.1: added a man page
|
||||
* setup.py: overloaded distutils debugging function dump_dirs
|
||||
* setup.py: handle man pages correctly with bdist_rpm target
|
||||
* correct order with user/password authentication entries (report and
|
||||
fix by Jamie Heilman <jamie@audible.transient.net>)
|
||||
* default password is joe@, not guest@ (report and fix by Jamie
|
||||
Heilman <jamie@audible.transient.net>)
|
||||
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Wed, 22 Nov 2000 12:42:02 +0100
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Thu, 30 Nov 2000 18:13:52 +0100
|
||||
|
||||
linkchecker (1.2.8) unstable; urgency=low
|
||||
|
||||
|
|
|
|||
|
|
@ -456,7 +456,7 @@ class Configuration(UserDict.UserDict):
|
|||
tuple = string.split(cfgparser.get(section, "entry"+`i`))
|
||||
if len(tuple)!=3: break
|
||||
tuple[0] = re.compile(tuple[0])
|
||||
self.data["authentication"].append(tuple)
|
||||
self.data["authentication"].insert(0, tuple)
|
||||
i = i + 1
|
||||
except ConfigParser.Error: pass
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ Usage = _("USAGE\tlinkchecker [options] file-or-url...\n"
|
|||
" Default type is text.\n"
|
||||
"-p pwd, --password=pwd\n"
|
||||
" Try password pwd for HTML and FTP authorization.\n"
|
||||
" Default password is 'guest@'. See also -u.\n"
|
||||
" Default password is 'joe@'. See also -u.\n"
|
||||
"-q, --quiet\n"
|
||||
" Quiet operation. This is only useful with -F.\n"
|
||||
"-r depth, --recursion-level=depth\n"
|
||||
|
|
|
|||
Loading…
Reference in a new issue