catalogAdvanced.dtml 1.94 KB
Newer Older
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
<dtml-var manage_page_header>
<dtml-var manage_tabs>

<br />
<table width="100%" cellspacing="0" cellpadding="2" border="0">
<tr class="section-bar">
  <td colspan="2" align="left">
  <div class="form-label">
  Catalog Maintenance
  </div>
  </td>
</tr>
<tr>
  <td align="left" valign="top">
  <p class="form-help"> Updating the catalog will update all catalog
  records and remove invalid records. It does this by deleting all
  indexes and re-cataloging all currently indexed objects.
  </p>
  </td>
  <td align="right" valign="top">
<form action="<dtml-var URL1>">
<input class="form-element" type="submit"
 name="manage_catalogReindex:method" value=" Update Catalog ">
</form>
  </td>
</tr>
<tr>
  <td align="left" valign="top">
29
  <p class="form-help">Clearing the catalog will remove all entries and
Jean-Paul Smets's avatar
Jean-Paul Smets committed
30 31 32 33 34 35 36 37 38 39 40
  create new tables if necessary.
  </p>
  </td>
  <td align="right" valign="top">
<form action="<dtml-var URL1>">
<input class="form-element" type="submit"
 name="manage_catalogClear:method" value=" Clear Catalog ">
</form>
  </td>
</tr>
<tr>
41
  <td align="left" valign="top">
42 43
  <p class="form-help">Clearing reserved uids allows for reducing the size of the catalog
  after many Zope restart. It can be a dangerous operation if deferred
44 45
  execution of cataloging of objects has not been completed.
  </p>
Jean-Paul Smets's avatar
Jean-Paul Smets committed
46
  </td>
47 48 49 50 51
  <td align="right" valign="top">
<form action="<dtml-var URL1>">
<input class="form-element" type="submit"
 name="manage_catalogClearReserved:method" value=" Clear Reserved ">
</form>
Jean-Paul Smets's avatar
Jean-Paul Smets committed
52 53
  </td>
</tr>
54 55 56 57 58 59 60 61 62 63 64 65 66
<tr>
  <td align="left" valign="top">
  <p class="form-help">Exporting properties produces a human-readable XML file which can be imported later.
  It is useful to reconstruct the same catalog information.
  </p>
  </td>
  <td align="right" valign="top">
<form action="<dtml-var URL1>">
<input class="form-element" type="submit"
 name="manage_catalogExportProperties:method" value=" Export Properties ">
</form>
  </td>
</tr>
Jean-Paul Smets's avatar
Jean-Paul Smets committed
67 68
</table>
<dtml-var manage_page_footer>