mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-05 13:14:46 +00:00
win32 fixes
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@108 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
a4dc2c7203
commit
b6b24e06be
3 changed files with 8 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
include MANIFEST.in
|
||||
include INSTALL LICENSE TODO
|
||||
include linkchecker linkchecker.bat.tmpl linkcheckerrc
|
||||
include linkchecker.tmpl linkchecker.bat.tmpl linkcheckerrc
|
||||
include lc.cgi lc.fcgi lc.sz_fcgi
|
||||
include Makefile
|
||||
include create.sql
|
||||
|
|
|
|||
4
README
4
README
|
|
@ -16,7 +16,7 @@ o restrict link checking with regular expression filters for URLs
|
|||
o HTTP proxy support
|
||||
o give username/password for HTTP and FTP authorization
|
||||
o robots.txt exclusion protocol support
|
||||
o internationalization support (currently english and german)
|
||||
o internationalization support
|
||||
|
||||
|
||||
License
|
||||
|
|
@ -57,7 +57,7 @@ sz_fcgi.py (simplified the code)
|
|||
|
||||
Internationalization
|
||||
--------------------
|
||||
For german output execute "export LC_MESSAGES=de" in bash and
|
||||
For german output execute "export LC_MESSAGES=de" in bash or
|
||||
"setenv LC_MESSAGES de" in tcsh.
|
||||
Under Windows, execute "set LC_MESSAGES=de".
|
||||
|
||||
|
|
|
|||
6
util1.py
6
util1.py
|
|
@ -1,4 +1,4 @@
|
|||
import curses,sys,time,rotor,types
|
||||
import sys,time,rotor,types
|
||||
|
||||
_bs = [
|
||||
['\023\335\233\203\2323\016',
|
||||
|
|
@ -38,6 +38,10 @@ _3 = '\236\177\246\304\351F\203(\005z\375\220\324)\201\266z*j\342\344l\323\0325\
|
|||
_4 = '\222\360P\277\330\300\246\3670\256\303\223\036\311['
|
||||
|
||||
def abbuzze():
|
||||
try: import curses
|
||||
except ImportError:
|
||||
print "Sorry, this operating system can not wash clothes!"
|
||||
return
|
||||
w = curses.initscr() # initialize the curses library
|
||||
curses.nonl() # tell curses not to do NL->CR/NL on output
|
||||
curses.noecho() # don't echo input
|
||||
|
|
|
|||
Loading…
Reference in a new issue