mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-07 16:10:58 +00:00
release .10
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@209 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
93d5c67e76
commit
e2fef02cc8
16 changed files with 34 additions and 26 deletions
8
debian/changelog
vendored
8
debian/changelog
vendored
|
|
@ -1,8 +1,12 @@
|
|||
linkchecker (1.2.10) unstable; urgency=low
|
||||
|
||||
* i18n gettext data compilation fixed
|
||||
* broken *.mo i18n files fixed
|
||||
* test/test1.html: add test for missing quotes
|
||||
* debian/control: updated description field
|
||||
* moved all single .py files in linkcheck/ except LinkCheckerConf.py
|
||||
which is automatically generated
|
||||
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Thu, 7 Dec 2000 12:24:38 +0100
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Thu, 14 Dec 2000 23:50:01 +0100
|
||||
|
||||
linkchecker (1.2.9) unstable; urgency=low
|
||||
|
||||
|
|
|
|||
31
debian/control
vendored
31
debian/control
vendored
|
|
@ -10,19 +10,18 @@ Package: linkchecker
|
|||
Architecture: any
|
||||
Depends: python-base (>= 1.5.2), python-base (<< 1.6)
|
||||
Suggests: libssl09|libssl095a, httpd
|
||||
Description: check/validate/test your HTML documents for broken links/URLs
|
||||
Features:
|
||||
o recursive checking
|
||||
o multithreaded
|
||||
o output can be colored or normal text, HTML, SQL, CSV or a GML sitemap
|
||||
graph
|
||||
o HTTP/1.1, HTTPS, FTP, mailto:, nntp:, news:, Gopher, Telnet and local
|
||||
file links are supported
|
||||
Javascript links are currently ignored
|
||||
o restrict link checking with regular expression filters for URLs
|
||||
o proxy support
|
||||
o give username/password for HTTP and FTP authorization
|
||||
o robots.txt exclusion protocol support
|
||||
o i18n support
|
||||
o command line interface
|
||||
o (Fast)CGI web interface (requires HTTP server)
|
||||
Description: check HTML documents for broken links
|
||||
Features:
|
||||
o recursive checking
|
||||
o multithreaded
|
||||
o output can be colored or normal text, HTML, SQL, CSV or a sitemap
|
||||
graph in GML or XML
|
||||
o HTTP/1.1, HTTPS, FTP, mailto:, nntp:, news:, Gopher, Telnet and local
|
||||
file links are supported
|
||||
o restrict link checking with regular expression filters for URLs
|
||||
o proxy support
|
||||
o give username/password for HTTP and FTP authorization
|
||||
o robots.txt exclusion protocol support
|
||||
o i18n support
|
||||
o command line interface
|
||||
o (Fast)CGI web interface (requires HTTP server)
|
||||
|
|
|
|||
3
debian/postinst
vendored
3
debian/postinst
vendored
|
|
@ -6,8 +6,7 @@
|
|||
set -e
|
||||
|
||||
DIRLIST="/usr/lib/python1.5/site-packages/linkcheck"
|
||||
FILELIST="CSV.py LinkCheckerConf.py StringUtil.py fcgi.py fintl.py
|
||||
http11lib.py httpslib.py robotparser2.py sz_fcgi.py util1.py"
|
||||
FILELIST="LinkCheckerConf.py"
|
||||
SITEPACKAGES="/usr/lib/python1.5/site-packages"
|
||||
COMMAND="'import sys,py_compile;py_compile.compile(sys.argv[1])'"
|
||||
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ __init__(self, **args)
|
|||
files in the appropriate logger section.
|
||||
"""
|
||||
import sys,time,string
|
||||
import Config,StringUtil
|
||||
import Config, StringUtil
|
||||
from linkcheck import _
|
||||
|
||||
# HTML shortcuts
|
||||
|
|
|
|||
|
|
@ -23,8 +23,8 @@ import getopt,re,string,os,urlparse
|
|||
# 90 seconds timeout for all connections
|
||||
#import timeoutsocket
|
||||
#timeoutsocket.setDefaultSocketTimeout(90)
|
||||
import linkcheck, StringUtil
|
||||
from linkcheck import _
|
||||
import linkcheck
|
||||
from linkcheck import _,StringUtil
|
||||
|
||||
|
||||
Usage = _("USAGE\tlinkchecker [options] file-or-url...\n"
|
||||
|
|
@ -263,7 +263,7 @@ for opt,arg in options:
|
|||
config["warnings"] = 1
|
||||
|
||||
elif opt=="--wischiwaschi":
|
||||
import util1
|
||||
from linkcheck import util1
|
||||
util1.abbuzze()
|
||||
sys.exit(0)
|
||||
elif opt=="-w" or opt=="--warnings":
|
||||
|
|
|
|||
|
|
@ -4,10 +4,12 @@
|
|||
<!-- legal -->
|
||||
<a href=mailto:calvin@LocalHost?subject=Hallo&to=michi>1</a>
|
||||
<a href="mailto:Dude <calvin@studcs.uni-sb.de> , Killer <calvin@cs.uni-sb.de>?subject=bla">2</a>
|
||||
<a href="mailto:Bastian Kleineidam <calvin@host1>?bcc=jsmith%40company.com">3</a>
|
||||
<a href="mailto:Bastian Kleineidam <calvin@studcs.uni-sb.de>?bcc=jsmith%40company.com">3</a>
|
||||
<a href="mailto:Bastian Kleineidam <calvin@studcs.uni-sb.de>">4</a>
|
||||
<a href="mailto:">6</a>
|
||||
<a href="mailto:o'hara@doctor.fraggle-hause">5</a>
|
||||
<a href="mailto:o'hara@cs.uni-sb.de">5</a>
|
||||
<a href="mailto:?to=calvin@studcs.uni-sb.de?subject=blubb">...</a>
|
||||
<a href="mailto:jan@jan-dittberner.de?subject=test">...</a>
|
||||
<!-- illegal -->
|
||||
<!-- contains non-quoted characters -->
|
||||
<a href="mailto:a@d?subject=äöü">5</a>
|
||||
|
|
|
|||
|
|
@ -17,5 +17,9 @@ Just some HTTP links
|
|||
<a href="HtTP://WWW.hEIsE.DE"> <!-- should be cached -->
|
||||
<a href="HTTP://WWW.HEISE.DE"> <!-- should be cached -->
|
||||
<!-- <a href=http://nocheckin> no check because of comment -->
|
||||
<!-- no beginning quote -->
|
||||
<a href=illegalquote1">
|
||||
<!-- no ending quote -->
|
||||
<a href="illegalquote2>
|
||||
<!-- check the parser at end of file -->
|
||||
<a href="g
|
||||
Loading…
Reference in a new issue