Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Activate CSP for the bootstrap skin. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a762ba1f7f3c39e635919cd08c9e41d8 |
User & Date: | drh 2018-10-04 18:35:21.416 |
Context
2018-10-06
| ||
14:14 | The "fossil help -o" command shows command-line options that are common to all commands. ... (check-in: 50eb6bd5 user: drh tags: trunk) | |
2018-10-04
| ||
18:35 | Activate CSP for the bootstrap skin. ... (check-in: a762ba1f user: drh tags: trunk) | |
14:56 | On the /setup_ucap_list page, show the number of users having each capability, with a link to a list of users. This only works for administrators. ... (check-in: 59442179 user: drh tags: trunk) | |
Changes
Changes to skins/bootstrap/header.txt.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <html lang="en"> <head> <meta charset="utf-8"> <base href="$baseurl/$current_page" /> <title>$<project_name>: $<title></title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="alternate" type="application/rss+xml" title="RSS Feed" href="$home/timeline.rss" /> <link rel="stylesheet" href="$home/style.css?default" type="text/css" media="screen" /> <script> function gebi(x){ if(/^#/.test(x)) x = x.substr(1); var e = document.getElementById(x); if(!e) throw new Error("Expecting element with ID "+x); | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <html lang="en"> <head> <meta charset="utf-8"> <base href="$baseurl/$current_page" /> <title>$<project_name>: $<title></title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="Content-Security-Policy" content="default-src 'self' data:; script-src 'self' 'nonce-$<nonce>'; style-src 'self' 'unsafe-inline'"/> <link rel="alternate" type="application/rss+xml" title="RSS Feed" href="$home/timeline.rss" /> <link rel="stylesheet" href="$home/style.css?default" type="text/css" media="screen" /> <script> function gebi(x){ if(/^#/.test(x)) x = x.substr(1); var e = document.getElementById(x); if(!e) throw new Error("Expecting element with ID "+x); |
︙ | ︙ | |||
113 114 115 116 117 118 119 | </div> </div> <div class="content"> <th1> html "<div class='container'>" html "<ul class='breadcrumb'>" html "<li><a href='$index_page'>Home</a></li>" | | | 114 115 116 117 118 119 120 121 122 123 | </div> </div> <div class="content"> <th1> html "<div class='container'>" html "<ul class='breadcrumb'>" html "<li><a href='$index_page'>Home</a></li>" html "<li><a href='$home/$current_page'>[htmlize $title]</a></li>" html "</ul>" </th1> |