Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

#!/usr/bin/env python 

 

""" 

@file ion/core/ionconst.py 

@author Michael Meisinger 

@brief definitions of ION packages wide constants 

""" 

 

# Name of central logginf configuration file 

LOGCONF_FILENAME = 'res/logging/ionlogging.conf' 

 

# Name of environment variable to override logging configuration 

ION_ALTERNATE_LOGGING_CONF = "ION_ALTERNATE_LOGGING_CONF" 

 

# Name of central ION configuration file (not to be changed) 

ION_CONF_FILENAME = 'res/config/ion.config' 

 

# Name of local ION config override file (can be changed locally) 

ION_LOCAL_CONF_FILENAME = 'res/config/ionlocal.config' 

 

# ION master version 

from ion.core.version import version 

VERSION = version.base() 

 

# ION Common Message Format - HEADERS 

IONMSG_HDR_PROTOCOL = 'protocol' 

IONMSG_HDR_PERFORMATIVE = 'performative' 

IONMSG_HDR_ACTION = 'op'