2009/dap/ReSpec.js/js respec.js,1.111,1.112

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

Modified Files:
	respec.js 
Log Message:
official support channel is spec-prod

Index: respec.js
===================================================================
RCS file: /sources/public/2009/dap/ReSpec.js/js/respec.js,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -d -r1.111 -r1.112
--- respec.js	15 Apr 2010 14:50:11 -0000	1.111
+++ respec.js	16 Apr 2010 09:16:07 -0000	1.112
@@ -7,6 +7,14 @@
 //  License: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
 // ------------------------------------------------------------------------------------------ //
 
+// SUPPORT
+//  The official support channel for ReSpec is spec-prod@w3.org.
+//  The archives are available at http://lists.w3.org/Archives/Public/spec-prod/
+//  You can subscribe by sending email to spec-prod-request@w3.org with "subscribe" as the
+//  subject line.
+//  Please use that instead of emailing me (Robin) directly as the chances are that questions
+//  or enhancement ideas will be shared by others. Thanks!
+
 // XXX TODO
 //  - move to the top of dev. hierarchy
 //  - add autolinking to headers in the output (like WebIDL)
@@ -249,7 +257,7 @@
         for (var i = 0; i < ats.length; i++) {
             var an = ats[i].name;
             if (an == "xmlns" || an == "xml:lang") continue;
-            str += " " + ats[i].name + "=\"" + this._esc(ats[i].value) + "\"";
+            str += " " + an + "=\"" + this._esc(ats[i].value) + "\"";
         }
         str += ">\n";
         str += document.documentElement.innerHTML;

Received on Friday, 16 April 2010 09:16:14 UTC