Another question

Oct 09, 2007 10:06

http://domainame.com/manage/settings/

Exactly where does this page find its list of schemes? Thanks.

Leave a comment

Comments 3

nochkin October 9 2007, 18:57:29 UTC
Locally, from database.

Reply


pauamma October 9 2007, 20:48:27 UTC
$ more lj/htdocs/manage/settings/index.bml
...
my @bml_schemes = LJ::site_schemes();
...
$ more `grep -rl site_schemes lj`
...
sub site_schemes {
my @schemes = @LJ::SCHEMES;
LJ::run_hooks('modify_scheme_list', \@schemes);
return @schemes;
}
...
$ grep -rl SCHEMES lj
...
lj/cgi-bin/LJ/ConfCheck/General.pm
lj/cgi-bin/weblib.pl
lj/doc/ljconfig.pl.txt
lj/etc/ljconfig.pl
lj/htdocs/doc/server/lj.customize.layout.new.html
lj/htdocs/doc/server/lj.install.ljconfig.vars.html

Reply

magyarok_saman October 10 2007, 02:44:26 UTC
Thanks! What I was looking for (and didn't see last night, due to exhaustion) was that it's in the ljconfig.

Reply


Leave a comment

Up