Httpdapy Handler

This handler is provided for people migrating from Httpdapy. To use it, add this to your .htaccess file:

        PythonHandler mod_python.httpdapi
    
You will need to change one line in your code. Where it said
        import httpdapy
    
it now needs to say

        from mod_python import httpdapy
    
If you were using authentication, in your .htaccess, instead of:
        AuthPythonModule modulename
    
use
        PythonOption authhandler modulename
    
NB: Make sure that the old httpdapi.py and apache.py are not in your python path anymore.
Last modified: Fri May 12 22:08:45 EDT 2000