toolkit/content/buildconfig.html

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 <!DOCTYPE html>
michael@0 2 # This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 # License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
michael@0 5 #
michael@0 6 #filter substitution
michael@0 7 <html>
michael@0 8 <head>
michael@0 9 <meta charset="UTF-8">
michael@0 10 <meta name="viewport" content="width=device-width; user-scalable=false;">
michael@0 11 <title>about:buildconfig</title>
michael@0 12 <link rel="stylesheet" href="chrome://global/skin/about.css" type="text/css">
michael@0 13 <style type="text/css">
michael@0 14 th { text-align: start; }
michael@0 15 h2 { margin-top: 1.5em; }
michael@0 16 th, td { vertical-align: top; }
michael@0 17 </style>
michael@0 18 </head>
michael@0 19 <body class="aboutPageWideContainer">
michael@0 20 <h1>about:buildconfig</h1>
michael@0 21 #ifdef BUILD_HOSTNAME
michael@0 22 <h2>Build Machine</h2>
michael@0 23 <p>@BUILD_HOSTNAME@</p>
michael@0 24 #endif
michael@0 25 #ifdef SOURCE_REPO
michael@0 26 #ifdef SOURCE_CHANGESET
michael@0 27 <h2>Source</h2>
michael@0 28 <p>Built from <a href="@SOURCE_REPO@/rev/@SOURCE_CHANGESET@">@SOURCE_REPO@/rev/@SOURCE_CHANGESET@</a></p>
michael@0 29 #endif
michael@0 30 #elifdef SOURCE_GIT_COMMIT
michael@0 31 <h2>Source</h2>
michael@0 32 <p>Built from git commit <a href="#">@SOURCE_GIT_COMMIT@</a></p>
michael@0 33 #endif
michael@0 34 <h2>Build platform</h2>
michael@0 35 <table>
michael@0 36 <tbody>
michael@0 37 <tr>
michael@0 38 <th>target</th>
michael@0 39 </tr>
michael@0 40 <tr>
michael@0 41 <td>@target@</td>
michael@0 42 </tr>
michael@0 43 </tbody>
michael@0 44 </table>
michael@0 45 <h2>Build tools</h2>
michael@0 46 <table>
michael@0 47 <tbody>
michael@0 48 <tr>
michael@0 49 <th>Compiler</th>
michael@0 50 <th>Version</th>
michael@0 51 <th>Compiler flags</th>
michael@0 52 </tr>
michael@0 53 <tr>
michael@0 54 <td>@CC@</td>
michael@0 55 <td>@CC_VERSION@</td>
michael@0 56 <td>@CFLAGS@</td>
michael@0 57 </tr>
michael@0 58 <tr>
michael@0 59 <td>@CXX@</td>
michael@0 60 <td>@CXX_VERSION@</td>
michael@0 61 <td>@CXXFLAGS@ @CPPFLAGS@</td>
michael@0 62 </tr>
michael@0 63 </tbody>
michael@0 64 </table>
michael@0 65 <h2>Configure arguments</h2>
michael@0 66 <p>@ac_configure_args@</p>
michael@0 67 #ifdef ANDROID
michael@0 68 <h2>Package name</h2>
michael@0 69 <p>@ANDROID_PACKAGE_NAME@</p>
michael@0 70 #endif
michael@0 71 </body>
michael@0 72 </html>

mercurial