Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add the g.zBaseURL and g.zTop printouts to the test_env test page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
218577e3aff9282802ae7261c033aa54 |
| User & Date: | drh 2007-10-11 01:56:57.000 |
Context
|
2007-10-11
| ||
| 02:11 | Add the g.zExtra output to the test_env page. Fix a bug in the computation of g.zTop. ... (check-in: 1ce716b2ec user: drh tags: trunk) | |
| 01:56 | Add the g.zBaseURL and g.zTop printouts to the test_env test page. ... (check-in: 218577e3af user: drh tags: trunk) | |
| 01:20 | Fix a C++-ism. ... (check-in: a84089319c user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
235 236 237 238 239 240 241 242 243 244 |
}
/*
** WEBPAGE: test_env
*/
void page_test_env(void){
style_header("Environment Test");
cgi_print_all();
style_footer();
}
| > > | 235 236 237 238 239 240 241 242 243 244 245 246 |
}
/*
** WEBPAGE: test_env
*/
void page_test_env(void){
style_header("Environment Test");
@ g.zBaseURL = %h(g.zBaseURL)<br>
@ g.zTop = %h(g.zTop)<hr>
cgi_print_all();
style_footer();
}
|