##// END OF EJS Templates
white space cleanup
marcink -
r2188:56e96d4e beta
parent child Browse files
Show More
@@ -376,7 +376,8 b' class ChangesetController(BaseRepoContro'
376 if comm:
376 if comm:
377 c.co = comm
377 c.co = comm
378 data.update(comm.get_dict())
378 data.update(comm.get_dict())
379 data.update({'rendered_text': render('changeset/changeset_comment_block.html')})
379 data.update({'rendered_text':
380 render('changeset/changeset_comment_block.html')})
380 return data
381 return data
381
382
382 @jsonify
383 @jsonify
@@ -47,7 +47,7 b''
47
47
48 <script type="text/javascript">
48 <script type="text/javascript">
49 var follow_base_url = "${h.url('toggle_following')}";
49 var follow_base_url = "${h.url('toggle_following')}";
50
50
51 //JS translations map
51 //JS translations map
52 var TRANSLATION_MAP = {
52 var TRANSLATION_MAP = {
53 'add another comment':'${_("add another comment")}',
53 'add another comment':'${_("add another comment")}',
@@ -1,2 +1,2 b''
1 <%namespace name="comment" file="/changeset/changeset_file_comment.html"/>
1 <%namespace name="comment" file="/changeset/changeset_file_comment.html"/>
2 ${comment.comment_block(c.co)} No newline at end of file
2 ${comment.comment_block(c.co)}
@@ -76,7 +76,7 b''
76 </div>
76 </div>
77 %endfor
77 %endfor
78 %endfor
78 %endfor
79
79
80 </%def>
80 </%def>
81
81
82 <%def name="comments(changeset)">
82 <%def name="comments(changeset)">
@@ -85,7 +85,7 b''
85 <div id="inline-comments-container">
85 <div id="inline-comments-container">
86 ${inlines(changeset)}
86 ${inlines(changeset)}
87 </div>
87 </div>
88
88
89 %for co in c.comments:
89 %for co in c.comments:
90 ${comment_block(co)}
90 ${comment_block(co)}
91 %endfor
91 %endfor
@@ -1,9 +1,9 b''
1 %if c.file:
1 %if c.file:
2 <h3 class="files_location">
2 <h3 class="files_location">
3 ${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.changeset.raw_id,c.file.path)}
3 ${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.changeset.raw_id,c.file.path)}
4 %if c.annotate:
4 %if c.annotate:
5 - ${_('annotation')}
5 - ${_('annotation')}
6 %endif
6 %endif
7 </h3>
7 </h3>
8 %if c.file.is_dir():
8 %if c.file.is_dir():
9 <%include file='files_browser.html'/>
9 <%include file='files_browser.html'/>
General Comments 0
You need to be logged in to leave comments. Login now