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

system.verbs.builtins.radio.prefs.seeAlso

on seeAlso (pagetitle, linetext=pagetitle) {
	<<Changes
		<<2/7/02; 1:35:07 AM by PBS
			<<Fixed transposition in previous changes.
		<<2/5/02; 11:36:58 AM by PBS
			<<Conditionalized to work in Frontier.
		<<11/23/01; 9:18:44 PM by DW
			<<No longer use hard-coded cache location.
		<<11/20/01; 2:21:26 PM by DW
			<<Created. Note that it's hard-coded to assume there's only one prefs outline. It can easily be made more general by linking something into the pagetable that lets us know which outline we're working with, if we ever need more than one.
	local (pta = html.getpagetableaddress ());
	local (dottedid);
	if system.environment.isRadio { //PBS 02/05/02: conditionalized to work in Frontier
		dottedid = system.temp.radio.prefsCache.[string (pta^.radioResponder.adrPrefsOutline)].pagetitles.[pagetitle]}
	else {
		dottedid = system.temp.radio.prefsCache.[string (pta^.adrPrefsOutline)].pagetitles.[pagetitle]};
	local (url = "?page=" + dottedid);
	return ("<a href=\"" + url + "\">" + linetext + "</a>")}
<<bundle //test code
	<<seealso ("Your community server")



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.