-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add WebSockets Standard #180
Conversation
See whatwg/meta#202. Also fixes db.py to work on environments where the default encoding is not UTF-8, i.e., on Windows.
DNS propagation works; this is ready to merge. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for working on this!
For context: this was discussed before in #97.
@@ -96,7 +96,7 @@ def main(): | |||
if command not in ["validate", "normalize"]: | |||
usage() | |||
else: | |||
input = open("db.json", "r").read() | |||
input = open("db.json", "r", encoding="utf-8").read() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: shouldn't line 18 be changed as well then?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I guess I just didn't test that codepath. Will do.
Post-merge LGTM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
See whatwg/meta#202.
Also fixes db.py to work on environments where the default encoding is not UTF-8, i.e., on Windows.
I chose 3,9 as the review draft schedule as that seems to be the new time we're lumping things at (for Web IDL and TestUtils).
Do not merge quite yet; the DNS propagation seems to be still in progress, so https://websockets.spec.whatwg.org does not work at the moment.
Also remember we need to re-deploy participate.whatwg.org manually per #171.