- From: Robin Berjon via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 10 Feb 2010 12:56:27 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/ReSpec.js/js In directory hutz:/tmp/cvs-serv28406/js Modified Files: respec.js Log Message: trying not to get it completely wrong this time Index: respec.js =================================================================== RCS file: /sources/public/2009/dap/ReSpec.js/js/respec.js,v retrieving revision 1.84 retrieving revision 1.85 diff -u -d -r1.84 -r1.85 --- respec.js 10 Feb 2010 12:54:30 -0000 1.84 +++ respec.js 10 Feb 2010 12:56:25 -0000 1.85 @@ -415,16 +415,17 @@ } header += this.showPeople("Editor", this.editors); header += this.showPeople("Author", this.authors); + header += "</dl>"; - header += - "</dl><p class='copyright'><a href='http://www.w3.org/Consortium/Legal/ipr-notice#Copyright'>Copyright</a> © " + - this.publishDate.getFullYear(); - if (this.additionalCopyrightHolders) { - header += " " + this.additionalCopyrightHolders + " &"; + header += "<p class='copyright'>"; + if (this.specStatus == "unofficial") { + header += "This document is licensed under a <a class='subfoot' href='http://creativecommons.org/licenses/by/3.0/' rel='license'>Creative Commons Attribution 3.0 License</a>."; } - if (this.specStatus == "unofficial") - header += " This document is licensed under a <a class='subfoot' href='http://creativecommons.org/licenses/by/3.0/' rel='license'>Creative Commons Attribution 3.0 License</a>."; - else + else { + header += + "<a href='http://www.w3.org/Consortium/Legal/ipr-notice#Copyright'>Copyright</a> © " + + 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> " + "(<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>, " + @@ -432,6 +433,8 @@ "W3C <a href='http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer'>liability</a>, " + "<a href='http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks'>trademark</a> and " + "<a href='http://www.w3.org/Consortium/Legal/copyright-documents'>document use</a> rules apply."; + + } header += "</p><hr/></div>"; var tmp = sn.element("div");
Received on Wednesday, 10 February 2010 12:56:30 UTC