You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kjsembed/docs/write_classes.js

37 lines
795 B

text = '';
text += '<html>\n';
text += '<head>\n';
text += '<title>Constructors</title>\n';
text += '<link href="../kjsembed.css" rel="stylesheet" type="text/css">\n';
text += '</head>\n';
text += '<body>\n';
text += '<h1>Constructors</h1>\n';
text += '<hr>\n';
text += 'Object that scripts can create. This list includes objects\n';
text += 'defined by TQWidgetFactory as well as those with custom bindings.\n';
text += '<ul>\n';
var hrefroot = 'jsref/';
var cons = constructors().sort();
for ( var i = 0; i < cons.length; i++ ) {
text += '<li>';
var href = cons[i].toLowerCase() + '.html';
var name = cons[i];
text += '<a href="' + hrefroot + href + '">' + name + '</a>\n';
}
text += '</ul>\n';
text += '<hr>\n';
text += '</body>\n';
text += '</html>';
println( text );