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 httpdapi
    
it now needs to say

        from mod_python import httpdapi
    
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: Mon May 15 19:05:40 EDT 2000