- From: Frederick Hirsch via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 15 Feb 2011 19:48:03 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/ReSpec.js/js In directory hutz:/tmp/cvs-serv27286/js Modified Files: respec.js Log Message: added addPatentNote to allow additional info after patent material in sotd, update CR to state CR end is no earlier than the date Index: respec.js =================================================================== RCS file: /sources/public/2009/dap/ReSpec.js/js/respec.js,v retrieving revision 1.140 retrieving revision 1.141 diff -u -d -r1.140 -r1.141 --- respec.js 31 Dec 2010 01:45:27 -0000 1.140 +++ respec.js 15 Feb 2011 19:48:01 -0000 1.141 @@ -925,7 +925,7 @@ if (this.specStatus == "LC") sotd += " The Last Call period ends " + this._humanDate(this.lcEnd) + "."; if (this.specStatus == "CR") sotd += " W3C publishes a Candidate Recommendation to indicate that the document is believed" + " to be stable and to encourage implementation by the developer community. This" + - " Candidate Recommendation is expected to advance to Proposed Recommendation on " + + " Candidate Recommendation is expected to advance to Proposed Recommendation no earlier than " + this._humanDate(this.crEnd) + "."; sotd += " All feedback is welcome.</p>"; if (this.specStatus != "REC") { @@ -949,7 +949,9 @@ "individual who has actual knowledge of a patent which the individual believes contains " + "<a href='http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential'>Essential Claim(s)</a> must disclose the " + "information in accordance with <a href='http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure'>section " + - "6 of the W3C Patent Policy</a>.</p></section>"; + "6 of the W3C Patent Policy</a>.</p>"; + if (this.addPatentNote) sotd += "<p>" + this.addPatentNote + "</p>"; + sotd += "</section>"; } if (custom) custom.parentNode.removeChild(custom);
Received on Tuesday, 15 February 2011 19:48:04 UTC