SVG : Add icons for Moxxy and POSIX;

TOML   : Enable more entries;
Python : Add logic for POSIX;
XHTML  : Add a notice about POSIX.
This commit is contained in:
Schimon Jehudah, Adv. 2024-10-20 21:32:15 +03:00
parent ab6c6b687e
commit 40ad9bd58d
5 changed files with 86 additions and 65 deletions

View file

@ -637,7 +637,10 @@ class HttpInstance:
software = 'apple'
name = software.title()
if 'os' in software: name = name.replace('os', 'OS')
if software == 'posix':
name = 'POSIX'
elif 'os' in software:
name = name.replace('os', 'OS')
filename_clients = 'clients.toml'
clients = Data.open_file_toml(filename_clients)