##// END OF EJS Templates
configs: added info how to set cache_license to redis
configs: added info how to set cache_license to redis

File last commit:

r5619:c9e499e7 default
r5620:b278fbe5 default
Show More
settings_mapping.mako
45 lines | 1.8 KiB | application/x-mako | MakoHtmlLexer
feat(remap and rescan): added more relient remap and removal option, and also split the logic to either add or cleanup
r5619
templating: use .mako as extensions for template files.
r1282
<div class="panel panel-default">
<div class="panel-heading">
feat(remap and rescan): added more relient remap and removal option, and also split the logic to either add or cleanup
r5619 <h3 class="panel-title">${_('Import new repository groups and repositories')}</h3>
templating: use .mako as extensions for template files.
r1282 </div>
<div class="panel-body">
feat(remap and rescan): added more relient remap and removal option, and also split the logic to either add or cleanup
r5619 ${h.secure_form(h.route_path('admin_settings_mapping_create'), request=request)}
feat(upgrade): added feature to bulk upgrade hooks from 4.X -> 5.X fixes RCCE-34
r5275 <p>
feat(remap and rescan): added more relient remap and removal option, and also split the logic to either add or cleanup
r5619 ${_('This function will scan all data under the current storage path location at')} <code>${c.storage_path}</code><br/>
${_('Each folder will be imported as a new repository group, and each repository found will be also imported to root level or corresponding repository group')}
feat(upgrade): added feature to bulk upgrade hooks from 4.X -> 5.X fixes RCCE-34
r5275 </p>
templating: use .mako as extensions for template files.
r1282 <div class="checkbox">
${h.checkbox('invalidate',True)}
<label for="invalidate"> ${_('Invalidate cache for all repositories')}</label>
</div>
<span class="help-block">${_('Each cache data for repositories will be cleaned with this option selected. Use this to reload data and clear cache keys.')}</span>
<div class="buttons">
feat(remap and rescan): added more relient remap and removal option, and also split the logic to either add or cleanup
r5619 ${h.submit('rescan',_('Scan filesystem'),class_="btn")}
templating: use .mako as extensions for template files.
r1282 </div>
feat(remap and rescan): added more relient remap and removal option, and also split the logic to either add or cleanup
r5619 ${h.end_form()}
templating: use .mako as extensions for template files.
r1282 </div>
</div>
feat(remap and rescan): added more relient remap and removal option, and also split the logic to either add or cleanup
r5619 <div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('Cleanup removed Repository Groups or Repositories')}</h3>
</div>
<div class="panel-body">
${h.secure_form(h.route_path('admin_settings_mapping_cleanup'), request=request)}
<p>
${_('This function will scan all data under the current storage path location at')} <code>${c.storage_path}</code>
${_('Then it will remove all repository groups and repositories that are no longer present in the filesystem.')}
</p>
<div class="buttons">
${h.submit('rescan',_('Cleanup filesystem'),class_="btn btn-danger")}
</div>
${h.end_form()}
</div>
</div>