##// END OF EJS Templates
Authentication: cache plugins for auth and their settings in the auth_registry....
Authentication: cache plugins for auth and their settings in the auth_registry. - Before that change on each requests 4x we loaded plugins for authentication, this hit many caches, db invalidation context and loaded the plugins logic each time. This was a heavy performance hit for SVN and other backends as they needed to load that plugins many many times - Since Authentication plugins almost never change, we'll not store the plugins listed for authentication into the authnregistry for each process - For AuthPlugins settings we now also flush plugins settings, and authnregistry cached plugins

File last commit:

r1769:fb9baff8 default
r4220:5a873939 stable
Show More
sequence_item.pt
31 lines | 1.2 KiB | text/plain | TextLexer
dan
forms: add deform for integration settings forms
r518 <div tal:omit-tag="field.widget.hidden"
tal:define="hidden hidden|field.widget.hidden;
error_class error_class|field.widget.error_class;
description description|field.description;
title title|field.title;
oid oid|field.oid"
class="form-group row deform-seq-item ${field.error and error_class or ''} ${field.widget.item_css_class or ''}"
i18n:domain="deform">
pull-request: extended default reviewers functionality....
r1769
dan
forms: add deform for integration settings forms
r518 <div class="deform-seq-item-group">
<span tal:replace="structure field.serialize(cstruct)"/>
<tal:errors condition="field.error and not hidden"
define="errstr 'error-%s' % oid"
repeat="msg field.error.messages()">
<p tal:condition="msg"
id="${errstr if repeat.msg.index==0 else '%s-%s' % (errstr, repeat.msg.index)}"
dan
integrations: add email integration, fixes #4159
r640 class="${error_class} help-block error-block"
dan
forms: add deform for integration settings forms
r518 i18n:translate="">${msg}</p>
</tal:errors>
</div>
pull-request: extended default reviewers functionality....
r1769
dan
forms: add deform for integration settings forms
r518 <div class="deform-seq-item-handle" style="padding:0">
<a class="deform-close-button close"
id="${oid}-close"
tal:condition="not field.widget.hidden"
title="Remove"
i18n:attributes="title"
onclick="javascript:deform.removeSequenceItem(this);">&times;</a>
</div>
pull-request: extended default reviewers functionality....
r1769
dan
forms: add deform for integration settings forms
r518 </div>