Monday, November 08, 2010 at 12:04 AM.
system.verbs.builtins.mainResponder.macros.byline
on byline (author, postTime, style="default") {
<<05/07/00 JES: Returns the text of a byline for a DG message or a story.
local (s, replacementTable);
new (tableType, @replacementTable);
replacementTable.name = author;
case string.lower (style) {
"davenet" {
replacementTable.date = mainResponder.localization.abbrevDateString (postTime);
s = mainResponder.getString ("discuss.davenetByline", @replacementTable);
return (s)}};
replacementTable.date = mainResponder.localization.shortDateString (postTime);
replacementTable.time = mainResponder.localization.timeString (postTime);
s = mainResponder.getString ("discuss.byline", @replacementTable);
return (s)}
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.