##// END OF EJS Templates
White space cleanup
marcink -
r3029:685ebc84 beta
parent child Browse files
Show More
@@ -180,4 +180,3 b' class FeedController(BaseRepoController)'
180 180 region_invalidate(_get_feed_from_cache, None, key)
181 181 CacheInvalidation.set_valid(inv.cache_key)
182 182 return _get_feed_from_cache(key)
183
@@ -765,4 +765,4 b' def differ(org_repo, org_ref, other_repo'
765 765 node2=org_repo[org_ref].node(),
766 766 opts=opts))
767 767
768 return '' No newline at end of file
768 return ''
@@ -119,4 +119,4 b' if simplejson:'
119 119 elif stdlibjson:
120 120 json = _json
121 121 else:
122 raise ImportError('Could not find any json modules') No newline at end of file
122 raise ImportError('Could not find any json modules')
@@ -204,7 +204,7 b''
204 204 </tr>
205 205 %for cache in c.repo_info.cache_keys:
206 206 <tr>
207 <td>${cache.prefix or '-'}</td>
207 <td>${cache.prefix or '-'}</td>
208 208 <td>${cache.cache_key}</td>
209 209 <td>${h.bool2icon(cache.cache_active)}</td>
210 210 </tr>
@@ -161,7 +161,7 b''
161 161 </ul>
162 162 %else:
163 163 <span class="empty_data">${_('No members yet')}</span>
164 %endif
164 %endif
165 165 </div>
166 166 </div>
167 167
@@ -161,7 +161,7 b''
161 161 if(checked_checkboxes.length>0){
162 162 // modify open pull request to show we have selected cs
163 163 YUD.get('open_new_pr').innerHTML = _TM['Open new pull request for selected changesets'];
164
164
165 165 }else{
166 166 YUD.get('open_new_pr').innerHTML = _TM['Open new pull request'];
167 167 }
@@ -204,7 +204,7 b''
204 204 YUD.setStyle('rev_range_clear','display','');
205 205
206 206 YUD.get('open_new_pr').href += '?rev_start={0}&rev_end={1}'.format(rev_start,rev_end);
207
207
208 208 }
209 209 else{
210 210 YUD.setStyle('rev_range_container','display','none');
@@ -39,13 +39,13 b''
39 39
40 40 ## FILES
41 41 <div style="font-size:1.1em;font-weight: bold;clear:both;padding-top:10px">
42
42
43 43 % if c.limited_diff:
44 44 ${ungettext('%s file changed', '%s files changed', len(c.files)) % len(c.files)}
45 45 % else:
46 46 ${ungettext('%s file changed with %s insertions and %s deletions','%s files changed with %s insertions and %s deletions', len(c.files)) % (len(c.files),c.lines_added,c.lines_deleted)}:
47 47 %endif
48
48
49 49 </div>
50 50 <div class="cs_files">
51 51 %if not c.files:
@@ -60,7 +60,7 b''
60 60 </div>
61 61 % if c.limited_diff:
62 62 <h5>${_('Changeset was too big and was cut off...')}</h5>
63 % endif
63 % endif
64 64 </div>
65 65 </div>
66 66
@@ -91,7 +91,7 b' var callbacks = function(State){'
91 91 ypjax_links();
92 92 tooltip_activate();
93 93 fileBrowserListeners(State.url, State.data.node_list_url, State.data.url_base);
94
94
95 95 if(YUD.get('hlcode')){
96 96 YUE.on('hlcode', 'mouseup', getSelectionLink);
97 97 }
@@ -22,4 +22,4 b''
22 22 </div>
23 23 <div style="clear:both"></div>
24 24 </dd>
25 </dl> No newline at end of file
25 </dl>
@@ -106,8 +106,8 b' YUE.onDOMReady(function(){'
106 106 ypjax(_url, 'node_history', function(o){
107 107 tooltip_activate();
108 108 })
109 });
109 });
110 110
111 111 });
112
112
113 113 </script>
@@ -23,7 +23,7 b''
23 23 <div style="float:left;padding:0px 30px 30px 30px">
24 24 <input type="hidden" name="rev_start" value="${request.GET.get('rev_start')}" />
25 25 <input type="hidden" name="rev_end" value="${request.GET.get('rev_end')}" />
26
26
27 27 ##ORG
28 28 <div style="float:left">
29 29 <div class="fork_user">
@@ -68,16 +68,16 b''
68 68 ##CS
69 69 <div style="font-size:1.1em;font-weight: bold;clear:both;padding-top:10px">${ungettext('Showing %s commit','Showing %s commits', len(c.cs_ranges)) % len(c.cs_ranges)}</div>
70 70 <%include file="/compare/compare_cs.html" />
71
71
72 72 ## FILES
73 73 <div style="font-size:1.1em;font-weight: bold;clear:both;padding-top:10px">
74
74
75 75 % if c.limited_diff:
76 76 ${ungettext('%s file changed', '%s files changed', len(c.files)) % len(c.files)}
77 77 % else:
78 78 ${ungettext('%s file changed with %s insertions and %s deletions','%s files changed with %s insertions and %s deletions', len(c.files)) % (len(c.files),c.lines_added,c.lines_deleted)}:
79 79 %endif
80
80
81 81 </div>
82 82 <div class="cs_files">
83 83 %if not c.files:
@@ -92,7 +92,7 b''
92 92 </div>
93 93 % if c.limited_diff:
94 94 <h5>${_('Changeset was too big and was cut off...')}</h5>
95 % endif
95 % endif
96 96 </div>
97 97 </div>
98 98 ## REVIEWERS
@@ -27,7 +27,7 b''
27 27 <!-- end box / title -->
28 28 %if c.repo_tags:
29 29 <div class="info_box" id="compare_tags" style="clear: both;padding: 10px 19px;vertical-align: right;text-align: right;"><a href="#" class="ui-btn small">${_('Compare tags')}</a></div>
30 %endif
30 %endif
31 31 <div class="table">
32 32 <%include file='tags_data.html'/>
33 33 </div>
@@ -54,7 +54,7 b' var myColumnDefs = ['
54 54 {key:"author",label:"${_('Author')}",sortable:true},
55 55 {key:"revision",label:"${_('Revision')}",sortable:true,
56 56 sortOptions: { sortFunction: revisionSort }},
57 {key:"compare",label:"${_('Compare')}",sortable:false,},
57 {key:"compare",label:"${_('Compare')}",sortable:false,},
58 58 ];
59 59
60 60 var myDataSource = new YAHOO.util.DataSource(YUD.get("tags_data"));
@@ -29,7 +29,7 b''
29 29 <td>
30 30 <input class="branch-compare" type="radio" name="compare_org" value="${tag[0]}"/>
31 31 <input class="branch-compare" type="radio" name="compare_other" value="${tag[0]}"/>
32 </td>
32 </td>
33 33 </tr>
34 34 %endfor
35 35 </table>
@@ -113,7 +113,7 b' class TestCompareController(TestControll'
113 113 finally:
114 114 RepoModel().delete(r2_id)
115 115 RepoModel().delete(r1_id)
116
116
117 117
118 118 def test_compare_forks_on_branch_extra_commits_origin_has_incomming_hg(self):
119 119 self.log_user()
General Comments 0
You need to be logged in to leave comments. Login now