mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-23 23:54:44 +00:00
release
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@148 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
aadd5de087
commit
034d73f61d
4 changed files with 8 additions and 14 deletions
2
INSTALL
2
INSTALL
|
|
@ -27,7 +27,7 @@ script from everywhere.
|
|||
Install with Distutils
|
||||
----------------------
|
||||
The Distutils package has a lot of install options to tweak and ease
|
||||
your installation.
|
||||
your installation. Type "python setup.py --help" for options.
|
||||
To install LinkChecker run "python setup.py install".
|
||||
Debian users can build the .deb package with "debian/rules binary".
|
||||
|
||||
|
|
|
|||
14
debian/changelog
vendored
14
debian/changelog
vendored
|
|
@ -2,22 +2,14 @@ linkchecker (1.2.4) unstable; urgency=low
|
|||
|
||||
* fixed parsing of /etc/resolv.conf with empty lines
|
||||
* french translation from Jerome Couderc <j.couderc@ifrance.com>
|
||||
and Michael Gensheimer <michael@gensheimer.net>
|
||||
* fix for HTTP HEAD requests from bad/dumb/old servers
|
||||
* CGI script fixes
|
||||
* LinkChecker Online HTML pages added
|
||||
<<<<<<< changelog
|
||||
* fixed bug in config file parser with external link specification
|
||||
=======
|
||||
* LinkChecker Online HTML pages added to source
|
||||
* news: link support for links which specify a NNTP server
|
||||
* fixed parsing of extern? config file options (was endless loop)
|
||||
>>>>>>> 1.35
|
||||
* look more carefully for Zope servers
|
||||
|
||||
<<<<<<< changelog
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Thu, 13 Jul 2000 20:48:32 +0200
|
||||
=======
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Fri, 14 Jul 2000 05:23:08 +0200
|
||||
>>>>>>> 1.35
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Sat, 19 Aug 2000 17:17:12 +0200
|
||||
|
||||
linkchecker (1.2.3) unstable; urgency=low
|
||||
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@ import re,string,os,urlparse,urllib
|
|||
from UrlData import UrlData
|
||||
from linkcheck import _
|
||||
|
||||
html_re = re.compile(r'\.s?html?$')
|
||||
|
||||
class FileUrlData(UrlData):
|
||||
"Url link with file scheme"
|
||||
|
||||
|
|
@ -59,7 +61,7 @@ class FileUrlData(UrlData):
|
|||
|
||||
|
||||
def isHtml(self):
|
||||
return self.valid and re.compile("\.s?html?$").search(self.url)
|
||||
return self.valid and html_re.search(self.url)
|
||||
|
||||
|
||||
def __str__(self):
|
||||
|
|
|
|||
|
|
@ -410,7 +410,7 @@ msgstr "valeur du niveau de r
|
|||
|
||||
#, c-format
|
||||
msgid "invalid log option '%s'"
|
||||
msgstr "option de log invalide '%'"
|
||||
msgstr "option de log invalide '%s'"
|
||||
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
|
|
|||
Loading…
Reference in a new issue