comparison sat_frontends/jp/constants.py @ 2707:b156b78b8f9a

jp (output): new OUTPUT_MESS output to handle data containing chat messages
author Goffi <goffi@goffi.org>
date Sat, 01 Dec 2018 10:48:01 +0100
parents 56f94936df1e
children 003b8b4b56a7
comparison
equal deleted inserted replaced
2706:bad70aa70c87 2707:b156b78b8f9a
29 OUTPUT_TEXT = u"text" # blob of unicode text 29 OUTPUT_TEXT = u"text" # blob of unicode text
30 OUTPUT_DICT = u"dict" # simple key/value dictionary 30 OUTPUT_DICT = u"dict" # simple key/value dictionary
31 OUTPUT_LIST = u"list" 31 OUTPUT_LIST = u"list"
32 OUTPUT_LIST_DICT = u"list_dict" # list of dictionaries 32 OUTPUT_LIST_DICT = u"list_dict" # list of dictionaries
33 OUTPUT_DICT_DICT = u"dict_dict" # dict of nested dictionaries 33 OUTPUT_DICT_DICT = u"dict_dict" # dict of nested dictionaries
34 OUTPUT_MESS = u"mess" # messages (chat)
34 OUTPUT_COMPLEX = u"complex" # complex data (e.g. multi-level dictionary) 35 OUTPUT_COMPLEX = u"complex" # complex data (e.g. multi-level dictionary)
35 OUTPUT_XML = u"xml" # XML node (as unicode string) 36 OUTPUT_XML = u"xml" # XML node (as unicode string)
36 OUTPUT_LIST_XML = u"list_xml" # list of XML nodes (as unicode strings) 37 OUTPUT_LIST_XML = u"list_xml" # list of XML nodes (as unicode strings)
37 OUTPUT_XMLUI = u"xmlui" # XMLUI as unicode string 38 OUTPUT_XMLUI = u"xmlui" # XMLUI as unicode string
38 OUTPUT_LIST_XMLUI = u"list_xmlui" # list of XMLUI (as unicode strings) 39 OUTPUT_LIST_XMLUI = u"list_xmlui" # list of XMLUI (as unicode strings)
40 OUTPUT_TEXT, 41 OUTPUT_TEXT,
41 OUTPUT_DICT, 42 OUTPUT_DICT,
42 OUTPUT_LIST, 43 OUTPUT_LIST,
43 OUTPUT_LIST_DICT, 44 OUTPUT_LIST_DICT,
44 OUTPUT_DICT_DICT, 45 OUTPUT_DICT_DICT,
46 OUTPUT_MESS,
45 OUTPUT_COMPLEX, 47 OUTPUT_COMPLEX,
46 OUTPUT_XML, 48 OUTPUT_XML,
47 OUTPUT_LIST_XML, 49 OUTPUT_LIST_XML,
48 OUTPUT_XMLUI, 50 OUTPUT_XMLUI,
49 OUTPUT_LIST_XMLUI, 51 OUTPUT_LIST_XMLUI,