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() {
|
||||
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);
|
||||
|
|
Loading…
Reference in New Issue