Differences From Artifact [4ab2cc74bf]:
- File src/style.c — part of check-in [07f6780c98] at 2009-08-16 21:34:30 on branch trunk — Remove unsupported and incomplete webpage functionality: The admin_sql page and the "my" page. (user: drh size: 10648)
To Artifact [29d8d356cd]:
- File src/style.c — part of check-in [7ba10f1a6a] at 2009-08-31 00:48:44 on branch trunk — When the "http" command is run as root, automatically set up a chroot jail and drop root privileges prior to reading any input. (user: drh size: 10724)
| ︙ | |||
408 409 410 411 412 413 414 415 416 417 418 419 | 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 | + + + |
}
/*
** WEBPAGE: test_env
*/
void page_test_env(void){
style_header("Environment Test");
#if !defined(__MINGW32__)
@ uid=%d(getuid()), gid=%d(getgid())<br>
#endif
@ g.zBaseURL = %h(g.zBaseURL)<br>
@ g.zTop = %h(g.zTop)<br>
cgi_print_all();
style_footer();
}
|