如何将新功能跟踪到 (WHATWG) HTML 标准
How to track new features to (WHATWG) HTML Standard
很容易看出 W3C's HTML5 standard to the next. I can also see the W3C's standards and drafts 一个版本的变化。但是 W3C 和 WHATWG 是不一样的,因为 WHATWG 维护着一个从未完成的生活标准:
how can I keep track of the diffs in the WHATWG HTML Living Standard?
假设我想:
- 看看我上次评论时有哪些新功能
- 查看包含的路线图
- 看看有什么changed/dropped
仅供参考 跟踪 WHATWG/html github repo 会产生太多噪音,但这是我能找到的全部。
- see what new features exist from the last time I reviewed it
- see what has changed/dropped
https://github.com/whatwg/html/commits/master 是您最好的选择。提交日志旨在成为更改的可读摘要,并且在审查提交消息时也会考虑到这一点。
您还可以搜索自特定日期以来已合并到 master 且具有特定标签1 的所有拉取请求。 normative change 标签是一种方法:
https://github.com/whatwg/html/pulls?q=merged:%3E2019-06-20+label:%22normative+change%22
…但是这个标签不适用于添加或删除——人们经常忘记添加它——所以它本身不会给你一个完整的画面。所以你也可以看看addition/proposal标签:
https://github.com/whatwg/html/issues?q=merged:%3E2019-06-20+label:addition/proposal
…和 removal/deprecation 标签:
https://github.com/whatwg/html/issues?q=merged:%3E2019-06-20+label:removal/deprecation
还有许多其他标签可供您搜索 — 包括 topic:
前缀标签,以缩小范围以仅搜索对规范特定部分所做的更改;例如,topic:history:
https://github.com/whatwg/html/issues?q=merged:%3E2019-06-20+label:%22topic%3A+history%22
- see what is on the roadmap for inclusion
https://github.com/whatwg/html/pulls?q=is:pr+is:open+sort:updated-desc 是个不错的观点。
1 正如 的答案中所述,不幸的是,GitHub 搜索界面尚不支持与 OR
逻辑运算符结合使用的标签搜索。所以现在,您需要进行多次搜索。
很容易看出 W3C's HTML5 standard to the next. I can also see the W3C's standards and drafts 一个版本的变化。但是 W3C 和 WHATWG 是不一样的,因为 WHATWG 维护着一个从未完成的生活标准:
how can I keep track of the diffs in the WHATWG HTML Living Standard?
假设我想:
- 看看我上次评论时有哪些新功能
- 查看包含的路线图
- 看看有什么changed/dropped
仅供参考 跟踪 WHATWG/html github repo 会产生太多噪音,但这是我能找到的全部。
- see what new features exist from the last time I reviewed it
- see what has changed/dropped
https://github.com/whatwg/html/commits/master 是您最好的选择。提交日志旨在成为更改的可读摘要,并且在审查提交消息时也会考虑到这一点。
您还可以搜索自特定日期以来已合并到 master 且具有特定标签1 的所有拉取请求。 normative change 标签是一种方法:
https://github.com/whatwg/html/pulls?q=merged:%3E2019-06-20+label:%22normative+change%22
…但是这个标签不适用于添加或删除——人们经常忘记添加它——所以它本身不会给你一个完整的画面。所以你也可以看看addition/proposal标签:
https://github.com/whatwg/html/issues?q=merged:%3E2019-06-20+label:addition/proposal
…和 removal/deprecation 标签:
https://github.com/whatwg/html/issues?q=merged:%3E2019-06-20+label:removal/deprecation
还有许多其他标签可供您搜索 — 包括 topic:
前缀标签,以缩小范围以仅搜索对规范特定部分所做的更改;例如,topic:history:
https://github.com/whatwg/html/issues?q=merged:%3E2019-06-20+label:%22topic%3A+history%22
- see what is on the roadmap for inclusion
https://github.com/whatwg/html/pulls?q=is:pr+is:open+sort:updated-desc 是个不错的观点。
1 正如 OR
逻辑运算符结合使用的标签搜索。所以现在,您需要进行多次搜索。