about summary refs log tree commit diff stats
path: root/html/021check_instruction.cc.html
Commit message (Collapse)AuthorAgeFilesLines
* 3764 - better colors for cross-linksKartik K. Agaram2017-03-081-4/+5
|
* 3761Kartik K. Agaram2017-03-071-44/+45
|
* 3752 - fix a couple of segfaultsKartik K. Agaram2017-03-021-116/+117
| | | | Thanks Ella Couch for running into these.
* 3750Kartik K. Agaram2017-03-021-5/+5
|
* 3749Kartik K. Agaram2017-03-021-5/+5
|
* 3746Kartik K. Agaram2017-02-071-1/+1
|
* 3716Kartik K. Agaram2016-12-261-0/+2
| | | | Make hyperlinks less salient in the rendered html since there's so many of them.
* 3713 - cross-link calls with definitions in htmlKartik K. Agaram2016-12-261-40/+40
|
* 3710Kartik K. Agaram2016-12-261-240/+240
| | | | | Turns out we don't need to explicitly add anchors for each line. Vim's TOhtml has magic for that out of the box.
* 3709 - line numbers in htmlKartik K. Agaram2016-12-261-245/+269
| | | | | | Each line number also gets an anchor name, but I'm not hyperlinking them for now because I don't want to encourage bookmarking these links just yet. They aren't permalinks because every revision may change what's at any given line number.
* 3707Kartik K. Agaram2016-12-121-2/+1
| | | | | | | | | | | | | | | | | | Be more disciplined about tagging 2 different concepts in the codebase: a) Use the phrase "later layers" to highlight places where a layer doesn't have the simplest possible self-contained implementation. b) Use the word "hook" to point out functions that exist purely to provide waypoints for extension by future layers. Since both these only make sense in the pre-tangled representation of the codebase, using '//:' and '#:' comments to get them stripped out of tangled output. (Though '#:' comments still make it to tangled output at the moment. Let's see if we use it enough to be worth supporting. Scenarios are pretty unreadable in tangled output anyway.)
* 3667Kartik K. Agaram2016-11-111-6/+11
|
* 3544Kartik K. Agaram2016-10-221-1/+1
|
* 3543Kartik K. Agaram2016-10-221-1/+1
|
* 3524Kartik K. Agaram2016-10-201-2/+2
|
* 3431Kartik K. Agaram2016-09-301-7/+8
| | | | | Improvements to syntax highlighting, particularly for Mu code in C++ files.
* 3395Kartik K. Agaram2016-09-171-17/+16
|
* 3315Kartik K. Agaram2016-09-101-29/+47
|
* 3219Kartik K. Agaram2016-08-171-0/+7
| | | | | | | | Trying keeping html in the master branch: https://github.com/blog/2228-simpler-github-pages-publishing Let's see if https://akkartik.github.io/mu updates after I push this commit to just the master branch.
* 3158Kartik K. Agaram2016-07-271-1/+1
|
* 3102Kartik K. Agaram2016-07-051-2/+2
|
* 2996Kartik K. Agaram2016-05-211-20/+16
|
* 2866Kartik K. Agaram2016-04-251-0/+13
|
* 2812Kartik K. Agaram2016-03-271-15/+22
|
* 2745Kartik K. Agaram2016-03-091-1/+1
|
* 2744Kartik K. Agaram2016-03-091-3/+3
| | | | Tweak colors and font-/span> = False path = None basename = None basename_lower = None _shell_escaped_basename = None _filetype = None dirname = None extension = None exists = False accessible = False marked = False tagged = False loaded = False runnable = False islink = False readlink = None stat = None infostring = None permissions = None type = T_UNKNOWN size = 0 last_used = None stopped = False video = False image = False audio = False media = False document = False container = False mimetype_tuple = () def __init__(self, path): MimeTypeAware.__init__(self) if type(self) == FileSystemObject: raise TypeError("Cannot initialize abstract class FileSystemObject") from os.path import abspath, basename, dirname, realpath path = abspath(path) self.path = path self.basename = basename(path) self.basename_lower = self.basename.lower() self.dirname = dirname(path) self.realpath = realpath(path) try: self.extension = self.basename[self.basename.rindex('.') + 1:].lower() except ValueError: self.extension = None self.set_mimetype() self.use() @property def shell_escaped_basename(self): if self._shell_escaped_basename is None: self._shell_escaped_basename = shell_escape(self.basename) return self._shell_escaped_basename @property def filetype(self): if self._filetype is None: import subprocess try: got = subprocess.Popen(["file", '-Lb', '--mime-type',\ self.path], stdout=subprocess.PIPE).communicate()[0] except OSError: self._filetype = '' else: self._filetype = got return self._filetype def get_description(self): return "Loading " + str(self) def __str__(self): """returns a string containing the absolute path""" return str(self.path) def use(self): """mark the filesystem-object as used at the current time""" import time self.last_used = time.time() def is_older_than(self, seconds): """returns whether this object wasn't use()d in the last n seconds""" import time return self.last_used + seconds < time.time() def set_mimetype(self): """assign attributes such as self.video according to the mimetype""" self.mimetype = self.mimetypes.guess_type(self.basename, False)[0] if self.mimetype is None: self.mimetype = '' self.video = self.mimetype.startswith('video') self.image = self.mimetype.startswith('image') self.audio = self.mimetype.startswith('audio') self.media = self.video or self.image or self.audio self.document = self.mimetype.startswith('text') \ or (self.extension in DOCUMENT_EXTENSIONS) \ or (self.basename in DOCUMENT_BASENAMES) self.container = self.extension in CONTAINER_EXTENSIONS keys = ('video', 'audio', 'image', 'media', 'document', 'container') self.mimetype_tuple = tuple(key for key in keys if getattr(self, key)) if self.mimetype == '': self.mimetype = None def mark(self, boolean): directory = self.env.get_directory(self.dirname) directory.mark_item(self) def _mark(self, boolean): """Called by directory.mark_item() and similar functions""" self.marked = bool(boolean) def load(self): """ reads useful information about the filesystem-object from the filesystem and caches it for later use """ import os import stat from ranger.ext.human_readable import human_readable self.loaded = True try: self.stat = os.lstat(self.path) except OSError: self.stat = None self.islink = False self.accessible = False else: self.islink = stat.S_ISLNK(self.stat.st_mode) self.accessible = True if self.accessible and os.access(self.path, os.F_OK): self.exists = True self.accessible = True if os.path.isdir(self.path): self.type = T_DIRECTORY try: self.size = len(os.listdir(self.path)) self.infostring = ' %d' % self.size self.runnable = True except OSError: self.infostring = BAD_INFO self.runnable = False self.accessible = False elif os.path.isfile(self.path): self.type = T_FILE self.size = self.stat.st_size self.infostring = ' ' + human_readable(self.stat.st_size) else: self.type = T_UNKNOWN self.infostring = None else: if self.islink: self.infostring = '->' else: self.infostring = None self.type = T_NONEXISTANT self.exists = False self.runnable = False if self.islink: self.readlink = os.readlink(self.path) def get_permission_string(self): if self.permissions is not None: return self.permissions if self.accessible is False: return '----------' import stat mode = self.stat.st_mode if stat.S_ISDIR(mode): perms = ['d'] elif stat.S_ISLNK(mode): perms = ['l'] else: perms = ['-'] for who in ("USR", "GRP", "OTH"): for what in "RWX": if mode & getattr(stat, "S_I" + what + who): perms.append(what.lower()) else: perms.append('-') self.permissions = ''.join(perms) return self.permissions def load_once(self): """calls load() if it has not been called at least once yet""" if not self.loaded: self.load() return True return False def go(self): """enter the directory if the filemanager is running""" if self.fm: return self.fm.enter_dir(self.path) return False def load_if_outdated(self): """ Calls load() if the currently cached information is outdated or nonexistant. """ if self.load_once(): return True import os try: real_mtime = os.lstat(self.path).st_mtime except OSError: real_mtime = None if self.stat: cached_mtime = self.stat.st_mtime else: cached_mtime = 0 if real_mtime != cached_mtime: self.load() return True return False