227
+ − 1 import sys , os.path
72
+ − 2 import __builtin__
227
+ − 3 import sat_frontends.wix
+ − 4
+ − 5 wix_root = os . path . dirname ( sat_frontends . wix . __file__ )
72
+ − 6
191
+ − 7 __builtin__ . __dict__ [ 'APP_NAME' ] = "Wix"
227
+ − 8 __builtin__ . __dict__ [ 'LICENCE_PATH' ] = os . path . join ( wix_root , "COPYING" )
+ − 9 __builtin__ . __dict__ [ 'IMAGE_DIR' ] = os . path . join ( wix_root , 'images' )
72
+ − 10
+ − 11 __builtin__ . __dict__ [ 'msgOFFLINE' ] = _ ( "offline" )
+ − 12 __builtin__ . __dict__ [ 'msgONLINE' ] = _ ( "online" )
+ − 13 __builtin__ . __dict__ [ 'const_DEFAULT_GROUP' ] = "Unclassed"
+ − 14 __builtin__ . __dict__ [ 'const_STATUS' ] = [( "" , _ ( "Online" ), None ),
+ − 15 ( "chat" , _ ( "Free for chat" ), "green" ),
+ − 16 ( "away" , _ ( "AFK" ), "brown" ),
+ − 17 ( "dnd" , _ ( "DND" ), "red" ),
+ − 18 ( "xa" , _ ( "Away" ), "red" )]