- From: Eliot Graff via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 13 Apr 2010 19:54:39 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/html-xhtml-author-guide
In directory hutz:/tmp/cvs-serv30559
Added Files:
respec.js
Log Message:
Resource file
--- NEW FILE: respec.js ---
// ------------------------------------------------------------------------------------------ //
// ReSpec.js -- a specification-writing tool
// Robin Berjon, http://berjon.com/
// ----------------------------------------------------------------------------------------- //
// Documentation: http://dev.w3.org/2009/dap/ReSpec.js/documentation.html
// License: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
// ------------------------------------------------------------------------------------------ //
// XXX TODO
// - move to the top of dev. hierarchy
// - add autolinking to headers in the output (like WebIDL)
// - better inline dependent CSS
// - add typographical conventions section
// - WebIDL
// . make it so that extended attributes on members and attributes are only wrapped if needed
// . make processor aware of some extended attributes (e.g. Constructor)
// . support variadic params
// . support arrays
[...1589 lines suppressed...]
// XXX make this generally available (refactoring)
_norm: function (str) {
str = str.replace(/^\s+/, "").replace(/\s+$/, "");
return str.split(/\s+/).join(" ");
},
};
// hackish, but who cares?
window.onload = function () {
// (new berjon.respec()).run();
(new berjon.respec()).loadAndRun();
};
function dbg (obj) {
var str = "";
for (var k in obj) str += k + "=" + obj[k] + "\n";
alert("DUMP\n" + str);
}
})();
Received on Tuesday, 13 April 2010 19:54:41 UTC