catchall should not be wrapped in envelope

This commit is contained in:
Adam D. Ruppe 2011-07-16 20:10:37 -04:00
parent 03bde3677f
commit 7c13ec8637
1 changed files with 8 additions and 0 deletions

8
web.d
View File

@ -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);