Changeset 1317

Show
Ignore:
Timestamp:
05/02/08 02:33:40 (23 months ago)
Author:
thijs
Message:

gae doc update.

Location:
pyamf/trunk/pyamf
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • pyamf/trunk/pyamf/adapters/_google_appengine_ext_db.py

    r1274 r1317  
    55Google App Engine adapter module. 
    66 
    7 Sets up basic type mapping and class mappings for using the Google App Engine 
    8 database API. 
     7Sets up basic type mapping and class mappings for using the Datastore API 
     8in Google App Engine. 
    99 
    10 @see: U{Google App Engine (external)<http://code.google.com/appengine/>} 
     10@see: U{Datastore API on Google App Engine (external) 
     11<http://code.google.com/appengine/docs/datastore>} 
    1112 
    1213@author: U{Nick Joyce<mailto:nick@boxdesign.co.uk>} 
     
    2122def get_attrs_for_model(obj): 
    2223    """ 
    23     Returns a list of properties on an C{db.Model} instance 
     24    Returns a list of properties on an C{db.Model} instance. 
    2425    """ 
    2526    return list(obj.__class__._properties) 
     
    2728def get_attrs_for_expando(obj): 
    2829    """ 
    29     Returns a list of dynamic properties on a C{db.Expando} instance 
     30    Returns a list of dynamic properties on a C{db.Expando} instance. 
    3031    """ 
    3132    return obj.dynamic_properties() 
  • pyamf/trunk/pyamf/remoting/gateway/google.py

    r1300 r1317  
    33 
    44""" 
    5 Google App Engine compatible AMF Gateway. 
     5Gateway for Google App Engine. 
     6 
     7This gateway allows you to expose functions in Google App Engine web 
     8applications to AMF clients and servers. 
     9 
     10@see: U{Google App Engine homepage (external) 
     11<http://code.google.com/appengine>} 
    612 
    713@author: U{Nick Joyce<mailto:nick@boxdesign.co.uk>} 
     14 
    815@since: 0.3.1 
    916""" 
     
    2835 
    2936class WebAppGateway(webapp.RequestHandler, gateway.BaseGateway): 
     37    """ 
     38    Google App Engine Remoting Gateway. 
     39    """ 
    3040    __name__ = None 
    3141 
  • pyamf/trunk/pyamf/remoting/gateway/wsgi.py

    r1122 r1317  
    2121 
    2222@author: U{Nick Joyce<mailto:nick@boxdesign.co.uk>} 
     23 
    2324@since: 0.1.0 
    2425""" 
     
    6869    def __call__(self, environ, start_response): 
    6970        """ 
    70         @type environ: 
    71         @param environ: 
    72         @type start_response: 
    73         @param start_response: 
    74  
    7571        @rtype: C{StringIO} 
    7672        @return: File-like object.