## This file is subject to the terms and conditions defined in ## file 'LICENSE', which is part of this source code package. ## Copyright (c) 2009 SKR Farms (P) LTD. <%inherit file="/base/basic1.html"/> <%namespace name="elements" file="/component/elements.html"/> <%! page_tooltips = [ [ 'TagCloud', """List of all tags. Font size corresponding to the number of items tagged. """ ], [ 'Tag', """List of all items (like tickets, projects, etc ...) tagged with a particular tag-name. """ ], [ 'Timeline', """Timeline gives a log of all updates done to Tag(s).""" ], ] %> <%def name="hd_script()"> ${parent.hd_script()} <%def name="bd_body()"> <% if c.tag : pagebartext = "Timeline for tag: %s" % c.tag.tagname else : pagebartext = "Tags Timeline" tagcloud = '
' + \ 'TagCloud
' % h.url_tagcloud pbar_spans = [ tagcloud ] %> ${elements.pagebar( pagebartext, spans=pbar_spans, tooltips=page_tooltips )}
% if c.userpanes :
% else :
% endif ${elements.timeline_view( c.logs, c.fromoff, c.tooff, c.links )}
% if c.userpanes :
${elements.user_panes( c.userpanes )}
% endif
<%def name="bd_script()"> ${parent.bd_script()}