2009/dap/ReSpec.js/js respec.js,1.47,1.48

Update of /sources/public/2009/dap/ReSpec.js/js
In directory hutz:/tmp/cvs-serv6875/ReSpec.js/js

Modified Files:
	respec.js 
Log Message:
errors in the way we were generating status for notes

Index: respec.js
===================================================================
RCS file: /sources/public/2009/dap/ReSpec.js/js/respec.js,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- respec.js	7 Oct 2009 15:39:53 -0000	1.47
+++ respec.js	7 Oct 2009 15:44:34 -0000	1.48
@@ -370,7 +370,7 @@
             "<a href='http://lists.w3.org/Archives/Public/" + this.wgPublicList + "/'>archives</a>).";
         if (this.specStatus == "LC") sotd += " The Last Call period ends " + this._humanDate(this.lcEnd) + ".";
         sotd += " All feedback is welcome.</p>";
-        if (this.isRecTrack && this.specStatus != "REC") {
+        if (this.specStatus != "REC") {
             sotd += "<p>Publication as a " + this.status2text[this.specStatus] + " does not imply endorsement by the W3C Membership. " +
                 "This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate " +
                 "to cite this document as other than work in progress.</p>";
@@ -378,15 +378,14 @@
         if (this.specStatus == "LC") 
             sotd += "<p>This is a Last Call Working Draft and thus the Working Group has determined that this document has satisfied the " +
                     "relevant technical requirements and is sufficiently stable to advance through the Technical Recommendation process.</p>";
-        if (this.isRecTrack)
-            sotd +=
-                "<p>This document was produced by a group operating under the <a href='http://www.w3.org/Consortium/Patent-Policy-20040205/'>5 February " +
-                "2004 W3C Patent Policy</a>. W3C maintains a <a href='" + this.wgPatentURI + "' rel='disclosure'>public list of any patent disclosures</a> " +
-                "made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An " +
-                "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>";
+        sotd +=
+            "<p>This document was produced by a group operating under the <a href='http://www.w3.org/Consortium/Patent-Policy-20040205/'>5 February " +
+            "2004 W3C Patent Policy</a>. W3C maintains a <a href='" + this.wgPatentURI + "' rel='disclosure'>public list of any patent disclosures</a> " +
+            "made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An " +
+            "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>";
 
         var tmp = sn.element("div");
         tmp.innerHTML = sotd;

Received on Wednesday, 7 October 2009 15:44:40 UTC