mirror of https://github.com/adamdruppe/arsd.git
gdc compat
This commit is contained in:
parent
aac46a8a75
commit
741c29ad02
4
html.d
4
html.d
|
@ -515,7 +515,7 @@ void translateDateInputs(Document document) {
|
|||
/// finds class="striped" and adds class="odd"/class="even" to the relevant
|
||||
/// children
|
||||
void translateStriping(Document document) {
|
||||
foreach(item; document.getElementsBySelector(".striped")) {
|
||||
foreach(item; document.querySelectorAll(".striped")) {
|
||||
bool odd = false;
|
||||
string selector;
|
||||
switch(item.tagName) {
|
||||
|
@ -545,7 +545,7 @@ void translateStriping(Document document) {
|
|||
|
||||
/// tries to make an input to filter a list. it kinda sucks.
|
||||
void translateFiltering(Document document) {
|
||||
foreach(e; document.getElementsBySelector("input[filter_what]")) {
|
||||
foreach(e; document.querySelectorAll("input[filter_what]")) {
|
||||
auto filterWhat = e.attrs.filter_what;
|
||||
if(filterWhat[0] == '#')
|
||||
filterWhat = filterWhat[1..$];
|
||||
|
|
8
http2.d
8
http2.d
|
@ -1378,7 +1378,7 @@ class HttpRequest {
|
|||
}
|
||||
if(followLocation && responseData.location.length) {
|
||||
static bool first = true;
|
||||
if(!first) asm { int 3; }
|
||||
version(DigitalMars) if(!first) asm { int 3; }
|
||||
populateFromInfo(Uri(responseData.location), HttpVerb.GET);
|
||||
import std.stdio; writeln("redirected to ", responseData.location);
|
||||
first = false;
|
||||
|
@ -2250,7 +2250,8 @@ wss://echo.websocket.org
|
|||
+/
|
||||
/// Group: foundational
|
||||
this(Uri uri, Config config = Config.init)
|
||||
in (uri.scheme == "ws" || uri.scheme == "wss")
|
||||
//in (uri.scheme == "ws" || uri.scheme == "wss")
|
||||
in { assert(uri.scheme == "ws" || uri.scheme == "wss"); } do
|
||||
{
|
||||
this.uri = uri;
|
||||
this.config = config;
|
||||
|
@ -2444,7 +2445,8 @@ wss://echo.websocket.org
|
|||
+/
|
||||
/// Group: foundational
|
||||
void close(int code = 0, string reason = null)
|
||||
in (reason.length < 123)
|
||||
//in (reason.length < 123)
|
||||
in { assert(reason.length < 123); } do
|
||||
{
|
||||
if(readyState_ != OPEN)
|
||||
return; // it cool, we done
|
||||
|
|
Loading…
Reference in New Issue