mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-07 00:00:58 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@240 e7d03fd6-7b0d-0410-9947-9c21f3af8025
133 lines
3.1 KiB
Text
133 lines
3.1 KiB
Text
# sample resource file with default values
|
|
# see linkchecker -h for help on these options
|
|
# commandline options override these settings!
|
|
|
|
[output]
|
|
# turn on/off debug messages
|
|
debug=0
|
|
# use the text logger
|
|
log=text
|
|
# turn on/off --verbose
|
|
verbose=0
|
|
# turn on/off --warnings
|
|
warnings=0
|
|
# turn on/off --quiet
|
|
quiet=0
|
|
# additional file output
|
|
fileoutput=
|
|
#fileoutput = text, colored, html, gml, sql
|
|
|
|
# fields names:
|
|
# all (for all fields)
|
|
# realurl
|
|
# result
|
|
# base (base href=...)
|
|
# name (<a href=...>name</a>)
|
|
# parenturl
|
|
# info
|
|
# warning
|
|
# dltime
|
|
# checktime
|
|
# url
|
|
# intro (the blurb at the beginning, "starting at ...")
|
|
# outro (the blurb at the end, "found x errors ...")
|
|
|
|
# each Logger can have separate configuration parameters
|
|
# standard text logger
|
|
[text]
|
|
filename=linkchecker-out.txt
|
|
fields=url,result
|
|
|
|
# GML logger
|
|
[gml]
|
|
filename=linkchecker-out.gml
|
|
fields=all
|
|
|
|
# CSV logger
|
|
[csv]
|
|
filename=linkchecker-out.csv
|
|
separator=;
|
|
fields=all
|
|
|
|
# SQL logger
|
|
[sql]
|
|
filename=linkchecker-out.sql
|
|
dbname=linksdb
|
|
commandsep=;
|
|
fields=all
|
|
|
|
# HTML logger
|
|
[html]
|
|
filename=linkchecker-out.html
|
|
# colors for the various parts
|
|
colorbackground="#fff7e5"
|
|
colorurl="#dcd5cf"
|
|
colorborder="#000000"
|
|
colorlink="#191c83"
|
|
tablewarning=<td bgcolor="#e0954e">
|
|
tableerror=<td bgcolor="#db4930">
|
|
tableok=<td bgcolor="#3ba557">
|
|
fields=all
|
|
|
|
# ANSI color logger
|
|
[colored]
|
|
filename=linkchecker-out.ansi
|
|
# colors for the various parts (\x1b = ESC)
|
|
colorparent="\x1b[37m"
|
|
colorurl="\x1b[0m"
|
|
colorname="\x1b[0m"
|
|
colorreal="\x1b[36m"
|
|
colorbase="\x1b[35m"
|
|
colorvalid="\x1b[1;32m"
|
|
colorinvalid="\x1b[1;31m"
|
|
colorinfo="\x1b[0m"
|
|
colorwarning="\x1b[1;33m"
|
|
colordltime="\x1b[0m"
|
|
colorreset="\x1b[0m"
|
|
fields=all
|
|
|
|
# blacklist logger
|
|
[blacklist]
|
|
filename=~/.blacklist
|
|
|
|
# checking options
|
|
[checking]
|
|
# number of threads
|
|
threads=5
|
|
# check anchors?
|
|
anchors=0
|
|
recursionlevel=1
|
|
# obey robots.txt exclusion?
|
|
robotstxt=0
|
|
# overall strict checking. You can specify for each extern URL
|
|
# separately if its strict or not. See the [filtering] section
|
|
strict=0
|
|
# supply a regular expression for which warnings are printed if found
|
|
# in any HTML files.
|
|
warningregex=
|
|
# Basic NNTP server. Overrides NNTP_SERVER environment variable.
|
|
nntpserver=
|
|
|
|
# filtering options (see FAQ)
|
|
# for each extern link we can specify if it is strict or not
|
|
[filtering]
|
|
# everything with 'lconline' in the URL name is extern
|
|
# extern1=lconline 0
|
|
# everything with 'bookmark' in the URL name is strict
|
|
# extern2=bookmark 1
|
|
# links to our domain are intern
|
|
# internlinks=calvinsplayground\.de
|
|
# check only syntax of all mail adresses
|
|
# extern3=^mailto: 1
|
|
denyallow=0
|
|
|
|
# You can provide different user/password pairs for different link types.
|
|
# Entries are a triple (link regular expression, username, password),
|
|
# separated by whitespace.
|
|
# If the regular expression matches, the given user/password pair is used
|
|
# for authentication. The commandline options -u,-p match every link
|
|
# and therefore override the entries given here. The first match wins.
|
|
# At the moment, authentication is used/needed for http[s] and ftp links.
|
|
[authentication]
|
|
#entry1=^http://treasure\.calvinsplayground\.de/~calvin/isnichmehr/ lebowski lebowski
|
|
#entry2=^ftp://void.cs.uni-sb.de calvin hutzli
|