From 9f36e258953da643c8449c46777722ced7dbb0b0 Mon Sep 17 00:00:00 2001 From: Simon Pieters Date: Tue, 15 Nov 2016 23:04:12 +0100 Subject: [PATCH] Add "Living Document" status For https://github.com/whatwg/html-differences/issues/2 --- bikeshed/config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bikeshed/config.py b/bikeshed/config.py index 30c4197904..511da1687f 100644 --- a/bikeshed/config.py +++ b/bikeshed/config.py @@ -21,6 +21,7 @@ "LS": "Living Standard", "LS-COMMIT": "Commit Snapshot", "LS-BRANCH": "Branch Snapshot", + "LD": "Living Document", "FINDING": "Finding", "w3c/ED": "Editor's Draft", "w3c/WD": "W3C Working Draft", @@ -75,9 +76,9 @@ "iso/AMD": "Amendment" } snapshotStatuses = ["w3c/WD", "w3c/FPWD", "w3c/LCWD", "w3c/CR", "w3c/PR", "w3c/REC", "w3c/PER", "w3c/NOTE", "w3c/MO"] -unlevelledStatuses = ["LS", "DREAM", "w3c/UD", "LS-COMMIT", "LS-BRANCH", "FINDING"] +unlevelledStatuses = ["LS", "LD", "DREAM", "w3c/UD", "LS-COMMIT", "LS-BRANCH", "FINDING"] deadlineStatuses = ["w3c/LCWD", "w3c/PR"] -noEDStatuses = ["LS", "LS-COMMIT", "LS-BRANCH", "FINDING", "DREAM"] +noEDStatuses = ["LS", "LS-COMMIT", "LS-BRANCH", "LD", "FINDING", "DREAM"] megaGroups = { "w3c": frozenset(["csswg", "dap", "fxtf", "geolocation", "houdini", "html", "ricg", "svg", "texttracks", "uievents", "web-bluetooth-cg", "webappsec", "webauthn", "webperf", "webplatform", "webspecs", "webvr", "wicg"]),