##// END OF EJS Templates
caches: use repo.lru based Dict cache. This LRUDict uses Timing Algo to not have to use locking...
caches: use repo.lru based Dict cache. This LRUDict uses Timing Algo to not have to use locking for the LRU implementation, this it's safer to use for dogpile. We used it before with beaker, so it's generally more stable.

File last commit:

r2558:572d9909 default
r2945:ec5716e4 default
Show More
textinput.pt
29 lines | 1.0 KiB | text/plain | TextLexer
dan
forms: add deform for integration settings forms
r518 <span tal:define="name name|field.name;
css_class css_class|field.widget.css_class;
oid oid|field.oid;
mask mask|field.widget.mask;
placeholder placeholder|field.widget.placeholder|field.placeholder|'';
mask_placeholder mask_placeholder|field.widget.mask_placeholder;
style style|field.widget.style;
scheduler: added DB models and db parsers for the RhodeCode scheduler....
r2406 help_block help_block|field.widget.help_block|'';
form-templates: allow checkboxes to have help block.
r2558 "
dan
forms: add deform for integration settings forms
r518 tal:omit-tag="">
form-templates: allow checkboxes to have help block.
r2558
<input type="text" name="${name}" value="${cstruct}"
id="${oid}"
placeholder="${placeholder}"
tal:attributes="class string: form-control ${css_class or ''};
style style"
/>
scheduler: added DB models and db parsers for the RhodeCode scheduler....
r2406
form-templates: allow checkboxes to have help block.
r2558 <p tal:condition="help_block" class="help-block">${help_block}</p>
<script tal:condition="mask" type="text/javascript">
deform.addCallback(
'${oid}',
function (oid) {
$("#" + oid).mask("${mask}",
{placeholder:"${mask_placeholder}"});
});
</script>
dan
forms: add deform for integration settings forms
r518 </span>