aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/proxy/self_doc/popup.html.jinja
blob: f1a31e94e1670eb85d1a8628107b53cfbddd8054 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{#
SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0

Documentation page describing Haketilo popup.

This file is part of Hydrilla&Haketilo.

Copyright (C) 2022 Wojtek Kosior

Dual licensed under
* GNU General Public License v3.0 or later and
* Creative Commons Attribution Share Alike 4.0 International.

You can choose to use either of these licenses or both.


I, Wojtek Kosior, thereby promise not to sue for violation of this
file's licenses. Although I request that you do not make use of this
code in a proprietary work, I am not going to enforce this in court.
#}
{% extends "doc_base.html.jinja" %}

{% block title %}{{ _('doc.popup.title') }}{% endblock %}

{% block main %}
  {{ big_heading(_('doc.popup.h_big')) }}

  {% call section() %}
    {% call paragraph() %}
      {{ _('doc.popup.intro') }}
    {% endcall %}
  {% endcall %}

  {% call section() %}
    {{ medium_heading(_('doc.popup.h_medium.operating')) }}

    {% call paragraph() %}
      {% set fmt = _('doc.popup.operating.html.opening_{blocking_link}_{packages_link}') %}
      {% set blocking_link_text = _('doc.popup.operating.opening.blocking_link_text') %}
      {% set blocking_link = doc_page_link(blocking_link_text|e, 'script_blocking') %}
      {% set packages_link_text = _('doc.popup.operating.opening.packages_link_text') %}
      {% set packages_link = doc_page_link(packages_link_text|e, 'packages') %}
      {{
        fmt.format(
            blocking_link = blocking_link,
            packages_link = packages_link
        )|safe
      }}
    {% endcall %}

    {% call paragraph() %}
      {{ _('doc.popup.operating.html.closing')|safe }}
    {% endcall %}
  {% endcall %}

  {% call section() %}
    {{ medium_heading(_('doc.popup.h_medium.enabling')) }}

    {% call paragraph() %}
      {{ _('doc.popup.enabling.html.intro')|safe }}
    {% endcall %}

    {% call unordered_list() %}
      {% call list_entry() %}
        {{ _('doc.popup.enabling.js_allowed_case') }}
      {% endcall %}
      {% call list_entry() %}
        {{ _('doc.popup.enabling.js_blocked_case') }}
      {% endcall %}
      {% call list_entry() %}
        {{ _('doc.popup.enabling.payload_case') }}
      {% endcall %}
    {% endcall %}

    {% call paragraph() %}
      {% set fmt = _('doc.popup.enabling.html.rest_{settings_link}') %}
      {% set link_text = _('doc.popup.enabling.html.rest.settings_link_text') %}
      {% set link = hkt_link(link_text|e, 'home.home') %}
      {{ fmt.format(settings_link=link)|safe }}
    {% endcall %}
  {% endcall %}

  {% call section() %}
    {{ medium_heading(_('doc.popup.h_medium.fingerprinting')) }}

    {% call paragraph() %}
      {{ _('doc.popup.fingerprinting_intro') }}
    {% endcall %}

    {% call paragraph() %}
      {{ _('doc.popup.fingerprinting_more') }}
    {% endcall %}

    {% call paragraph() %}
      {{ _('doc.popup.fingerprinting_more_more') }}
    {% endcall %}
  {% endcall %}

  {% call section() %}
    {{ medium_heading(_('doc.popup.h_medium.other_caveats')) }}

    {% call paragraph() %}
      {{ _('doc.popup.other_caveats.intro') }}
    {% endcall %}
  {% endcall %}

  {% call section() %}
    {{ small_heading(_('doc.popup.h_small.site_interference')) }}

    {% call paragraph() %}
      {{ _('doc.popup.site_interference.text') }}
    {% endcall %}
  {% endcall %}

  {% call section() %}
    {{ small_heading(_('doc.popup.h_small.content_blockers_interference')) }}

    {% call paragraph() %}
      {{ _('doc.popup.content_blockers_interference.text') }}
    {% endcall %}
  {% endcall %}

  {% call section() %}
    {{ small_heading(_('doc.popup.h_small.url_mismatch')) }}

    {% call paragraph() %}
      {{ _('doc.popup.url_mismatch.text')|safe }}
    {% endcall %}
  {% endcall %}
{% endblock main %}