Monday, November 08, 2010 at 12:05 AM.

system.verbs.builtins.radio.html.prefsElement.separator

on separator (s, flverticalspace=true, colspan=2, helpUrl="") {
	<<Changes:
		<<1/6/02; 3:55:20 AM by JES
			<<Added table css classes.
		<<1/22/01; 11:18:31 PM by JES
			<<Add the colspan attribute to the td tag for the vertical space row.
		<<2/3/01; 1:39:07 PM by DW
			<<Added helpUrl optional parameter.
		<<2/16/01; 12:33:55 PM by PBS
			<<Added link title for Help icon.
		<<2/24/01; 3:53:23 PM by PBS
			<<The code for generating the help icon and link was broken out into a separate script since it was needed in other places.
	local (help = "");
	bundle { //set help
		if sizeof (helpUrl) > 0 {
			help = radio.html.prefsElement.helpLink (helpUrl)}};
	local (htmltext = "\r", indentlevel = 0);
	on add (s) {
		htmltext = htmltext + string.filledstring ("\t", indentlevel) + s + "\r\n"};
	if flverticalspace {
		add ("<tr><td colspan=\"" + colspan + "\"> </td></tr>")};
	add ("<tr bgcolor=\"gainsboro\"><td class=\"dwsTableCell\" colspan=\"" + colspan + "\"><font color=\"black\">" + help + "<b>" + s + "</b></font>" + "</td></tr>");
	return (htmltext)}



This listing is for code that runs in the OPML Editor environment. I created these listings because I wanted the search engines to index it, so that when I want to look up something in my codebase I don't have to use the much slower search functionality in my object database. Dave Winer.