Changeset - 903aadbf9047
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 15 years ago 2011-02-15 23:03:33
marcin@python-works.com
updated changelog, small fix for journal
2 files changed with 11 insertions and 4 deletions:
0 comments (0 inline, 0 general)
docs/changelog.rst
Show inline comments
 
@@ -27,6 +27,9 @@ news
 
- implemented #93 customizable changelog on combined revision ranges - 
 
  equivalent of githubs compare view 
 
- implemented #108 extended and more powerfull LDAP configuration
 
- implemented #56 users groups
 
- major code rewrites optimized codes for speed and memory usage
 
- raw and diff downloads are now in git format
 

	
 
fixes
 
-----
 
@@ -43,8 +46,12 @@ fixes
 
- registration,password reset and login boxes share the same title as main 
 
  application now
 
- fixed problems with getting setting for celery from .ini files
 

	
 

	
 
- journal fork fixes
 
- fixed #113: to high permissions to fork repository
 
- fixed static files paths links to use of url() method
 
- db transaction fixes when filesystem repositry creation failed
 
- removed issue with space inside renamed repository after deletion
 
 
 
1.1.2 (**2011-01-12**)
 
======================
 

	
rhodecode/lib/helpers.py
Show inline comments
 
@@ -486,12 +486,12 @@ def action_parser(user_log):
 

	
 
    def get_fork_name():
 
        repo_name = action_params
 
        return str(link_to(action_params, url('summary_home',
 
        return _('fork name ') + str(link_to(action_params, url('summary_home',
 
                                          repo_name=repo_name,)))
 

	
 
    map = {'user_deleted_repo':(_('[deleted] repository'), None),
 
           'user_created_repo':(_('[created] repository'), None),
 
           'user_forked_repo':(_('[forked] repository as:'), get_fork_name),
 
           'user_forked_repo':(_('[forked] repository'), get_fork_name),
 
           'user_updated_repo':(_('[updated] repository'), None),
 
           'admin_deleted_repo':(_('[delete] repository'), None),
 
           'admin_created_repo':(_('[created] repository'), None),
0 comments (0 inline, 0 general)