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]
new empty dictionary

__init__(self, db=None, tablename='web2py_ticket')
x.__init__(...) initializes x; see help(type(x)) 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=None) source code
 
_get_table(self, db, tablename, app) source code
 
load(self, request, app, ticket_id) source code

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

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

Inherited from object: __format__, __reduce__, __reduce_ex__, __str__, __subclasshook__

Class Variables [hide private]

Inherited from dict: __hash__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

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

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Returns:
new empty dictionary

Overrides: object.__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