##// END OF EJS Templates
caches: use individual namespaces per user to prevent beaker caching problems....
caches: use individual namespaces per user to prevent beaker caching problems. - especially for mysql in case large number of data in caches there could be critical errors storing cache, and thus preventing users from authentication. This is caused by the fact that we used single namespace for ALL users. It means it grew as number of users grew reaching mysql single column limit. This changes the behaviour and now we use namespace per-user it means that each user-id will have it's own cache namespace fragmenting maximum column data to a single user cache. Which we should never reach.

File last commit:

r2351:59272121 default
r2591:36829a17 stable
Show More
user_edit_audit.mako
22 lines | 924 B | application/x-mako | MakoHtmlLexer
admin-users: add audit page to allow showing user actions in RhodeCode....
r1559 ## -*- coding: utf-8 -*-
<%namespace name="base" file="/base/base.mako"/>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('User Audit Logs')} -
user-audit: share same template for rendering audit logs between user and admin views.
r1696 ${_ungettext('%s entry', '%s entries', c.audit_logs.item_count) % (c.audit_logs.item_count)}
admin-users: add audit page to allow showing user actions in RhodeCode....
r1559 </h3>
</div>
<div class="panel-body">
${h.form(None, id_="filter_form", method="get")}
<input class="q_filter_box ${'' if c.filter_term else 'initial'}" id="j_filter" size="15" type="text" name="filter" value="${c.filter_term or ''}" placeholder="${_('audit filter...')}"/>
<input type='submit' value="${_('filter')}" class="btn" />
${h.end_form()}
pylons: remove pylons as dependency...
r2351 <p class="tooltip filterexample" style="position: inherit" title="${h.tooltip(h.journal_filter_help(request))}">${_('Example Queries')}</p>
admin-users: add audit page to allow showing user actions in RhodeCode....
r1559
user-audit: share same template for rendering audit logs between user and admin views.
r1696 <%include file="/admin/admin_log_base.mako" />
admin-users: add audit page to allow showing user actions in RhodeCode....
r1559
</div>
</div>