From 7c13ec86378dc91548a5b0cb7569ddd080d4551a Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 16 Jul 2011 20:10:37 -0400 Subject: [PATCH] catchall should not be wrapped in envelope --- web.d | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/web.d b/web.d index 6e9b52e..b0567c7 100644 --- a/web.d +++ b/web.d @@ -176,6 +176,8 @@ class ApiProvider { } _errorMessageForCatchAll = errorMessage; + + _catchAll(path); } @@ -797,6 +799,10 @@ void run(Provider)(Cgi cgi, Provider instantiation, int pathInfoStartingPoint = cgi.pathInfo[pathInfoStartingPoint + 1..$], funName, errorMessage); + + envelopeFormat = "no-processing"; + + return; } assert(fun !is null); @@ -877,6 +883,8 @@ void run(Provider)(Cgi cgi, Provider instantiation, int pathInfoStartingPoint = } } finally { switch(envelopeFormat) { + case "no-processing": + break; case "redirect": auto redirect = cgi.request("_arsd_redirect_location", cgi.referrer);