Changeset - 000b675e7c1d
[Not reviewed]
default
0 6 0
Marcin Kuzminski - 15 years ago 2010-10-10 17:27:46
marcin@python-works.com
bumped version, some spelling fixes
6 files changed with 11 insertions and 11 deletions:
0 comments (0 inline, 0 general)
rhodecode/__init__.py
Show inline comments
 
#!/usr/bin/env python
 
# encoding: utf-8
 
# Hg app, a web based mercurial repository managment based on pylons
 
# RhodeCode, a web based repository management based on pylons
 
# Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
 
# 
 
# This program is free software; you can redistribute it and/or
 
@@ -19,12 +19,12 @@
 
# MA  02110-1301, USA.
 
"""
 
Created on April 9, 2010
 
Hg app, a web based mercurial repository managment based on pylons
 
RhodeCode, a web based repository management based on pylons
 
versioning implementation: http://semver.org/
 
@author: marcink
 
"""
 

	
 
VERSION = (0, 8, 5, 'beta')
 
VERSION = (1, 0, 0, 'rc1')
 

	
 
__version__ = '.'.join((str(each) for each in VERSION[:4]))
 

	
rhodecode/lib/db_manage.py
Show inline comments
 
#!/usr/bin/env python
 
# encoding: utf-8
 
# database managment for hg app
 
# database management for RhodeCode
 
# Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
 
#
 
# This program is free software; you can redistribute it and/or
 
@@ -20,7 +20,7 @@
 

	
 
"""
 
Created on April 10, 2010
 
database managment and creation for hg app
 
database management and creation for RhodeCode
 
@author: marcink
 
"""
 

	
rhodecode/lib/utils.py
Show inline comments
 
#!/usr/bin/env python
 
# encoding: utf-8
 
# Utilities for hg app
 
# Utilities for RhodeCode
 
# Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
 
# This program is free software; you can redistribute it and/or
 
# modify it under the terms of the GNU General Public License
 
@@ -19,7 +19,7 @@
 

	
 
"""
 
Created on April 18, 2010
 
Utilities for hg app
 
Utilities for RhodeCode
 
@author: marcink
 
"""
 
from beaker.cache import cache_region
rhodecode/model/hg_model.py
Show inline comments
 
#!/usr/bin/env python
 
# encoding: utf-8
 
# Model for hg app
 
# Model for RhodeCode
 
# Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
 
# 
 
# This program is free software; you can redistribute it and/or
 
@@ -19,7 +19,7 @@
 
# MA  02110-1301, USA.
 
"""
 
Created on April 9, 2010
 
Model for hg app
 
Model for RhodeCode
 
@author: marcink
 
"""
 
from beaker.cache import cache_region
rhodecode/templates/base/base.html
Show inline comments
 
@@ -66,7 +66,7 @@
 

	
 
	<!-- footer -->
 
	<div id="footer">
 
	    <p>Hg App ${c.rhodecode_version} &copy; 2010 by Marcin Kuzminski</p>
 
	    <p>RhodeCode ${c.rhodecode_version} &copy; 2010 by Marcin Kuzminski</p>
 
        <script type="text/javascript">${h.tooltip.activate()}</script>	    
 
	</div>
 
	<!-- end footer -->
rhodecode/templates/files/file_diff.html
Show inline comments
 
<%inherit file="/base/base.html"/>
 

	
 
<%def name="title()">
 
    ${_('Repository managment')}
 
    ${_('Repository management')}
 
</%def>
 
<%def name="breadcrumbs_links()">
 
    ${h.link_to(u'Home',h.url('/'))}
0 comments (0 inline, 0 general)