ranger.fsobject.fsobject
index
/home/hut/ranger/ranger/fsobject/fsobject.py

# Copyright (c) 2009, 2010 hut <hut@lavabit.com>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

 
Classes
       
ranger.shared.FileManagerAware(ranger.shared.Awareness)
FileSystemObject(ranger.shared.mimetype.MimeTypeAware, ranger.shared.FileManagerAware)
ranger.shared.mimetype.MimeTypeAware(__builtin__.object)
FileSystemObject(ranger.shared.mimetype.MimeTypeAware, ranger.shared.FileManagerAware)

 
class FileSystemObject(ranger.shared.mimetype.MimeTypeAware, ranger.shared.FileManagerAware)
    
Method resolution order:
FileSystemObject
ranger.shared.mimetype.MimeTypeAware
ranger.shared.FileManagerAware
ranger.shared.Awareness
__builtin__.object

Methods defined here:
__init__(self, path)
__str__(self)
returns a string containing the absolute path
get_description(self)
get_permission_string(self)
go(self)
enter the directory if the filemanager is running
is_older_than(self, seconds)
returns whether this object wasn't use()d in the last n seconds
load(self)
reads useful information about the filesystem-object from the
filesystem and caches it for later use
load_if_outdated(self)
Calls load() if the currently cached information is outdated
or nonexistant.
load_once(self)
calls load() if it has not been called at least once yet
mark(self, boolean)
set_mimetype(self)
assign attributes such as self.video according to the mimetype
use(self)
mark the filesystem-object as used at the current time

Data and other attributes defined here:
accessible = False
audio = False
basename = None
basename_lower = None
container = False
content_loaded = False
dirname = None
document = False
exists = False
extension = None
force_load = False
image = False
infostring = None
is_directory = False
is_file = False
islink = False
last_used = None
loaded = False
marked = False
media = False
mimetype_tuple = ()
path = None
permissions = None
readlink = None
runnable = False
size = 0
stat = None
stopped = False
tagged = False
type = 'unknown'
video = False

Data descriptors inherited from ranger.shared.mimetype.MimeTypeAware:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from ranger.shared.mimetype.MimeTypeAware:
mimetypes = {}

Data and other attributes inherited from ranger.shared.FileManagerAware:
fm = None

 
Data
        BAD_INFO = None
CONTAINER_EXTENSIONS = ['rar', 'zip', 'tar', 'gz', 'bz', 'bz2', 'tgz', '7z', 'iso', 'cab']
DOCUMENT_BASENAMES = ['README', 'TODO', 'LICENSE', 'COPYING', 'INSTALL']
DOCUMENT_EXTENSIONS = ['pdf', 'doc', 'ppt', 'odt']
T_DIRECTORY = 'directory'
T_FILE = 'file'
T_NONEXISTANT = 'nonexistant'
T_UNKNOWN = 'unknown'