about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Update the docs to reflect changes to codeZoran Plesivcak2020-11-083-6/+6
| | | | | | | Changes to code in: - previous commit (THIS_COMMIT^) - c826091a74e88102ca1795ab9798dd8b8498f653
* Allow $PAGER to contain spaces (handle pager flags)Zoran Plesivcak2020-11-081-8/+8
| | | | | | | | | | | | | | This change is similar to: c826091a74e88102ca1795ab9798dd8b8498f653 . See the referenced commit for the explanation. Note that $PAGER is not a strictly better than "$PAGER". In the cases where the pager executable in PAGER contains spaces e.g. "/path with spaces/bin/less" the "$PAGER" works correctly and $PAGER doesn't. This occurrence is much less frequent than pager in PAGER containing flags, e.g. "less -R" which works correctly with $PAGER, but doesn't with "$PAGER". This change is a desirable trade-off.
* Merge branch 'swalladge-extra-rifle-apps'toonn2020-11-061-12/+19
|\
| * Fix rifle rule alignmenttoonn2020-11-061-10/+10
| |
| * Add support for more apps in rifle default configSamuel Walladge2019-10-231-6/+13
| | | | | | | | | | | | | | | | | | | | - audacity - firefox dev edition - scribus projects - sc (cli spreadsheet editor) - krita image editor Also fix existing regex patterns for video|audio.
* | Merge branch 'cache-hash'toonn2020-10-041-1/+1
|\ \
| * | Fix encoding of cached filenamestoonn2020-10-041-1/+1
|/ / | | | | | | | | | | | | | | A typo crept into the encoding of paths used for the hashes of cached images. The error handler "backslashescape" doesn't exist, it should've been "backslashreplace." Fixes #2119
* | Merge branch 'multipane-selection'toonn2020-08-012-2/+22
|\ \
| * | Add initialization and fix indentationtoonn2020-08-011-3/+6
| | |
| * | Selection in multipane viewmode was misleadingtoonn2020-07-272-2/+19
|/ / | | | | | | | | | | | | | | | | | | | | Tabs only remembered the pointer of their browsercolumn. This lead to erroneous rendering of the selection. By additionally keeping track of the object which is pointed at we can restore the remembered pointer even when sorting or (un)filtering completely invalidates the remembered index. Fixes #1511 Fixes #1995
* | Merge branch 'cache-hash'toonn2020-07-241-4/+5
|\ \
| * | Fix unicode decode issues in py2toonn2020-07-241-4/+5
|/ / | | | | | | | | | | | | | | | | | | | | | | | | Python 2 implicitly decodes strings as ASCII or the system's default encoding before encoding a string to bytes. This results in problems if the string already contains characters outside the ASCII range (> 127). I reintroduced this bug thinking encoding a string in both python 2 and 3 would be harmless. Actually swapped the order of the inode and the path which should've happened in the previous commit. Fixes #2054
* | Merge branch 'cache-hash'toonn2020-07-081-8/+13
|\ \
| * | Fix check for Nonetoonn2020-07-081-2/+2
| | | | | | | | | | | | | | | `not inode` would fail if the inode happened to be 0. Switched from appending to prepending the inode to avoid appending to long strings.
| * | Add path to cache hashtoonn2020-07-081-11/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Without the `st_dev` the `st_ino` is no longer enough to uniquely identify a file. A disadvantage of including the mtime in the hash is that changed previews don't overwrite the old cache path so the cached grows faster. We use the path to the file to uniquely identify a device. We concatenate it with the `st_ino` which ensures that replacing a file is not enough to cause a collision. This is hashed to create the cache path. Every time we check whether a preview is cached we verify that the file being preview is as old or older than the cached preview. The only differences from the original scheme are the algorithm (SHA-512 now), accepting previews of with the same mtime as the original file and including the inode identifier in the hash.
| * | Drop st_dev from sha512_encodetoonn2020-07-071-2/+1
| | | | | | | | | | | | | | | | | | The device identifier is not necessarily consistent across reboots or system crashes. Since we don't want to regenerate cached previews at every reboot we can't rely on it.
| * | Switch to packing fields for sha512_encodetoonn2020-07-071-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The easy solution was to render the `st_dev, st_ino, st_mtime` to a string and encode that before hashing. This solution is more efficient because it packs the numbers as bytes rather than the digits. Technically POSIX.1 does not specify an upper limit on the sizes for these fields. I think it's safe to say none of the major operating systems will use more than 8 bytes/64 bits any time soon.
| * | Fix indendation of sha512_encodetoonn2020-07-071-4/+5
| | |
| * | Hashlib requires objects implementing the buffer APItoonn2020-07-071-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The hashes from python's hashlib only support objects that implement the buffer API. Bytes objects (python 2 string, python 3 string.encode()) are such objects. Passing fields from a stat object to a hash directly caused crashes whenever ranger checked for an image preview. Fixes #2032
* | | Merge pull request #2034 from toonn/py-version-checksWojciech Siewierski2020-07-071-4/+6
|\ \ \ | | | | | | | | Missed a couple py3 version checks
| * | | Refactor _add_character as static methodtoonn2020-07-071-40/+40
| | | |
| * | | Refactor _add_character as functiontoonn2020-07-071-39/+40
| | | | | | | | | | | | | | | | | | | | | | | | The `_add_character` method no longer has any `self` references because of the change in the version check so pylint insists on it being a function instead.
| * | | Missed a couple py3 version checkstoonn2020-07-071-3/+4
|/ / /
* | | Merge branch 'windowserror'toonn2020-07-051-11/+1
|\ \ \
| * | | Remove WindowsErrortoonn2020-07-051-11/+1
|/ / / | | | | | | | | | | | | | | | | | | `WindowsError` has been merged into `OSError` so we can no longer rely on it for disambiguation. This means a previously silent error on Windows regarding the copying of file access times will no longer be silent.
* | | Merge branch 'pylint3k'toonn2020-07-0526-102/+356
|\ \ \
| * | | Apply some PEP8 love to the pylint module and teststoonn2020-07-052-20/+17
| | | |
| * | | Fix two issues caught by pylint3ktoonn2020-07-052-1/+2
| | | | | | | | | | | | | | | | | | | | One lacking `from __future__ import absolute_import` and one implicit-format-spec (a custom check!) : )
| * | | Implement python 2 compatibility checkstoonn2020-07-055-0/+293
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We have been stuck on pylint <2 for a long time now because it dropped some of the python 2 lints we rely on. We maintain compatibility with python 2.6+ and 3.5+ and a lack of lints makes especially the former much harder. Incompatibilities had already snuck in in the form of implicit format specs. By implementing a custom checker we can make sure this doesn't happen again.
| * | | Document expected failure of GH Actiontoonn2020-07-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Github Actions don't support some of our tests, due to `ncurses`. This Action fails intentionally so it might get fixed once we figure it out. If we invert the failure condition to "make CI green" we might forget about it.
| * | | Clarify excluded tests for github workflowtoonn2020-07-052-3/+3
| | | | | | | | | | | | | | | | | | | | Add pytest to the failing workflow because otherwise it's not run with python 2.7.
| * | | Possible bug caught in reviewtoonn2020-07-053-5/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Forgot to cast the `programs` generator to a list when dropping the unnecessary continuation. Miscellaneous alignment fixes.
| * | | Drop explicit return Nonetoonn2020-07-051-1/+0
| | | |
| * | | Use chained comparison instead of multiple clausestoonn2020-07-054-9/+9
| | | |
| * | | Adjust comment indentationtoonn2020-07-051-7/+7
| | | |
| * | | Drop unnecessary if-expressionstoonn2020-07-053-5/+6
| | | |
| * | | Use in instead of multiple equality clausestoonn2020-07-052-6/+6
| | | |
| * | | Drop unnecessary comprehensionstoonn2020-07-052-7/+3
| | | | | | | | | | | | | | | | | | | | It's unclear why these comprehensions were used, maybe as a way of cloning the lists? However, this does not seem necessary.
| * | | Drop redundant try-excepttoonn2020-07-051-4/+2
| | | |
| * | | Switch to testing after lower casing for consistencytoonn2020-07-051-2/+2
| | | |
| * | | Drop redundant pass statementstoonn2020-07-053-11/+0
| | | | | | | | | | | | | | | | | | | | Because of the docstrings the function bodies aren't empty and pass is not required.
| * | | Add local pylint disablestoonn2020-07-053-2/+4
| | | |
| * | | Disable dict-comprehension suggestiontoonn2020-07-051-0/+2
| | | | | | | | | | | | | | | | | | | | Dict comprehensions were add in 2.7 so we can't use them for COMPAT reasons.
| * | | Disable spurious warning, name is obviously passedtoonn2020-07-051-0/+1
| | | |
| * | | Replace if statement with dict.get with defaulttoonn2020-07-051-8/+2
| | | |
| * | | Add global Pylint ignorestoonn2020-07-052-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `no-else-break/continue/raise/return` because they're nonsense and result in actively less readable code. `useless-object-inheritance` because that's a py3-ism. `import-outside-toplevel` because we use this in many places to good effect.
| * | | Prepare for Pylint transition from versions <2toonn2020-07-055-40/+17
|/ / /
* | | Merge branch 'touch-recursive'toonn2020-07-051-1/+5
|\ \ \
| * | | :touch create missing directoriestoonn2020-06-161-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `:mkdir` creates directories recursively like `mkdir -p`. `:touch` failed when parent directories didn't exist, for convenience and consistency it now creates missing directories recursively. Fixes #1998
* | | | Merge branch 'color-line-numbers'toonn2020-07-055-5/+16
|\ \ \ \