]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Thu, 6 Jul 2023 10:49:07 +0000 (12:49 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 6 Jul 2023 19:32:54 +0000 (21:32 +0200)
- added missing cases for header (h1) and browser title bar
- fixed module name

fba/http/federation.py
templates/views/list.html

index 845d46af8e3430dfefc7280d2244898b38cc7639..8a0a2258b50ccc643c0acf4d89c723e494a7d91a 100644 (file)
@@ -451,7 +451,7 @@ def fetch_generator_from_path(domain: str, path: str = "/") -> str:
 
         components = urlparse(response.url)
 
-        log.debug("components[]='%s'", type(components))
+        logger.debug("components[]='%s'", type(components))
         if not instances.is_registered(components.netloc):
             logger.info("components.netloc='%s' is not registered, adding ...", components.netloc)
             fetch_instances(components.netloc, domain, None, "fetch_generator")
index 27ece0c90304e38123f6961a2109388ea8399049..a3852979a4ea25e448f119e14524897c43f6ae78 100644 (file)
@@ -1,10 +1,14 @@
 {% extends "base.html" %}
 
-{% block title %}{% if mode == 'detection_mode' %} - Detection mode {{value}}{% endif %}{% endblock %}
+{% block title %}{% if mode == 'detection_mode' %} - Detection mode {{value}}{% elif mode == 'software' %} - Used software {{value}}{% elif mode == 'command' %} - Command {{value}}{% endif %}{% endblock %}
 
 {% block header %}
     {% if mode == 'detection_mode' %}
         <h1>Instances detected by method {{value}}</h1>
+    {% elif mode == 'software' %}
+        <h1>Instances using software {{value}}</h1>
+    {% elif mode == 'command' %}
+        <h1>Instances found by command {{value}}</h1>
     {% endif %}
 {% endblock %}