fix cvs errors, recommit

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@749 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2003-01-11 12:38:18 +00:00
parent 69fd92b885
commit 412b389894
23 changed files with 57 additions and 19 deletions

View file

@ -1,6 +1,11 @@
1.8.4
* Improve error message for failing htmlsax module import
Changed files: linkcheck/parser/htmllib.py
* Regenerate parser with new bison 1.875
Changed files: linkcheck/parser/htmlparser.c
* Some CVS files were not the same as their local counterpart.
Something went wrong. Anyway, I re-committed them.
Changed files: a lot .py files
1.8.3
* add missing imports for StringUtil in log classes, defer i18n of log

3
debian/changelog vendored
View file

@ -1,6 +1,9 @@
linkchecker (1.8.4-1) unstable; urgency=low
* New upstream release.
* Some files of 1.8.3 were not checked in CVS correctly, upstream
(which happens to be me :) recommitted them and released 1.8.4
(Closes: #176242)
-- Bastian Kleineidam <calvin@debian.org> Thu, 9 Jan 2003 20:20:08 +0100

View file

@ -1,5 +1,5 @@
"""store metadata and options"""
# Copyright (C) 2000,2001 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

View file

@ -1,5 +1,5 @@
"""Handle local file: links"""
# Copyright (C) 2000,2001 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

View file

@ -1,5 +1,5 @@
"""Handle FTP links"""
# Copyright (C) 2000,2001 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

View file

@ -1,5 +1,5 @@
"""Handle Gopher links"""
# Copyright (C) 2000,2001 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

View file

@ -1,5 +1,5 @@
"""Base handle for links with a hostname"""
# Copyright (C) 2000,2001 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

View file

@ -1,5 +1,5 @@
"""Handle http links"""
# Copyright (C) 2000,2001 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

View file

@ -1,5 +1,5 @@
"""Handle https links"""
# Copyright (C) 2000,2001 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

View file

@ -1,5 +1,5 @@
"""Handle for uncheckable application-specific links"""
# Copyright (C) 2001 Bastian Kleineidam
# Copyright (C) 2001-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

View file

@ -1,5 +1,5 @@
"""Handle for mailto: links"""
# Copyright (C) 2000,2001 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

View file

@ -1,5 +1,5 @@
"""Handle nntp: and news: links"""
# Copyright (C) 2000,2001 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

View file

@ -1,3 +1,18 @@
# 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
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
from UrlData import UrlData
from urllib import splittype, splithost, splituser

View file

@ -1,5 +1,5 @@
"""various string utils"""
# Copyright (C) 2000,2001 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

View file

@ -1,5 +1,5 @@
"""Handle telnet: links"""
# Copyright (C) 2000,2001 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

View file

@ -1,5 +1,5 @@
"""Threading support"""
# Copyright (C) 2000,2001 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

View file

@ -1,5 +1,5 @@
"""Base URL handler"""
# Copyright (C) 2000,2001 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

View file

@ -1,3 +1,18 @@
# 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
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
import sys
# debug level constants (Quake-style)

View file

@ -1,5 +1,5 @@
"""common CGI functions used by the CGI scripts"""
# 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

View file

@ -1,4 +1,4 @@
# Copyright (C) 2001 Bastian Kleineidam
# Copyright (C) 2001-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

View file

@ -1,4 +1,4 @@
# Copyright (C) 2001 Bastian Kleineidam
# Copyright (C) 2001-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

View file

@ -1,5 +1,5 @@
"""A parser for HTML"""
# Copyright (C) 2000,2001 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

View file

@ -1,5 +1,5 @@
"""spam"""
# Copyright (C) 2000,2001 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