- From: Robin Berjon via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 24 Aug 2011 12:35:05 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/ReSpec.js/js
In directory hutz:/tmp/cvs-serv30369/js
Modified Files:
respec.js
Log Message:
make noIDLin default to true, to stick to the latest WebIDL which drops that syntax entirely
Index: respec.js
===================================================================
RCS file: /sources/public/2009/dap/ReSpec.js/js/respec.js,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -d -r1.157 -r1.158
--- respec.js 23 Aug 2011 09:51:30 -0000 1.157
+++ respec.js 24 Aug 2011 12:35:03 -0000 1.158
@@ -537,7 +537,7 @@
if (!cfg.alternateFormats) cfg.alternateFormats = [];
if (cfg.inlineCSS === undefined) cfg.inlineCSS = true;
if (!cfg.noIDLSorting) cfg.noIDLSorting = false;
- if (!cfg.noIDLIn) cfg.noIDLIn = false;
+ if (cfg.noIDLIn === undefined) cfg.noIDLIn = true;
if (!cfg.maxTocLevel) cfg.maxTocLevel = 0;
if (!cfg.diffTool) cfg.diffTool = 'http://www3.aptest.com/standards/htmldiff/htmldiff.pl';
if (!cfg.noRecTrack) cfg.noRecTrack = false;
Received on Wednesday, 24 August 2011 12:35:07 UTC