mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-30 19:14:43 +00:00
final glitches for distribution
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@66 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
4455a94c8f
commit
87c82f1250
4 changed files with 13 additions and 10 deletions
4
Makefile
4
Makefile
|
|
@ -1,4 +1,4 @@
|
|||
VERSION=$(shell ./setup.py -V)
|
||||
VERSION=$(shell ./setup.py -q info --version)
|
||||
#HOST=treasure.calvinsplayground.de
|
||||
PROXY=
|
||||
#PROXY=-P$(HOST):5050
|
||||
|
|
@ -36,7 +36,7 @@ files:
|
|||
|
||||
homepage: files
|
||||
scp *-out.* shell1.sourceforge.net:/home/groups/linkchecker/htdocs/
|
||||
scp ChangeLog shell1.sourceforge.net:/home/groups/linkchecker/htdocs/changes.txt
|
||||
scp debian/changelog shell1.sourceforge.net:/home/groups/linkchecker/htdocs/changes.txt
|
||||
|
||||
test:
|
||||
rm -f test/*.result
|
||||
|
|
|
|||
3
debian/changelog
vendored
3
debian/changelog
vendored
|
|
@ -1,8 +1,9 @@
|
|||
linkchecker (1.2.0) stable; urgency=low
|
||||
|
||||
* stable release
|
||||
* fixed usage text glitches
|
||||
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Fri, 7 Apr 2000 01:41:36 +0200
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Fri, 7 Apr 2000 02:21:04 +0200
|
||||
|
||||
linkchecker (1.1.4) unstable; urgency=low
|
||||
|
||||
|
|
|
|||
6
debian/rules
vendored
6
debian/rules
vendored
|
|
@ -19,7 +19,7 @@ build-stamp:
|
|||
|
||||
clean:
|
||||
dh_testdir
|
||||
# dh_testroot
|
||||
dh_testroot
|
||||
rm -f build-stamp
|
||||
|
||||
# Add here commands to clean up after the build process.
|
||||
|
|
@ -29,7 +29,7 @@ clean:
|
|||
|
||||
install: build
|
||||
dh_testdir
|
||||
# dh_testroot
|
||||
dh_testroot
|
||||
dh_clean -k
|
||||
dh_installdirs
|
||||
# Add here commands to install the package into debian/tmp.
|
||||
|
|
@ -56,7 +56,7 @@ binary-arch: build install
|
|||
# dh_installmanpages
|
||||
# dh_installinfo
|
||||
dh_undocumented
|
||||
# dh_installchangelogs
|
||||
dh_installchangelogs
|
||||
# dh_link
|
||||
# dh_strip
|
||||
dh_compress
|
||||
|
|
|
|||
10
linkchecker
10
linkchecker
|
|
@ -21,7 +21,7 @@ OPTIONS
|
|||
Assume urls that match the given expression as extern.
|
||||
Only intern HTTP links are checked recursively.
|
||||
-f file, --config=file
|
||||
Use file as configuration file. Pylice first searches
|
||||
Use file as configuration file. LinkChecker first searches
|
||||
~/.linkcheckerrc and then /etc/linkcheckerrc
|
||||
(under Windows <path-to-program>\\linkcheckerrc).
|
||||
-F name, --file-output=name
|
||||
|
|
@ -38,7 +38,7 @@ OPTIONS
|
|||
is extern/intern.
|
||||
-N, --nntp-server
|
||||
Specify an NNTP server for news: links. Default is the
|
||||
environment variable NNTP_SERVER. If the variable is not defined,
|
||||
environment variable NNTP_SERVER. If no host is given,
|
||||
only the syntax of the link is checked.
|
||||
-o name, --output=name
|
||||
Specify output as """+linkcheck.Config.LoggerKeys+""".
|
||||
|
|
@ -71,7 +71,7 @@ OPTIONS
|
|||
URLs.
|
||||
-w, --warnings
|
||||
Log warnings.
|
||||
-W, --warning-regex
|
||||
-W regex, --warning-regex=regex
|
||||
Define a regular expression which prints a warning if it matches
|
||||
any content of the checked link.
|
||||
This applies of course only to pages which are valid, so we can
|
||||
|
|
@ -94,7 +94,7 @@ o Javascript links are currently ignored
|
|||
o If your platform does not support threading, linkchecker assumes -t0
|
||||
o You can supply multiple user/password pairs in a configuration file
|
||||
o Cookies are not accepted by LinkChecker
|
||||
o When checking news: links the given news host doesn't need to be the
|
||||
o When checking 'news:' links the given news host doesn't need to be the
|
||||
same as the host of the user browsing your pages!
|
||||
"""
|
||||
|
||||
|
|
@ -106,6 +106,8 @@ o Local files and syntactic sugar on the command line:
|
|||
linkchecker ../bla.html
|
||||
linkchecker www.myhomepage.de
|
||||
linkchecker -r0 ftp.linux.org
|
||||
o Using the -W option:
|
||||
linkchecker -W"traceback" -r5 http://zope.company.com/
|
||||
"""
|
||||
|
||||
def printVersion():
|
||||
|
|
|
|||
Loading…
Reference in a new issue