!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.16 (Debian). PHP/5.3.3-7+squeeze19 

uname -a: Linux mail.tri-specialutilitydistrict.com 2.6.32-5-amd64 #1 SMP Tue May 13 16:34:35 UTC
2014 x86_64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/pyshared/nevow/scripts/   drwxr-xr-x
Free 129.98 GB of 142.11 GB (91.46%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     xmlgettext.py (2.6 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
from xml.dom import pulldom
from cStringIO import StringIO
from twisted.python import usage
import nevow

class LineBasedStream(object):
    """
    Allow pulldom to read at most one line at a time, to get accurate
    line number reporting. Otherwise it always reports everything is
    on the last line read in a single chunk.

    Delay reporting newlines to next read, to avoid line numbers
    always being off by one.

    Not the prettiest code I've written :-(
    """
    def __init__(self, stream):
        self.stream = stream
        self.buffer = ''

    def read(self, bufsize):
        if not self.buffer:
            self.buffer = self.stream.readline(bufsize)

        if not self.buffer:
            # eof
            return ''

        data, self.buffer = self.buffer, ''
        while data.endswith('\n'):
            self.buffer = self.buffer + data[-1]
            data = data[:-1]
        if not data:
            # data was nothing but newlines, undo above or it would
            # look like EOF and we'd never make progress
            data, self.buffer = self.buffer, ''
        return data

def getMsgID(node):
    out = StringIO()
    print >>out, 'msgid ""'
    for child in node.childNodes:
        s = child.toxml('utf-8')
        s = s.replace('\\', '\\\\')
        s = s.replace('"', '\\"')
        s = s.replace('\n', '\\n')
        print >>out, '"%s"' % s
    print >>out, 'msgstr ""'
    return out.getvalue()

def process(filename, messages):
    f = open(filename, 'rU')
    stream = LineBasedStream(f)
    events = pulldom.parse(stream)

    for (event, node) in events:
        if event == pulldom.START_ELEMENT:
            get = getattr(node, 'getAttributeNS', None)
            if get is not None:
                value = get('http://nevow.com/ns/nevow/0.1', 'render')
                if value == 'i18n':
                    events.expandNode(node)

                    msgid = getMsgID(node)
                    l = messages.setdefault(msgid, [])
                    l.append('#: %s:%d' % (filename, events.parser.getLineNumber()))


def report(messages):
    for msgid, locations in messages.items():
        for line in locations:
            print line
        print msgid

class GettextOptions(usage.Options):
    def opt_version(self):
        print 'Nevow version:', nevow.__version__
        usage.Options.opt_version(self)

    def parseArgs(self, *files):
        self['files'] = files

def runApp(config):
    messages = {}

    for filename in config['files']:
        process(filename, messages)

    report(messages)

def run():
    from twisted.application import app
    app.run(runApp, GettextOptions)

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0148 ]--