From 2415a57ab08d9eb3c2d85e10d233dcbc7310a73c Mon Sep 17 00:00:00 2001 From: colin-adams Date: Wed, 7 Aug 2013 23:30:49 -0700 Subject: [PATCH] Updated Writing the handlers (markdown) --- Writing-the-handlers.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Writing-the-handlers.md b/Writing-the-handlers.md index cd09a20d..ce845fd8 100644 --- a/Writing-the-handlers.md +++ b/Writing-the-handlers.md @@ -88,6 +88,10 @@ Of course, if you have not mapped any DELETE requests to the URI space of this h If in the delete routine, you elected to queue the request, then you need to return True here. You will probably need to check the execution variable you set in the delete routine. +### deleted + +If delete_queued returns False, then deleted needs to indicate whether or not the delete succeeded. A default implementation is provided that should be satisfactory. + ## Implementing the policies * [WSF_OPTIONS_POLICY](./WSF_OPTIONS_POLICY)