view rhodecode/templates/changelog/changelog.html @ 663:6199b34d349b beta

fixed html templates, fixed overal rhodecode width to 1024pixels various additional to templates. History for annotation, width for my page, repo types for admin panel repositories
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 06 Nov 2010 16:16:44 +0100
parents ae292c3b94ed
children b9442a8b5e02
line wrap: on
line source

## -*- coding: utf-8 -*-

<%inherit file="/base/base.html"/>

<%def name="title()">
${c.repo_name} ${_('Changelog')} - ${c.rhodecode_name}
</%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">
						
        ${h.form(h.url.current(),method='get')}
        <div class="info_box">
          <span>${_('Show')}:</span>
          ${h.text('size',size=1,value=c.size)}
          <span>${_('revisions')}</span>
          ${h.submit('set',_('set'))}
        </div>
        ${h.end_form()}
						
					</div>
				%for cnt,cs in enumerate(c.pagination):
					<div id="chg_${cnt+1}" class="container">
						<div class="left">
							<div class="date">${_('commit')} ${cs.revision}: ${h.short_id(cs.raw_id)}@${cs.date}</div>
							<div class="author">
								<div class="gravatar">
									<img alt="gravatar" src="${h.gravatar_url(h.email(cs.author),20)}"/>
								</div>
								<span>${h.person(cs.author)}</span><br/>
								<span><a href="mailto:${h.email_or_none(cs.author)}">${h.email_or_none(cs.author)}</a></span><br/>
							</div>
							<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>
						</div>	
						<div class="right">
									<div class="changes">
										<span class="removed" title="${_('removed')}: ${' | '.join([x.name for x in cs.removed])}">
										${len(cs.removed)}</span>
										<span class="changed" title="${_('changed')}: ${' | '.join([x.name for x in cs.changed])}">
										${len(cs.changed)}</span>
										<span class="added" title="${_('added')}: ${' | '.join([x.name for x in cs.added])}">
										${len(cs.added)}</span>
									</div>					
										%if len(cs.parents)>1:
										<div class="merge">
											${_('merge')}<img alt="merge" src="/images/icons/arrow_join.png"/>
										</div>
										%endif
								   %if cs.parents:							
									%for p_cs in reversed(cs.parents):
										<div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(h.short_id(p_cs.raw_id),
											h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
										</div>
									%endfor
								   %else:	
                                        <div class="parent">${_('No parents')}</div>   
                                   %endif  
                    									
								<span class="logtags">
									<span class="branchtag" title="${'%s %s' % (_('branch'),cs.branch)}">
									${h.link_to(cs.branch,h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}</span>
									%for tag in cs.tags:
										<span class="tagtag"  title="${'%s %s' % (_('tag'),tag)}">
										${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}</span>
									%endfor
								</span>																	
						</div>				
					</div>
					
				%endfor
				<div class="pagination-wh pagination-left">
					${c.pagination.pager('$link_previous ~2~ $link_next')}
				</div>			
				</div>
			</div>
			
			<script type="text/javascript" src="/js/graph.js"></script>
			<script type="text/javascript">
				YAHOO.util.Event.onDOMReady(function(){
					function set_canvas() {
						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);
						canvas.setAttribute('width',160);
					};
					set_canvas();
					var jsdata = ${c.jsdata|n};
					var r = new BranchRenderer();
					r.render(jsdata); 
				});
			</script>
		%else:
			${_('There are no changes yet')}
		%endif  
    </div>
</div>    
</%def>