Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Change the DOCTYPE to html5. Ticket [9cb4a4d74b2eca66b5f]. Tested on FF, Chrome, Safari, Opera, and IE and seems to work fine. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
a2a5e2948b18cb7c390b4ac423a98edc |
| User & Date: | drh 2011-01-20 17:49:39.174 |
Context
|
2011-01-20
| ||
| 18:54 | Add the --baseline option to the "merge" command to facilitate merging of subsections of a branch. ... (check-in: f7b4517ca7 user: drh tags: trunk) | |
| 17:49 | Change the DOCTYPE to html5. Ticket [9cb4a4d74b2eca66b5f]. Tested on FF, Chrome, Safari, Opera, and IE and seems to work fine. ... (check-in: a2a5e2948b user: drh tags: trunk) | |
|
2011-01-19
| ||
| 16:28 | Do not drop the accesslog table on a rebuild. If the accesslog table does not exist, do not generate and error on the User-Log report. ... (check-in: f1efc90595 user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
85 86 87 88 89 90 91 | login_check_credentials(); va_start(ap, zTitleFormat); zTitle = vmprintf(zTitleFormat, ap); va_end(ap); cgi_destination(CGI_HEADER); | | < < | 85 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);
cgi_printf("%s","<!DOCTYPE html>");
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);
|
| ︙ | ︙ |