Replaced these files with:

- I2PSocketServer.py
 - I2PBaseHTTPServer.py
 - I2PSimpleHTTPServer.py
 - I2PCGIHTTPServer.py
difference being that these new modules are not hacks of the
original python server modules, rather, they subclass the
python server modules; this overcomes the Fear and Loathing
expressed by some regarding multiplicity of licenses, and
apart from that, is a better idea anyway. Only danger being if the
modules in later Python releases change substantially, these modules
could get broken.
This commit is contained in:
aum
2004-07-31 18:51:45 +00:00
committed by zzz
parent 8c31e47eeb
commit c04885449d
5 changed files with 2 additions and 1635 deletions

View File

@@ -3,7 +3,8 @@ i2p -- I2P Python interface
"""
__all__ = ['Error', 'RouterError', 'sam', 'eep', 'router',
'SocketServer', 'BaseHTTPServer', 'SimpleHTTPServer', 'CGIHTTPServer',
'I2PSocketServer', 'I2PBaseHTTPServer',
'I2PSimpleHTTPServer', 'I2PCGIHTTPServer',
]
class Error(Exception):