- From: Thomas Roessler via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 15 Mar 2010 10:41:05 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/ReSpec.js/js In directory hutz:/tmp/cvs-serv20370 Modified Files: respec.js Log Message: more fix-up Index: respec.js =================================================================== RCS file: /sources/public/2009/dap/ReSpec.js/js/respec.js,v retrieving revision 1.97 retrieving revision 1.98 diff -u -d -r1.97 -r1.98 --- respec.js 15 Mar 2010 10:38:36 -0000 1.97 +++ respec.js 15 Mar 2010 10:41:03 -0000 1.98 @@ -72,6 +72,7 @@ ED: "Editor's Draft", FPWD: "Working Draft", WD: "Working Draft", + "FPWD-NOTE": "Working Draft", "WD-NOTE": "Working Draft", "LC-NOTE": "Working Draft", LC: "Working Draft", @@ -85,12 +86,14 @@ }, status2long: { FPWD: "First Public Working Draft", + "FPWD-NOTE": "First Public Working Draft", LC: "Last Call Working Draft", "LC-NOTE": "Last Call Working Draft" }, status2maturity: { FPWD: "WD", LC: "WD", + "FPWD-NOTE": "WD", "WD-NOTE": "WD", "LC-NOTE": "LC", "WG-NOTE": "NOTE" @@ -326,7 +329,7 @@ for (var i = 0; i < this.extraCSS.length; i++) this._insertCSS(this.extraCSS[i], this.inlineCSS); } var statStyle = this.specStatus; - if (statStyle == "FPWD" || statStyle == "LC") statStyle = "WD"; + if (statStyle == "FPWD" || statStyle == "LC" || statStyle == "WD-NOTE" || statStyle == "LC-NOTE" || statStyle == "FPWD-NOTE") statStyle = "WD"; var css; if (statStyle == "unofficial") { css = "http://www.w3.org/StyleSheets/TR/w3c-unofficial";
Received on Monday, 15 March 2010 10:41:11 UTC