Merge pull request #292 from return42/fix-csp

[fix] make HTML templates more CSP compliant
This commit is contained in:
Alexandre Flament 2021-09-06 11:45:15 +02:00 committed by GitHub
commit a26e4eff10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 60 additions and 26 deletions

View file

@ -0,0 +1,5 @@
.osm-map-box {
height:300px;
width:100%;
margin: 10px 0;
}

View file

@ -369,9 +369,14 @@
.bar100 {
width: 100%;
}
.osm-map-box {
height: 300px;
width: 100%;
margin: 10px 0;
}
/*
this file is generated automatically by searx_extra/update/update_pygments.py
using pygments version 2.9.0
using pygments version 2.10.0
*/
.code-highlight .linenos {
-webkit-touch-callout: none;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -369,9 +369,14 @@
.bar100 {
width: 100%;
}
.osm-map-box {
height: 300px;
width: 100%;
margin: 10px 0;
}
/*
this file is generated automatically by searx_extra/update/update_pygments.py
using pygments version 2.9.0
using pygments version 2.10.0
*/
.code-highlight .linenos {
-webkit-touch-callout: none;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -369,9 +369,14 @@
.bar100 {
width: 100%;
}
.osm-map-box {
height: 300px;
width: 100%;
margin: 10px 0;
}
/*
this file is generated automatically by searx_extra/update/update_pygments.py
using pygments version 2.9.0
using pygments version 2.10.0
*/
.code-highlight .linenos {
-webkit-touch-callout: none;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
/*
this file is generated automatically by searx_extra/update/update_pygments.py
using pygments version 2.9.0
using pygments version 2.10.0
*/
.code-highlight .linenos {

View file

@ -1,6 +1,6 @@
/*
this file is generated automatically by searx_extra/update/update_pygments.py
using pygments version 2.9.0
using pygments version 2.10.0
*/
.code-highlight .linenos {

View file

@ -1,6 +1,7 @@
@import "../logicodev/variables.less";
@import "../../../../__common__/less/new_issue.less";
@import "../../../../__common__/less/stats.less";
@import "../../../../__common__/less/result_templates.less";
@import "../../generated/pygments-logicodev.less";
@stacked-bar-chart: rgb(213, 216, 215, 1);

View file

@ -1,6 +1,7 @@
@import "variables.less";
@import "../../../../__common__/less/new_issue.less";
@import "../../../../__common__/less/stats.less";
@import "../../../../__common__/less/result_templates.less";
@import "../../generated/pygments-logicodev.less";
@import "navbar.less";

View file

@ -1,6 +1,7 @@
@import "variables.less";
@import "../../../../__common__/less/new_issue.less";
@import "../../../../__common__/less/stats.less";
@import "../../../../__common__/less/result_templates.less";
@import "../../generated/pygments-pointhi.less";
@import "footer.less";

View file

@ -374,6 +374,11 @@
.bar100 {
width: 100%;
}
.osm-map-box {
height: 300px;
width: 100%;
margin: 10px 0;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
@ -825,7 +830,7 @@ template {
}
/*
this file is generated automatically by searx_extra/update/update_pygments.py
using pygments version 2.9.0
using pygments version 2.10.0
*/
.code-highlight .linenos {
-webkit-touch-callout: none;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -374,6 +374,11 @@
.bar100 {
width: 100%;
}
.osm-map-box {
height: 300px;
width: 100%;
margin: 10px 0;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
@ -825,7 +830,7 @@ template {
}
/*
this file is generated automatically by searx_extra/update/update_pygments.py
using pygments version 2.9.0
using pygments version 2.10.0
*/
.code-highlight .linenos {
-webkit-touch-callout: none;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
/*
this file is generated automatically by searx_extra/update/update_pygments.py
using pygments version 2.9.0
using pygments version 2.10.0
*/
.code-highlight .linenos {

View file

@ -10,6 +10,7 @@
@import "../../__common__/less/new_issue.less";
@import "../../__common__/less/stats.less";
@import "../../__common__/less/result_templates.less";
@import (inline) "../../node_modules/normalize.css/normalize.css";
@import "../generated/ion.less";
@import "definitions.less";

View file

@ -27,9 +27,9 @@
<span class="stacked-bar-chart-value">{{- stats[engine_name].time -}}</span>{{- "" -}}
<span class="stacked-bar-chart" aria-labelledby="{{engine_name}}_chart" aria-hidden="true">
{%- if max_rate95 is not none and max_rate95 > 0 -%}
<span style="width: calc(max(2px, 100%*{{ (stats[engine_name].time / max_rate95)|round(3) }}))" class="stacked-bar-chart-median"></span>{{- "" -}}
<span style="width: calc(100%*{{ ((stats[engine_name].rate80 - stats[engine_name].time) / max_rate95)|round(3) }})" class="stacked-bar-chart-rate80"></span>{{- "" -}}
<span style="width: calc(100%*{{ ((stats[engine_name].rate95 - stats[engine_name].rate80) / max_rate95)|round(3) }})" class="stacked-bar-chart-rate95"></span>{{- "" -}}
<div class="stacked-bar-chart-median bar{{ (100 * (stats[engine_name].time / max_rate95))|round }}"></div>{{- "" -}}
<div class="stacked-bar-chart-rate80 bar{{ (100 * ((stats[engine_name].rate80 - stats[engine_name].time) / max_rate95))|round }}"></div>{{- "" -}}
<div class="stacked-bar-chart-rate95 bar{{ (100 * ((stats[engine_name].rate95 - stats[engine_name].rate80) / max_rate95))|round }}"></div>{{- "" -}}
<span class="stacked-bar-chart-rate100"></span>
{%- endif -%}
</span>{{- "" -}}

View file

@ -64,7 +64,7 @@
{%- if (result.latitude and result.longitude) or result.boundingbox -%}
<div class="collapse" id="result-map-{{ index }}">
<div style="height:300px; width:100%; margin: 10px 0;" id="osm-map-{{ index }}"></div>
<div class="osm-map-box" id="osm-map-{{ index }}"></div>
</div>
{%- endif -%}

View file

@ -41,9 +41,9 @@
<span class="stacked-bar-chart-value">{{- stats[engine_name].time -}}</span>{{- "" -}}
<span class="stacked-bar-chart" aria-labelledby="{{engine_name}}_chart" aria-hidden="true">
{%- if max_rate95 is not none and max_rate95 > 0 -%}
<span style="width: calc(max(2px, 100%*{{ (stats[engine_name].time / max_rate95)|round(3) }}))" class="stacked-bar-chart-median"></span>{{- "" -}}
<span style="width: calc(100%*{{ ((stats[engine_name].rate80 - stats[engine_name].time) / max_rate95)|round(3) }})" class="stacked-bar-chart-rate80"></span>{{- "" -}}
<span style="width: calc(100%*{{ ((stats[engine_name].rate95 - stats[engine_name].rate80) / max_rate95)|round(3) }})" class="stacked-bar-chart-rate95"></span>{{- "" -}}
<div class="stacked-bar-chart-median bar{{ (100 * (stats[engine_name].time / max_rate95))|round }}"></div>{{- "" -}}
<div class="stacked-bar-chart-rate80 bar{{ (100 * ((stats[engine_name].rate80 - stats[engine_name].time) / max_rate95))|round }}"></div>{{- "" -}}
<div class="stacked-bar-chart-rate95 bar{{ (100 * ((stats[engine_name].rate95 - stats[engine_name].rate80) / max_rate95))|round }}"></div>{{- "" -}}
<span class="stacked-bar-chart-rate100"></span>
{%- endif -%}
</span>{{- "" -}}

View file

@ -45,7 +45,7 @@
{{- result_sub_footer(result, proxify) -}}
{% if (result.latitude and result.longitude) or result.boundingbox -%}
<div id="result-map-{{ index }}" class="invisible"><div id="osm-map-{{ index }}" style="height:300px; width:100%; margin: 10px 0;" ></div></div>
<div id="result-map-{{ index }}" class="invisible"><div id="osm-map-{{ index }}" class="osm-map-box"></div></div>
{%- endif %}
{{- result_footer(result) }}