2009/dap/ReSpec.js/js respec.js,1.174,1.175

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

Modified Files:
	respec.js 
Log Message:
IG-NOTE

Index: respec.js
===================================================================
RCS file: /sources/public/2009/dap/ReSpec.js/js/respec.js,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -d -r1.174 -r1.175
--- respec.js	28 Nov 2011 10:21:55 -0000	1.174
+++ respec.js	29 Nov 2011 11:46:04 -0000	1.175
@@ -107,6 +107,7 @@
 		"FPWD-NOTE": "WD", 
        	"WD-NOTE":  "WD", 
 		"LC-NOTE":  "LC",
+		"IG-NOTE":  "NOTE",
         "WG-NOTE":  "NOTE"
     },
     
@@ -1000,20 +1001,31 @@
             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>";
-            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>.";
+            if (this.specStatus != "IG-NOTE") {
+                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>.";
+            }
 
-			if (!this.isRecTrack && mat == "WD")
+			if (this.specStatus == "IG-NOTE" || (!this.isRecTrack && mat == "WD"))
 				sotd += " The group does not expect this document to become a W3C Recommendation.";
 			
-			sotd +=
-				" 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>";
+            if (this.specStatus != "IG-NOTE") {
+    			sotd +=
+    				" 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>";
+            }
+            else {
+                // XXX
+                if (!this.charterDisclosureURI) error("IG-NOTEs must link to charter's disclosure section using charterDisclosureURI");
+                else {
+                    sotd += "<p>The disclosure obligations of the Participants of this group are described in the <a href='" + this.charterDisclosureURI + "'>charter</a>. </p>";
+                }
+            }
             if (this.addPatentNote) sotd += "<p>" + this.addPatentNote + "</p>";
             sotd += "</section>";
         }

Received on Tuesday, 29 November 2011 11:46:09 UTC