Django

Code

Show
Ignore:
Timestamp:
07/19/08 14:32:01 (4 months ago)
Author:
mtredinnick
Message:

First part of setting request.path correctly.

Still needs:

  • testing
  • docs changes
  • some way of fixing reverse().
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/http/__init__.py

    r7814 r7991  
    3232        self.GET, self.POST, self.COOKIES, self.META, self.FILES = {}, {}, {}, {}, {} 
    3333        self.path = '' 
     34        self.path_info = '' 
    3435        self.method = None 
    3536 
     
    443444    else: 
    444445        return s 
     446