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
# Copyright (c) 2004-2007 Canonical # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- # # Author: Michael Vogt <michael.vogt@ubuntu.com> # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from gi.repository import GLib from gi.repository import GObject from .Core.MetaRelease import MetaReleaseCore class MetaRelease(MetaReleaseCore, GObject.GObject): __gsignals__ = { "new_dist_available": ( GObject.SignalFlags.RUN_LAST, None, (GObject.TYPE_PYOBJECT,), ), "dist_no_longer_supported": (GObject.SignalFlags.RUN_LAST, None, ()), "done_downloading": (GObject.SignalFlags.RUN_LAST, None, ()), } def __init__( self, useDevelopmentRelease=False, useProposed=False, debug=False ): GObject.GObject.__init__(self) MetaReleaseCore.__init__( self, useDevelopmentRelease, useProposed, debug ) # in the gtk space to test if the download already finished # this is needed because gtk is not thread-safe GLib.timeout_add_seconds(1, self.check) def check(self): # check if we have a metarelease_information file if self.no_longer_supported is not None: self.emit("dist_no_longer_supported") if self.new_dist is not None: self.emit("new_dist_available", self.new_dist) if self.downloading: return True else: self.emit("done_downloading") return False