Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add a DOCTYPE to the beginning of every page. IE8 appears to work better with the DOCTYPE in place. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
0faa676fab1cf3cc93e30c2137295c6e |
| User & Date: | drh 2010-02-08 19:59:00.000 |
Context
|
2010-02-08
| ||
| 21:18 | Merge the SSL branch into the trunk. ... (check-in: b05cb4a0e1 user: drh tags: trunk) | |
| 19:59 | Add a DOCTYPE to the beginning of every page. IE8 appears to work better with the DOCTYPE in place. ... (check-in: 0faa676fab user: drh tags: trunk) | |
| 19:17 | Change the way the graph elements are removed when the graph is being redrawn. ... (check-in: 63d46e6d33 user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
login_check_credentials();
va_start(ap, zTitleFormat);
zTitle = vmprintf(zTitleFormat, ap);
va_end(ap);
cgi_destination(CGI_HEADER);
if( g.thTrace ) Th_Trace("BEGIN_HEADER<br />\n", -1);
/* Generate the header up through the main menu */
Th_Store("project_name", db_get("project-name","Unnamed Fossil Project"));
Th_Store("title", zTitle);
Th_Store("baseurl", g.zBaseURL);
| > > > | 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
login_check_credentials();
va_start(ap, zTitleFormat);
zTitle = vmprintf(zTitleFormat, ap);
va_end(ap);
cgi_destination(CGI_HEADER);
cgi_printf("%s",
"<!DOCTYPE html PUBLIC \"-//W3C/DTD XHTML 1.0 Strict//EN\""
" \"http://www.x3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">");
if( g.thTrace ) Th_Trace("BEGIN_HEADER<br />\n", -1);
/* Generate the header up through the main menu */
Th_Store("project_name", db_get("project-name","Unnamed Fossil Project"));
Th_Store("title", zTitle);
Th_Store("baseurl", g.zBaseURL);
|
| ︙ | ︙ |