![]() |
App Engine Python SDK
v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
|
Public Member Functions | |
def | Render |
def | get |
![]() | |
def | initialize |
def | get |
def | post |
def | head |
def | options |
def | put |
def | delete |
def | trace |
def | error |
def | redirect |
def | handle_exception |
def | new_factory |
def | get_url |
Static Public Attributes | |
string | SUFFIX = 'confirm_delete' |
Additional Inherited Members | |
![]() | |
request | |
response | |
Handler to deal with requests from the admin console to delete data.
def google.appengine.ext.datastore_admin.delete_handler.ConfirmDeleteHandler.get | ( | self | ) |
Handler for get requests to datastore_admin/confirm_delete.
def google.appengine.ext.datastore_admin.delete_handler.ConfirmDeleteHandler.Render | ( | cls, | |
handler | |||
) |
Rendering method that can be called by main.py or get. This method executes no action, so the method by which it is accessed is immaterial. Creating a form with get may be a desirable function. That is, if this builtin is turned on, anyone can create a form to delete a kind by simply linking to the ConfirmDeleteHandler like so: <a href="/_ah/datastore_admin/confirm_delete?kind=trash"> Delete all Trash Objects</a> Args: handler: the webapp.RequestHandler invoking the method