more stuff

This commit is contained in:
Adam D. Ruppe 2011-09-22 13:19:14 -04:00
parent 55e8972e81
commit e442e61a59
2 changed files with 89 additions and 85 deletions

16
cgi.d
View File

@ -572,7 +572,7 @@ class Cgi {
responseLocation = uri.strip;
isCurrentResponseLocationImportant = important;
}
private string responseLocation = null;
protected string responseLocation = null;
private bool isCurrentResponseLocationImportant = false;
/// Sets the Expires: http header. See also: updateResponseExpires, setPublicCaching
@ -654,10 +654,7 @@ class Cgi {
private string[] customHeaders;
/// Writes the data to the output, flushing headers if they have not yet been sent.
void write(const(void)[] t, bool isAll = false) {
assert(!closed, "Output has already been closed");
if(!outputtedResponseData && (!autoBuffer || isAll)) {
void flushHeaders(const(void)[] t, bool isAll = false) {
string[] hd;
// Flush the headers
if(responseStatus !is null) {
@ -741,6 +738,13 @@ class Cgi {
outputtedResponseData = true;
}
/// Writes the data to the output, flushing headers if they have not yet been sent.
void write(const(void)[] t, bool isAll = false) {
assert(!closed, "Output has already been closed");
if(!outputtedResponseData && (!autoBuffer || isAll)) {
flushHeaders(t, isAll);
}
if(gzipResponse && acceptsGzip && isAll) { // FIXME: isAll really shouldn't be necessary
// actually gzip the data here
@ -749,7 +753,7 @@ class Cgi {
auto data = c.compress(t);
data ~= c.flush();
std.file.write("/tmp/last-item", data);
// std.file.write("/tmp/last-item", data);
t = data;
}

4
dom.d
View File

@ -1231,7 +1231,7 @@ class Element {
Sets the inside text, replacing all children
*/
@property void innerText(string text) {
assert(!selfClosed);
selfClosed = false;
Element e = new TextNode(parentDocument, text);
e.parentNode = this;
children = [e];
@ -1761,7 +1761,7 @@ class Form : Element {
}
if(!found) {
addChild("option", value)
e.addChild("option", value)
.setAttribute("selected", "selected");
}
break;