Mercurial > libervia-backend
changeset 2232:4f389486667d
jp: added constant to handle ANSI code for header and subheaders
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 27 Apr 2017 00:57:04 +0200 |
parents | 230fc5b609a8 |
children | bf998d8626d9 |
files | frontends/src/jp/cmd_blog.py frontends/src/jp/constants.py |
diffstat | 2 files changed, 7 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/frontends/src/jp/cmd_blog.py Thu Apr 27 00:55:02 2017 +0200 +++ b/frontends/src/jp/cmd_blog.py Thu Apr 27 00:57:04 2017 +0200 @@ -67,7 +67,6 @@ INOTIFY_INSTALL = '"pip install inotify"' SECURE_UNLINK_MAX = 10 * 2 # we double value as there are 2 files per draft (content and metadata) SECURE_UNLINK_DIR = ".backup" -HEADER_ANSI = A.BOLD + A.FG_YELLOW MB_KEYS = (u"id", u"atom_id", u"updated", @@ -223,7 +222,7 @@ if OUTPUT_OPT_NO_HEADER in self.args.output_opts: header = u'' else: - header = HEADER_ANSI + k + u': ' + A.RESET + header = C.A_HEADER + k + u': ' + A.RESET lines.append(header + data[k]) return u'\n'.join(lines) @@ -279,7 +278,7 @@ header = '' else: header = u"{k_fmt}{key}:{k_fmt_e} {sep}".format( - k_fmt = HEADER_ANSI, + k_fmt = C.A_HEADER, key = k, k_fmt_e = A.RESET, sep = u'\n' if 'content' in k else u'')
--- a/frontends/src/jp/constants.py Thu Apr 27 00:55:02 2017 +0200 +++ b/frontends/src/jp/constants.py Thu Apr 27 00:57:04 2017 +0200 @@ -18,6 +18,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. from sat_frontends.quick_frontend import constants +from sat.tools.common.ansi import ANSI as A class Const(constants.Const): @@ -33,6 +34,10 @@ OUTPUT_LIST_XML = u'list_xml' # list of XML nodes (as unicode strings) OUTPUT_TYPES = (OUTPUT_TEXT, OUTPUT_DICT, OUTPUT_LIST, OUTPUT_COMPLEX, OUTPUT_XML, OUTPUT_LIST_XML) + # ANSI + A_HEADER = A.BOLD + A.FG_YELLOW + A_SUBHEADER = A.BOLD + A.FG_RED + # exit codes EXIT_OK = 0 EXIT_ERROR = 1 # generic error, when nothing else match