diff --git a/linkcheck/log/BlacklistLogger.py b/linkcheck/log/BlacklistLogger.py index cd609ee9..79b3d386 100644 --- a/linkcheck/log/BlacklistLogger.py +++ b/linkcheck/log/BlacklistLogger.py @@ -1,4 +1,4 @@ -# Copyright (C) 2000-2002 Bastian Kleineidam +# Copyright (C) 2000-2003 Bastian Kleineidam # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/linkcheck/log/CSVLogger.py b/linkcheck/log/CSVLogger.py index a3b70077..af7344a7 100644 --- a/linkcheck/log/CSVLogger.py +++ b/linkcheck/log/CSVLogger.py @@ -1,4 +1,4 @@ -# Copyright (C) 2000-2002 Bastian Kleineidam +# Copyright (C) 2000-2003 Bastian Kleineidam # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -17,6 +17,7 @@ import time from linkcheck.log import strtime from StandardLogger import StandardLogger +from Logger import Logger from linkcheck import Config, i18n class CSVLogger (StandardLogger): diff --git a/linkcheck/log/ColoredLogger.py b/linkcheck/log/ColoredLogger.py index c6f395ab..3cbc58b0 100644 --- a/linkcheck/log/ColoredLogger.py +++ b/linkcheck/log/ColoredLogger.py @@ -1,4 +1,4 @@ -# Copyright (C) 2000-2002 Bastian Kleineidam +# Copyright (C) 2000-2003 Bastian Kleineidam # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/linkcheck/log/GMLLogger.py b/linkcheck/log/GMLLogger.py index 14cae372..275e8350 100644 --- a/linkcheck/log/GMLLogger.py +++ b/linkcheck/log/GMLLogger.py @@ -1,4 +1,4 @@ -# Copyright (C) 2000-2002 Bastian Kleineidam +# Copyright (C) 2000-2003 Bastian Kleineidam # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,6 +18,7 @@ import time from linkcheck import Config, i18n from linkcheck.log import strtime from StandardLogger import StandardLogger +from Logger import Logger class GMLLogger (StandardLogger): """GML means Graph Modeling Language. Use a GML tool to see diff --git a/linkcheck/log/HtmlLogger.py b/linkcheck/log/HtmlLogger.py index 817f0542..e3067724 100644 --- a/linkcheck/log/HtmlLogger.py +++ b/linkcheck/log/HtmlLogger.py @@ -1,4 +1,4 @@ -# Copyright (C) 2000-2002 Bastian Kleineidam +# Copyright (C) 2000-2003 Bastian Kleineidam # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -15,6 +15,7 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. from StandardLogger import StandardLogger +from Logger import Logger from linkcheck.log import strtime from linkcheck import StringUtil, i18n, Config import time diff --git a/linkcheck/log/Logger.py b/linkcheck/log/Logger.py index 88884819..bcae64d0 100644 --- a/linkcheck/log/Logger.py +++ b/linkcheck/log/Logger.py @@ -1,4 +1,4 @@ -# Copyright (C) 2000-2002 Bastian Kleineidam +# Copyright (C) 2000-2003 Bastian Kleineidam # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/linkcheck/log/SQLLogger.py b/linkcheck/log/SQLLogger.py index aa24b2b4..abb26bf2 100644 --- a/linkcheck/log/SQLLogger.py +++ b/linkcheck/log/SQLLogger.py @@ -1,4 +1,4 @@ -# Copyright (C) 2000-2002 Bastian Kleineidam +# Copyright (C) 2000-2003 Bastian Kleineidam # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -15,6 +15,7 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. from StandardLogger import StandardLogger +from Logger import Logger import time from linkcheck.log import strtime from linkcheck import StringUtil, i18n, Config diff --git a/linkcheck/log/StandardLogger.py b/linkcheck/log/StandardLogger.py index d4464735..2755d2b9 100644 --- a/linkcheck/log/StandardLogger.py +++ b/linkcheck/log/StandardLogger.py @@ -1,4 +1,4 @@ -# Copyright (C) 2000-2002 Bastian Kleineidam +# Copyright (C) 2000-2003 Bastian Kleineidam # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/linkcheck/log/XMLLogger.py b/linkcheck/log/XMLLogger.py index b488e15e..7c39198e 100644 --- a/linkcheck/log/XMLLogger.py +++ b/linkcheck/log/XMLLogger.py @@ -1,4 +1,4 @@ -# Copyright (C) 2000-2002 Bastian Kleineidam +# Copyright (C) 2000-2003 Bastian Kleineidam # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -19,6 +19,7 @@ from linkcheck import Config, i18n from linkcheck.StringUtil import xmlify from linkcheck.log import strtime from StandardLogger import StandardLogger +from Logger import Logger class XMLLogger (StandardLogger): """XML output mirroring the GML structure. Easy to parse with any XML diff --git a/linkcheck/log/__init__.py b/linkcheck/log/__init__.py index 279f4ef7..82e66bdf 100644 --- a/linkcheck/log/__init__.py +++ b/linkcheck/log/__init__.py @@ -1,5 +1,5 @@ """Output logging support for different formats""" -# Copyright (C) 2000-2002 Bastian Kleineidam +# Copyright (C) 2000-2003 Bastian Kleineidam # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by