Opened 19 years ago

Closed 19 years ago

Last modified 17 years ago

#68 closed defect (fixed)

Tutorial 02 shows deprecated mod_python config

Reported by: pb@… Owned by: Jacob
Component: Documentation Version:
Severity: minor Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Per changeset:169, the mod_python config should specify django.core.handlers.modpython as handler.

--- docs/tutorial02.txt Mon Jul 18 11:10:22 2005
+++ docs/tutorial02_update.txt  Mon Jul 18 13:24:01 2005
@@ -65,7 +65,7 @@
 
     <Location "/admin/">
         SetHandler python-program
-        PythonHandler django.core.handler
+        PythonHandler django.core.handlers.modpython
         SetEnv DJANGO_SETTINGS_MODULE myproject.settings.admin
         PythonDebug On
     </Location>

Change History (1)

comment:1 by Adrian Holovaty, 19 years ago

Resolution: fixed
Status: newclosed

Fixed in [176]. Thanks very much.

Note: See TracTickets for help on using tickets.
Back to Top