One Hat Cyber Team
Your IP :
216.73.216.14
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
Macaulay2
/
XML
/
example-output
/
View File Name :
___Libxml__Node.out
-- -*- M2-comint -*- hash: 12763018892167704301 i1 : n = xmlParse ///<foo> aabc <bar id="foo" name="too"> asdf </bar><coo/><coo>hi</coo><coo a="b">hi</coo></foo>/// o1 = <foo> aabc <bar id="foo" name="too"> asdf </bar><coo/><coo>hi</coo><coo a="b">hi</coo></foo> o1 : LibxmlNode (xmlTypeDescription) i2 : xmlIsElement n, xmlIsText n o2 = (true, false) o2 : Sequence i3 : xmlGetName n o3 = foo i4 : c = xmlFirstChild n o4 = " aabc " o4 : LibxmlNode (xmlTypeDescription) i5 : xmlIsElement c, xmlIsText c o5 = (false, true) o5 : Sequence i6 : c o6 = " aabc " o6 : LibxmlNode (xmlTypeDescription) i7 : bar = xmlGetNext oo o7 = <bar id="foo" name="too"> asdf </bar> o7 : LibxmlNode (xmlTypeDescription) i8 : xmlGetNext oo o8 = <coo/> o8 : LibxmlNode (xmlTypeDescription) i9 : xmlGetNext oo o9 = <coo>hi</coo> o9 : LibxmlNode (xmlTypeDescription) i10 : xmlGetNext oo o10 = <coo a="b">hi</coo> o10 : LibxmlNode (xmlTypeDescription) i11 : xmlGetNext oo i12 : xmlFirstAttribute bar o12 = id = "foo" o12 : LibxmlAttribute i13 : a = xmlGetNext oo o13 = name = "too" o13 : LibxmlAttribute i14 : xmlGetNext oo i15 : xmlGetName a o15 = name i16 : b = xmlFirstChild a o16 = "too" o16 : LibxmlNode (xmlTypeDescription) i17 : xmlGetNext oo i18 : xmlIsText b o18 = true i19 : toString b o19 = too i20 : getChildren n o20 = {" aabc " } {<bar id="foo" name="too"> asdf </bar>} {<coo/> } {<coo>hi</coo> } {<coo a="b">hi</coo> } o20 : VerticalList i21 : class \ oo o21 = {LibxmlNode} {LibxmlNode} {LibxmlNode} {LibxmlNode} {LibxmlNode} o21 : VerticalList i22 : getAttributes bar o22 = {id = "foo" } {name = "too"} o22 : VerticalList i23 : class \ oo o23 = {LibxmlAttribute} {LibxmlAttribute} o23 : VerticalList i24 :