##// END OF EJS Templates
bumped version, some spelling fixes
marcink -
r569:000b675e default
parent child Browse files
Show More
@@ -1,6 +1,6 b''
1 1 #!/usr/bin/env python
2 2 # encoding: utf-8
3 # Hg app, a web based mercurial repository managment based on pylons
3 # RhodeCode, a web based repository management based on pylons
4 4 # Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
5 5 #
6 6 # This program is free software; you can redistribute it and/or
@@ -19,12 +19,12 b''
19 19 # MA 02110-1301, USA.
20 20 """
21 21 Created on April 9, 2010
22 Hg app, a web based mercurial repository managment based on pylons
22 RhodeCode, a web based repository management based on pylons
23 23 versioning implementation: http://semver.org/
24 24 @author: marcink
25 25 """
26 26
27 VERSION = (0, 8, 5, 'beta')
27 VERSION = (1, 0, 0, 'rc1')
28 28
29 29 __version__ = '.'.join((str(each) for each in VERSION[:4]))
30 30
@@ -1,6 +1,6 b''
1 1 #!/usr/bin/env python
2 2 # encoding: utf-8
3 # database managment for hg app
3 # database management for RhodeCode
4 4 # Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
5 5 #
6 6 # This program is free software; you can redistribute it and/or
@@ -20,7 +20,7 b''
20 20
21 21 """
22 22 Created on April 10, 2010
23 database managment and creation for hg app
23 database management and creation for RhodeCode
24 24 @author: marcink
25 25 """
26 26
@@ -1,6 +1,6 b''
1 1 #!/usr/bin/env python
2 2 # encoding: utf-8
3 # Utilities for hg app
3 # Utilities for RhodeCode
4 4 # Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
5 5 # This program is free software; you can redistribute it and/or
6 6 # modify it under the terms of the GNU General Public License
@@ -19,7 +19,7 b''
19 19
20 20 """
21 21 Created on April 18, 2010
22 Utilities for hg app
22 Utilities for RhodeCode
23 23 @author: marcink
24 24 """
25 25 from beaker.cache import cache_region
@@ -1,6 +1,6 b''
1 1 #!/usr/bin/env python
2 2 # encoding: utf-8
3 # Model for hg app
3 # Model for RhodeCode
4 4 # Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
5 5 #
6 6 # This program is free software; you can redistribute it and/or
@@ -19,7 +19,7 b''
19 19 # MA 02110-1301, USA.
20 20 """
21 21 Created on April 9, 2010
22 Model for hg app
22 Model for RhodeCode
23 23 @author: marcink
24 24 """
25 25 from beaker.cache import cache_region
@@ -66,7 +66,7 b''
66 66
67 67 <!-- footer -->
68 68 <div id="footer">
69 <p>Hg App ${c.rhodecode_version} &copy; 2010 by Marcin Kuzminski</p>
69 <p>RhodeCode ${c.rhodecode_version} &copy; 2010 by Marcin Kuzminski</p>
70 70 <script type="text/javascript">${h.tooltip.activate()}</script>
71 71 </div>
72 72 <!-- end footer -->
@@ -1,7 +1,7 b''
1 1 <%inherit file="/base/base.html"/>
2 2
3 3 <%def name="title()">
4 ${_('Repository managment')}
4 ${_('Repository management')}
5 5 </%def>
6 6 <%def name="breadcrumbs_links()">
7 7 ${h.link_to(u'Home',h.url('/'))}
General Comments 0
You need to be logged in to leave comments. Login now