##// END OF EJS Templates
moved time measure of request to separate middleware for better results (the last one in stack)
moved time measure of request to separate middleware for better results (the last one in stack)

File last commit:

r3295:2e618376 beta
r3489:d997a314 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>