comparison frontends/src/constants.py @ 796:46aa5ada61bf

core, frontends: XMLUI refactoring: - now there is a base XMLUI class. Frontends inherits from this class, and add their specific widgets/containers/behaviour - wix: param.py has been removed, as the same behaviour has been reimplemented through XMLUI - removed "misc" argument in XMLUI.__init__ - severals things are broken (gateway, directory search), following patches will fix them - core: elements names in xml_tools.dataForm2XMLUI now use a construction with category_name/param_name to avoid name conflicts (could happen with 2 parameters of the same name in differents categories).
author Goffi <goffi@goffi.org>
date Tue, 04 Feb 2014 18:02:35 +0100
parents 5642939d254e
children 1fe00f0c9a91
comparison
equal deleted inserted replaced
795:6625558371db 796:46aa5ada61bf
58 # from plugin_misc_text_syntaxes 58 # from plugin_misc_text_syntaxes
59 SYNTAX_XHTML = "XHTML" 59 SYNTAX_XHTML = "XHTML"
60 SYNTAX_CURRENT = "@CURRENT@" 60 SYNTAX_CURRENT = "@CURRENT@"
61 61
62 NO_SECURITY_LIMIT = -1 62 NO_SECURITY_LIMIT = -1
63
64 #XMLUI
65 SAT_FORM_PREFIX = "SAT_FORM_"
66 SAT_PARAM_SEPARATOR = "_XMLUI_PARAM_" # used to have unique elements names