Download Install Tutorial Docs FAQ Tools WikiLicense Team IRC Planet Involvement Shop Book

Changeset 772

Show
Ignore:
Timestamp:
10/31/05 16:36:37
Author:
fumanchu
Message:

Removed paramList attribute from request object. This should be handled entirely withint the xmlrpcfilter code (the core should not know about it).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/cherrypy/_cphttptools.py

    r768 r772  
    1 """Common Service Code for CherryPy""" 
     1"""CherryPy core request/response handling.""" 
    22 
    33import cgi 
    4  
    54import Cookie 
    65import os 
     
    162161         
    163162        try: 
    164             self.paramList = [] # Only used for Xml-Rpc 
    165163            self.headers = headers 
    166164            self.headerMap = KeyTitlingDict() 
     
    304302        # Save original values (in case they get modified by filters) 
    305303        self.originalParamMap = self.paramMap 
    306         self.originalParamList = self.paramList 
    307304         
    308305        if self.version >= "1.1": 
     
    368365                # Remove "root" from object_path and join it to get objectPath 
    369366                self.objectPath = '/' + '/'.join(object_path[1:]) 
    370                 args = virtual_path + self.paramList 
    371                 body = page_handler(*args, **self.paramMap) 
     367                body = page_handler(*virtual_path, **self.paramMap) 
    372368                cherrypy.response.body = iterable(body) 
    373369                return 

Hosted by WebFaction

Log in as guest/cpguest to create tickets