comparison frontends/src/jp/constants.py @ 1969:5fbe09b9b568

merged main branch
author Goffi <goffi@goffi.org>
date Fri, 24 Jun 2016 22:41:28 +0200
parents ac89f455fcbf
children 3d633458d962
comparison
equal deleted inserted replaced
1967:de6faf9be715 1969:5fbe09b9b568
21 21
22 22
23 class Const(constants.Const): 23 class Const(constants.Const):
24 24
25 APP_NAME = "jp" 25 APP_NAME = "jp"
26 PLUGIN_CMD = "commands"
27 PLUGIN_OUTPUT = "outputs"
28 OUTPUT_TEXT = 'text' # blob of unicode text
29 OUTPUT_DICT = 'dict'
30 OUTPUT_LIST = 'list'
31 OUTPUT_TYPES = (OUTPUT_TEXT, OUTPUT_DICT, OUTPUT_LIST)
32
33 # exit codes
34 EXIT_OK = 0
35 EXIT_ERROR = 1 # generic error, when nothing else match
36 EXIT_BAD_ARG = 2 # arguments given by user are bad
37 EXIT_FILE_NOT_EXE = 126 # a file to be executed was found, but it was not an executable utility (cf. man 1 exit)
38 EXIT_CMD_NOT_FOUND = 127 # a utility to be executed was not found (cf. man 1 exit)
39 EXIT_SIGNAL_INT = 128 # a command was interrupted by a signal (cf. man 1 exit)