GRAYBYTE WORDPRESS FILE MANAGER8356

Server IP : 68.65.123.43 / Your IP : 216.73.216.162
System : Linux server266.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
PHP Version : 8.0.30
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /lib64/python2.7/Demo/pdist/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /lib64/python2.7/Demo/pdist//cmdfw.py
"Framework for command line interfaces like CVS.  See class CmdFrameWork."


class CommandFrameWork:

    """Framework class for command line interfaces like CVS.

    The general command line structure is

            command [flags] subcommand [subflags] [argument] ...

    There's a class variable GlobalFlags which specifies the
    global flags options.  Subcommands are defined by defining
    methods named do_<subcommand>.  Flags for the subcommand are
    defined by defining class or instance variables named
    flags_<subcommand>.  If there's no command, method default()
    is called.  The __doc__ strings for the do_ methods are used
    for the usage message, printed after the general usage message
    which is the class variable UsageMessage.  The class variable
    PostUsageMessage is printed after all the do_ methods' __doc__
    strings.  The method's return value can be a suggested exit
    status.  [XXX Need to rewrite this to clarify it.]

    Common usage is to derive a class, instantiate it, and then call its
    run() method; by default this takes its arguments from sys.argv[1:].
    """

    UsageMessage = \
      "usage: (name)s [flags] subcommand [subflags] [argument] ..."

    PostUsageMessage = None

    GlobalFlags = ''

    def __init__(self):
        """Constructor, present for completeness."""
        pass

    def run(self, args = None):
        """Process flags, subcommand and options, then run it."""
        import getopt, sys
        if args is None: args = sys.argv[1:]
        try:
            opts, args = getopt.getopt(args, self.GlobalFlags)
        except getopt.error, msg:
            return self.usage(msg)
        self.options(opts)
        if not args:
            self.ready()
            return self.default()
        else:
            cmd = args[0]
            mname = 'do_' + cmd
            fname = 'flags_' + cmd
            try:
                method = getattr(self, mname)
            except AttributeError:
                return self.usage("command %r unknown" % (cmd,))
            try:
                flags = getattr(self, fname)
            except AttributeError:
                flags = ''
            try:
                opts, args = getopt.getopt(args[1:], flags)
            except getopt.error, msg:
                return self.usage(
                        "subcommand %s: " % cmd + str(msg))
            self.ready()
            return method(opts, args)

    def options(self, opts):
        """Process the options retrieved by getopt.
        Override this if you have any options."""
        if opts:
            print "-"*40
            print "Options:"
            for o, a in opts:
                print 'option', o, 'value', repr(a)
            print "-"*40

    def ready(self):
        """Called just before calling the subcommand."""
        pass

    def usage(self, msg = None):
        """Print usage message.  Return suitable exit code (2)."""
        if msg: print msg
        print self.UsageMessage % {'name': self.__class__.__name__}
        docstrings = {}
        c = self.__class__
        while 1:
            for name in dir(c):
                if name[:3] == 'do_':
                    if docstrings.has_key(name):
                        continue
                    try:
                        doc = getattr(c, name).__doc__
                    except:
                        doc = None
                    if doc:
                        docstrings[name] = doc
            if not c.__bases__:
                break
            c = c.__bases__[0]
        if docstrings:
            print "where subcommand can be:"
            names = docstrings.keys()
            names.sort()
            for name in names:
                print docstrings[name]
        if self.PostUsageMessage:
            print self.PostUsageMessage
        return 2

    def default(self):
        """Default method, called when no subcommand is given.
        You should always override this."""
        print "Nobody expects the Spanish Inquisition!"


def test():
    """Test script -- called when this module is run as a script."""
    import sys
    class Hello(CommandFrameWork):
        def do_hello(self, opts, args):
            "hello -- print 'hello world', needs no arguments"
            print "Hello, world"
    x = Hello()
    tests = [
            [],
            ['hello'],
            ['spam'],
            ['-x'],
            ['hello', '-x'],
            None,
            ]
    for t in tests:
        print '-'*10, t, '-'*10
        sts = x.run(t)
        print "Exit status:", repr(sts)


