www/nginx, security/tor: non-hotfix relevant changes

This commit is contained in:
Fabian Franz
2021-07-05 09:16:14 +02:00
committed by Franco Fichtner
parent b189f6ccbb
commit 88259efe50
6 changed files with 14 additions and 7 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
PLUGIN_NAME= tor
PLUGIN_VERSION= 1.8
PLUGIN_REVISION= 2
PLUGIN_REVISION= 3
PLUGIN_COMMENT= The Onion Router
PLUGIN_DEPENDS= tor ruby
PLUGIN_MAINTAINER= franz.fabian.94@gmail.com
+1
View File
@@ -1,5 +1,6 @@
PLUGIN_NAME= nginx
PLUGIN_VERSION= 1.23
PLUGIN_REVISION= 1
PLUGIN_COMMENT= Nginx HTTP server and reverse proxy
PLUGIN_DEPENDS= nginx
PLUGIN_MAINTAINER= franz.fabian.94@gmail.com
+4
View File
@@ -10,6 +10,10 @@ WWW: https://nginx.org/
Plugin Changelog
================
1.23_1
* fix some issues with the MVC router
1.23
* Add custom error pages on a per HTTP server basis (contributed by 8191)
@@ -11,6 +11,7 @@
},
"scripts": {
"webpack-cli": "webpack-cli",
"build": "webpack-cli --config webpack.conf.js"
"build": "webpack-cli --config webpack.conf.js",
"build-dev": "webpack-cli --config webpack.conf.js --mode development"
}
}
@@ -1,22 +1,23 @@
<% if (typeof count !== 'undefined' && typeof ciphers !== 'undefined' && typeof curves !== 'undefined') { %>
<div>
<div class="col-md-10">
<div class="row">
<div class="col-md-3">
Count
</div>
<div class="col-md-9"><%= _.escape(count) %></div>
<div class="col-md-9"><%= _.escape(count || '') %></div>
<div class="col-md-3">
Ciphers
</div>
<div class="col-md-9"><%= _.escape(ciphers) %></div>
<div class="col-md-9"><%= _.escape(ciphers || '') %></div>
<div class="col-md-3">
Curves
</div>
<div class="col-md-9"><%= _.escape(curves) %></div>
<div class="col-md-9"><%= _.escape(curves || '') %></div>
</div>
</div>
<div class="col-md-2">
<button class="btn btn-primary"><i class="fa fa-thumbs-up"></i> Store / Trust</button>
</div>
</div>
<% } %>
@@ -119,7 +119,7 @@ const FingerprintMain = Backbone.View.extend({
render_all(attributes) {
for (const ua in attributes) {
// skip loop if the property is from prototype
if (attributes.hasOwnProperty(ua)) {
if (attributes.hasOwnProperty(ua) && typeof attributes[ua] !== 'undefined' && typeof attributes[ua] !== 'function') {
const fingerprints = new Backbone.Collection(attributes[ua]);
const fingerprints_view = new FingerPrintList({'collection': fingerprints, 'ua': ua});
this.$el.append(fingerprints_view.$el);