Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix to the DOCTYPE of generated HTML pages. Ticket [25ff8cff2bdb41766e91] |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c1bec02aae0e8cddc748ee3e32ddbc57 |
| User & Date: | drh 2010-08-15 19:36:57.000 |
Context
|
2010-08-15
| ||
| 19:57 | The "Branches" menu option shows only open branches. Closed branches are accessible from a hyperlink. ... (check-in: 518439507a user: drh tags: trunk) | |
| 19:36 | Fix to the DOCTYPE of generated HTML pages. Ticket [25ff8cff2bdb41766e91] ... (check-in: c1bec02aae user: drh tags: trunk) | |
| 19:34 | Recognize the HTTPS line in the HTTP header. Ticket [d83227cdda3d786d3743b2] ... (check-in: 3dc62d54d0 user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
81 82 83 84 85 86 87 |
va_start(ap, zTitleFormat);
zTitle = vmprintf(zTitleFormat, ap);
va_end(ap);
cgi_destination(CGI_HEADER);
cgi_printf("%s",
| | | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
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);
|
| ︙ | ︙ |