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


Viewing file:     __init__.py (2.53 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
########################################################################
# $Header: /var/local/cvsroot/4Suite/Ft/Rdf/__init__.py,v 1.17 2004/10/16 05:35:58 mbrown Exp $
"""
An RDF processing library with support for persistent data models

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

from Ft import __version__

BNODE_BASE = 'http://4suite.org/rdf/anonymous/'
BNODE_BASE_LEN = len(BNODE_BASE)

RDF_MS_BASE = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'
RDF_SCHEMA_BASE = "http://www.w3.org/2000/01/rdf-schema#"
RIL_NAMESPACE = 'http://namespaces.rdfinference.org/ril'

OLD_DAML_OIL_NS = 'http://www.daml.org/2001/03/daml+oil#'
DAML_OIL_NS = 'http://www.w3.org/2001/10/daml+oil#'

OWL_NS = 'http://www.w3.org/2002/07/owl#'

OBJECT_TYPE_UNKNOWN = "?"
OBJECT_TYPE_RESOURCE = "R"
OBJECT_TYPE_LITERAL = "L"

ANONYMOUS_FRAGMENT_BASE = 'anonymous:'

class SchemaHandler:
    def initModel(self):
        return

    def suspend(self):
        old = self._active
        self._active = 0
        return old

    def resume(self):
       old = self._active
        self._active = 1
        return old

    def setActivity(self, value):
        old = self._active
        self._active = value and 1 or 0
        return old

    def add(self, statements):
        return

    def remove(self, statements):
        return

    def contains(self, statements):
        return


class RdfException(Exception):
    INTERNAL_ERROR = 0
    FEATURE_NOT_SUPPORTED = 1
    INVALID_FLAG = 2
    INVALID_CONTAINER_TYPE = 3
    INVALID_REGEX_STATEMENT = 4
    INVALID_ARGUMENT = 5
    INVALID_CONTAINER_ITEM_TYPE = 6
    ABOUT_EACH_OBJECT_NOT_CONTAINER = 100
    MISSING_DRIVER = 200

    def __init__(self, errorCode, *args):
        import MessageSource
        self.args = args
        self.errorCode = errorCode
        Exception.__init__(self, MessageSource.RDF_ERROR_MESSAGES[errorCode]%args)


class ParseException(Exception):
    FEATURE_NOT_SUPPORTED = 1
    INVALID_PREDICATE = 10
    INVALID_CONTAINER_PROPERTY = 20
    INVALID_CONTAINER_TYPE = 30
    MULTIPLE_VALUE_OBJECTS = 40
    NONEMPTY_PROPELT_WITH_PROPATTRS = 50
    NONEMPTY_PROPELT_WITH_RESATTR = 51

    def __init__(self, errorCode, *args):
        import MessageSource
        self.args = args
        self.errorCode = errorCode
        Exception.__init__(self, MessageSource.PARSE_ERROR_MESSAGES[errorCode]%args)

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