##// END OF EJS Templates
compare: swap org and other when they refer to different repos, ie are pull request style...
compare: swap org and other when they refer to different repos, ie are pull request style Pull requests will have a different from/to description - but in a consistent and slightly better way that can be improved later. A pull request diff is empathic: "How will this look for the peer I'm proposing to" style.

File last commit:

r3295:2e618376 beta
r3322:c9b0f1d3 beta
Show More
public_journal.html
32 lines | 978 B | text/html | HtmlLexer
implemented public journal for anonymous users, admin can control which repositories...
r1085 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Journal')} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs()">
Mads Kiilerich
html: don't use tabs
r3197 ${c.rhodecode_name}
implemented public journal for anonymous users, admin can control which repositories...
r1085 </%def>
<%def name="page_nav()">
Set current pages indication for search and journal
r3208 ${self.menu('journal')}
implemented public journal for anonymous users, admin can control which repositories...
r1085 </%def>
added discoverable rss/atom links in pages
r2413 <%def name="head_extra()">
<link href="${h.url('public_journal_atom')}" rel="alternate" title="${_('ATOM public journal feed')}" type="application/atom+xml" />
<link href="${h.url('public_journal_rss')}" rel="alternate" title="${_('RSS public journal feed')}" type="application/rss+xml" />
</%def>
implemented public journal for anonymous users, admin can control which repositories...
r1085 <%def name="main()">
White-space cleanup
r1888
added discoverable rss/atom links in pages
r2413 <div class="box">
<!-- box / title -->
<div class="title">
<h5>${_('Public Journal')}</h5>
<ul class="links">
<li>
<span><a href="${h.url('public_journal_atom')}"><img class="icon" title="${_('ATOM feed')}" alt="${_('ATOM feed')}" src="${h.url('/images/icons/rss_16.png')}"/></a></span>
</li>
</ul>
</div>
new tooltip implementation...
r2971
added discoverable rss/atom links in pages
r2413 <div id="journal">${c.journal_data}</div>
</div>
White-space cleanup
r1888
</%def>