mirror of https://github.com/adamdruppe/arsd.git
docs, iis fix, copyright
This commit is contained in:
parent
78b1c88ba5
commit
7f1640d1c9
9
cgi.d
9
cgi.d
|
@ -130,9 +130,10 @@ class Cgi {
|
|||
|
||||
// Because IIS doesn't pass requestUri, we simulate it here if it's empty.
|
||||
if(requestUri.length == 0) {
|
||||
// IIS also includes the script name as part of the path info - we don't want that
|
||||
assert(pathInfo[0 .. scriptName.length] == scriptName);
|
||||
pathInfo = pathInfo[scriptName.length .. $];
|
||||
// IIS sometimes includes the script name as part of the path info - we don't want that
|
||||
if(pathInfo.length >= scriptName.length && (pathInfo[0 .. scriptName.length] == scriptName))
|
||||
pathInfo = pathInfo[scriptName.length .. $];
|
||||
|
||||
requestUri = scriptName ~ pathInfo ~ (queryString.length ? ("?" ~ queryString) : "");
|
||||
|
||||
iis = true; // FIXME HACK - used in byChunk below - see bugzilla 6339
|
||||
|
@ -220,8 +221,6 @@ class Cgi {
|
|||
chunk = readdata();
|
||||
}
|
||||
}
|
||||
|
||||
//assert(0, cast(string) data);
|
||||
}
|
||||
|
||||
version(preserveData)
|
||||
|
|
16
web.d
16
web.d
|
@ -168,7 +168,6 @@ class ApiProvider {
|
|||
|
||||
Document _defaultPage() {
|
||||
throw new Exception("no default");
|
||||
return null;
|
||||
}
|
||||
|
||||
Element _getGenericContainer()
|
||||
|
@ -1673,10 +1672,12 @@ void formatAs(T, R)(T ret, R api, ref JSONValue returnValue, string format, stri
|
|||
case "table":
|
||||
auto document = new Document("<root></root>");
|
||||
static if(__traits(compiles, structToTable(document, ret)))
|
||||
{
|
||||
returnValue.str = structToTable(document, ret).toString();
|
||||
break;
|
||||
}
|
||||
else
|
||||
goto badType;
|
||||
break;
|
||||
default:
|
||||
badType:
|
||||
throw new Exception("Couldn't get result as " ~ format);
|
||||
|
@ -2439,3 +2440,14 @@ really isn't bad anyway.
|
|||
The benefit for html was very easy and big. I'm not so sure about
|
||||
css and js.
|
||||
*/
|
||||
|
||||
/*
|
||||
Copyright: Adam D. Ruppe, 2010 - 2011
|
||||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
||||
Authors: Adam D. Ruppe, with contributions by Nick Sabalausky
|
||||
|
||||
Copyright Adam D. Ruppe 2010-2011.
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
http://www.boost.org/LICENSE_1_0.txt)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue