mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-15 11:51:02 +00:00
see Changelog
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@151 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
b0c3d92ec8
commit
9cae050b8e
7 changed files with 10 additions and 6 deletions
|
|
@ -102,7 +102,7 @@ class Packer:
|
|||
label = list[j]
|
||||
n = len(label)
|
||||
if offset + len(buf) < 0x3FFF:
|
||||
index.append(keys[j], offset + len(buf))
|
||||
index.append((keys[j], offset + len(buf)))
|
||||
else:
|
||||
print 'DNS.Lib.Packer.addname:',
|
||||
print 'warning: pointer too big'
|
||||
|
|
|
|||
|
|
@ -43,6 +43,7 @@ httplib.py (renamed to http11lib.py and a bug fixed)
|
|||
fcgi.py (implemented streamed output)
|
||||
sz_fcgi.py (simplified the code)
|
||||
DNS/Lib.py:566 fixed rdlength name error
|
||||
DNS/Lib.py:105 tuple parameter for Python 1.6 compatibility
|
||||
DNS/Base.py: fixed /etc/resolv.conf parser to cope with empty lines
|
||||
|
||||
|
||||
|
|
|
|||
6
debian/changelog
vendored
6
debian/changelog
vendored
|
|
@ -1,8 +1,10 @@
|
|||
linkchecker (1.2.5) unstable; urgency=low
|
||||
|
||||
* fix /etc/resolv.conf parsing again (this time for real)
|
||||
* fix /etc/resolv.conf parsing again (this time for real?)
|
||||
* tuple param in DNS/Lib.py for Python 1.6 compatibility
|
||||
* adjust #! line in linkchecker script to correct python interpreter
|
||||
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Mon, 21 Aug 2000 23:59:35 +0200
|
||||
-- Bastian Kleineidam <calvin@users.sourceforge.net> Thu, 7 Sep 2000 00:21:07 +0200
|
||||
|
||||
linkchecker (1.2.4) unstable; urgency=low
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
"""
|
||||
import os
|
||||
import os,sys
|
||||
from Template import Template
|
||||
|
||||
distpath = os.getcwd()
|
||||
|
|
@ -28,6 +28,7 @@ data = {
|
|||
'url': '$url',
|
||||
'appname': '$appname',
|
||||
'email': '$email',
|
||||
'python': os.path.normpath(sys.executable),
|
||||
}
|
||||
files = [
|
||||
'linkchecker',
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ from RobotsTxt import RobotsTxt
|
|||
import Config,StringUtil
|
||||
from linkcheck import _
|
||||
|
||||
|
||||
class HttpUrlData(UrlData):
|
||||
"Url link with http scheme"
|
||||
netscape_re = re.compile("Netscape-Enterprise/")
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
#!$python
|
||||
|
||||
import sys
|
||||
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ Just some HTTP links
|
|||
<a href="http://">
|
||||
<a href="http:/">
|
||||
<a href="http:">
|
||||
<a href="http://www.blubb.de/stalter&sohn">
|
||||
<a name="iswas"> <!-- anchor for test2.html -->
|
||||
<a href=http://slashdot.org/>
|
||||
<a href="http://treasure.calvinsplayground.de/~calvin/software/#isnix">
|
||||
|
|
|
|||
Loading…
Reference in a new issue