Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
UpdateManager /
Delete
Unzip
Name
Size
Permission
Date
Action
Core
[ DIR ]
drwxr-xr-x
2025-11-01 13:54
__pycache__
[ DIR ]
drwxr-xr-x
2025-11-01 13:54
backend
[ DIR ]
drwxr-xr-x
2025-11-01 13:54
ChangelogViewer.py
11.79
KB
-rw-r--r--
2025-04-25 13:16
Dialogs.py
15.96
KB
-rw-r--r--
2025-04-25 13:16
HelpViewer.py
1.06
KB
-rw-r--r--
2025-04-25 13:16
MetaReleaseGObject.py
2.14
KB
-rw-r--r--
2025-04-25 13:16
UnitySupport.py
3.35
KB
-rw-r--r--
2025-04-25 13:16
UpdateManager.py
19.36
KB
-rw-r--r--
2025-04-25 13:16
UpdateManagerVersion.py
21
B
-rw-r--r--
2025-04-25 13:16
UpdatesAvailable.py
47.39
KB
-rw-r--r--
2025-04-25 13:16
__init__.py
0
B
-rw-r--r--
2025-04-25 13:16
Save
Rename
# helpviewer.py # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- import os import subprocess # Hardcoded list of available help viewers # FIXME: khelpcenter support would be nice # KNOWN_VIEWERS = ["/usr/bin/yelp", "/usr/bin/khelpcenter"] KNOWN_VIEWERS = ["/usr/bin/yelp"] class HelpViewer: def __init__(self, docu): self.command = [] self.docu = docu for viewer in KNOWN_VIEWERS: if os.path.exists(viewer): self.command = [viewer, "help:%s" % docu] break def check(self): """check if a viewer is available""" if self.command == []: return False else: return True def run(self): """open the documentation in the viewer""" # avoid running the help viewer as root if os.getuid() == 0 and "SUDO_USER" in os.environ: self.command = [ "sudo", "-u", os.environ["SUDO_USER"], ] + self.command subprocess.Popen(self.command)