def respondToGet(self, transaction): if self._allowGet: self.writeError("GET method not allowed") HTTPContent.respondToGet(self, transaction)
def actions(self): actions = HTTPContent.actions(self) actions.append('jsonCall') return actions
def __init__(self): HTTPContent.__init__(self)