##// END OF EJS Templates
fixed path issues in upgrade script
fixed path issues in upgrade script

File last commit:

r740:9279dfed beta
r843:3b21ba5f beta
Show More
files_browser.html
79 lines | 2.6 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 <%def name="file_class(node)">
%if node.is_file():
<%return "browser-file" %>
%else:
<%return "browser-dir"%>
%endif
</%def>
<div id="body" class="browserblock">
<div class="browser-header">
${h.form(h.url.current())}
<div class="info_box">
<span >${_('view')}@rev</span>
some changes for #45....
r644 <a href="${c.url_prev}" title="${_('previous revision')}">&laquo;</a>
${h.text('at_rev',value=c.changeset.revision,size=3)}
<a href="${c.url_next}" title="${_('next revision')}">&raquo;</a>
renamed project to rhodecode
r547 ${h.submit('view','view')}
</div>
${h.end_form()}
</div>
<div class="browser-body">
<table class="code-browser">
<thead>
<tr>
<th>${_('Name')}</th>
<th>${_('Size')}</th>
<th>${_('Mimetype')}</th>
<th>${_('Revision')}</th>
<th>${_('Last modified')}</th>
<th>${_('Last commiter')}</th>
</tr>
</thead>
Move changes for git implementation
r633 %if c.files_list.parent:
renamed project to rhodecode
r547 <tr class="parity0">
<td>
some changes for #45....
r644 ${h.link_to('..',h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.files_list.parent.path),class_="browser-dir")}
renamed project to rhodecode
r547 </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
Move changes for git implementation
r633 </tr>
renamed project to rhodecode
r547 %endif
fixed python2.5 incompatible enumerate calls
r740 %for cnt,node in enumerate(c.files_list):
<tr class="parity${cnt+1%2}">
renamed project to rhodecode
r547 <td>
some changes for #45....
r644 ${h.link_to(node.name,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=node.path),class_=file_class(node))}
renamed project to rhodecode
r547 </td>
<td>
fixed nasty bug when browsing on renames....
r583 %if node.is_file():
renamed project to rhodecode
r547 ${h.format_byte_size(node.size,binary=True)}
fixed nasty bug when browsing on renames....
r583 %endif
renamed project to rhodecode
r547 </td>
<td>
%if node.is_file():
${node.mimetype}
%endif
</td>
<td>
%if node.is_file():
some changes for #45....
r644 <span class="tooltip" tooltip_title="${node.last_changeset.raw_id}">${node.last_changeset.revision}</span>
renamed project to rhodecode
r547 %endif
</td>
<td>
%if node.is_file():
fixed deletion of repository on filesystem, works based on scm type for git and hg....
r668 ${node.last_changeset.date} - ${h.age(node.last_changeset.date)}
renamed project to rhodecode
r547 %endif
</td>
<td>
%if node.is_file():
${node.last_changeset.author}
%endif
</td>
</tr>
%endfor
</table>
</div>
</div>