!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/Xslt/   drwxr-xr-x
Free 3.46 GB of 27.03 GB (12.78%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     RtfWriter.py (4.12 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
########################################################################
# $Header: /var/local/cvsroot/4Suite/Ft/Xml/Xslt/RtfWriter.py,v 1.19 2005/03/23 07:07:07 mbrown Exp $
"""
Result Tree Fragment writer for XSLT output

Copyright 2005 Fourthought, Inc. (USA).
Detailed license and copyright information: http://4suite.org/COPYRIGHT
Project home, documentation, distributions: http://4suite.org/
"""

from Ft.Xml import XMLNS_NAMESPACE, EMPTY_NAMESPACE
from Ft.Xml.Domlette import implementation
from Ft.Xml.Xslt.NullWriter import NullWriter


class RtfWriter(NullWriter):
    """
    A special, simple writer for capturing result-tree fragments
    """
    def __init__(self, outputParams, baseUri, implementation=implementation):
        """
        Note: The implementation must support createRootNode(baseUri).
        """
        NullWriter.__init__(self, outputParams)
        self._document = implementation.createRootNode(baseUri)
        self._destination_node = self._document
        self._characterData = []
        return

    def __completeTextNode(self):
        # Dump accumulated character data into a single text node;
        # called by the methods that will be generating other nodes.
        if self._characterData:
            text = self._document.createTextNode(u''.join(self._characterData))
            self._destination_node.appendChild(text)
            del self._characterData[:]
        return

    def getResult(self):
        self.__completeTextNode()
        assert self._destination_node is self._document, \
               "endElement not called (top of stack: '%s')" % (self._destination_node.nodeName)

        return self._document

    def startElement(self, name, namespace=EMPTY_NAMESPACE, extraNss=None):
        self.__completeTextNode()

        # Add the new element to the document
        element = self._document.createElementNS(namespace, name)
        self._destination_node.appendChild(element)

        # Add the additional namespaces to the added element
        namespaces = extraNss or {}
        for prefix, uri in namespaces.items():
            if prefix:
                nodeName = u'xmlns:' + prefix
            elif not uri:
                # no prefix and no uri indicates default namespace NOT set
                continue
            else:
                nodeName = u'xmlns'
            element.setAttributeNS(XMLNS_NAMESPACE, nodeName, uri)

        self._destination_node = element
        return

    def endElement(self, name, namespace=EMPTY_NAMESPACE):
        self.__completeTextNode()

        # Using assert since they are stripped when running optimized (-O)
        # (shouldn't happen anyway)
        assert name == self._destination_node.nodeName, \
               "nodeName mismatch for startElement/endElement"

        self._destination_node = self._destination_node.parentNode
        return

    def attribute(self, name, value, namespace=EMPTY_NAMESPACE):
        # From XSLT 1.0 Section 7.1.3 (we implement recovery here,
        # if processing gets this far):
        # - Adding an attribute to an element after children have been added
        #   to it; implementations may either signal the error or ignore the
        #   attribute.
        # - Adding an attribute to a node that is not an element;
        #   implementations may either signal the error or ignore the
        #   attribute.
        if self._destination_node.attributes is not None and \
               not self._destination_node.childNodes:
            self._destination_node.setAttributeNS(namespace, name, value)
        return

    def text(self, data, escapeOutput=True):
        # FIXME - how to control output escaping after-the-fact.  This is
        # a problem with all the writers however.
        self._characterData.append(data)
        return

    def processingInstruction(self, target, data):
        self.__completeTextNode()
        node = self._document.createProcessingInstruction(target, data)
        self._destination_node.appendChild(node)
        return

    def comment(self, data):
        self.__completeTextNode()
        node = self._document.createComment(data)
        self._destination_node.appendChild(node)
        return


:: 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.0041 ]--