mirror of https://github.com/adamdruppe/arsd.git
fixes and convenience methods
This commit is contained in:
parent
ad98c2cbb1
commit
9d7665398f
4
cgi.d
4
cgi.d
|
@ -922,7 +922,7 @@ string[string] decodeVariablesSingle(string data) {
|
||||||
return va;
|
return va;
|
||||||
}
|
}
|
||||||
|
|
||||||
string encodeVariables(string[string] data) {
|
string encodeVariables(in string[string] data) {
|
||||||
string ret;
|
string ret;
|
||||||
|
|
||||||
bool outputted = false;
|
bool outputted = false;
|
||||||
|
@ -938,7 +938,7 @@ string encodeVariables(string[string] data) {
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
string encodeVariables(string[][string] data) {
|
string encodeVariables(in string[][string] data) {
|
||||||
string ret;
|
string ret;
|
||||||
|
|
||||||
bool outputted = false;
|
bool outputted = false;
|
||||||
|
|
20
dom.d
20
dom.d
|
@ -1165,6 +1165,24 @@ class Element {
|
||||||
this.children.length = 0; // we reparented them all above
|
this.children.length = 0; // we reparented them all above
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// shorthand for this.parentNode.removeChild(this) with parentNode null check
|
||||||
|
Element removeFromTree()
|
||||||
|
in {
|
||||||
|
|
||||||
|
}
|
||||||
|
out(var) {
|
||||||
|
assert(this.parentNode is null);
|
||||||
|
assert(var is this);
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
if(this.parentNode is null)
|
||||||
|
return this;
|
||||||
|
|
||||||
|
this.parentNode.removeChild(this);
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
Element replaceWith(Element e) {
|
Element replaceWith(Element e) {
|
||||||
if(e.parentNode !is null)
|
if(e.parentNode !is null)
|
||||||
e.parentNode.removeChild(e);
|
e.parentNode.removeChild(e);
|
||||||
|
@ -1348,6 +1366,8 @@ dchar parseEntity(in dchar[] entity) {
|
||||||
case "deg":
|
case "deg":
|
||||||
case "micro"
|
case "micro"
|
||||||
*/
|
*/
|
||||||
|
case "hellip":
|
||||||
|
return '\u2026';
|
||||||
case "laquo":
|
case "laquo":
|
||||||
return '\u00ab';
|
return '\u00ab';
|
||||||
case "raquo":
|
case "raquo":
|
||||||
|
|
Loading…
Reference in New Issue