Package web2py :: Package gluon :: Module restricted :: Class TicketStorage
[hide private]
[frames] | no frames]

Class TicketStorage

source code

 object --+        
          |        
       dict --+    
              |    
storage.Storage --+
                  |
                 TicketStorage

defines the ticket object and the default values of its members (None)

Instance Methods [hide private]
 
__init__(self, db=1, tablename='web2py_ticket')
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
store(self, request, ticket_id, ticket_data)
stores the ticket.
source code
 
_store_in_db(self, request, ticket_id, ticket_data) source code
 
_store_on_disk(self, request, ticket_id, ticket_data) source code
 
_error_file(self, request, ticket_id, mode, app=1) source code
 
_get_table(self, db, tablename, app) source code
 
load(self, request, app, ticket_id) source code

Inherited from storage.Storage: __delattr__, __getattr__, __getstate__, __repr__, __setattr__, __setstate__, getfirst, getlast, getlist

Inherited from dict: __cmp__, __contains__, __delitem__, __eq__, __ge__, __getattribute__, __getitem__, __gt__, __hash__, __iter__, __le__, __len__, __lt__, __ne__, __new__, __setitem__, clear, copy, fromkeys, get, has_key, items, iteritems, iterkeys, itervalues, keys, pop, popitem, setdefault, update, values

Inherited from object: __reduce__, __reduce_ex__, __str__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, db=1, tablename='web2py_ticket')
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Returns:
new empty dictionary

Overrides: dict.__init__
(inherited documentation)

store(self, request, ticket_id, ticket_data)

source code 
stores the ticket. It will figure out if this must be on disk or in db