Changeset 1477
- Timestamp:
- 07/05/08 01:26:54 (2 months ago)
- Location:
- pyamf/trunk/pyamf/remoting
- Files:
-
- 2 modified
-
client/__init__.py (modified) (1 diff)
-
gateway/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pyamf/trunk/pyamf/remoting/client/__init__.py
r1473 r1477 183 183 @type referer: C{str} 184 184 @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} 185 189 @ivar connection: The underlying connection to the remoting server. 186 190 @type connection: C{httplib.HTTPConnection} or C{httplib.HTTPSConnection} -
pyamf/trunk/pyamf/remoting/gateway/__init__.py
r1474 r1477 14 14 from pyamf import remoting, logging, util 15 15 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. 16 19 SERVER_NAME = 'PyAMF/%s Python/%s' % ( 17 20 '.'.join(map(lambda x: str(x), pyamf.__version__)),
