Collaborama About Help Contact Anonymous [login] Source: site.view [edit] Function name: searchtools Arguments: Description: Page type: webl Render function: Module: speakaboutai Page source: var Speakers = Sort(WubCall("speakaboutai.speakerslist", []), fun(a,b) if (Str_ToLowerCase(a.name) > Str_ToLowerCase(b.name)) then 1 elsif (Str_ToLowerCase(a.name) == Str_ToLowerCase(b.name)) then 0 else -1 end end ); var res = "<center><h1>Edit Speakers</h1><a href='/webl/WubHub_DoIt?cmdline=speakaboutai.editSpeaker:NEW'>[NEW]</a><p>\n"; every speaker in Speakers do res = res + `<a href='/webl/WubHub_DoIt?cmdline=speakaboutai.editSpeaker:"` + speaker.name + `"'>` + speaker.name + "</a> " + `<a href='/webl/WubHub_DoIt?cmdline=speakaboutai.deleteSpeaker:"` + speaker.name + `",no'>` + "[DELETE]</a><br>\n"; end; res = res + "</center>"; NewPage(res, "text/html");