toolkit/content/about.xhtml

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 <?xml version="1.0" encoding="UTF-8"?>
michael@0 2
michael@0 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
michael@0 4 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" [
michael@0 5 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
michael@0 6 %brandDTD;
michael@0 7 <!ENTITY % aboutDTD SYSTEM "chrome://global/locale/about.dtd" >
michael@0 8 %aboutDTD;
michael@0 9 <!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd">
michael@0 10 %globalDTD;
michael@0 11 ]>
michael@0 12
michael@0 13 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 14 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 15 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 16
michael@0 17 <html xmlns="http://www.w3.org/1999/xhtml">
michael@0 18 <head>
michael@0 19 <title>About:</title>
michael@0 20 <link rel="stylesheet" href="chrome://global/skin/about.css" type="text/css"/>
michael@0 21 </head>
michael@0 22
michael@0 23 <body dir="&locale.dir;">
michael@0 24 <div id="aboutLogoContainer">
michael@0 25 <a id="vendorURL">
michael@0 26 <img src="about:logo" alt="&brandShortName;"/>
michael@0 27 <p id="version">&about.version;</p>
michael@0 28 </a>
michael@0 29 </div>
michael@0 30
michael@0 31 <ul id="aboutPageList">
michael@0 32 <li>&about.credits.beforeLink;<a href="about:credits">&about.credits.linkTitle;</a>&about.credits.afterLink;</li>
michael@0 33 <li>&about.license.beforeTheLink;<a href="about:license">&about.license.linkTitle;</a>&about.license.afterTheLink;</li>
michael@0 34 <li hidden="true">&about.relnotes.beforeTheLink;<a id="releaseNotesURL">&about.relnotes.linkTitle;</a>&about.relnotes.afterTheLink;</li>
michael@0 35 <li>&about.buildconfig.beforeTheLink;<a href="about:buildconfig">&about.buildconfig.linkTitle;</a>&about.buildconfig.afterTheLink;</li>
michael@0 36 <li id="buildID">&about.buildIdentifier;</li>
michael@0 37 <script type="application/javascript" src="chrome://global/content/about.js"/>
michael@0 38 </ul>
michael@0 39
michael@0 40 </body>
michael@0 41 </html>

mercurial