Monday, November 08, 2010 at 12:05 AM.
system.verbs.builtins.radio.macros.statusMessage
<<8/14/01; 7:56:01 PM by JES
<<Return a status message string.
local (pta = html.getpagetableaddress ());
if defined (pta^.radioResponder.flStaticRendering) {
if pta^.radioResponder.flStaticRendering {
return ("")}};
local (htmltext, now = clock.now ());
on add (s) {
htmltext = htmltext + s + "; "};
add (string.mid (date.dayofweektostring (date.dayofweek (clock.now ())), 1, 3) + " " + now);
if defined (system.temp.aggregator.status) {
add (system.temp.aggregator.status)};
if htmltext endsWith "; " {
htmltext = string.mid (htmltext, 1, sizeOf (htmltext) - 2)};
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.