Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
marcink
- Thu, 14 Jun 2012 00:06:35
Show More
rhodecode/lib/vcs/backends/git/repository.py
0
+1
-1
@@
-329,7
+329,7
b' class GitRepository(BaseRepository):'
329
@LazyProperty
329
@LazyProperty
330
def _parsed_refs ( self ):
330
def _parsed_refs ( self ):
331
refs = self . _repo . get_refs ()
331
refs = self . _repo . get_refs ()
332
keys = [( 'refs/heads/' , 'H' ),
332
keys = [( 'refs/heads/' , 'H' ),
333
( 'refs/remotes/origin/' , 'RH' ),
333
( 'refs/remotes/origin/' , 'RH' ),
334
( 'refs/tags/' , 'T' )]
334
( 'refs/tags/' , 'T' )]
335
_refs = {}
335
_refs = {}
rhodecode/templates/admin/users/user_edit.html
0
+2
-2
@@
-162,7
+162,7
b''
162
< div id = "perms" class = "table" >
162
< div id = "perms" class = "table" >
163
%for section in sorted(c.perm_user.permissions.keys()):
163
%for section in sorted(c.perm_user.permissions.keys()):
164
< div class = "perms_section_head" > ${section.replace("_"," ").capitalize()} </ div >
164
< div class = "perms_section_head" > ${section.replace("_"," ").capitalize()} </ div >
165
165
166
< div id = 'tbl_list_wrap_${section}' class = "yui-skin-sam" >
166
< div id = 'tbl_list_wrap_${section}' class = "yui-skin-sam" >
167
< table id = "tbl_list_${section}" >
167
< table id = "tbl_list_${section}" >
168
< thead >
168
< thead >
@@
-202,6
+202,6
b''
202
</ table >
202
</ table >
203
</ div >
203
</ div >
204
%endfor
204
%endfor
205
</ div >
205
</ div >
206
</ div >
206
</ div >
207
< /%def>
207
< /%def>
rhodecode/templates/base/root.html
0
+1
-1
@@
-45,7
+45,7
b''
45
'Group' : "${_('Group')}" ,
45
'Group' : "${_('Group')}" ,
46
'members' : "${_('members')}" ,
46
'members' : "${_('members')}" ,
47
'search truncated' : "${_('search truncated')}" ,
47
'search truncated' : "${_('search truncated')}" ,
48
'no matching files' : "${_('no matching files')}"
48
'no matching files' : "${_('no matching files')}"
49
49
50
};
50
};
51
var _TM = TRANSLATION_MAP ;
51
var _TM = TRANSLATION_MAP ;
rhodecode/templates/changeset/changeset_range.html
0
+1
-1
@@
-64,7
+64,7
b''
64
##${comment.comment_inline_form(cs)}
64
##${comment.comment_inline_form(cs)}
65
## diff block
65
## diff block
66
< h3 style = "padding-top:8px;" > ${h.link_to('r%s:%s' % (cs.revision,h.short_id(cs.raw_id)),h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))} </ h3 >
66
< h3 style = "padding-top:8px;" > ${h.link_to('r%s:%s' % (cs.revision,h.short_id(cs.raw_id)),h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))} </ h3 >
67
67
68
${diff_block.diff_block(c.changes[cs.raw_id])}
68
${diff_block.diff_block(c.changes[cs.raw_id])}
69
##${comment.comments(cs)}
69
##${comment.comments(cs)}
70
70
rhodecode/tests/vcs/base.py
0
+1
-1
@@
-76,7
+76,7
b' class BackendTestMixin(object):'
76
cls . imc . change ( FileNode ( node . path , content = node . content ))
76
cls . imc . change ( FileNode ( node . path , content = node . content ))
77
for node in commit . get ( 'removed' , []):
77
for node in commit . get ( 'removed' , []):
78
cls . imc . remove ( FileNode ( node . path ))
78
cls . imc . remove ( FileNode ( node . path ))
79
79
80
cls . tip = cls . imc . commit ( message = unicode ( commit [ 'message' ]),
80
cls . tip = cls . imc . commit ( message = unicode ( commit [ 'message' ]),
81
author = unicode ( commit [ 'author' ]),
81
author = unicode ( commit [ 'author' ]),
82
date = commit [ 'date' ])
82
date = commit [ 'date' ])
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages