- From: Shane McCarron via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 26 Feb 2010 02:06:31 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/ReSpec.js/js In directory hutz:/tmp/cvs-serv19994 Modified Files: respec.js Log Message: Changed embedded unicode characters to character entities. Removed trailing commas from JS list structures to improve portability with IE. Index: respec.js =================================================================== RCS file: /sources/public/2009/dap/ReSpec.js/js/respec.js,v retrieving revision 1.94 retrieving revision 1.95 diff -u -d -r1.94 -r1.95 --- respec.js 25 Feb 2010 18:12:50 -0000 1.94 +++ respec.js 26 Feb 2010 02:06:29 -0000 1.95 @@ -79,16 +79,16 @@ REC: "Recommendation", RSCND: "Rescinded Recommendation", unofficial: "Unofficial Draft", - base: "Document", + base: "Document" }, status2long: { FPWD: "First Public Working Draft", - LC: "Last Call Working Draft", + LC: "Last Call Working Draft" }, status2maturity: { FPWD: "WD", LC: "WD", - "WG-NOTE": "NOTE", + "WG-NOTE": "NOTE" }, isLocal: false, @@ -516,13 +516,13 @@ } else { header += - "<a href='http://www.w3.org/Consortium/Legal/ipr-notice#Copyright'>Copyright</a> © " ; + "<a href='http://www.w3.org/Consortium/Legal/ipr-notice#Copyright'>Copyright</a> © " ; if (this.copyrightStart) { header += this.copyrightStart + '-'; } header += this.publishDate.getFullYear(); if (this.additionalCopyrightHolders) header += " " + this.additionalCopyrightHolders + " &"; - header += " <a href='http://www.w3.org/'><acronym title='World Wide Web Consortium'>W3C</acronym></a><sup>®</sup> " + + header += " <a href='http://www.w3.org/'><acronym title='World Wide Web Consortium'>W3C</acronym></a><sup>®</sup> " + "(<a href='http://www.csail.mit.edu/'><acronym title='Massachusetts Institute of Technology'>MIT</acronym></a>, " + "<a href='http://www.ercim.eu/'><acronym title='European Research Consortium for Informatics and Mathematics'>ERCIM</acronym></a>, " + "<a href='http://www.keio.ac.jp/'>Keio</a>), All Rights Reserved. " +
Received on Friday, 26 February 2010 02:06:33 UTC