* Fixes for Consent page for Shield study 7 - Activity Stream

- these changes reflect changes in master document over here: https://docs.google.com/document/d/1CmUCh_96b4idf8X4yfXn-BT7P47TRSAevy4s4YdFapQ/edit#

* Changing wording of Data Events github link @muffinresearch

* Changes for the second run of the Newtab Enhancement study (Activity Stream)
This commit is contained in:
Tim Spurway 2017-06-20 07:07:52 -04:00 коммит произвёл Christopher Grebs
Родитель 2daebdc852
Коммит edbf50c9b7
6 изменённых файлов: 133 добавлений и 1 удалений

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

@ -0,0 +1,66 @@
<!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>New Tab Enhancement</title>
<link rel="stylesheet" href="{{ STATIC_URL }}css/shield_study_12/main.css" type="text/css" />
</head>
<body>
<div class="container">
<div class="title-container">
<h1 class="title">New Tab Enhancement</h1>
<a href="https://addons.mozilla.org/firefox/downloads/latest/activity-stream-shield-study/?src=shield-study-12"><button class="button primary large">Try New Tab Enhancement</button></a>
</div>
<div class="content"><p>Mozilla wants to know if we can make the new tab page more useful for finding and recovering sites youve visited in the past. 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 will add additional functionality to the new tab page.</li>
<li>Continue using Firefox as you normally would. You may not notice any changes immediately.</li>
<li>After 14 days, 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 <em>optional survey</em> 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 14 days. You may leave the study early. To do so, follow these steps:</p>
<ol>
<li>Type <code>about:addons</code> into the location bar, and press enter.</li>
<li>Find <code>New Tab Enhancement Shield Study</code> in the <strong>extensions</strong> list pane.</li>
<li>Click the <code>remove</code> 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 and your voluntary answers to the followup survey, here are the <strong>key things you should know</strong> about what is happening when you participate in this study:</p>
<ul>
<li>We collect basic usage data regarding how you interact with the experimental new tab and timeline pages, such as the types of elements that you click and their position on the page. </li>
<li>We also collect basic information about your browser profile that affect the study, such as the number of bookmarks and history items.</li>
<li>The newtab page could show recommendations by <a href="https://getpocket.com">Pocket</a>, part of the Mozilla family. We collect which recommendations are shown, and which ones have been clicked.</li>
<li>As you would expect, we do not collect any information when you are in private browsing mode.</li>
</ul>
<p>You can learn more about the data collection for this study <a href="https://github.com/mozilla/activity-stream/blob/master/docs/v1-test-pilot/data_events.md">on our Data Events document.</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. You help us by letting us observe how you use new features and by telling us your opinions about them.</p>
<p>By participating in this study, you will help us 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>Nick Chapman</li>
<li>Maria Popova</li>
<li>Tim Spurway</li>
<li>Engineering: Kate Hudson, Jared Kerim, Nan Jiang, Ursula Sarracini, Ricky Rosario, Peter Dehaan, Ed Lee, Dan Mosedale, Andrei Oprea</li>
<li>Data Analysis: Marina Samuel</li>
<li>UX: Bryan Bell, Aaron Benson, Amy Lee</li>
<li>User Research: Heather McGaw, Sharon Bautista, Jennifer Davidson</li>
<li>Firefox Strategy and Insights</li>
</ul>
</div>
</div>
</body>
</html>

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

@ -18,7 +18,7 @@ class TestPages(TestCase):
'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_11']
'pages.shield_study_11', 'pages.shield_study_12']
for page in pages:
self._check(page, 200)

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

@ -60,6 +60,9 @@ urlpatterns = [
url('^shield_study_11$',
TemplateView.as_view(template_name='pages/shield_study_11.html'),
name='pages.shield_study_11'),
url('^shield_study_12$',
TemplateView.as_view(template_name='pages/shield_study_12.html'),
name='pages.shield_study_12'),
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_12/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_12/small-firefox-logo.png Normal file

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

После

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

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

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

После

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