Skip to content

Commit

Permalink
add video integration in better understand trackers page
Browse files Browse the repository at this point in the history
add static.exodus-privacy.eu.org in dev Content-Security-Policy
  • Loading branch information
codeurimpulsif committed Jul 3, 2024
1 parent ff9c4b6 commit 986840f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
4 changes: 2 additions & 2 deletions exodus/exodus/settings/common_dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
CSP_FORM_ACTION = ("'self'")
CSP_FRAME_ANCESTORS = ("'self'")
CSP_FRAME_SRC = ("'none'")
CSP_IMG_SRC = ("'self'", "data:")
CSP_MEDIA_SRC = ("'self'")
CSP_IMG_SRC = ("'self'", "data:", "https://static.exodus-privacy.eu.org")
CSP_MEDIA_SRC = ("'self'", "https://static.exodus-privacy.eu.org")
CSP_OBJECT_SRC = ("'self'")
CSP_SCRIPT_SRC = ("'self'", "'unsafe-inline'", "'unsafe-eval'")
CSP_STYLE_SRC = ("'self'")
15 changes: 12 additions & 3 deletions exodus/web/templates/base/trackers.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ <h1 class="main-title">
<div class="col-md-8 col-12 mb-4">
<h4>{% trans "What is a tracker?" %}</h4>
<p>
<a target='_blank' rel='noreferrer' href='https://www.youtube.com/watch?v=sv_xF2KIJZE'>{% trans "See the video" %}</a>
<video class="col-12 mb-4" controls preload="none" poster="https://static.exodus-privacy.eu.org/image/les-pisteurs-en-2-minutes.jpg">
<source src="https://static.exodus-privacy.eu.org/video/les-pisteurs-en-2-minutes.webm" type="video/webm" />
</video>
<a target='_blank' rel='noreferrer' href='https://www.youtube.com/watch?v=sv_xF2KIJZE'>{% trans "See the video on Youtube" %}</a>
<p>
<p>
{% trans "A tracker is a piece of software whose task is to gather information on the person using the application, on how they use it, or on the smartphone being used. A tracker is usually distributed by companies as a SDK (Software Development Kit), a sort of ready-made toolkit, aiming to make it easier for application developers. To be noted : 'open source' trackers exist, their code is available and open to everyone." %}
Expand All @@ -34,7 +37,10 @@ <h4>{% trans "What is a tracker?" %}</h4>
<div class="col-md-8 col-12 mb-4">
<h4>{% trans "Are all trackers created equal?" %}</h4>
<p>
<a target='_blank' rel='noreferrer' href='https://www.youtube.com/watch?v=yMj3pmnElVQ'>{% trans "See the video" %}</a>
<video class="col-12 mb-4" controls preload="none" poster="https://static.exodus-privacy.eu.org/image/les-donnees-collectees-par-les-pisteurs.jpg">
<source src="https://static.exodus-privacy.eu.org/video/les-donnees-collectees-par-les-pisteurs.webm" type="video/webm" />
</video>
<a target='_blank' rel='noreferrer' href='https://www.youtube.com/watch?v=yMj3pmnElVQ'>{% trans "See the video on Youtube" %}</a>
<p>
<p>
{% trans "No, all trackers do not have the same function and they can present different levels of (privacy) intrusion." %}
Expand Down Expand Up @@ -63,7 +69,10 @@ <h4>{% trans "Are all trackers created equal?" %}</h4>
<div class="col-md-8 col-12 mb-4">
<h4>{% trans "Who puts these trackers in?" %}</h4>
<p>
<a target='_blank' rel='noreferrer' href='https://www.youtube.com/watch?v=BaKS064_t0I'>{% trans "See the video" %}</a>
<video class="col-12 mb-4" controls preload="none" poster="https://static.exodus-privacy.eu.org/image/comment-les-pisteurs-arrivent-ils-dans-les-applications.jpg">
<source src="https://static.exodus-privacy.eu.org/video/comment-les-pisteurs-arrivent-ils-dans-les-applications.webm" type="video/webm" />
</video>
<a target='_blank' rel='noreferrer' href='https://www.youtube.com/watch?v=BaKS064_t0I'>{% trans "See the video on Youtube" %}</a>
<p>
<p>
{% trans "To answer these questions we must first understand how applications are made; there are 2 possible scenarios:" %}
Expand Down

0 comments on commit 986840f

Please sign in to comment.