mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-19 22:01:00 +00:00
bump up version
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@488 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
84ca8ea412
commit
35b807854b
3 changed files with 9 additions and 2 deletions
6
debian/changelog
vendored
6
debian/changelog
vendored
|
|
@ -1,3 +1,9 @@
|
|||
linkchecker (1.6.0) unstable; urgency=low
|
||||
|
||||
* linkchecker.1: updated manpage
|
||||
|
||||
-- Bastian Kleineidam <calvin@debian.org> Sun, 14 Jul 2002 12:16:35 +0200
|
||||
|
||||
linkchecker (1.5.7) unstable; urgency=low
|
||||
|
||||
* linkcheck/log/: add forgotten linkcheck. to StringUtil calls
|
||||
|
|
|
|||
|
|
@ -340,6 +340,7 @@ if len(args)==0:
|
|||
else:
|
||||
config.warn(linkcheck._("no files or urls given"))
|
||||
|
||||
from linkcheck import UrlData
|
||||
for url in args:
|
||||
url = url.strip()
|
||||
if not (":" in url):
|
||||
|
|
@ -347,7 +348,7 @@ for url in args:
|
|||
url = "ftp://"+url
|
||||
elif re.compile("^www\.").match(url):
|
||||
url = "http://"+url
|
||||
config.appendUrl(linkcheck.UrlData.GetUrlDataFrom(url, 0, config))
|
||||
config.appendUrl(UrlData.GetUrlDataFrom(url, 0, config))
|
||||
|
||||
# check the urls
|
||||
linkcheck.checkUrls(config)
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -129,7 +129,7 @@ myname = "Bastian Kleineidam"
|
|||
myemail = "calvin@users.sourceforge.net"
|
||||
|
||||
setup (name = "linkchecker",
|
||||
version = "1.5.7",
|
||||
version = "1.6.0",
|
||||
description = "check HTML documents for broken links",
|
||||
author = myname,
|
||||
author_email = myemail,
|
||||
|
|
|
|||
Loading…
Reference in a new issue