docs, iis fix, copyright

This commit is contained in:
Adam D. Ruppe 2011-07-22 19:43:42 -04:00
parent 78b1c88ba5
commit 7f1640d1c9
3 changed files with 264 additions and 74 deletions

9
cgi.d
View File

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

313
dom.d

File diff suppressed because it is too large Load Diff

16
web.d
View File

@ -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)
*/