Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.143.215.114
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
libxml2-python-2.9.1 /
Delete
Unzip
Name
Size
Permission
Date
Action
TODO
1.58
KB
-rw-r--r--
2009-07-30 15:24
apibuild.py
79.75
KB
-rwxr-xr-x
2013-03-30 14:34
attribs.py
819
B
-rwxr-xr-x
2013-03-30 14:34
build.py
1.51
KB
-rwxr-xr-x
2013-03-30 14:34
compareNodes.py
1.48
KB
-rwxr-xr-x
2013-03-30 14:34
ctxterror.py
1.29
KB
-rwxr-xr-x
2013-03-30 14:34
cutnpaste.py
1.26
KB
-rwxr-xr-x
2013-03-30 14:34
dtdvalid.py
619
B
-rwxr-xr-x
2013-03-30 14:34
error.py
1.04
KB
-rwxr-xr-x
2013-03-30 14:34
inbuf.py
498
B
-rwxr-xr-x
2013-03-30 14:34
index.py
32.14
KB
-rwxr-xr-x
2009-07-30 15:24
indexes.py
2.9
KB
-rwxr-xr-x
2013-03-30 14:34
input_callback.py
5.01
KB
-rwxr-xr-x
2013-04-02 02:25
libxml2class.txt
22.42
KB
-rw-r--r--
2013-04-19 07:28
nsdel.py
1.55
KB
-rwxr-xr-x
2013-03-30 14:34
outbuf.py
3.07
KB
-rwxr-xr-x
2013-03-30 14:34
push.py
769
B
-rwxr-xr-x
2013-03-30 14:34
pushSAX.py
1.46
KB
-rwxr-xr-x
2013-03-30 14:34
pushSAXhtml.py
1.57
KB
-rwxr-xr-x
2013-03-30 14:34
python.html
19.46
KB
-rw-r--r--
2013-03-27 08:08
reader.py
12.23
KB
-rwxr-xr-x
2013-03-30 14:34
reader2.py
5.22
KB
-rwxr-xr-x
2013-03-30 14:34
reader3.py
4.06
KB
-rwxr-xr-x
2013-03-30 14:34
reader4.py
1.15
KB
-rwxr-xr-x
2013-03-30 14:34
reader5.py
1.22
KB
-rwxr-xr-x
2013-03-30 14:34
reader6.py
2.61
KB
-rwxr-xr-x
2013-03-30 14:34
reader7.py
1.72
KB
-rwxr-xr-x
2013-04-02 02:25
reader8.py
683
B
-rwxr-xr-x
2013-04-02 02:25
readererr.py
1.25
KB
-rwxr-xr-x
2013-03-30 14:34
readernext.py
2.43
KB
-rwxr-xr-x
2013-03-30 14:34
regexp.py
716
B
-rwxr-xr-x
2013-03-30 14:34
relaxng.py
1.17
KB
-rwxr-xr-x
2013-03-30 14:34
resolver.py
857
B
-rwxr-xr-x
2013-03-30 14:34
schema.py
1.28
KB
-rwxr-xr-x
2013-03-30 14:34
serialize.py
4.18
KB
-rwxr-xr-x
2013-03-30 14:34
sync.py
3.44
KB
-rwxr-xr-x
2013-03-30 14:34
thread2.py
2.25
KB
-rwxr-xr-x
2013-03-30 14:34
tst.py
587
B
-rwxr-xr-x
2013-03-30 14:34
tstLastError.py
2.83
KB
-rwxr-xr-x
2013-03-30 14:34
tstURI.py
1.08
KB
-rwxr-xr-x
2013-03-30 14:34
tstmem.py
720
B
-rwxr-xr-x
2013-03-30 14:34
tstxpath.py
1.43
KB
-rwxr-xr-x
2013-03-30 14:34
validDTD.py
1.2
KB
-rwxr-xr-x
2013-03-30 14:34
validRNG.py
1.9
KB
-rwxr-xr-x
2013-03-30 14:34
validSchemas.py
2.02
KB
-rwxr-xr-x
2013-03-30 14:34
validate.py
1.68
KB
-rwxr-xr-x
2013-03-30 14:34
walker.py
2.35
KB
-rwxr-xr-x
2013-04-02 02:25
xpath.py
1.17
KB
-rwxr-xr-x
2013-03-30 14:34
xpathext.py
1.1
KB
-rwxr-xr-x
2013-03-30 14:34
xpathleak.py
1.53
KB
-rwxr-xr-x
2013-04-02 02:25
xpathns.py
552
B
-rwxr-xr-x
2013-03-30 14:34
xpathret.py
1.29
KB
-rwxr-xr-x
2013-03-30 14:34
Save
Rename
#!/usr/bin/python -u import sys import libxml2 # Memory debug specific libxml2.debugMemory(1) # # Testing XML document serialization # doc = libxml2.parseDoc("""<root><foo>hello</foo></root>""") str = doc.serialize() if str != """<?xml version="1.0"?> <root><foo>hello</foo></root> """: print("error serializing XML document 1") sys.exit(1) str = doc.serialize("iso-8859-1") if str != """<?xml version="1.0" encoding="iso-8859-1"?> <root><foo>hello</foo></root> """: print("error serializing XML document 2") sys.exit(1) str = doc.serialize(format=1) if str != """<?xml version="1.0"?> <root> <foo>hello</foo> </root> """: print("error serializing XML document 3") sys.exit(1) str = doc.serialize("iso-8859-1", 1) if str != """<?xml version="1.0" encoding="iso-8859-1"?> <root> <foo>hello</foo> </root> """: print("error serializing XML document 4") sys.exit(1) # # Test serializing a subnode # root = doc.getRootElement() str = root.serialize() if str != """<root><foo>hello</foo></root>""": print("error serializing XML root 1") sys.exit(1) str = root.serialize("iso-8859-1") if str != """<root><foo>hello</foo></root>""": print("error serializing XML root 2") sys.exit(1) str = root.serialize(format=1) if str != """<root> <foo>hello</foo> </root>""": print("error serializing XML root 3") sys.exit(1) str = root.serialize("iso-8859-1", 1) if str != """<root> <foo>hello</foo> </root>""": print("error serializing XML root 4") sys.exit(1) doc.freeDoc() # # Testing HTML document serialization # doc = libxml2.htmlParseDoc("""<html><head><title>Hello</title><body><p>hello</body></html>""", None) str = doc.serialize() if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><head><title>Hello</title></head><body><p>hello</p></body></html> """: print("error serializing HTML document 1") sys.exit(1) str = doc.serialize("ISO-8859-1") if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Hello</title></head><body><p>hello</p></body></html> """: print("error serializing HTML document 2") sys.exit(1) str = doc.serialize(format=1) if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Hello</title> </head> <body><p>hello</p></body> </html> """: print("error serializing HTML document 3") sys.exit(1) str = doc.serialize("iso-8859-1", 1) if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Hello</title> </head> <body><p>hello</p></body> </html> """: print("error serializing HTML document 4") sys.exit(1) # # Test serializing a subnode # doc.htmlSetMetaEncoding(None) root = doc.getRootElement() str = root.serialize() if str != """<html><head><title>Hello</title></head><body><p>hello</p></body></html>""": print("error serializing HTML root 1") sys.exit(1) str = root.serialize("ISO-8859-1") if str != """<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Hello</title></head><body><p>hello</p></body></html>""": print("error serializing HTML root 2") sys.exit(1) str = root.serialize(format=1) if str != """<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Hello</title> </head> <body><p>hello</p></body> </html>""": print("error serializing HTML root 3") sys.exit(1) str = root.serialize("iso-8859-1", 1) if str != """<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Hello</title> </head> <body><p>hello</p></body> </html>""": print("error serializing HTML root 4") sys.exit(1) doc.freeDoc() # Memory debug specific libxml2.cleanupParser() if libxml2.debugMemory(1) == 0: print("OK") else: print("Memory leak %d bytes" % (libxml2.debugMemory(1))) libxml2.dumpMemory()