Merge pull request #1 from Abscissa/master

dom's docs and warnings for dom/web
This commit is contained in:
adamdruppe 2011-07-22 16:15:17 -07:00
commit 39e68bd6e7
2 changed files with 235 additions and 68 deletions

298
dom.d

File diff suppressed because it is too large Load Diff

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