惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
News and Events Feed by Topic
GbyAI
GbyAI
博客园 - Franky
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
人人都是产品经理
人人都是产品经理
Microsoft Azure Blog
Microsoft Azure Blog
The Register - Security
The Register - Security
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
The Cloudflare Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
有赞技术团队
有赞技术团队
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
F
Full Disclosure
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Vercel News
Vercel News
博客园 - 【当耐特】
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
S
Schneier on Security
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Project Zero
Project Zero
量子位
M
MIT News - Artificial intelligence
Stack Overflow Blog
Stack Overflow Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
美团技术团队
Attack and Defense Labs
Attack and Defense Labs
C
Cybersecurity and Infrastructure Security Agency CISA
T
The Blog of Author Tim Ferriss
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
T
Troy Hunt's Blog
Google Online Security Blog
Google Online Security Blog
罗磊的独立博客
P
Proofpoint News Feed
Schneier on Security
Schneier on Security
Spread Privacy
Spread Privacy
S
SegmentFault 最新的问题
L
LINUX DO - 最新话题
Simon Willison's Weblog
Simon Willison's Weblog
爱范儿
爱范儿
博客园 - 聂微东
A
About on SuperTechFans
PCI Perspectives
PCI Perspectives
D
Docker

Recent Commits to url:main

Report a validation error for IPv4 addresses from non-ASCII input Close more gaps between URL writing and parser sections Define valid IPv6-address string inline Valid domain needs to account for ending with a number Make relative-URL-with-fragment string account for opaque-path base URLs · whatwg/url@24deb59 Path segments can be empty · whatwg/url@1505976 Simplify ends in a number checker · whatwg/url@12c0c5c Close gap between URL writing and parser sections Rename domain to ASCII to domain parser · whatwg/url@3c83874 Add Unicode ToASCII fallback for ASCII domains Meta: remove duplicate Alexis Hunt from acknowledgments · whatwg/url@9fe73be Editorial: fix minor markup and grammar inconsistencies · whatwg/url@6d83609 Meta: remove extra space in query definition · whatwg/url@afc0820 Editorial: add missing article before "hexadecimal number" · whatwg/url@91c807f Correct a couple minor issues Document invariants of percent-encode sets better · whatwg/url@dc66b3b Meta: add pywhatwgurl to list of implementations · whatwg/url@b8936db Review Draft Publication: February 2026 Define the "extract an origin" operation · whatwg/url@b6b3251
Meta: update repository files · whatwg/url@8f0372b
annevk · 2026-03-15 · via Recent Commits to url:main

File renamed without changes.

File renamed without changes.

Original file line numberDiff line numberDiff line change

@@ -2,13 +2,15 @@ SHELL=/bin/bash -o pipefail

22

.PHONY: local remote deploy

33
44

remote: url.bs

5-

@ (HTTP_STATUS=$$(curl https://api.csswg.org/bikeshed/ \

5+

@ (HTTP_STATUS=$$(curl https://www.w3.org/publications/spec-generator/ \

66

--output url.html \

77

--write-out "%{http_code}" \

88

--header "Accept: text/plain, text/html" \

99

-F die-on=warning \

1010

-F md-Text-Macro="COMMIT-SHA LOCAL COPY" \

11-

-F file=@url.bs) && \

11+

-F file=@url.bs \

12+

-F type=bikeshed-spec \

13+

-F output=html) && \

1214

[[ "$$HTTP_STATUS" -eq "200" ]]) || ( \

1315

echo ""; cat url.html; echo ""; \

1416

rm -f url.html; \

Original file line numberDiff line numberDiff line change

@@ -121,8 +121,8 @@ A complete C++ implementation of the standard can be found at

121121

with the standard and tests, and is currently used in [Node.js](https://github.com/nodejs/node).

122122
123123

A complete Python implementation of the standard can be found at

124-

[pywhatwgurl/pywhatwgurl](https://github.com/pywhatwgurl/pywhatwgurl). This implementation is kept synchronized

125-

with the standard and tests.

124+

[pywhatwgurl/pywhatwgurl](https://github.com/pywhatwgurl/pywhatwgurl). This implementation is kept

125+

synchronized with the standard and tests.

126126
127127

The [Live URL Viewer](https://jsdom.github.io/whatwg-url/) lets you manually test-parse any URL,

128128

comparing your browser's URL parser to that of

Original file line numberDiff line numberDiff line change

@@ -8,6 +8,10 @@ A complete C++ implementation of the standard can be found at

88

[ada-url/ada](https://github.com/ada-url/ada). This implementation is kept synchronized

99

with the standard and tests, and is currently used in [Node.js](https://github.com/nodejs/node).

1010
11+

A complete Python implementation of the standard can be found at

12+

[pywhatwgurl/pywhatwgurl](https://github.com/pywhatwgurl/pywhatwgurl). This implementation is kept

13+

synchronized with the standard and tests.

14+
1115

The [Live URL Viewer](https://jsdom.github.io/whatwg-url/) lets you manually test-parse any URL,

1216

comparing your browser's URL parser to that of

1317

[jsdom/whatwg-url](https://github.com/jsdom/whatwg-url).