##// END OF EJS Templates
Added friendly message about removing a group that still contains subgroups....
Added friendly message about removing a group that still contains subgroups. Fixed option to remove a group that is not in filesystem (ex. someone deleted it intentionally on filesystem) in this case RhodeCode will simply just throw an error message saying this group cannot be deleted.

File last commit:

r1512:bf263968 merge default
r1543:ada6926c beta
Show More
changelog.html
175 lines | 6.8 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
#38 updated RhodeCode titles
r619 ${c.repo_name} ${_('Changelog')} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
${h.link_to(u'Home',h.url('/'))}
&raquo;
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
&raquo;
${_('Changelog')} - ${_('showing ')} ${c.size if c.size <= c.total_cs else c.total_cs} ${_('out of')} ${c.total_cs} ${_('revisions')}
</%def>
<%def name="page_nav()">
${self.menu('changelog')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<div class="table">
% if c.pagination:
<div id="graph">
<div id="graph_nodes">
<canvas id="graph_canvas"></canvas>
</div>
<div id="graph_content">
<div class="container_header">
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 ${h.form(h.url.current(),method='get')}
<div class="info_box">
gui-improvments
r1304 ${h.submit('set',_('Show'),class_="ui-button-small")}
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 ${h.text('size',size=1,value=c.size)}
gui-improvments
r1304 <span class="rev">${_('revisions')}</span>
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 </div>
${h.end_form()}
<div id="rev_range_container" style="display:none"></div>
renamed project to rhodecode
r547 </div>
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977
renamed project to rhodecode
r547 %for cnt,cs in enumerate(c.pagination):
<div id="chg_${cnt+1}" class="container">
<div class="left">
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 <div class="date">
${h.checkbox(cs.short_id,class_="changeset_range")}
<span>${_('commit')} ${cs.revision}: ${h.short_id(cs.raw_id)}@${cs.date}</span>
</div>
renamed project to rhodecode
r547 <div class="author">
<div class="gravatar">
fixed chrome DAG graph rendering issue
r1463 <img alt="gravatar" src="${h.gravatar_url(h.email(cs.author),16)}"/>
renamed project to rhodecode
r547 </div>
fixed chrome DAG graph rendering issue
r1463 <div title="${h.email_or_none(cs.author)}" class="user">${h.person(cs.author)}</div>
##<span><a href="mailto:${h.email_or_none(cs.author)}">${h.email_or_none(cs.author)}</a></span><br/>
renamed project to rhodecode
r547 </div>
Fixes for raw_id, needed for git...
r636 <div class="message">${h.link_to(h.wrap_paragraphs(cs.message),h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}</div>
renamed project to rhodecode
r547 </div>
<div class="right">
changelog uses lazy loading of affected files details, in some scenarios this can improve speed...
r1431 <div id="${cs.raw_id}_changes_info" class="changes">
removed users_group controller in replace for model methods,...
r1436 <span id="${cs.raw_id}" class="changed_total tooltip" title="${_('Affected number of files, click to show more details')}">${len(cs.affected_files)}</span>
renamed project to rhodecode
r547 </div>
%if len(cs.parents)>1:
<div class="merge">
changelog uses lazy loading of affected files details, in some scenarios this can improve speed...
r1431 ${_('merge')}<img alt="merge" src="${h.url('/images/icons/arrow_join.png')}"/>
renamed project to rhodecode
r547 </div>
large initial commits fixup...
r566 %endif
%if cs.parents:
renamed project to rhodecode
r547 %for p_cs in reversed(cs.parents):
Small fixes for style....
r648 <div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(h.short_id(p_cs.raw_id),
Fixes for raw_id, needed for git...
r636 h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
renamed project to rhodecode
r547 </div>
%endfor
large initial commits fixup...
r566 %else:
<div class="parent">${_('No parents')}</div>
%endif
renamed project to rhodecode
r547 <span class="logtags">
Code refactor for auth func, preparing for ldap support...
r699 %if cs.branch:
renamed project to rhodecode
r547 <span class="branchtag" title="${'%s %s' % (_('branch'),cs.branch)}">
Code refactor for auth func, preparing for ldap support...
r699 ${h.link_to(cs.branch,h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}</span>
%endif
renamed project to rhodecode
r547 %for tag in cs.tags:
<span class="tagtag" title="${'%s %s' % (_('tag'),tag)}">
Fixes for raw_id, needed for git...
r636 ${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}</span>
renamed project to rhodecode
r547 %endfor
</span>
</div>
</div>
%endfor
<div class="pagination-wh pagination-left">
${c.pagination.pager('$link_previous ~2~ $link_next')}
</div>
</div>
</div>
removed obsolete _static flag from url, and fixed urls in webhelpers
r1050 <script type="text/javascript" src="${h.url('/js/graph.js')}"></script>
renamed project to rhodecode
r547 <script type="text/javascript">
YAHOO.util.Event.onDOMReady(function(){
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977
//Monitor range checkboxes and build a link to changesets
changelog uses lazy loading of affected files details, in some scenarios this can improve speed...
r1431 //ranges
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 var checkboxes = YUD.getElementsByClassName('changeset_range');
var url_tmpl = "${h.url('changeset_home',repo_name=c.repo_name,revision='__REVRANGE__')}";
YUE.on(checkboxes,'click',function(e){
var checked_checkboxes = [];
for (pos in checkboxes){
if(checkboxes[pos].checked){
checked_checkboxes.push(checkboxes[pos]);
}
}
if(checked_checkboxes.length>1){
var rev_end = checked_checkboxes[0].name;
var rev_start = checked_checkboxes[checked_checkboxes.length-1].name;
var url = url_tmpl.replace('__REVRANGE__',
rev_start+'...'+rev_end);
var link = "<a href="+url+">${_('Show selected changes __S -> __E')}</a>"
link = link.replace('__S',rev_start);
link = link.replace('__E',rev_end);
YUD.get('rev_range_container').innerHTML = link;
YUD.setStyle('rev_range_container','display','');
}
else{
YUD.setStyle('rev_range_container','display','none');
}
});
changelog uses lazy loading of affected files details, in some scenarios this can improve speed...
r1431 //Fetch changeset details
YUE.on(YUD.getElementsByClassName('changed_total'),'click',function(e){
var id = e.currentTarget.id
var url = "${h.url('changelog_details',repo_name=c.repo_name,cs='__CS__')}"
var url = url.replace('__CS__',id);
ypjax(url,id+'_changes_info',function(){tooltip_activate()});
});
improved rendering of dag (they are not trimmed anymore when number of heads exceeds 5)
r1429 function set_canvas(heads) {
renamed project to rhodecode
r547 var c = document.getElementById('graph_nodes');
var t = document.getElementById('graph_content');
canvas = document.getElementById('graph_canvas');
var div_h = t.clientHeight;
c.style.height=div_h+'px';
canvas.setAttribute('height',div_h);
improved rendering of dag (they are not trimmed anymore when number of heads exceeds 5)
r1429 c.style.height=max_w+'px';
canvas.setAttribute('width',max_w);
renamed project to rhodecode
r547 };
improved rendering of dag (they are not trimmed anymore when number of heads exceeds 5)
r1429 var heads = 1;
var max_heads = 0;
renamed project to rhodecode
r547 var jsdata = ${c.jsdata|n};
improved rendering of dag (they are not trimmed anymore when number of heads exceeds 5)
r1429
for( var i=0;i<jsdata.length;i++){
var m = Math.max.apply(Math, jsdata[i][1]);
if (m>max_heads){
max_heads = m;
}
}
var max_w = Math.max(100,max_heads*25);
set_canvas(max_w);
renamed project to rhodecode
r547 var r = new BranchRenderer();
improved rendering of dag (they are not trimmed anymore when number of heads exceeds 5)
r1429 r.render(jsdata,max_w);
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977
renamed project to rhodecode
r547 });
</script>
%else:
${_('There are no changes yet')}
%endif
</div>
</div>
</%def>