From 741c29ad02d756464ec09bc807ef54cd37614049 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 17 Feb 2020 20:09:47 -0500 Subject: [PATCH] gdc compat --- html.d | 4 ++-- http2.d | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/html.d b/html.d index 5dba1c3..eb260fe 100644 --- a/html.d +++ b/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..$]; diff --git a/http2.d b/http2.d index c1d95d8..0e4df4c 100644 --- a/http2.d +++ b/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