Package twisted :: Package web :: Package woven :: Module page :: Class LivePage
[show private | hide private]
[frames | no frames]

Class LivePage

                             Model --+
                                     |
    Collection --+                   |
                 |                   |
       Constrained --+               |
                     |               |
      ConfigCollection --+           |
                         |           |
                  Resource --+       |
                             |       |
                    Controller --+   |
                                 |   |
                    LiveController --+
                                     |
Collection --+                       |
             |                       |
   Constrained --+                   |
                 |                   |
  ConfigCollection --+               |
                     |               |
              Resource --+           |
                         |           |
               DOMTemplate --+       |
                             |       |
                          View --+   |
                                 |   |
                          LiveView --+
                                     |
                                    LivePage


Method Summary
  __init__(self, *args, **kwargs)
  __cmp__(self, other)
(inherited from Model)
  __getstate__(self)
(inherited from Model)
  __setitem__(self, key, value)
(inherited from View)
  addSubview(self, name, subview)
(inherited from Model)
  addView(self, view)
Add a view for the model to keep track of. (inherited from Model)
  aggregateInvalid(self, request, input, data)
(inherited from Controller)
  aggregateValid(self, request, input, data)
(inherited from Controller)
  delEntity(self, name)
Remove a static reference for 'name'. (inherited from Resource)
  dispatchResult(self, request, node, result)
Check a given result from handling a node and hand it to a process* method which will convert the result into a node and insert it into the DOM tree. (inherited from DOMTemplate)
  dispatchResultCallback(self, result, request, node)
Deal with a callback from a deferred, dispatching the result and recursing children. (inherited from DOMTemplate)
  domChanged(self, request, node)
(inherited from LiveController)
  entityConstraint(self, entity)
A method that determines whether an entity may be added to me. (inherited from ConfigCollection)
  gatheredControllers(self, v, d, request)
(inherited from LiveController)
  generate(self, request, node)
Allow a view to be used like a widget. (inherited from View)
  getChild(self, name, request)
Look for a factory method to create the object to handle the next segment of the URL. (inherited from Controller)
  getChildForRequest(self, request)
(internal) Get a child of mine dependant on a particular request. (inherited from Resource)
  getChildWithDefault(self, path, request)
(internal) Retrieve a static or dynamically generated child resource from me. (inherited from Resource)
  getData(self)
(inherited from Model)
  getDynamicEntity(self, name, request)
Subclass this to generate an entity on demand. (inherited from Resource)
  getEntity(self, name, request)
Retrieve an entity from me. (inherited from Collection)
  getEntityType(self)
(inherited from ConfigCollection)
  getNameType(self)
(inherited from ConfigCollection)
  getNodeController(self, request, node, submodel, model)
Get a controller object to handle this node. (inherited from View)
  getNodeModel(self, request, node, submodel)
Get the model object associated with this node. (inherited from View)
  getNodeView(self, request, node, submodel, model)
(inherited from View)
  getStaticEntity(self, name)
Get an entity that was added to me using putEntity. (inherited from Resource)
  getSubcontroller(self, request, node, model, controllerName)
(inherited from Controller)
  getSubmodel(self, name)
