comparison rhodecode/__init__.py @ 3125:9b92cf5a0cca beta

Added UserIpMap interface for allowed IP addresses and IP restriction access ref #264 IP restriction for users and user groups
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 30 Dec 2012 23:06:03 +0100
parents 82a6d17d05bb
children cd50d1b5f35b 54bea1081508
comparison
equal deleted inserted replaced
3124:6659c5af04e7 3125:9b92cf5a0cca
36 except ImportError: 36 except ImportError:
37 pass 37 pass
38 38
39 __version__ = ('.'.join((str(each) for each in VERSION[:3])) + 39 __version__ = ('.'.join((str(each) for each in VERSION[:3])) +
40 '.'.join(VERSION[3:])) 40 '.'.join(VERSION[3:]))
41 __dbversion__ = 9 # defines current db version for migrations 41 __dbversion__ = 10 # defines current db version for migrations
42 __platform__ = platform.system() 42 __platform__ = platform.system()
43 __license__ = 'GPLv3' 43 __license__ = 'GPLv3'
44 __py_version__ = sys.version_info 44 __py_version__ = sys.version_info
45 __author__ = 'Marcin Kuzminski' 45 __author__ = 'Marcin Kuzminski'
46 __url__ = 'http://rhodecode.org' 46 __url__ = 'http://rhodecode.org'