Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
sphinx /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
builders
[ DIR ]
drwxr-xr-x
cmd
[ DIR ]
drwxr-xr-x
directives
[ DIR ]
drwxr-xr-x
domains
[ DIR ]
drwxr-xr-x
environment
[ DIR ]
drwxr-xr-x
ext
[ DIR ]
drwxr-xr-x
locale
[ DIR ]
drwxr-xr-x
pycode
[ DIR ]
drwxr-xr-x
search
[ DIR ]
drwxr-xr-x
testing
[ DIR ]
drwxr-xr-x
texinputs_win
[ DIR ]
drwxr-xr-x
transforms
[ DIR ]
drwxr-xr-x
util
[ DIR ]
drwxr-xr-x
writers
[ DIR ]
drwxr-xr-x
__init__.py
2.09
KB
-rw-r--r--
__main__.py
280
B
-rw-r--r--
addnodes.py
17.37
KB
-rw-r--r--
application.py
53.34
KB
-rw-r--r--
config.py
19.92
KB
-rw-r--r--
deprecation.py
2.89
KB
-rw-r--r--
errors.py
3.5
KB
-rw-r--r--
events.py
4.14
KB
-rw-r--r--
extension.py
2.75
KB
-rw-r--r--
highlighting.py
6.41
KB
-rw-r--r--
io.py
6.39
KB
-rw-r--r--
jinja2glue.py
7.02
KB
-rw-r--r--
parsers.py
3.81
KB
-rw-r--r--
project.py
3.45
KB
-rw-r--r--
py.typed
0
B
-rw-r--r--
pygments_styles.py
2.95
KB
-rw-r--r--
registry.py
21.62
KB
-rw-r--r--
roles.py
13.52
KB
-rw-r--r--
setup_command.py
6.86
KB
-rw-r--r--
theming.py
8.4
KB
-rw-r--r--
versioning.py
5.81
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : errors.py
""" sphinx.errors ~~~~~~~~~~~~~ Contains SphinxError and a few subclasses (in an extra module to avoid circular import problems). :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ from typing import Any class SphinxError(Exception): """Base class for Sphinx errors. This is the base class for "nice" exceptions. When such an exception is raised, Sphinx will abort the build and present the exception category and message to the user. Extensions are encouraged to derive from this exception for their custom errors. Exceptions *not* derived from :exc:`SphinxError` are treated as unexpected and shown to the user with a part of the traceback (and the full traceback saved in a temporary file). .. attribute:: category Description of the exception "category", used in converting the exception to a string ("category: message"). Should be set accordingly in subclasses. """ category = 'Sphinx error' class SphinxWarning(SphinxError): """Warning, treated as error.""" category = 'Warning, treated as error' class ApplicationError(SphinxError): """Application initialization error.""" category = 'Application error' class ExtensionError(SphinxError): """Extension error.""" def __init__(self, message: str, orig_exc: Exception = None, modname: str = None) -> None: super().__init__(message) self.message = message self.orig_exc = orig_exc self.modname = modname @property def category(self) -> str: # type: ignore if self.modname: return 'Extension error (%s)' % self.modname else: return 'Extension error' def __repr__(self) -> str: if self.orig_exc: return '%s(%r, %r)' % (self.__class__.__name__, self.message, self.orig_exc) return '%s(%r)' % (self.__class__.__name__, self.message) def __str__(self) -> str: parent_str = super().__str__() if self.orig_exc: return '%s (exception: %s)' % (parent_str, self.orig_exc) return parent_str class BuildEnvironmentError(SphinxError): """BuildEnvironment error.""" category = 'BuildEnvironment error' class ConfigError(SphinxError): """Configuration error.""" category = 'Configuration error' class DocumentError(SphinxError): """Document error.""" category = 'Document error' class ThemeError(SphinxError): """Theme error.""" category = 'Theme error' class VersionRequirementError(SphinxError): """Incompatible Sphinx version error.""" category = 'Sphinx version error' class SphinxParallelError(SphinxError): """Sphinx parallel build error.""" category = 'Sphinx parallel build error' def __init__(self, message: str, traceback: Any) -> None: self.message = message self.traceback = traceback def __str__(self) -> str: return self.message class PycodeError(Exception): """Pycode Python source code analyser error.""" def __str__(self) -> str: res = self.args[0] if len(self.args) > 1: res += ' (exception was: %r)' % self.args[1] return res class NoUri(Exception): """Raised by builder.get_relative_uri() or from missing-reference handlers if there is no URI available.""" pass class FiletypeNotFoundError(Exception): """Raised by get_filetype() if a filename matches no source suffix.""" pass
Close