This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-v1.3.6' into release
- Loading branch information
Showing
15 changed files
with
1,091 additions
and
409 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<!-- 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/. --> | ||
|
||
<p>You are joining the Facebook Pixel Hunt, a study by Mozilla Rally and The Markup.</p> | ||
|
||
<p> | ||
The Markup will use the browsing data collected in this study to map | ||
Facebook’s tracking pixel network across the web. You can always find more | ||
information about <a | ||
href="https://rally.mozilla.org/current-studies/facebook-pixel-hunt/index.html" | ||
target="_blank">this study</a | ||
> | ||
on the Rally website. The Markup will publish its findings as news stories at | ||
<a href="https://themarkup.org" target="_blank">themarkup.org</a>. | ||
</p> | ||
|
||
<h2>Leaving the Study</h2> | ||
<p> | ||
You can leave the study at any time from the Mozilla Rally options page. To | ||
access the page, click on the Rally button <img | ||
style="padding: 0 4px;" | ||
width="16" | ||
src="img/rally-toolbar-icon.svg" | ||
alt="rally icon" | ||
/> | ||
in your browser toolbar. | ||
</p> | ||
|
||
<style> | ||
h1, | ||
h2, | ||
p { | ||
color: var(--irb-text-color, var(--color-marketing-gray-70)); | ||
} | ||
h1 { | ||
font-size: 24px; | ||
font-family: "Zilla Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", | ||
Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", | ||
"Segoe UI Emoji", "Segoe UI Symbol"; | ||
margin-bottom: 28px; | ||
} | ||
h2 { | ||
font-size: 16px; | ||
font-weight: 700; | ||
line-height: 24px; | ||
margin-bottom: 8px; | ||
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, | ||
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", | ||
"Segoe UI Symbol"; | ||
} | ||
p { | ||
font-size: 14px; | ||
line-height: 21px; | ||
margin-bottom: 20px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,11 @@ | |
import PrincetonCovidDisinformationIRB from "./PrincetonCovidDisinformationIRB.svelte"; | ||
import RS01Consent from "./RS01Consent.svelte"; | ||
import StanfordBeyondThePaywallIRB from "./StanfordBeyondThePaywallIRB.svelte"; | ||
import FacebookPixelHuntConsent from "./FacebookPixelHuntConsent.svelte"; | ||
|
||
export default { | ||
"[email protected]": PrincetonCovidDisinformationIRB, | ||
"[email protected]": RS01Consent, | ||
"[email protected]": StanfordBeyondThePaywallIRB | ||
"[email protected]": StanfordBeyondThePaywallIRB, | ||
"[email protected]": FacebookPixelHuntConsent, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,10 +100,29 @@ const additionalMockPartnerStudy = { | |
studyDetailsLink: '/' | ||
} | ||
const anotherMockPartnerStudy = { | ||
addonId: '[email protected]', | ||
name: "Yet Another Collaborator Study", | ||
authors: { | ||
name: "A Partner" | ||
}, | ||
icons: { | ||
64: undefined | ||
}, | ||
endDate: new Date('2021-07-03'), | ||
tags: ['advertising', 'news'], | ||
privacyPolicy: {spec: 'https://example.com'}, | ||
description: `This is another mock study that utilizes the 'Facebook Pixel Hunts' IRB consent.`, | ||
dataCollectionDetails: ['page views', 'time and date of joining study', 'etc.'], | ||
detailsDirectName: "Rally Website", | ||
studyDetailsLink: '/' | ||
} | ||
fetch('locally-available-studies.json') | ||
.then(r => r.json()) | ||
.then(s => { | ||
mockStore.set({...get(mockStore), availableStudies: [nicerStudy, mockAcademicPartnerStudy, additionalMockPartnerStudy, ...s]}); | ||
mockStore.set({...get(mockStore), availableStudies: [nicerStudy, mockAcademicPartnerStudy, additionalMockPartnerStudy, anotherMockPartnerStudy, ...s]}); | ||
}); | ||
setContext("rally:store", mockStore); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script> | ||
/* 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 ConsentNotice from "../../src/routes/irbs/FacebookPixelHuntConsent.svelte"; | ||
import IRBWindow from "../../src/routes/irbs/IRBWindow.svelte"; | ||
</script> | ||
|
||
<div style="--height: 700px;"> | ||
<IRBWindow> | ||
<ConsentNotice /> | ||
</IRBWindow> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */ | ||
|
||
const CORE_ADDON_ID = "[email protected]"; | ||
const SIGNUP_URL = "https://rally.mozilla.org/rally-required"; | ||
|
||
export const runStates = { | ||
RUNNING: "running", | ||
|
@@ -71,7 +70,6 @@ export class Rally { | |
|
||
// The Core Add-on was not found and we're not in developer | ||
// mode. | ||
await browser.tabs.create({ url: SIGNUP_URL }); | ||
return false; | ||
}); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7698866
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Uh oh! Looks like an error! Details
Taskcluster-GitHub attempted to create a task for this event with the following scopes:
The expansion of these scopes is not sufficient to create the task, leading to the following:
Client ID static/taskcluster/github does not have sufficient scopes and is missing the following scopes:
This request requires the client to satisfy the following scope expression: