Hello all,

Trying to get above sorted to run django with IIS (per 
http://code.djangoproject.com/wiki/DjangoOnWindowsWithIISAndSQLServer).

However, the interface module (pyisapie.py) is written to post-MR 
refactored APIs; would be grateful for a pointer on where they were 
located in 0.91.

Here's the relevant imports (if..else my additions):

--- pyisapie.py ---
from django.core.handlers.base import BaseHandler
from django.utils import datastructures
import os

DJANGO_VERSION="0.91" 
                          if (DJANGO_VERSION != "0.91"):
     #original module imports
     from django.core import signals
     from django.dispatch import dispatcher
     from django import http
else:
     from django.utils import httpwrappers as http
     #from ??? import signals
     #from ??? import dispatcher

from Http import *
 
     ---
Hopefully I just (?) need to know where to find 'signals' and 
'dispatcher' - thx.

BTW, is there a way I can query django directly to determine the version?

Thx,
Scoot.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to