Show More
@@ -1,6 +1,6 b'' | |||
|
1 | 1 | #!/usr/bin/env python |
|
2 | 2 | # encoding: utf-8 |
|
3 |
# |
|
|
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 |
|
|
|
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, |
|
|
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 |
|
|
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 |
|
|
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 |
|
|
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 |
|
|
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 |
|
|
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 |
|
|
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> |
|
|
69 | <p>RhodeCode ${c.rhodecode_version} © 2010 by Marcin Kuzminski</p> | |
|
70 | 70 | <script type="text/javascript">${h.tooltip.activate()}</script> |
|
71 | 71 | </div> |
|
72 | 72 | <!-- end footer --> |
General Comments 0
You need to be logged in to leave comments.
Login now