comparison rhodecode/__init__.py @ 4186:7e5f8c12a3fc kallithea-2.2.5-rebrand

First step in two-part process to rename directories to kallithea. This first step is to change all references in the files where they refer to the old directory name.
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 02 Jul 2014 19:04:28 -0400
parents 48ad84558fb4
children
comparison
equal deleted inserted replaced
4185:aaa7c3331186 4186:7e5f8c12a3fc
10 # GNU General Public License for more details. 10 # GNU General Public License for more details.
11 # 11 #
12 # You should have received a copy of the GNU General Public License 12 # You should have received a copy of the GNU General Public License
13 # along with this program. If not, see <http://www.gnu.org/licenses/>. 13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14 """ 14 """
15 rhodecode.__init__ 15 kallithea.__init__
16 ~~~~~~~~~~~~~~~~~~ 16 ~~~~~~~~~~~~~~~~~~
17 17
18 RhodeCode, a web based repository management based on pylons 18 RhodeCode, a web based repository management based on pylons
19 versioning implementation: http://www.python.org/dev/peps/pep-0386/ 19 versioning implementation: http://www.python.org/dev/peps/pep-0386/
20 20
41 41
42 # Linked module for extensions 42 # Linked module for extensions
43 EXTENSIONS = {} 43 EXTENSIONS = {}
44 44
45 try: 45 try:
46 from rhodecode.lib import get_current_revision 46 from kallithea.lib import get_current_revision
47 _rev = get_current_revision(quiet=True) 47 _rev = get_current_revision(quiet=True)
48 if _rev and len(VERSION) > 3: 48 if _rev and len(VERSION) > 3:
49 VERSION += ('%s' % _rev[0],) 49 VERSION += ('%s' % _rev[0],)
50 except ImportError: 50 except ImportError:
51 pass 51 pass