##// END OF EJS Templates
Bumped mercurial version to 2.3...
Bumped mercurial version to 2.3 - fixed issues with compare of two remote repos at particular revisions - added tests for cases when mercurial update broke code and tests didn't catch this - removed obsolete EmptyChangeset from the rhodecode code

File last commit:

r2492:79818f54 beta
r2684:2b6939a7 beta
Show More
files_add.html
92 lines | 3.5 KiB | text/html | HtmlLexer
Added initial support for creating new nodes in repos
r1483 <%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 initial support for creating new nodes in repos
r1483 </%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 initial support for creating new nodes in repos
r1483 &raquo;
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
&raquo;
${_('add 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 initial support for creating new nodes in repos
r1483 </%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 initial support for creating new nodes in repos
r1483 </div>
<div class="table">
<div id="files_data">
added uploading of files from web interface directly into repo
r1485 ${h.form(h.url.current(),method='post',id='eform',enctype="multipart/form-data")}
Added initial support for creating new nodes in repos
r1483 <h3>${_('Add new file')}</h3>
<div class="form">
Changed order of add file form inputs.
r1603 <div class="fields">
<div id="filename_container" class="field file">
<div class="label">
<label for="filename">${_('File Name')}:</label>
</div>
<div class="input">
<input type="text" value="" size="30" name="filename" id="filename">
UI !
r1756 ${_('or')} <span class="ui-btn" id="upload_file_enable">${_('Upload file')}</span>
Changed order of add file form inputs.
r1603 </div>
White-space cleanup
r1888 </div>
Changed order of add file form inputs.
r1603 <div id="upload_file_container" class="field" style="display:none">
<div class="label">
<label for="location">${_('Upload file')}</label>
Added initial support for creating new nodes in repos
r1483 </div>
Changed order of add file form inputs.
r1603 <div class="file">
<input type="file" size="30" name="upload_file" id="upload_file">
White-space cleanup
r1888 ${_('or')} <span class="ui-btn" id="file_enable">${_('Create new file')}</span>
Changed order of add file form inputs.
r1603 </div>
</div>
<div class="field">
<div class="label">
<label for="location">${_('Location')}</label>
</div>
<div class="input">
<input type="text" value="${c.f_path}" size="30" name="location" id="location">
${_('use / to separate directories')}
</div>
White-space cleanup
r1888 </div>
Changed order of add file form inputs.
r1603 </div>
White-space cleanup
r1888 </div>
Added initial support for creating new nodes in repos
r1483 <div id="body" class="codeblock">
White-space cleanup
r1888 <div id="editor_container">
added uploading of files from web interface directly into repo
r1485 <pre id="editor_pre"></pre>
<textarea id="editor" name="content" style="display:none"></textarea>
</div>
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: 100px;width: 99%;margin-left:4px"></textarea>
Added initial support for creating new nodes in repos
r1483 </div>
button style fix on edit and add files
r1720 <div style="text-align: l;padding-top: 5px">
UI !
r1756 ${h.submit('commit',_('Commit changes'),class_="ui-btn")}
${h.reset('reset',_('Reset'),class_="ui-btn")}
Added initial support for creating new nodes in repos
r1483 </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.f_path)}";
White-space cleanup
r1888 initCodeMirror('editor',reset_url);
Added initial support for creating new nodes in repos
r1483 </script>
White-space cleanup
r1888 </div>
Added initial support for creating new nodes in repos
r1483 </div>
White-space cleanup
r1888 </div>
</%def>