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

推荐订阅源

T
The Blog of Author Tim Ferriss
L
LINUX DO - 最新话题
P
Proofpoint News Feed
Cyberwarzone
Cyberwarzone
V
Vulnerabilities – Threatpost
GbyAI
GbyAI
Latest news
Latest news
Vercel News
Vercel News
Recent Announcements
Recent Announcements
Scott Helme
Scott Helme
The Register - Security
The Register - Security
C
CERT Recently Published Vulnerability Notes
P
Palo Alto Networks Blog
I
InfoQ
月光博客
月光博客
Simon Willison's Weblog
Simon Willison's Weblog
MongoDB | Blog
MongoDB | Blog
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
U
Unit 42
博客园 - Franky
博客园 - 聂微东
S
Schneier on Security
T
Tor Project blog
Project Zero
Project Zero
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
T
Tailwind CSS Blog
美团技术团队
G
Google Developers Blog
B
Blog
The Cloudflare Blog
C
Cisco Blogs
G
GRAHAM CLULEY
AWS News Blog
AWS News Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
D
DataBreaches.Net
C
Check Point Blog
I
Intezer
腾讯CDC
P
Privacy International News Feed
P
Proofpoint News Feed
V
Visual Studio Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Cisco Talos Blog
Cisco Talos Blog
Security Latest
Security Latest
SecWiki News
SecWiki News

Recent Commits to css-houdini-drafts:main

[css-properties-values-api] Use relevant global realm, not current. A… Remove leftover merge conflict marker (#1173) · w3c/css-houdini-drafts@bfc9454 Update all api.csswg.org/bikeshed URLs to reference spec-generator (#… · w3c/css-houdini-drafts@15d0412 [css-layout-api][explainer] add mandatory intrinsicSizes function (#1… · w3c/css-houdini-drafts@a8b415e Reflect master=>main branch renaming in internal hyperlinks Fix build failure when no Overview.html files exist (#1166) · w3c/css-houdini-drafts@86359e0 Add GitHub Pages autopublishing workflow (#1165) [font-metrics-api-1][editorial] Fixed Bikeshed issues · w3c/css-houdini-drafts@0b7adca [css-properties-values-api-1][editorial] Fixed Bikeshed issues · w3c/css-houdini-drafts@a1eb191 Added .vscode to .gitignore · w3c/css-houdini-drafts@090cd24 [box-tree-api-1][editorial] Fixed Bikeshed issues · w3c/css-houdini-drafts@17fcaf6 [css-typed-om-2][editorial] Fixed Bikeshed issues · w3c/css-houdini-drafts@eb196d6 [css-typed-om-1][editorial] Fixed Bikeshed issues [css-layout-api-1][editorial] Fixed Bikeshed issues · w3c/css-houdini-drafts@79124e7 [css-animation-worklet-1][editorial] Fixed Bikeshed issues · w3c/css-houdini-drafts@6c343e6 [css-typed-om-1] Correct a couple of typos (#1150) · w3c/css-houdini-drafts@8172261 [css-typed-om-1] Correct `this` type in StylePropertyMapReadOnly meth… · w3c/css-houdini-drafts@8f910ae [css-typed-om] Use undefined for setters. (#1143) · w3c/css-houdini-drafts@aafb3d5 [css-typed-om] Add missing steps to reify oklab() and oklch() https:/…
Add versioned URL aliases and legacy redirects · w3c/css-houdini-drafts@acae9ee
sideshowbark · 2026-03-04 · via Recent Commits to css-houdini-drafts:main
Original file line numberDiff line numberDiff line change

@@ -169,6 +169,28 @@ def escape_html(text):

169169

if shortname != currentWorkDir:

170170

create_symlink(shortname, currentWorkDir)

171171
172+

# Create versioned aliases (e.g., font-metrics-api-1 → font-metrics-api)

173+

# for specs whose folder names don’t include the level suffix.

174+

for shortname, specgroup in specgroups.items():

175+

for spec in specgroup:

176+

if spec["level"]:

177+

versioned_name = f"{spec['shortname']}-{spec['level']}"

178+

if versioned_name != spec["dir"]:

179+

create_symlink(versioned_name, spec["dir"])

180+
181+

# Legacy path redirects for old URLs that used different names.

182+

LEGACY_REDIRECTS = {

183+

"css-animationworklet-1": "css-animation-worklet-1",

184+

"css-animationworklet": "css-animation-worklet-1",

185+

}

186+
187+

for old_path, new_path in LEGACY_REDIRECTS.items():

188+

if os.path.exists(new_path) and not os.path.exists(old_path):

189+

try:

190+

os.symlink(new_path, old_path)

191+

except OSError:

192+

pass

193+
172194

with open('./timestamps.json', 'w') as f:

173195

json.dump(timestamps, f, indent=2, sort_keys=True)

174196