[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/ Documented issue 466.

Christian Theune ct at gocept.com
Fri Dec 2 12:04:42 EST 2005


Log message for revision 40492:
  Documented issue 466.
  

Changed:
  U   Zope3/trunk/src/zope/app/catalog/README.txt
  U   Zope3/trunk/src/zope/app/catalog/browser/README.txt
  U   Zope3/trunk/src/zope/app/catalog/browser/advanced.pt
  U   Zope3/trunk/src/zope/app/rotterdam/zope3_tablelayout.css

-=-
Modified: Zope3/trunk/src/zope/app/catalog/README.txt
===================================================================
--- Zope3/trunk/src/zope/app/catalog/README.txt	2005-12-02 17:02:11 UTC (rev 40491)
+++ Zope3/trunk/src/zope/app/catalog/README.txt	2005-12-02 17:04:41 UTC (rev 40492)
@@ -217,6 +217,14 @@
     >>> list(cat.apply({'color': 'red'}))
     [2]
 
+WARNING: There is an issue here: The updateIndexes() method will include all
+objects that are registered with the next reachable IntId utility. If no IntId
+utility exists in the same site as the catalog, you will end up with objects
+not belonging to the site of the catalog. A work around is to add an IntId
+utility parallel to your catalog. See
+http://www.zope.org/Collectors/Zope3-dev/466 for the current status of this
+issue.
+
 There's an alternate search interface that returns "result sets".
 Result sets provide access to objects, rather than object ids:
 

Modified: Zope3/trunk/src/zope/app/catalog/browser/README.txt
===================================================================
--- Zope3/trunk/src/zope/app/catalog/browser/README.txt	2005-12-02 17:02:11 UTC (rev 40491)
+++ Zope3/trunk/src/zope/app/catalog/browser/README.txt	2005-12-02 17:04:41 UTC (rev 40492)
@@ -261,7 +261,7 @@
   ... """)
   HTTP/1.1 200 Ok
   ...
-  <table border="0">
+  <table class="listing" summary="Indexes">
      <tr><th>Index</th>
          <th>Document Count</th>
          <th>Word Count</th>
@@ -357,7 +357,7 @@
   ... """)
   HTTP/1.1 200 Ok
   ...
-  <table border="0">
+  <table class="listing" summary="Indexes">
      <tr><th>Index</th>
          <th>Document Count</th>
          <th>Word Count</th>

Modified: Zope3/trunk/src/zope/app/catalog/browser/advanced.pt
===================================================================
--- Zope3/trunk/src/zope/app/catalog/browser/advanced.pt	2005-12-02 17:02:11 UTC (rev 40491)
+++ Zope3/trunk/src/zope/app/catalog/browser/advanced.pt	2005-12-02 17:04:41 UTC (rev 40492)
@@ -5,7 +5,7 @@
 
 <h2 i18n:translate="">Catalog statistics</h2>
 
-<table border="0">
+<table class="listing" summary="Indexes">
    <tr><th i18n:translate="">Index</th>
        <th i18n:translate="">Document Count</th>
        <th i18n:translate="">Word Count</th>
@@ -23,6 +23,13 @@
            i18n:attributes="value reindex-button"/>
 </form>
 
+<div class="bug">
+  Please make sure to install an IntId utility before using the reindex
+  function. This is a known issue that will be removed in Zope 3.3. See <a
+    href="http://www.zope.org/Collectors/Zope3-dev/466">Issue 466</a> for a
+  detailed description and the current status.  
 </div>
+
+</div>
 </body>
 </html>

Modified: Zope3/trunk/src/zope/app/rotterdam/zope3_tablelayout.css
===================================================================
--- Zope3/trunk/src/zope/app/rotterdam/zope3_tablelayout.css	2005-12-02 17:02:11 UTC (rev 40491)
+++ Zope3/trunk/src/zope/app/rotterdam/zope3_tablelayout.css	2005-12-02 17:04:41 UTC (rev 40492)
@@ -653,3 +653,14 @@
     padding: 0.5em 1em;
     vertical-align: middle;
 }
+
+div.bug {
+    background: #FFCE7B;
+    border: 1px solid #FFA500;
+    color: Black;
+    font: bold 80% Verdana, Helvetica, Arial, sans-serif;
+    margin: 2em 1em 1em 0em;
+    padding: 0.5em 1em;
+    vertical-align: middle;
+}
+



More information about the Zope3-Checkins mailing list