##// END OF EJS Templates
whitespace cleanup
marcink -
r2453:d2a528b6 beta
parent child Browse files
Show More
@@ -329,7 +329,7 b' class GitRepository(BaseRepository):'
329 329 @LazyProperty
330 330 def _parsed_refs(self):
331 331 refs = self._repo.get_refs()
332 keys = [('refs/heads/', 'H'),
332 keys = [('refs/heads/', 'H'),
333 333 ('refs/remotes/origin/', 'RH'),
334 334 ('refs/tags/', 'T')]
335 335 _refs = {}
@@ -162,7 +162,7 b''
162 162 <div id="perms" class="table">
163 163 %for section in sorted(c.perm_user.permissions.keys()):
164 164 <div class="perms_section_head">${section.replace("_"," ").capitalize()}</div>
165
165
166 166 <div id='tbl_list_wrap_${section}' class="yui-skin-sam">
167 167 <table id="tbl_list_${section}">
168 168 <thead>
@@ -202,6 +202,6 b''
202 202 </table>
203 203 </div>
204 204 %endfor
205 </div>
205 </div>
206 206 </div>
207 207 </%def>
@@ -45,7 +45,7 b''
45 45 'Group':"${_('Group')}",
46 46 'members':"${_('members')}",
47 47 'search truncated': "${_('search truncated')}",
48 'no matching files': "${_('no matching files')}"
48 'no matching files': "${_('no matching files')}"
49 49
50 50 };
51 51 var _TM = TRANSLATION_MAP;
@@ -64,7 +64,7 b''
64 64 ##${comment.comment_inline_form(cs)}
65 65 ## diff block
66 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 68 ${diff_block.diff_block(c.changes[cs.raw_id])}
69 69 ##${comment.comments(cs)}
70 70
@@ -76,7 +76,7 b' class BackendTestMixin(object):'
76 76 cls.imc.change(FileNode(node.path, content=node.content))
77 77 for node in commit.get('removed', []):
78 78 cls.imc.remove(FileNode(node.path))
79
79
80 80 cls.tip = cls.imc.commit(message=unicode(commit['message']),
81 81 author=unicode(commit['author']),
82 82 date=commit['date'])
General Comments 0
You need to be logged in to leave comments. Login now