mirror of https://github.com/adamdruppe/arsd.git
Merge pull request #1 from Abscissa/master
dom's docs and warnings for dom/web
This commit is contained in:
commit
39e68bd6e7
5
web.d
5
web.d
|
@ -168,7 +168,6 @@ class ApiProvider {
|
||||||
|
|
||||||
Document _defaultPage() {
|
Document _defaultPage() {
|
||||||
throw new Exception("no default");
|
throw new Exception("no default");
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Element _getGenericContainer()
|
Element _getGenericContainer()
|
||||||
|
@ -1673,10 +1672,12 @@ void formatAs(T, R)(T ret, R api, ref JSONValue returnValue, string format, stri
|
||||||
case "table":
|
case "table":
|
||||||
auto document = new Document("<root></root>");
|
auto document = new Document("<root></root>");
|
||||||
static if(__traits(compiles, structToTable(document, ret)))
|
static if(__traits(compiles, structToTable(document, ret)))
|
||||||
|
{
|
||||||
returnValue.str = structToTable(document, ret).toString();
|
returnValue.str = structToTable(document, ret).toString();
|
||||||
|
break;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
goto badType;
|
goto badType;
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
badType:
|
badType:
|
||||||
throw new Exception("Couldn't get result as " ~ format);
|
throw new Exception("Couldn't get result as " ~ format);
|
||||||
|
|
Loading…
Reference in New Issue