Files
@ bf5c2c75c976
Branch filter:
Location: kallithea/rhodecode/templates/forks/forks.html - annotation
bf5c2c75c976
598 B
text/html
fixes issue #856 file upload >1000 bytes on windows throws exception.
The returned object is a true file object on POSIX platforms.
On other platforms, it is a file-like object whose `file` attribute is the
underlying true file object. We check if such object has a file attribute
which is missing on POSIX platform
The returned object is a true file object on POSIX platforms.
On other platforms, it is a file-like object whose `file` attribute is the
underlying true file object. We check if such object has a file attribute
which is missing on POSIX platform
7e75af301842 7e75af301842 7e75af301842 7e75af301842 1f334a68d057 7e75af301842 7e75af301842 7e75af301842 9e677f6d34cb 7e75af301842 7e75af301842 2ea981f9da79 2ea981f9da79 2ea981f9da79 2ea981f9da79 7e75af301842 072a37c44f58 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 f91d3f9b7230 7e75af301842 f91d3f9b7230 f91d3f9b7230 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Forks') % c.repo_name} · ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${_('Forks')}
</%def>
<%def name="page_nav()">
${self.menu('repositories')}
</%def>
<%def name="main()">
${self.repo_context_bar('showforks')}
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
<div id="forks">
${c.forks_data}
</div>
</div>
</div>
</%def>
|