mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-09 23:24:44 +00:00
default logger is text
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1506 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
324614ab18
commit
66ec6ba897
1 changed files with 11 additions and 14 deletions
|
|
@ -87,19 +87,6 @@ class Configuration (dict):
|
|||
# Logger configurations
|
||||
self["text"] = {
|
||||
"filename": "linkchecker-out.txt",
|
||||
}
|
||||
self['html'] = {
|
||||
"filename": "linkchecker-out.html",
|
||||
'colorbackground': '#fff7e5',
|
||||
'colorurl': '#dcd5cf',
|
||||
'colorborder': '#000000',
|
||||
'colorlink': '#191c83',
|
||||
'tablewarning': '<td bgcolor="#e0954e">',
|
||||
'tableerror': '<td bgcolor="#db4930">',
|
||||
'tableok': '<td bgcolor="#3ba557">',
|
||||
}
|
||||
self['colored'] = {
|
||||
"filename": "linkchecker-out.ansi",
|
||||
'colorparent': "white",
|
||||
'colorurl': "default",
|
||||
'colorname': "default",
|
||||
|
|
@ -113,6 +100,16 @@ class Configuration (dict):
|
|||
'colordlsize': "default",
|
||||
'colorreset': "default",
|
||||
}
|
||||
self['html'] = {
|
||||
"filename": "linkchecker-out.html",
|
||||
'colorbackground': '#fff7e5',
|
||||
'colorurl': '#dcd5cf',
|
||||
'colorborder': '#000000',
|
||||
'colorlink': '#191c83',
|
||||
'tablewarning': '<td bgcolor="#e0954e">',
|
||||
'tableerror': '<td bgcolor="#db4930">',
|
||||
'tableok': '<td bgcolor="#3ba557">',
|
||||
}
|
||||
self['gml'] = {
|
||||
"filename": "linkchecker-out.gml",
|
||||
}
|
||||
|
|
@ -132,7 +129,7 @@ class Configuration (dict):
|
|||
"filename": "linkchecker-out.xml",
|
||||
}
|
||||
self['none'] = {}
|
||||
self['logger'] = self.logger_new('colored')
|
||||
self['logger'] = self.logger_new('text')
|
||||
self["quiet"] = False
|
||||
self["warningregex"] = None
|
||||
self["warnsizebytes"] = None
|
||||
|
|
|
|||
Loading…
Reference in a new issue