- From: Frederick Hirsch via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 30 Dec 2009 17:03:13 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/ReSpec.js/js
In directory hutz:/tmp/cvs-serv14781/js
Modified Files:
respec.js
Log Message:
add additionalCopyrightHolders parameter
Index: respec.js
===================================================================
RCS file: /sources/public/2009/dap/ReSpec.js/js/respec.js,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -d -r1.72 -r1.73
--- respec.js 23 Dec 2009 21:05:45 -0000 1.72
+++ respec.js 30 Dec 2009 17:03:10 -0000 1.73
@@ -54,6 +54,7 @@
};
berjon.respec.prototype = {
title: null,
+ additionalCopyrightHolders: null,
editors: [],
authors: [],
@@ -400,7 +401,11 @@
header +=
"</dl><p class='copyright'><a href='http://www.w3.org/Consortium/Legal/ipr-notice#Copyright'>Copyright</a> © " +
- this.publishDate.getFullYear() + " <a href='http://www.w3.org/'><acronym title='World Wide Web Consortium'>W3C</acronym></a><sup>®</sup> " +
+ 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.org/'><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 Wednesday, 30 December 2009 17:03:15 UTC