mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-27 19:20:30 +00:00
use ssh2
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@298 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
f1408f6093
commit
05916e205f
5 changed files with 23 additions and 17 deletions
|
|
@ -46,7 +46,7 @@ class key_handle:
|
|||
keys = []
|
||||
while 1:
|
||||
try:
|
||||
print repr(EnumKey(self._key, i))
|
||||
#print repr(EnumKey(self._key, i))
|
||||
keys.append(key_handle(self._key, EnumKey(self._key, i)))
|
||||
except EnvironmentError:
|
||||
break
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
include README FAQ INSTALL LICENSE TODO draft-gilman-news-url-00.txt
|
||||
include norobots-rfc.html
|
||||
include norobots-rfc.html guruguru.bmp
|
||||
include linkcheckerrc linkchecker linkchecker.bat linkchecker.1 create.sql
|
||||
include lc.cgi lc.fcgi lc.sz_fcgi
|
||||
include Makefile
|
||||
|
|
|
|||
2
debian/rules
vendored
2
debian/rules
vendored
|
|
@ -38,7 +38,7 @@ install: build
|
|||
dh_clean -k
|
||||
dh_installdirs
|
||||
$(MAKE) locale
|
||||
./setup.py install --root=`pwd`/debian/$(PACKAGE) --no-compile
|
||||
./setup.py install --root=$(CURDIR)/debian/$(PACKAGE) --no-compile
|
||||
# remove man pages, we install them with dh_installman
|
||||
rm -r debian/$(PACKAGE)/usr/man
|
||||
# remove files, we install them below
|
||||
|
|
|
|||
|
|
@ -17,5 +17,4 @@ rem Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|||
|
||||
rem uncomment the next line to enable german output
|
||||
rem set LC_MESSAGES=de
|
||||
rem Limited to 9 parameters? Is there a * for Windows?
|
||||
"python.exe" "linkchecker" %1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||
"python.exe" "linkchecker" %*
|
||||
|
|
|
|||
31
setup.py
31
setup.py
|
|
@ -234,8 +234,24 @@ class my_build_scripts(build_scripts):
|
|||
myname = "Bastian Kleineidam"
|
||||
myemail = "calvin@users.sourceforge.net"
|
||||
|
||||
scripts = ['linkchecker']
|
||||
data_files = [('share/locale/de/LC_MESSAGES',
|
||||
['locale/de/LC_MESSAGES/linkcheck.mo']),
|
||||
('share/locale/fr/LC_MESSAGES',
|
||||
['locale/fr/LC_MESSAGES/linkcheck.mo']),
|
||||
('share/linkchecker', ['linkcheckerrc']),
|
||||
('share/linkchecker/examples',
|
||||
['lconline/leer.html',
|
||||
'lconline/index.html', 'lconline/lc_cgi.html',
|
||||
'lc.cgi','lc.fcgi','lc.sz_fcgi']),
|
||||
]
|
||||
if os.name=="nt":
|
||||
scripts.append("linkchecker.bat")
|
||||
else:
|
||||
data_files.append()
|
||||
|
||||
setup (name = "linkchecker",
|
||||
version = "1.3.6",
|
||||
version = "1.3.7",
|
||||
description = "check HTML documents for broken links",
|
||||
author = myname,
|
||||
author_email = myemail,
|
||||
|
|
@ -265,15 +281,6 @@ o a (Fast)CGI web interface (requires HTTP server)
|
|||
'build_scripts': my_build_scripts,
|
||||
},
|
||||
packages = ['','DNS','linkcheck','linkcheckssl'],
|
||||
scripts = ['linkchecker'],
|
||||
data_files = [('share/locale/de/LC_MESSAGES',
|
||||
['locale/de/LC_MESSAGES/linkcheck.mo']),
|
||||
('share/locale/fr/LC_MESSAGES',
|
||||
['locale/fr/LC_MESSAGES/linkcheck.mo']),
|
||||
('share/linkchecker', ['linkcheckerrc']),
|
||||
('share/linkchecker/examples',
|
||||
['linkchecker.bat', 'lconline/leer.html',
|
||||
'lconline/index.html', 'lconline/lc_cgi.html',
|
||||
'lc.cgi','lc.fcgi','lc.sz_fcgi']),
|
||||
],
|
||||
scripts = scripts,
|
||||
data_files = data_files,
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue