- From: Richard Tibbett via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 28 Apr 2011 08:25:13 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/ReSpec.js/js
In directory hutz:/tmp/cvs-serv15822/ReSpec.js/js
Modified Files:
respec.js
Log Message:
Added support for 'Test suite' and 'Implementation report' headers to be added.
For an example of usage see: http://dev.w3.org/2006/waf/widgets-updates/Overview.src.html
Index: respec.js
===================================================================
RCS file: /sources/public/2009/dap/ReSpec.js/js/respec.js,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -d -r1.145 -r1.146
--- respec.js 14 Apr 2011 10:19:46 -0000 1.145
+++ respec.js 28 Apr 2011 08:25:11 -0000 1.146
@@ -785,6 +785,12 @@
header += "<dt>Latest editor's draft:</dt><dd><a href='" + this.edDraftURI + "'>" + this.edDraftURI + "</a></dd>";
}
}
+ if (this.testSuiteURI) {
+ header += "<dt>Test suite:</dt><dd><a href='" + this.testSuiteURI + "'>" + this.testSuiteURI + "</a></dd>";
+ }
+ if (this.implementationReportURI) {
+ header += "<dt>Implementation report:</dt><dd><a href='" + this.implementationReportURI + "'>" + this.implementationReportURI + "</a></dd>";
+ }
if (this.specStatus != "FPWD" && this.specStatus != "FPWD-NOTE" &&
!this.isNoTrack) {
if (!this.prevED) {
Received on Thursday, 28 April 2011 08:25:15 UTC