!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/usr/lib/python2.4/site-packages/Ft/Xml/ThirdParty/Xvif/   drwxr-xr-x
Free 3.38 GB of 27.03 GB (12.51%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     xmlcomp.py (7.46 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
# $Header: /var/local/cvsroot/4Suite/Ft/Xml/ThirdParty/Xvif/xmlcomp.py,v 1.3 2004/10/12 22:59:14 uogbuji Exp $

from xml.dom import XMLNS_NAMESPACE
import xml.dom
from string import *

"""
The contents of this file are subject to the Mozilla Public License  Version 1.1 (the "License"); you may not use this file except in  compliance with the License.
You may obtain a copy of the License at http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS"  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the  License for the specific language governing rights and limitations under  the License.

The Original Code is available at http://downloads.xmlschemata.org/python/xvif/

The Initial Developer of the Original Code is Eric van der Vlist. Portions  created by Eric van der Vlist are Copyright (C) 2002. All Rights Reserved.

Contributor(s):
"""

def normalize_space(s):
    st=1
    r = ""
    for c in s:
        if c in (" ", "\n", "\t", "\r"):
            if st==2:
                st=3
        else:
            if st==3:
                r += " "
            r+=c
            st=2
    return r
                

class XmlComp:

    """A "checkType" can be a DOM nodeType, ie "An integer representing the
    node type. Symbolic constants for the types are on the Node object:
    ELEMENT_NODE, ATTRIBUTE_NODE, TEXT_NODE, CDATA_SECTION_NODE(**), ENTITY_NODE(*),
    PROCESSING_INSTRUCTION_NODE(*), COMMENT_NODE(*), DOCUMENT_NODE(*),
    DOCUMENT_TYPE_NODE(*), NOTATION_NODE(*)" or the extra values:
    "NAMESPACE_PREFIX,WHITESPACES, NAMESPACE_DECLARATION".

    (*): not supported (yet)
    (**): use TEXT_NODE instead.

    """

    NAMESPACE_PREFIX = 1j
    NAMESPACE_DECLARATION = 2j
    WHITESPACES = 3j
    EMPTY_TEXT = 4j

    _default_checks = [xml.dom.Node.ELEMENT_NODE,
        xml.dom.Node.ATTRIBUTE_NODE,
        xml.dom.Node.TEXT_NODE,
        NAMESPACE_PREFIX,
        NAMESPACE_DECLARATION,
        WHITESPACES]
    

    def __init__(self, d1=None, d2=None, checks=_default_checks):
        if d1 != None:
            self.setDocument1(d1)
        if d2 != None:
            self.setDocument2(d2)
        self.checks = checks

    def setDocument1(self, d1):
        self.d1=d1
        
    def setDocument2(self, d2):
        self.d2=d2
        
    def addCheck(self, check):
        if not check in self.checks:
            self.checks.append(check)

    def removeCheck(self, check):
        i=0
        for c in self.checks:
            if c==check:
                del self.checks[i]
                break
            i += 1

    def compare(self, d1=None, d2=None):
        if d1 != None:
            self.setDocument1(d1)
        if d2 != None:
            self.setDocument2(d2)
        return self.compareNodes(d1.childNodes, d2.childNodes)
    
    def compareNodes(self, nodes1, nodes2):
        n1 = self.removeJunk(nodes1)
        n2 = self.removeJunk(nodes2)
        i = 0
        for node in n1:
            if len(n2) == i:
                return "node %s from document 1 has no match in document 2." % node
            test = self.compareNode(node, n2[i])
            if test:
                return test
            i += 1
        if len(n2) > i:
            return "node %s from document 2 has no match in document 1." % n2[i]
        return None
    
    def removeJunk(self, nodes):
        res = []
        for node in nodes:
            if node.nodeType in self.checks or \
                (node.nodeType == xml.dom.Node.CDATA_SECTION_NODE\
                and xml.dom.Node.TEXT_NODE in self.checks):
                if node.nodeType in (xml.dom.Node.TEXT_NODE, xml.dom.Node.CDATA_SECTION_NODE):
                    t = normalize_space(node.nodeValue)
                    if not XmlComp.EMPTY_TEXT in self.checks and t == "":
                        continue
                    if not XmlComp.WHITESPACES in self.checks:
                        node = node.ownerDocument.createTextNode(t)
                    else:
                        node = node.ownerDocument.createTextNode(node.nodeValue)
                res.append(node)
        return res
    
    def removeJunkFromNamedNodeMap(self, nodes):
        res = {}
        for (ns, name) in nodes.keys():
            node = nodes[(ns, name)]
            if node.nodeType == xml.dom.Node.ATTRIBUTE_NODE and ns==xml.dom.XMLNS_NAMESPACE:
                if XmlComp.NAMESPACE_DECLARATION in self.checks:
                    res[(ns, name)] = node
            elif node.nodeType in self.checks:
                res[(ns, name)] = node
        return res
    
    def compareNode(self, n1, n2):
        if n1.nodeType==n2.nodeType:
            return self.compareFunctions[n1.nodeType](self, n1, n2)
        else:
            return "Node types do not match (%s vs %s)" % (n1, n2)
    
    def compareElements(self, n1, n2):
        if n1.localName != n2.localName:
            return "Element names do not match ({%s}%s vs {%s}%s)" % (n1.namespaceURI, n1.localName, n2.namespaceURI, n2.localName)
        if n1.namespaceURI != n2.namespaceURI:
            return "Element names do not match ({%s}%s vs {%s}%s)" % (n1.namespaceURI, n1.localName, n2.namespaceURI, n2.localName)
        if self.NAMESPACE_PREFIX in self.checks and n1.prefix != n2.prefix:
            return "Element prefixes names do not match ({%s|%s:}%s vs {%s|%s:}%s)" % (n1.namespaceURI, n1.prefix, n1.localName, n2.namespaceURI, n2.prefix, n2.localName)
        attCmp = self.compareNamedNodeMaps(n1.attributes, n2.attributes)
        if attCmp:
            return attCmp
        return self.compareNodes(n1.childNodes, n2.childNodes)
    

    def compareAttributes(self, n1, n2):
        if n1.localName != n2.localName:
            return "Attribute names do not match ({%s}%s vs {%s}%s)" % (n1.namespaceURI, n1.localName, n2.namespaceURI, n2.localName)
        if n1.namespaceURI != n2.namespaceURI:
            return "Attribute names do not match ({%s}%s vs {%s}%s)" % (n1.namespaceURI, n1.localName, n2.namespaceURI, n2.localName)
        if self.NAMESPACE_PREFIX in self.checks and n1.prefix != n2.prefix:
            return "Attribute prefixes names do not match ({%s|%s:}%s vs {%s|%s:}%s)" % (n1.namespaceURI, n1.prefix, n1.localName, n2.namespaceURI, n2.prefix, n2.localName)
        if n1.nodeValue != n2.nodeValue:
            return "Attribute values do not match ({%s|%s:}%s='%s' vs {%s|%s:}%s='%s')" % (n1.namespaceURI, n1.prefix, n1.localName, n1.nodeValue, n2.namespaceURI, n2.prefix, n2.localName, n2.nodeValue)
        return None

    def compareText(self, n1, n2):
        if n1.nodeValue != n2.nodeValue:
            return "Text values do not match (%s vs %s)" % (n1.nodeValue, n2.nodeValue)
        return None

    
    def compareNamedNodeMaps(self, nodes1, nodes2):
        n1 = self.removeJunkFromNamedNodeMap(nodes1)
        n2 = self.removeJunkFromNamedNodeMap(nodes2)
        i = 0
        for (ns, name) in n1.keys():
            if n2.has_key((ns, name)):
                test = self.compareNode(n1[(ns, name)], n2[(ns, name)])
                if test:
                    return test
                del(n2[(ns, name)])
            else:
                return "node %s from document 1 has no match in document 2." % n1[(ns, name)]
        if len(n2) > 0:
            for key in n2.keys():
                return "node {%s}%s from document 2 has no match in document 1." % key
        return None
    

    compareFunctions = {xml.dom.Node.ELEMENT_NODE: compareElements,
        xml.dom.Node.TEXT_NODE: compareText,
        xml.dom.Node.ATTRIBUTE_NODE: compareAttributes}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0039 ]--