[Zope-CVS] CVS: Products/QueueCatalog/www - edit.zpt:1.2
Shane Hathaway
shane@cvs.zope.org
Fri, 6 Sep 2002 12:20:50 -0400
Update of /cvs-repository/Products/QueueCatalog/www
In directory cvs.zope.org:/tmp/cvs-serv5759/www
Modified Files:
edit.zpt
Log Message:
- Now you configure which indexes to update immediately rather than which to
defer.
- Turned certain exceptions in getZCatalog into QueueConfigurationErrors.
- Permitted access to "title_or_id".
=== Products/QueueCatalog/www/edit.zpt 1.1 => 1.2 ===
--- Products/QueueCatalog/www/edit.zpt:1.1 Thu Sep 5 17:21:05 2002
+++ Products/QueueCatalog/www/edit.zpt Fri Sep 6 12:20:49 2002
@@ -24,22 +24,22 @@
Catalog location
</td>
<td align="left" valign="top" colspan="3">
- <input name="location"
+ <input name="location" size="40"
tal:attributes="value here/manage_getLocation" />
</td>
</tr>
<tr tal:define="indexes here/getIndexInfo" tal:condition="indexes">
<td align="left" valign="top"><div class="form-optional">
- Indexes to defer
+ Indexes to update immediately
</td>
<td align="left" valign="top" colspan="3">
-<select name="deferred_indexes:list" multiple="multiple"
- tal:define="deferred_indexes here/getDeferredIndexes">
+<select name="immediate_indexes:list" multiple="multiple"
+ tal:define="immediate_indexes here/getImmediateIndexes">
<option tal:repeat="index_info indexes"
tal:attributes="value index_info/id; selected python:
- index_info['id'] in deferred_indexes"
+ index_info['id'] in immediate_indexes"
tal:content="string: ${index_info/id} (${index_info/meta_type})"></option>
</select>