Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
site-packages /
lxml /
html /
Delete
Unzip
Name
Size
Permission
Date
Action
ElementSoup.py
319
B
-rw-r--r--
2011-09-25 12:58
ElementSoup.pyc
622
B
-rw-r--r--
2014-06-10 02:07
ElementSoup.pyo
622
B
-rw-r--r--
2014-06-10 02:07
__init__.py
57.73
KB
-rw-r--r--
2013-04-28 14:42
__init__.pyc
58.95
KB
-rw-r--r--
2014-06-10 02:07
__init__.pyo
58.7
KB
-rw-r--r--
2014-06-10 02:07
_diffcommand.py
2.04
KB
-rw-r--r--
2011-09-25 12:58
_diffcommand.pyc
2.77
KB
-rw-r--r--
2014-06-10 02:07
_diffcommand.pyo
2.77
KB
-rw-r--r--
2014-06-10 02:07
_html5builder.py
3.17
KB
-rw-r--r--
2012-09-28 15:13
_html5builder.pyc
4.49
KB
-rw-r--r--
2014-06-10 02:07
_html5builder.pyo
4.49
KB
-rw-r--r--
2014-06-10 02:07
_setmixin.py
2.43
KB
-rw-r--r--
2012-09-28 15:13
_setmixin.pyc
5.04
KB
-rw-r--r--
2014-06-10 02:07
_setmixin.pyo
5.04
KB
-rw-r--r--
2014-06-10 02:07
builder.py
4.21
KB
-rw-r--r--
2011-09-25 12:58
builder.pyc
3.83
KB
-rw-r--r--
2014-06-10 02:07
builder.pyo
3.83
KB
-rw-r--r--
2014-06-10 02:07
clean.py
25.25
KB
-rw-r--r--
2013-04-28 14:42
clean.pyc
18.76
KB
-rw-r--r--
2014-06-10 02:07
clean.pyo
18.67
KB
-rw-r--r--
2014-06-10 02:07
defs.py
3.71
KB
-rw-r--r--
2011-09-25 12:58
defs.pyc
3.49
KB
-rw-r--r--
2014-06-10 02:07
defs.pyo
3.49
KB
-rw-r--r--
2014-06-10 02:07
diff.py
29.71
KB
-rw-r--r--
2012-12-21 17:02
diff.pyc
27.72
KB
-rw-r--r--
2014-06-10 02:07
diff.pyo
27.38
KB
-rw-r--r--
2014-06-10 02:07
formfill.py
9.49
KB
-rw-r--r--
2012-10-07 14:04
formfill.pyc
9.59
KB
-rw-r--r--
2014-06-10 02:07
formfill.pyo
9.34
KB
-rw-r--r--
2014-06-10 02:07
html5parser.py
6.09
KB
-rw-r--r--
2012-10-07 14:04
html5parser.pyc
6.49
KB
-rw-r--r--
2014-06-10 02:07
html5parser.pyo
6.49
KB
-rw-r--r--
2014-06-10 02:07
soupparser.py
4.26
KB
-rw-r--r--
2012-09-28 15:13
soupparser.pyc
4.75
KB
-rw-r--r--
2014-06-10 02:07
soupparser.pyo
4.75
KB
-rw-r--r--
2014-06-10 02:07
usedoctest.py
249
B
-rw-r--r--
2011-09-25 12:58
usedoctest.pyc
464
B
-rw-r--r--
2014-06-10 02:07
usedoctest.pyo
464
B
-rw-r--r--
2014-06-10 02:07
Save
Rename
""" Legacy module - don't use in new code! html5lib now has its own proper implementation. This module implements a tree builder for html5lib that generates lxml html element trees. This module uses camelCase as it follows the html5lib style guide. """ from html5lib.treebuilders import _base, etree as etree_builders from lxml import html, etree class DocumentType(object): def __init__(self, name, publicId, systemId): self.name = name self.publicId = publicId self.systemId = systemId class Document(object): def __init__(self): self._elementTree = None self.childNodes = [] def appendChild(self, element): self._elementTree.getroot().addnext(element._element) class TreeBuilder(_base.TreeBuilder): documentClass = Document doctypeClass = DocumentType elementClass = None commentClass = None fragmentClass = Document def __init__(self, *args, **kwargs): html_builder = etree_builders.getETreeModule(html, fullTree=False) etree_builder = etree_builders.getETreeModule(etree, fullTree=False) self.elementClass = html_builder.Element self.commentClass = etree_builder.Comment _base.TreeBuilder.__init__(self, *args, **kwargs) def reset(self): _base.TreeBuilder.reset(self) self.rootInserted = False self.initialComments = [] self.doctype = None def getDocument(self): return self.document._elementTree def getFragment(self): fragment = [] element = self.openElements[0]._element if element.text: fragment.append(element.text) fragment.extend(element.getchildren()) if element.tail: fragment.append(element.tail) return fragment def insertDoctype(self, name, publicId, systemId): doctype = self.doctypeClass(name, publicId, systemId) self.doctype = doctype def insertComment(self, data, parent=None): if not self.rootInserted: self.initialComments.append(data) else: _base.TreeBuilder.insertComment(self, data, parent) def insertRoot(self, name): buf = [] if self.doctype and self.doctype.name: buf.append('<!DOCTYPE %s' % self.doctype.name) if self.doctype.publicId is not None or self.doctype.systemId is not None: buf.append(' PUBLIC "%s" "%s"' % (self.doctype.publicId, self.doctype.systemId)) buf.append('>') buf.append('<html></html>') root = html.fromstring(''.join(buf)) # Append the initial comments: for comment in self.initialComments: root.addprevious(etree.Comment(comment)) # Create the root document and add the ElementTree to it self.document = self.documentClass() self.document._elementTree = root.getroottree() # Add the root element to the internal child/open data structures root_element = self.elementClass(name) root_element._element = root self.document.childNodes.append(root_element) self.openElements.append(root_element) self.rootInserted = True