call_id was broken since 2.0 - use GetVersion dedicated keys call_id_support' and...
[sfa.git] / sfa / util / version.py.in
1 ### updated by the toplevel Makefile
2 version_tag="@VERSIONTAG@"
3 scm_url="@SCMURL@"
4 import socket
5  
6 def version_core (more={}):
7     core = { 'code_tag' : version_tag,
8              'code_url' : scm_url,
9              'hostname' : socket.gethostname(),
10              'call_id_support' : True,
11              'options_support' : True,
12              }
13     core.update(more)
14     return core