Fossil

Check-in [1997b71cf7]
Login

Check-in [1997b71cf7]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Declare the character set in the default HTML header.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 1997b71cf7327ceb25d38e7f494368115541c6b5b0d614e43270451848cab7f7
User & Date: drh 2020-12-21 18:20:23.270
Context
2020-12-22
08:45
Assorted improvements to the "Contributing to Fossil" doc. The most substantial is replacement of references to the old mailing list with references to the forum. Added more info about patches and bundles, etc. ... (check-in: 34205ea468 user: wyoung tags: trunk)
03:51
Add the tools/chat.tcl Wapp script so that it can be collaboratively developed. This branch may wither and die. Or, the chatroom idea might be recoded in the Fossil trunk using C. Or it might continue as a separate Wapp extension. We'll see. But for now it is here on a branch so that people can hack at it. ... (check-in: 84b31f4495 user: drh tags: chatroom-dev)
2020-12-21
18:20
Declare the character set in the default HTML header. ... (check-in: 1997b71cf7 user: drh tags: trunk)
2020-12-20
05:08
Clarified the "fossil help remote" output. ... (check-in: 6d7b5c4a74 user: wyoung tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/style.c.
557
558
559
560
561
562
563

564
565
566
567
568
569
570
** header template lacks a <body> tag, then all of the following is
** prepended.
*/
static const char zDfltHeader[] = 
@ <html>
@ <head>
@ <base href="$baseurl/$current_page" />

@ <meta http-equiv="Content-Security-Policy" content="$default_csp" />
@ <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ <title>$<project_name>: $<title></title>
@ <link rel="alternate" type="application/rss+xml" title="RSS Feed" \
@  href="$home/timeline.rss" />
@ <link rel="stylesheet" href="$stylesheet_url" type="text/css" />
@ </head>







>







557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
** header template lacks a <body> tag, then all of the following is
** prepended.
*/
static const char zDfltHeader[] = 
@ <html>
@ <head>
@ <base href="$baseurl/$current_page" />
@ <meta charset="UTF-8">
@ <meta http-equiv="Content-Security-Policy" content="$default_csp" />
@ <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ <title>$<project_name>: $<title></title>
@ <link rel="alternate" type="application/rss+xml" title="RSS Feed" \
@  href="$home/timeline.rss" />
@ <link rel="stylesheet" href="$stylesheet_url" type="text/css" />
@ </head>