Shield Study 11 (Plugin Safety) Static Pages

This commit is contained in:
Doug Thayer 2017-04-21 12:57:20 -07:00
Родитель 9dfc89fa83
Коммит 114481ab2d
6 изменённых файлов: 127 добавлений и 1 удалений

Просмотреть файл

@ -0,0 +1,59 @@
<!DOCTYPE html>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Plugin Safety</title>
<link rel="stylesheet" href="{{ STATIC_URL }}css/shield_study_11/main.css" type="text/css" />
</head>
<body>
<div class="container">
<div class="title-container">
<h1 class="title">Plugin Safety</h1>
<a href="https://addons.mozilla.org/firefox/downloads/latest/plugin-safety/?src=shield-study-11"><button class="button primary large">Start Now</button></a>
</div>
<div class="content"><p>Mozilla wants to figure out the best way to keep our users safe if they choose to use third-party software such as plugins. Participating in this study will help us find out!</p>
<h2 id="what-will-happen-next">What will happen next</h2>
<p><strong>If you agree</strong> to participate:</p>
<ol>
<li>We may add security and plugin control features to Firefox to help with online security and performance.</li>
<li>Continue using Firefox as you normally would. Depending on how you use the Web, you may not notice any changes.</li>
<li>After a few weeks, the study will end on its own. Your Firefox will go back to normal.</li>
<li>We will ask you to fill out a quick optional survey to tell us about your experience. The survey should take less than 5 minutes to complete.</li>
</ol>
<h2 id="leaving-the-study">Leaving the study</h2>
<p>The study will expire on its own in a few weeks. You may leave the study early. To do so, follow these steps:</p>
<ol>
<li>Type about:addons into the location bar, and press enter.</li>
<li>Find Plugin Safety in the addons list.</li>
<li>Click the remove button.</li>
<li>If you opt out of the study early we will ask you to fill out a survey. Were interested in hearing about your experience, even if you didnt participate in the entire study.</li>
</ol>
<p>Opting out of a study does not prevent you from participating in future studies.</p>
<h2 id="your-privacy">Your privacy</h2>
<h3 id="all-shield-studies">All Shield Studies</h3>
<p>Every Shield Study collects data about important study events, such as install, uninstall, daily usage, and end of study. Studies also include an optional survey.</p>
<p>This data is associated with <a href="https://gecko.readthedocs.io/en/latest/toolkit/components/telemetry/telemetry/index.html">Firefox Telemetry collection</a>.</p>
<h3 id="this-particular-study">This particular Study</h3>
<p>In addition to the data collected by all Shield Studies, Mozilla will collect information about: </p>
<ul>
<li>Websites you visit that try to use plugins, and what content on the site requires the plugin;</li>
<li>How you interact with plugin content on those sites, including whether and how you choose to allow the plugin to run.</li>
</ul>
<p>Mozilla will keep this information private; any data will only be shared in aggregate or anonymized form.</p>
<p>You can learn more about the data collection for this study <a href="https://github.com/squarewave/shield-study-essential-flash/blob/master/docs/metrics.md">on GitHub</a>.</p>
<h2 id="you-help-make-firefox-better">You Help Make Firefox Better</h2>
<p>At Mozilla, we pride ourselves on building products for you, the user! Thats why we need your help. By participating in this study, you will help us to make better decisions on your behalf and directly shape the future of Firefox!</p>
<h2 id="brought-to-you-by-">Brought to you by:</h2>
<ul>
<li>Felipe Gomes</li>
<li>Benjamin Smedberg</li>
<li>Kirk Steuber</li>
</ul>
</div>
</div>
</body>
</html>

Просмотреть файл

@ -17,7 +17,8 @@ class TestPages(TestCase):
'pages.shield_study_3', 'pages.shield_study_4',
'pages.shield_study_5', 'pages.shield_study_6',
'pages.shield_study_7', 'pages.shield_study_8',
'pages.shield_study_9', 'pages.shield_study_10']
'pages.shield_study_9', 'pages.shield_study_10',
'pages.shield_study_11']
for page in pages:
self._check(page, 200)

Просмотреть файл

@ -58,6 +58,9 @@ urlpatterns = patterns(
url('^shield_study_10$',
TemplateView.as_view(template_name='pages/shield_study_10.html'),
name='pages.shield_study_10'),
url('^shield_study_11$',
TemplateView.as_view(template_name='pages/shield_study_11.html'),
name='pages.shield_study_11'),
url('^pages/compatibility_firstrun$',
lambda r: perma_redirect(reverse('pages.acr_firstrun'))),

Просмотреть файл

@ -0,0 +1,63 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
@import url("chrome://global/skin/in-content/common.css");
html {
height: 100%;
}
body {
align-items: stretch;
display: flex;
justify-content: center;
min-height: 100%;
}
.container {
margin: 10vh 0;
max-width: 920px;
padding: 0 10px;
}
.title-container {
align-items: center;
border-bottom: 1px solid var(--in-content-box-border-color);
display: flex;
margin-bottom: .5em;
padding-bottom: 1em;
position: relative;
}
.title {
flex: 1;
margin-bottom: 0;
}
.title::before {
background: url('../../img/shield_study_11/small-firefox-logo@2x.png') no-repeat left center;
background-size: 57px 59px;
content: '';
display: block;
height: 59px;
left: -2.3em;
position: absolute;
top: 0;
width: 57px;
}
.button {
height: 40px;
margin: 0;
padding: 0 15px;
}
/* issues/4 */
code {
background-color: rgba(0,0,0,.1);
}
pre > code {
display: block;
}

Двоичные данные
static/img/shield_study_11/small-firefox-logo.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 6.1 KiB

Двоичные данные
static/img/shield_study_11/small-firefox-logo@2x.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 17 KiB