changeset 857:3d0661b8aaa4

merged with beta branch
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 18 Dec 2010 14:45:58 +0100
parents 06cfcede13ab (diff) 86cbf8e6d76a (current diff)
children 4c123ade8485
files celeryconfig.py docs/changelog.rst docs/index.rst docs/installation.rst docs/setup.rst rhodecode/__init__.py rhodecode/controllers/hg.py rhodecode/lib/celerylib/__init__.py rhodecode/lib/helpers.py rhodecode/lib/hooks.py rhodecode/lib/utils.py rhodecode/model/db.py rhodecode/model/hg_model.py rhodecode/model/permission_model.py rhodecode/model/repo_model.py rhodecode/model/user_model.py rhodecode/public/css/style.css rhodecode/public/images/hgicon.png rhodecode/public/images/icons/success.png rhodecode/public/images/icons/warning.png rhodecode/public/images/title_tab_selected.png rhodecode/public/js/yui2.js rhodecode/templates/files/files_browser.html rhodecode/templates/summary/summary.html rhodecode/tests/__init__.py rhodecode/tests/functional/test_changelog.py rhodecode/tests/functional/test_hg.py rhodecode/tests/functional/test_permissions.py rhodecode/tests/functional/test_repos.py rhodecode/tests/functional/test_users.py rhodecode/tests/vcs_test.tar.gz setup.cfg setup.py
diffstat 6 files changed, 8 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/.hgtags	Fri Dec 17 23:38:23 2010 +0100
+++ b/.hgtags	Sat Dec 18 14:45:58 2010 +0100
@@ -23,3 +23,6 @@
 2fa16ec5822da0c6fade3dd1ed9b6c0655e5dbbf v0.8.4
 16ba57d8fe2317c49dbd422afd07ab497687aa02 v0.8.5
 53128b6b9a4ddb6ee9554cbb83a082a6d1316b42 v1.0.0rc4
+afd98d1f817e6a6b52172735c22160239e615a6b v1.0.0
+bee56f209c40a6880f2f633b02227b5ee1f8ff5a v1.0.1
+d85b0948e53925ebbbc49e9f7967013a04f866e9 v1.0.2
--- a/docs/changelog.rst	Fri Dec 17 23:38:23 2010 +0100
+++ b/docs/changelog.rst	Sat Dec 18 14:45:58 2010 +0100
@@ -3,7 +3,7 @@
 Changelog
 =========
 
-1.1.0 (**2010-XX-XX**)
+1.1.0 (**2010-12-18**)
 ----------------------
 
 :status: in-progress
--- a/rhodecode/__init__.py	Fri Dec 17 23:38:23 2010 +0100
+++ b/rhodecode/__init__.py	Sat Dec 18 14:45:58 2010 +0100
@@ -27,7 +27,7 @@
 # MA  02110-1301, USA.
 
 
-VERSION = (1, 1, 0, 'beta')
+VERSION = (1, 1, 0)
 __version__ = '.'.join((str(each) for each in VERSION[:4]))
 __dbversion__ = 2 #defines current db version for migrations
 
--- a/rhodecode/templates/search/search_content.html	Fri Dec 17 23:38:23 2010 +0100
+++ b/rhodecode/templates/search/search_content.html	Sat Dec 18 14:45:58 2010 +0100
@@ -25,7 +25,7 @@
     %endif      
 %endfor
 %if c.cur_query and c.formated_results:
-<div class="pagination-wh pagination-left">
+<div class="pagination-wh pagination-left" style="padding-left:16px">
     ${c.formated_results.pager('$link_previous ~2~ $link_next')}
 </div>  
 %endif
\ No newline at end of file
--- a/setup.cfg	Fri Dec 17 23:38:23 2010 +0100
+++ b/setup.cfg	Sat Dec 18 14:45:58 2010 +0100
@@ -1,5 +1,5 @@
 [egg_info]
-tag_build = beta
+tag_build = 
 tag_svn_revision = true
 
 [easy_install]
--- a/setup.py	Fri Dec 17 23:38:23 2010 +0100
+++ b/setup.py	Sat Dec 18 14:45:58 2010 +0100
@@ -16,7 +16,7 @@
         "babel",
     ]
 
-classifiers = ['Development Status :: 4 - Beta',
+classifiers = ['Development Status :: 5 - Production/Stable',
                'Environment :: Web Environment',
                'Framework :: Pylons',
                'Intended Audience :: Developers',