if __name__ == '__main__':
    test()

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
June 13 2024 07:04:03
root / root
0755
FSProxy.py
7.645 KB
April 19 2020 21:13:39
root / root
0644
FSProxy.pyc
12.495 KB
April 10 2024 04:58:46
root / root
0644
FSProxy.pyo
12.495 KB
April 10 2024 04:58:46
root / root
0644
RCSProxy.py
4.612 KB
April 10 2024 04:57:37
root / root
0755
RCSProxy.pyc
7.569 KB
April 10 2024 04:58:46
root / root
0644
RCSProxy.pyo
7.569 KB
April 10 2024 04:58:46
root / root
0644
README
4.164 KB
April 19 2020 21:13:39
root / root
0644
client.py
4.598 KB
April 19 2020 21:13:39
root / root
0644
client.pyc
6.566 KB
April 10 2024 04:58:46
root / root
0644
client.pyo
6.566 KB
April 10 2024 04:58:46
root / root
0644
cmdfw.py
4.532 KB
April 19 2020 21:13:39
root / root
0644
cmdfw.pyc
5.116 KB
April 10 2024 04:58:46
root / root
0644
cmdfw.pyo
5.116 KB
April 10 2024 04:58:46
root / root
0644
cmptree.py
5.643 KB
April 19 2020 21:13:39
root / root
0644
cmptree.pyc
5.979 KB
April 10 2024 04:58:46
root / root
0644
cmptree.pyo
5.979 KB
April 10 2024 04:58:46
root / root
0644
cvslib.py
9.937 KB
April 19 2020 21:13:39
root / root
0644
cvslib.pyc
12.832 KB
April 10 2024 04:58:46
root / root
0644
cvslib.pyo
12.832 KB
April 10 2024 04:58:46
root / root
0644
cvslock.py
6.612 KB
April 19 2020 21:13:39
root / root
0644
cvslock.pyc
8.359 KB
April 10 2024 04:58:46
root / root
0644
cvslock.pyo
8.359 KB
April 10 2024 04:58:46
root / root
0644
mac.py
0.344 KB
April 19 2020 21:13:39
root / root
0644
mac.pyc
0.584 KB
April 10 2024 04:58:46
root / root
0644
mac.pyo
0.584 KB
April 10 2024 04:58:46
root / root
0644
makechangelog.py
2.918 KB
April 10 2024 04:57:37
root / root
0755
makechangelog.pyc
3.049 KB
April 10 2024 04:58:46
root / root
0644
makechangelog.pyo
3.049 KB
April 10 2024 04:58:46
root / root
0644
rcsbump
0.728 KB
April 10 2024 04:57:37
root / root
0755
rcsclient.py
1.761 KB
April 19 2020 21:13:39
root / root
0644
rcsclient.pyc
2.051 KB
April 10 2024 04:58:46
root / root
0644
rcsclient.pyo
2.051 KB
April 10 2024 04:58:46
root / root
0644
rcslib.py
10.076 KB
April 19 2020 21:13:39
root / root
0644
rcslib.pyc
11.277 KB
April 10 2024 04:58:46
root / root
0644
rcslib.pyo
11.277 KB
April 10 2024 04:58:46
root / root
0644
rcvs
0.114 KB
April 10 2024 04:57:37
root / root
0755
rcvs.py
13.324 KB
April 10 2024 04:57:37
root / root
0755
rcvs.pyc
14.079 KB
April 10 2024 04:58:46
root / root
0644
rcvs.pyo
14.079 KB
April 10 2024 04:58:46
root / root
0644
rrcs
0.114 KB
April 10 2024 04:57:37
root / root
0755
rrcs.py
3.898 KB
April 10 2024 04:57:37
root / root
0755
rrcs.pyc
5.497 KB
April 10 2024 04:58:46
root / root
0644
rrcs.pyo
5.497 KB
April 10 2024 04:58:46
root / root
0644
security.py
1.066 KB
April 19 2020 21:13:39
root / root
0644
security.pyc
1.642 KB
April 10 2024 04:58:46
root / root
0644
security.pyo
1.642 KB
April 10 2024 04:58:46
root / root
0644
server.py
4.474 KB
April 19 2020 21:13:39
root / root
0644
server.pyc
5.831 KB
April 10 2024 04:58:46
root / root
0644
server.pyo
5.831 KB
April 10 2024 04:58:46
root / root
0644
sumtree.py
0.506 KB
April 19 2020 21:13:39
root / root
0644
sumtree.pyc
0.882 KB
April 10 2024 04:58:46
root / root
0644
sumtree.pyo
0.882 KB
April 10 2024 04:58:46
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF