##// END OF EJS Templates
shorten the journal compare tooltip
shorten the journal compare tooltip

File last commit:

r2492:79818f54 beta
r2954:9282b4f3 beta
Show More
files_edit.html
78 lines | 3.5 KiB | text/html | HtmlLexer
Added server side file editing with commit
r1305 <%inherit file="/base/base.html"/>
<%def name="title()">
Vincent Duvert
Better i18n for page titles.
r2417 ${_('%s Edit file') % c.repo_name} - ${c.rhodecode_name}
Added server side file editing with commit
r1305 </%def>
<%def name="js_extra()">
<script type="text/javascript" src="${h.url('/js/codemirror.js')}"></script>
</%def>
<%def name="css_extra()">
<link rel="stylesheet" type="text/css" href="${h.url('/css/codemirror.css')}"/>
</%def>
<%def name="breadcrumbs_links()">
Takumi IINO
i18n 'Home' in breadcrumbs
r2492 ${h.link_to(_(u'Home'),h.url('/'))}
Added server side file editing with commit
r1305 &raquo;
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
&raquo;
${_('edit file')} @ R${c.cs.revision}:${h.short_id(c.cs.raw_id)}
</%def>
<%def name="page_nav()">
White-space cleanup
r1888 ${self.menu('files')}
Added server side file editing with commit
r1305 </%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
<ul class="links">
<li>
<span style="text-transform: uppercase;">
<a href="#">${_('branch')}: ${c.cs.branch}</a></span>
White-space cleanup
r1888 </li>
</ul>
Added server side file editing with commit
r1305 </div>
<div class="table">
<div id="files_data">
<h3 class="files_location">${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.cs.revision,c.file.path)}</h3>
${h.form(h.url.current(),method='post',id='eform')}
<div id="body" class="codeblock">
new files views...
r1737 <div class="code-header">
<div class="stats">
<div class="left"><img src="${h.url('/images/icons/file.png')}"/></div>
fixed vcs issue with last_changeset for filenodes...
r2084 <div class="left item">${h.link_to("r%s:%s" % (c.file.changeset.revision,h.short_id(c.file.changeset.raw_id)),h.url('changeset_home',repo_name=c.repo_name,revision=c.file.changeset.raw_id))}</div>
new files views...
r1737 <div class="left item">${h.format_byte_size(c.file.size,binary=True)}</div>
<div class="left item last">${c.file.mimetype}</div>
<div class="buttons">
UI !
r1756 ${h.link_to(_('show annotation'),h.url('files_annotate_home',repo_name=c.repo_name,revision=c.cs.raw_id,f_path=c.f_path),class_="ui-btn")}
White-space cleanup
r1888 ${h.link_to(_('show as raw'),h.url('files_raw_home',repo_name=c.repo_name,revision=c.cs.raw_id,f_path=c.f_path),class_="ui-btn")}
UI !
r1756 ${h.link_to(_('download as raw'),h.url('files_rawfile_home',repo_name=c.repo_name,revision=c.cs.raw_id,f_path=c.f_path),class_="ui-btn")}
White-space cleanup
r1888 % if h.HasRepoPermissionAny('repository.write','repository.admin')(c.repo_name):
new files views...
r1737 % if not c.file.is_binary:
UI !
r1756 ${h.link_to(_('source'),h.url('files_home',repo_name=c.repo_name,revision=c.cs.raw_id,f_path=c.f_path),class_="ui-btn")}
new files views...
r1737 % endif
White-space cleanup
r1888 % endif
new files views...
r1737 </div>
</div>
various fixes for git and mercurial with InMemoryCommit backend and non-ascii files...
r2199 <div class="commit">${_('Editing file')}: ${c.file.unicode_path}</div>
White-space cleanup
r1888 </div>
Added server side file editing with commit
r1305 <pre id="editor_pre"></pre>
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 <textarea id="editor" name="content" style="display:none">${h.escape(c.file.content)|n}</textarea>
fixed small issues with adding new filenodes
r1484 <div style="padding: 10px;color:#666666">${_('commit message')}</div>
added uploading of files from web interface directly into repo
r1485 <textarea id="commit" name="message" style="height: 60px;width: 99%;margin-left:4px"></textarea>
Added server side file editing with commit
r1305 </div>
button style fix on edit and add files
r1720 <div style="text-align: left;padding-top: 5px">
UI !
r1756 ${h.submit('commit',_('Commit changes'),class_="ui-btn")}
${h.reset('reset',_('Reset'),class_="ui-btn")}
Added server side file editing with commit
r1305 </div>
${h.end_form()}
<script type="text/javascript">
cleaned up JS files in files templates....
r1699 var reset_url = "${h.url('files_home',repo_name=c.repo_name,revision=c.cs.raw_id,f_path=c.file.path)}";
initCodeMirror('editor',reset_url);
Added server side file editing with commit
r1305 </script>
White-space cleanup
r1888 </div>
Added server side file editing with commit
r1305 </div>
White-space cleanup
r1888 </div>
</%def>