Monday, April 04, 2011 at 1:08 AM.
radio2Suite.viewNewUser
on viewNewUser (adruser) {
<<Changes
<<3/23/11; 10:48:44 AM by DW
<<Created.
local (pta = html.getpagetableaddress (), adrdata = radio2suite.init ());
if string.lower (nameof (adruser^)) != string.lower (adrdata^.prefs.userWhoCanCreateNewAccounts) {
return ("<br><h3>Sorry you're not authorized to create new users on this site.</h3>")};
new (tabletype, @t);
t.username = "";
t.message = "";
if pta^.method == "POST" {
local (args);
new (tabletype, @args);
webserver.parseArgs (pta^.requestBody, @args);
<<scratchpad.args = args; edit (@scratchpad.args)
if defined (adrdata^.users.[args.username]) {
return ("<br><h3>Can't create the account because there already is a user \"" + args.username + ".\"</h3>")};
radio2Suite.newUser (args.username, args.password);
t.message = "New user account for \"" + args.username + "\" created."};
local (s = string.multiplereplaceall (string (radio2Suite.data.html.newUserTemplate), @t, false, "<%", "%>"));
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.