Get the submodel `name' of this model. (inherited from Model)
  getSubview(self, request, node, model, viewName)
Get a sub-view from me. (inherited from View)
  getTemplate(self, request)
Override this if you want to have your subclass look up its template using a different method. (inherited from DOMTemplate)
  handle(self, request)
By default, we don't do anything (inherited from Controller)
  handleControllerResults(self, controllerResult, request, node, controller, view, success)
(inherited from View)
  handleDocument(self, request, document)
Handle the root node, and send the page if there are no outstanding callbacks when it returns. (inherited from DOMTemplate)
  handleModel(self, model, request, node, submodelName)
(inherited from View)
  handleModelLater(self, model, request, node, submodelName)
(inherited from View)
  handleNewNode(self, request, returnNode)
(inherited from View)
  handleNode(self, request, node)
Handle a single node by looking up a method for it, calling the method and dispatching the result. (inherited from View)
  importControllerLibrary(self, namespace)
(inherited from Controller)
  importViewLibrary(self, namespace)
(inherited from View)
  initialize(self, *args, **kwargs)
Hook for subclasses to initialize themselves without having to mess with the __init__ chain. (inherited from Model)
  listDynamicEntities(self, request)
A list of all name, entity that I can generate on demand. (inherited from Resource)
  listDynamicNames(self)
Retrieve a list of the names of entities that I store references to. (inherited from Resource)
  listEntities(self)
Retrieve a list of all name, entity pairs that I store references to. (inherited from Resource)
  listNames(self)
Retrieve a list of the names of entities that I store references to. (inherited from Resource)
  listStaticEntities(self)
Retrieve a list of all name, entity pairs that I store references to. (inherited from Resource)
  listStaticNames(self)
Retrieve a list of the names of entities that I store references to. (inherited from Resource)
  lookupSubmodel(self, submodelName)
Look up a full submodel name. (inherited from Model)
  lookupTemplate(self, request)
Use acquisition to look up the template named by self.templateFile, located anywhere above this object in the heirarchy, and use it as the template. (inherited from DOMTemplate)
  modelChanged(self, changed)
Dispatch changed messages to any update_* methods which may have been defined, then pass the update notification on to the controller. (inherited from View)
  nameConstraint(self, name)
A method that determines whether an entity may be added to me with a given name. (inherited from Constrained)
  notify(self, changed)
Notify all views that something was changed on me. (inherited from Model)
  process(self, request, **kwargs)
(inherited from Controller)
  putChild(self, path, child)
Register a child with me. (inherited from Resource)
  putEntity(self, name, entity)
Store an entity if it meets both constraints. (inherited from Constrained)
  reallyPutEntity(self, name, entity)
(inherited from Resource)
  recurseChildren(self, request, node)
If this node has children, handle them. (inherited from DOMTemplate)
  removeEntity(self, name, request)
Remove an entity for 'name', based on the content of 'request'. (inherited from Collection)
  removeView(self, view)
Remove a view that the model no longer should keep track of. (inherited from Model)
  render(self, request)
First, check to see if this request is attempting to hook up the output conduit. (inherited from LiveController)
  renderFailure(self, failure, request)
(inherited from DOMTemplate)
  renderView(self, request)
  sendPage(self, request)
Check to see if handlers recorded any errors before sending the page (inherited from View)
  setController(self, controller)
(inherited from View)
  setData(self, data)
(inherited from Model)
  setNode(self, node)
(inherited from View)
  setSubcontrollerFactory(self, name, factory, setup)
(inherited from Controller)
  setSubmodel(self, name, value)
Set a submodel on this model. (inherited from Model)
  setSubviewFactory(self, name, factory, setup, *args, **kwargs)
(inherited from View)
  setUp(self, request, *args)
(inherited from Controller)
  setupControllerStack(self)
(inherited from Controller)
  setupViewStack(self)
(inherited from View)
  setView(self, view)
(inherited from Controller)
  storeEntity(self, name, request)
Store an entity for 'name', based on the content of 'request'. (inherited from Collection)
  submodelCheck(self, name)
Check if a submodel name is allowed. (inherited from Model)
  submodelFactory(self, name)
(inherited from Model)
  unlinkViews(self)
(inherited from View)
  wchild_FlashConduit_swf(self, request)
(inherited from LiveController)
  wchild_input_html(self, request)
(inherited from LiveController)
  wchild_WebConduit2_js(self, request)
(inherited from LiveController)
  wvfactory_webConduitGlue(self, request, node, m)
(inherited from LiveView)
  wvupdate_woven_flashConduitSessionView(self, request, wid, mod)
(inherited from LiveView)

Class Variable Summary
tuple __implements__

Class Variable Details

__implements__

Type:
tuple
Value:
(<class twisted.web.woven.interfaces.IModel at 0x108832c0>,
 ((<class twisted.web.resource.IResource at 0x1029c3d8>,
   <class twisted.coil.coil.IConfigCollection at 0x102c3460>),
  <class twisted.web.woven.interfaces.IView at 0x10761738>),
 (<class twisted.web.woven.interfaces.IController at 0x107a1048>,
  <class twisted.web.resource.IResource at 0x1029c3d8>))               

Generated by Epydoc 1.2 prerelease on Wed Jan 29 06:26:34 2003 http://epydoc.sf.net