Anonymous Coward Euphemisms
Anonymous Coward writes "I've got my copy of 0.9.4 up and running without real problems. What I'd like to do is some modification for a non-geek user crowd; specifically, I'd like to change "Anonymous Coward" to "Unidentified User" or some other such less stigmatizing term and make a few other global changes.
Due to the interaction of the Perl code and database stuff, I'm not sure how to go about doing it without becoming awfully familiar with the code (which I will eventually, anyway). Anyone done this? "
This discussion has been archived.
No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Full
Abbreviated
Hidden
Loading... please wait.



fun (Score:1)
Just open slash.pm, user.pl, and comments.pl in an editor that has a Find/Replace function and find "Anonymous Coward" and replace all with whatever you want.
Re:easy enough to change (Score:1)
Easy enough. Search and replace in Slash.pm, users.pl and comments.pl
Now Tar Heel State Online [tarheelstateonline.com]'s Anon posters will appear as "Anonymous Yankee."
I had only changed the database, thus far. Closer and Closer to my destination every day.
ACs (Score:1)
Second, I only saw two things that you would need to change for "Anonymous Coward" to be something else. One is in the code, and I already made a note to fix that. The other is the "nickname" (and subsequent "matchname") field for uid 1 in the users table in the database.
Re:You can also mysql it (Score:1)
The code itself depends on the name "Anonymous Coward". This is changed for the next release, so it will use whatever nickname you have set in the users table for uid -1.
You can also mysql it (Score:1)
update users set nickname='John Q. Public' where uid='-1';
SQL is a great thing.
easy enough to change (Score:1)