Changeset 1477

Show
Ignore:
Timestamp:
07/05/08 01:26:54 (2 months ago)
Author:
thijs
Message:

Doc update.

Location:
pyamf/trunk/pyamf/remoting
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pyamf/trunk/pyamf/remoting/client/__init__.py

    r1473 r1477  
    183183    @type referer: C{str} 
    184184    @ivar client_type: The client type. See L{ClientTypes<pyamf.ClientTypes>}. 
     185    @type client_type: C{int} 
     186    @ivar user_agent: Contains information about the user agent (client) 
     187        originating the request. See L{DEFAULT_USER_AGENT}. 
     188    @type user_agent: C{str} 
    185189    @ivar connection: The underlying connection to the remoting server. 
    186190    @type connection: C{httplib.HTTPConnection} or C{httplib.HTTPSConnection} 
  • pyamf/trunk/pyamf/remoting/gateway/__init__.py

    r1474 r1477  
    1414from pyamf import remoting, logging, util 
    1515 
     16#: Value for the Server response-header that contains  
     17#: information about the PyAMF and Python version used 
     18#: by the origin server to handle the request.  
    1619SERVER_NAME = 'PyAMF/%s Python/%s' % ( 
    1720    '.'.join(map(lambda x: str(x), pyamf.__version__)),