mirror of https://github.com/adamdruppe/arsd.git
big fixes for 64 bit and new dom.d compatibility
This commit is contained in:
parent
37eea9f26c
commit
b5ef7e41b8
26
html.d
26
html.d
|
@ -170,8 +170,8 @@ Element sanitizedHtml(/*in*/ Element userContent, string idPrefix = null, HtmlFe
|
||||||
|
|
||||||
if(e.tagName == "iframe") {
|
if(e.tagName == "iframe") {
|
||||||
// some additional restrictions for supported browsers
|
// some additional restrictions for supported browsers
|
||||||
e.security = "restricted";
|
e.attrs.security = "restricted";
|
||||||
e.sandbox = "";
|
e.attrs.sandbox = "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return div;
|
return div;
|
||||||
|
@ -478,7 +478,7 @@ void translateValidation(Document document) {
|
||||||
|
|
||||||
if(formValidation != "") {
|
if(formValidation != "") {
|
||||||
auto os = f.getAttribute("onsubmit");
|
auto os = f.getAttribute("onsubmit");
|
||||||
f.onsubmit = `var failed = null; var failedMessage = ''; with(this) { ` ~ formValidation ~ '\n' ~ ` if(failed != null) { alert('Please complete all required fields.\n' + failedMessage); failed.focus(); return false; } `~os~` return true; }`;
|
f.attrs.onsubmit = `var failed = null; var failedMessage = ''; with(this) { ` ~ formValidation ~ '\n' ~ ` if(failed != null) { alert('Please complete all required fields.\n' + failedMessage); failed.focus(); return false; } `~os~` return true; }`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -493,7 +493,7 @@ void translateDateInputs(Document document) {
|
||||||
assert(name !is null);
|
assert(name !is null);
|
||||||
auto button = document.createElement("button");
|
auto button = document.createElement("button");
|
||||||
button.type = "button";
|
button.type = "button";
|
||||||
button.onclick = "displayDatePicker('"~name~"');";
|
button.attrs.onclick = "displayDatePicker('"~name~"');";
|
||||||
button.innerText = "Choose...";
|
button.innerText = "Choose...";
|
||||||
e.parentNode.insertChildAfter(button, e);
|
e.parentNode.insertChildAfter(button, e);
|
||||||
|
|
||||||
|
@ -537,21 +537,21 @@ void translateStriping(Document document) {
|
||||||
/// tries to make an input to filter a list. it kinda sucks.
|
/// tries to make an input to filter a list. it kinda sucks.
|
||||||
void translateFiltering(Document document) {
|
void translateFiltering(Document document) {
|
||||||
foreach(e; document.getElementsBySelector("input[filter_what]")) {
|
foreach(e; document.getElementsBySelector("input[filter_what]")) {
|
||||||
auto filterWhat = e.filter_what;
|
auto filterWhat = e.attrs.filter_what;
|
||||||
if(filterWhat[0] == '#')
|
if(filterWhat[0] == '#')
|
||||||
filterWhat = filterWhat[1..$];
|
filterWhat = filterWhat[1..$];
|
||||||
|
|
||||||
auto fw = document.getElementById(filterWhat);
|
auto fw = document.getElementById(filterWhat);
|
||||||
assert(fw !is null);
|
assert(fw !is null);
|
||||||
|
|
||||||
foreach(a; fw.getElementsBySelector(e.filter_by)) {
|
foreach(a; fw.getElementsBySelector(e.attrs.filter_by)) {
|
||||||
a.addClass("filterable_content");
|
a.addClass("filterable_content");
|
||||||
}
|
}
|
||||||
|
|
||||||
e.removeAttribute("filter_what");
|
e.removeAttribute("filter_what");
|
||||||
e.removeAttribute("filter_by");
|
e.removeAttribute("filter_by");
|
||||||
|
|
||||||
e.onkeydown = e.onkeyup = `
|
e.attrs.onkeydown = e.attrs.onkeyup = `
|
||||||
var value = this.value;
|
var value = this.value;
|
||||||
var a = document.getElementById("`~filterWhat~`");
|
var a = document.getElementById("`~filterWhat~`");
|
||||||
var children = a.childNodes;
|
var children = a.childNodes;
|
||||||
|
@ -690,13 +690,13 @@ void translateInputTitles(Element rootElement) {
|
||||||
if(e.hasClass("has-placeholder"))
|
if(e.hasClass("has-placeholder"))
|
||||||
continue;
|
continue;
|
||||||
e.addClass("has-placeholder");
|
e.addClass("has-placeholder");
|
||||||
e.onfocus = e.onfocus ~ `
|
e.attrs.onfocus = e.attrs.onfocus ~ `
|
||||||
removeClass(this, 'default');
|
removeClass(this, 'default');
|
||||||
if(this.value == this.getAttribute('title'))
|
if(this.value == this.getAttribute('title'))
|
||||||
this.value = '';
|
this.value = '';
|
||||||
`;
|
`;
|
||||||
|
|
||||||
e.onblur = e.onblur ~ `
|
e.attrs.onblur = e.attrs.onblur ~ `
|
||||||
if(this.value == '') {
|
if(this.value == '') {
|
||||||
addClass(this, 'default');
|
addClass(this, 'default');
|
||||||
this.value = this.getAttribute('title');
|
this.value = this.getAttribute('title');
|
||||||
|
@ -711,18 +711,18 @@ void translateInputTitles(Element rootElement) {
|
||||||
|
|
||||||
if(e.tagName == "input") {
|
if(e.tagName == "input") {
|
||||||
if(e.value == "") {
|
if(e.value == "") {
|
||||||
e.value = e.title;
|
e.attrs.value = e.attrs.title;
|
||||||
e.addClass("default");
|
e.addClass("default");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if(e.innerText.length == 0) {
|
if(e.innerText.length == 0) {
|
||||||
e.innerText = e.title;
|
e.innerText = e.attrs.title;
|
||||||
e.addClass("default");
|
e.addClass("default");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
form.onsubmit = os ~ form.onsubmit;
|
form.attrs.onsubmit = os ~ form.attrs.onsubmit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1260,7 +1260,7 @@ class CssAtRule : CssPart {
|
||||||
if(c == '{') {
|
if(c == '{') {
|
||||||
braceCount++;
|
braceCount++;
|
||||||
if(startOfInnerSlice == -1)
|
if(startOfInnerSlice == -1)
|
||||||
startOfInnerSlice = i;
|
startOfInnerSlice = cast(int) i;
|
||||||
}
|
}
|
||||||
if(c == '}') {
|
if(c == '}') {
|
||||||
braceCount--;
|
braceCount--;
|
||||||
|
|
Loading…
Reference in New Issue