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

system.verbs.builtins.radio.macros.thankYou

<<Changes
	<<1/8/02; 8:52:09 PM by JES
		<<If this is a POST, redirect to the home page.
	<<12/2/01; 11:10:15 AM by DW
		<<Created.
local (pta = html.getpagetableaddress ());
pta^.title = radio.string.getlocalizedstring ("thankYou.title");
if pta^.method == "POST" {
	radio.webserver.redirect ("http://" + pta^.host + radio.data.systemUrls.homePage);
	return ("")};
local (htmltext = "", indentlevel = 0);
on add (s) {
	htmltext = htmltext + string.filledstring ("\t", indentlevel) + s + "\r\n"};
add ("<p>" + radio.string.getlocalizedstring ("thankYou.intro") + "</p>");
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.