[Zope-CVS] SVN: zope2/ Zope2 index based on Zemantic (just testing framework, for now).

Tres Seaver tseaver at zope.com
Thu Mar 24 18:25:42 EST 2005


Log message for revision 378:
  Zope2 index based on Zemantic (just testing framework, for now).

Changed:
  A   zope2/
  A   zope2/Products/
  A   zope2/Products/ZemanticIndex/
  A   zope2/Products/ZemanticIndex/Extensions/
  A   zope2/Products/ZemanticIndex/Extensions/README.txt
  A   zope2/Products/ZemanticIndex/Products/
  A   zope2/Products/ZemanticIndex/Products/CMFCore/
  A   zope2/Products/ZemanticIndex/Products/CMFDefault/
  A   zope2/Products/ZemanticIndex/Products/CMFSetup/
  A   zope2/Products/ZemanticIndex/Products/CMFTopic/
  A   zope2/Products/ZemanticIndex/Products/CMFUid/
  A   zope2/Products/ZemanticIndex/Products/DCWorkflow/
  A   zope2/Products/ZemanticIndex/Products/ZemanticIndex/
  A   zope2/Products/ZemanticIndex/Products/ZemanticIndex/README.txt
  A   zope2/Products/ZemanticIndex/Products/ZemanticIndex/__init__.py
  A   zope2/Products/ZemanticIndex/Products/ZemanticIndex/index.py
  A   zope2/Products/ZemanticIndex/Products/ZemanticIndex/interfaces.py
  A   zope2/Products/ZemanticIndex/Products/ZemanticIndex/tests/
  A   zope2/Products/ZemanticIndex/Products/ZemanticIndex/tests/__init__.py
  A   zope2/Products/ZemanticIndex/Products/ZemanticIndex/tests/test_cataloguing.py
  A   zope2/Products/ZemanticIndex/Products-1.4/
  A   zope2/Products/ZemanticIndex/Products-1.5/
  A   zope2/Products/ZemanticIndex/Products-1.5/README.txt
  A   zope2/Products/ZemanticIndex/Products-1.5/products-marker
  A   zope2/Products/ZemanticIndex/Products-1.5/rdfmail/
  A   zope2/Products/ZemanticIndex/Products-1.5/rdfmail/__init__.py
  A   zope2/Products/ZemanticIndex/Products-1.5/rdfmail/rdfmail.py
  A   zope2/Products/ZemanticIndex/Products-1.5/rdfmail/tests/
  A   zope2/Products/ZemanticIndex/Products-1.5/rdfmail/tests/__init__.py
  A   zope2/Products/ZemanticIndex/Products-1.5/rdfmail/tests/test_rdfmail.py
  A   zope2/Products/ZemanticIndex/README.txt
  A   zope2/Products/ZemanticIndex/bin/
  A   zope2/Products/ZemanticIndex/bin/runzope
  A   zope2/Products/ZemanticIndex/bin/runzope.bat
  A   zope2/Products/ZemanticIndex/bin/zopectl
  A   zope2/Products/ZemanticIndex/bin/zopeservice.py
  A   zope2/Products/ZemanticIndex/etc/
  A   zope2/Products/ZemanticIndex/etc/site.zcml.aside
  A   zope2/Products/ZemanticIndex/etc/zope.conf
  A   zope2/Products/ZemanticIndex/import/
  A   zope2/Products/ZemanticIndex/import/README.txt
  A   zope2/Products/ZemanticIndex/lib/
  A   zope2/Products/ZemanticIndex/lib/python/
  A   zope2/Products/ZemanticIndex/log/
  A   zope2/Products/ZemanticIndex/log/README.txt
  A   zope2/Products/ZemanticIndex/log/Z2.log
  A   zope2/Products/ZemanticIndex/log/event.log
  A   zope2/Products/ZemanticIndex/var/
  A   zope2/Products/ZemanticIndex/var/README.txt
  A   zope2/Products/ZemanticIndex/zope.conf.old

-=-
Added: zope2/Products/ZemanticIndex/Extensions/README.txt
===================================================================
--- zope2/Products/ZemanticIndex/Extensions/README.txt	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/Extensions/README.txt	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,3 @@
+Files containing Python source code for External Method should be
+placed in this directory.  A freshly created instance should only
+contain this README.txt file in this directory.

Added: zope2/Products/ZemanticIndex/Products/ZemanticIndex/README.txt
===================================================================
--- zope2/Products/ZemanticIndex/Products/ZemanticIndex/README.txt	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/Products/ZemanticIndex/README.txt	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,26 @@
+ZemanticIndex Product README
+
+  Overview
+
+    This product allows a Zemantic triple store to index content within
+    a Zope2 catalog.
+
+  Indexing Content
+
+    The index adapts the object being indexed (the "subject", in RDF terms)
+    to IZemanticInfo, which returns a sequence of two-tuple statement
+    fragments about the subject.  Thses statements are in the form,
+    (<predicate>, <object>).  The index then constructs three-tuples from
+    these values, in the form (<subject>, <predicate>, <object>), using
+    the catalog's UID as the first first term
+
+  Searching Content
+
+    The index expects its 'query' object to be adaptable to IZemanticInfo.
+    It uses the two-tuples supplied by that adapter to synthesize a query
+    for matching documents, duing an "and" search by default.  The 'operator'
+    passed to the index can be either 'and' (perform an intersection), or
+    an 'or' (perform a union).
+
+    As a convenience for HTML-generated queries, the indes will also
+    accept its 'query' term as a sequence of (<predicate>, <object>) tuples.

Added: zope2/Products/ZemanticIndex/Products/ZemanticIndex/__init__.py
===================================================================
--- zope2/Products/ZemanticIndex/Products/ZemanticIndex/__init__.py	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/Products/ZemanticIndex/__init__.py	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,7 @@
+""" Zope2 product wrapping a Zemantic triple-store as a PluginIndex.
+
+$Id$
+"""
+
+def initialize(context):
+    pass

Added: zope2/Products/ZemanticIndex/Products/ZemanticIndex/index.py
===================================================================
--- zope2/Products/ZemanticIndex/Products/ZemanticIndex/index.py	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/Products/ZemanticIndex/index.py	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,129 @@
+""" Classes:  ZemanticIndex
+
+$Id$
+"""
+from zope.interface import implements
+
+from Products.ZemanticIndex.interfaces import IZemanticIndex
+from Products.ZemanticIndex.interfaces import IZemanticInfo
+
+class ZemanticIndex:
+    """ Adapt the zemantic triple store to a Zope2 plugin index.
+    """
+    implements(IZemanticIndex)
+
+    def __init__(self, id):
+        self._id = id
+        self._stuff = {} # XXX: Stubbed out to get tests going
+
+    #
+    #   IPluginIndex implementation
+    #
+    def getId(self):
+        """ See interfaces.IPluginIndex.
+        """
+        return self._id
+
+    def getEntryForObject(self, documentId, default=None):
+        """ See interfaces.IPluginIndex.
+
+        o Returns a set of triples.
+        """
+        return self._stuff.get(documentId, default)
+
+    def getIndexSourceNames(self):
+        """ See interfaces.IPluginIndex.
+
+        o Note that since we index triples via adaptation to IZemanticInfo,
+          this is not meaningful
+        """
+        return ()
+
+    def index_object(self, documentId, obj, threshold=None):
+        """ See interfaces.IPluginIndex.
+        """
+        triples = []
+        info = IZemanticInfo(obj)
+        subject = info.getSubject()
+
+        for predicate, object in info.listPredicatesAndObjects():
+            triples.append((subject, predicate, object))
+
+        self._stuff[documentId] = tuple(triples)
+
+    def unindex_object(self, documentId):
+        """ See interfaces.IPluginIndex.
+        """
+
+    def _apply_index(self, request, cid=''):
+        """ See interfaces.IPluginIndex.
+        """
+    
+    def numObjects(self):
+        """ See interfaces.IPluginIndex.
+
+        o This will be the size of the unique set of subjects.
+        """
+        return len(self._stuff.keys())
+
+    def indexSize(self):
+        """ See interfaces.IPluginIndex.
+
+        o This will be the total number of triples indexed.
+        """
+        count = 0
+        for k, v in self._stuff.items():
+            count += len(v)
+        return count
+    
+    def clear(self):
+        """ See interfaces.IPluginIndex.
+        """
+        self._stuff.clear()
+
+    #
+    #   IZemanticIndex implementation
+    #
+    def listUniqueSubjects(self):
+        """ See IZemanticIndex.
+        """
+        return self._listUnique(0)
+
+    def listUniquePredicates(self):
+        """ See IZemanticIndex.
+        """
+        return self._listUnique(1)
+
+    def listUniqueObjects(self):
+        """ See IZemanticIndex.
+        """
+        return self._listUnique(2)
+
+    def search(self, subject, predicate, object):
+        """ See IZemanticIndex.
+        """
+        def _passes(triple):
+            if subject is not None and triple[0] != subject:
+                return 0
+            if predicate is not None and triple[1] != predicate:
+                return 0
+            if object is not None and triple[2] != object:
+                return 0
+            return 1
+
+        for triples in self._stuff.values():
+            for triple in triples:
+                if _passes(triple):
+                    yield triple
+
+    #
+    #   Helper methods
+    #
+    def _listUnique(self, which):
+        seen = {}
+        for triples in self._stuff.values():
+            for triple in triples:
+                seen[triple[which]] = 1
+
+        return seen.keys()
+

Added: zope2/Products/ZemanticIndex/Products/ZemanticIndex/interfaces.py
===================================================================
--- zope2/Products/ZemanticIndex/Products/ZemanticIndex/interfaces.py	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/Products/ZemanticIndex/interfaces.py	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,107 @@
+""" ZemanticIndex interfaces
+
+$Id$
+"""
+
+from zope.interface import Interface
+
+class IZemanticInfo(Interface):
+    
+    def getSubject():
+        """ Return the subject ID for the object being indexed.
+
+        o Returned value must be one of the unicode-string-derived
+          statement element types from the zemantic package.
+        """
+
+    def listPredicatesAndObjects():
+        """ Return an iterable containing two-tuples describing the object.
+
+        o Tuples should be in the form (<predicate>, <object>)
+        
+        o Each member of the tuple must be one of the unicode-string-derived
+          statement element types from the zemantic package.
+        """
+
+class IPluginIndex(Interface):
+
+    #
+    #   Zope2's PluginIndexInterface (could be five:bridge'd).
+    #
+    def getId():
+        """ Return the ID of the index.
+        """
+
+    def getEntryForObject(documentId, default=None):
+        """ Return all information contained for 'documentId'.
+        """
+
+    def getIndexSourceNames():
+        """ Return a sequence of indexed attribute names.
+        """
+
+    def index_object(documentId, obj, threshold=None):
+        """ Index an object.
+
+        o 'documentId' is the integer ID of the document.
+
+        o 'obj' is the object to be indexed.
+
+        o 'threshold' is the number of values to process between committing
+           subtransactions.  If None, subtransactions are disabled.
+        """
+
+    def unindex_object(documentId):
+        """ Remove all information about 'documentId' from the index.
+        """
+
+    def _apply_index(request, cid=''):
+        """ Apply the index to query parameters given in 'request'.
+
+        o The 'request' argument should be a mapping object.
+
+        o If the request does not contain the needed parametrs, then
+          return None is returned.
+
+        o If the request contains a parameter with the name of the
+          column and this parameter is either a Record or a class
+          instance then it is assumed that the parameters of this index
+          are passed as attributes.
+
+        o Return a two-tuple, (<resultset>, <argnames>).
+          The first object is a ResultSet containing the 'documentIds'
+          of the matching records.  The second object is a tuple
+          containing the names of all data fields used from the request.
+        """
+    
+    def numObjects():
+        """ Return the number of indexed objects.
+        """
+
+    def indexSize():
+        """ Return the size of the index in terms of distinct values.
+        """
+    
+    def clear():
+        """ Empty the index.
+        """
+
+class IZemanticIndex(IPluginIndex):
+
+    def listUniqueSubjects():
+        """ Return an iterable of the unique subjects in our triple store.
+        """
+
+    def listUniquePredicates():
+        """ Return an iterable of the unique predicates in our triple store.
+        """
+
+    def listUniqueObjects():
+        """ Return an iterable of the unique objects in our triple store.
+        """
+
+    def search(subject, predicate, object):
+        """ Return a set of triples matching the supplied values.
+
+        o For any of the values supplied, None is a wildcard.
+        """

Added: zope2/Products/ZemanticIndex/Products/ZemanticIndex/tests/__init__.py
===================================================================
--- zope2/Products/ZemanticIndex/Products/ZemanticIndex/tests/__init__.py	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/Products/ZemanticIndex/tests/__init__.py	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,4 @@
+""" ZemanticIndex product unit tests
+
+$Id$
+"""

Added: zope2/Products/ZemanticIndex/Products/ZemanticIndex/tests/test_cataloguing.py
===================================================================
--- zope2/Products/ZemanticIndex/Products/ZemanticIndex/tests/test_cataloguing.py	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/Products/ZemanticIndex/tests/test_cataloguing.py	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,109 @@
+""" Test the cataloguing behavior of the index.
+
+$Id$
+"""
+import unittest
+
+class ZemanticIndexCatalogTests(unittest.TestCase):
+
+    def _getTargetClass(self):
+        from Products.ZemanticIndex.index import ZemanticIndex
+        return ZemanticIndex
+
+    def _makeOne(self, *args, **kw):
+        return self._getTargetClass()(*args, **kw)
+
+    def _makePerson(self, id, assertions):
+
+        from zope.interface import implements
+        from Products.ZemanticIndex.interfaces import IZemanticInfo
+
+        class _Person:
+
+            implements(IZemanticInfo)
+
+            def __init__(self, name, assertions):
+                self._name = name
+                self._assertions = tuple(assertions)
+
+            def getSubject(self):
+                return self._name
+
+            def listPredicatesAndObjects(self):
+                return self._assertions
+
+        return _Person(id, assertions)
+
+    def test_IZemanticIndex_conformance(self):
+        from zope.interface.verify import verifyClass
+        from Products.ZemanticIndex.interfaces import IZemanticIndex
+        verifyClass(IZemanticIndex, self._getTargetClass())
+
+    def test_empty(self):
+        index = self._makeOne(id='empty')
+        self.assertEqual(index.getId(), 'empty')
+
+        self.assertEqual(index.getEntryForObject('nonesuch'), None)
+        marker = []
+        self.failUnless(index.getEntryForObject('nonesuch', marker) is marker)
+
+        self.assertEqual(index.getIndexSourceNames(), ())
+        self.assertEqual(index.numObjects(), 0)
+        self.assertEqual(index.indexSize(), 0)
+        self.assertEqual(len(list(index.listUniqueSubjects())), 0)
+        self.assertEqual(len(list(index.listUniquePredicates())), 0)
+        self.assertEqual(len(list(index.listUniqueObjects())), 0)
+
+        self.assertEqual(len(list(index.search(None, None, None))), 0)
+
+    def test_index_object_simple(self):
+        index = self._makeOne(id='simple')
+
+        _PERSON_ID = 'TRES'
+        _NAME = 'Tres'
+        _ASSERTIONS = (('likes', 'cheese'),
+                       ('hates', 'liver'),
+                       ('loves', 'beer'),
+                       ('likes', 'baseball'),
+                      )
+
+        person = self._makePerson(_NAME, _ASSERTIONS)
+        index.index_object(_PERSON_ID, person)
+
+        info = index.getEntryForObject(_PERSON_ID)
+        self.assertEqual(type(info), type(()))
+        self.assertEqual(len(info), len(_ASSERTIONS))
+
+        for item in info:
+            self.assertEqual(item[0], _NAME)
+            self.failUnless((item[1], item[2]) in _ASSERTIONS)
+
+        self.assertEqual(index.numObjects(), 1)
+        self.assertEqual(index.indexSize(), len(_ASSERTIONS))
+
+        subjects = list(index.listUniqueSubjects())
+        self.assertEqual(len(subjects), 1)
+        self.assertEqual(subjects[0], _NAME)
+
+        predicates = list(index.listUniquePredicates())
+        self.assertEqual(len(predicates), len(_ASSERTIONS)-1)
+        for predicate in [x[0] for x in _ASSERTIONS]:
+            self.failUnless(predicate in predicates)
+
+        objects = list(index.listUniqueObjects())
+        self.assertEqual(len(objects), len(_ASSERTIONS))
+        for object in [x[1] for x in _ASSERTIONS]:
+            self.failUnless(object in objects)
+
+        results = list(index.search(None, None, None))
+        self.assertEqual(len(results), len(_ASSERTIONS))
+        for assertion in _ASSERTIONS:
+            self.failUnless((_NAME, assertion[0], assertion[1]) in results)
+
+def test_suite():
+    return unittest.TestSuite((
+        unittest.makeSuite(ZemanticIndexCatalogTests),
+        ))
+
+if __name__ == '__main__':
+    unittest.main(defaultTest='test_suite')

Added: zope2/Products/ZemanticIndex/Products-1.5/README.txt
===================================================================
--- zope2/Products/ZemanticIndex/Products-1.5/README.txt	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/Products-1.5/README.txt	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,3 @@
+Additional products for your Zope instance should be installed in this
+directory.  A freshly created instance should only contain this
+README.txt file in this directory.

Added: zope2/Products/ZemanticIndex/Products-1.5/products-marker
===================================================================

Added: zope2/Products/ZemanticIndex/Products-1.5/rdfmail/__init__.py
===================================================================
--- zope2/Products/ZemanticIndex/Products-1.5/rdfmail/__init__.py	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/Products-1.5/rdfmail/__init__.py	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,7 @@
+""" Map mail messages onto RDF.
+
+$Id$
+"""
+
+def initialize(context):
+    pass

Added: zope2/Products/ZemanticIndex/Products-1.5/rdfmail/rdfmail.py
===================================================================
--- zope2/Products/ZemanticIndex/Products-1.5/rdfmail/rdfmail.py	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/Products-1.5/rdfmail/rdfmail.py	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,12 @@
+""" Classes:  RDFMail
+
+$Id$
+"""
+
+class RDFMail:
+    """ Adapt RFC822 mail messages to a sequence of RDF statements.
+    """
+    def __init__(self, context):
+        self._context = context
+
+

Added: zope2/Products/ZemanticIndex/Products-1.5/rdfmail/tests/__init__.py
===================================================================
--- zope2/Products/ZemanticIndex/Products-1.5/rdfmail/tests/__init__.py	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/Products-1.5/rdfmail/tests/__init__.py	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,4 @@
+""" Unit tests for rdfmail product.
+
+$Id$
+"""

Added: zope2/Products/ZemanticIndex/Products-1.5/rdfmail/tests/test_rdfmail.py
===================================================================
--- zope2/Products/ZemanticIndex/Products-1.5/rdfmail/tests/test_rdfmail.py	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/Products-1.5/rdfmail/tests/test_rdfmail.py	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,42 @@
+""" Unit tests for RDFMail class.
+
+$Id$
+"""
+import unittest
+
+MESSAGE="""\
+Date: Monday, 3 January 2005 12:00:00 GMT 
+From: Tres Seaver <tseaver at zope.com>
+To: Michel Pelletier <michel at dialnetwork.com>
+Subject: Testing rdfmail
+
+This is a test.  This is only a test.
+"""
+
+class RDFMailTests(unittest.TestCase):
+
+    def _getTargetClass(self):
+        from Products.rdfmail.rdfmail import RDFMail
+        return RDFMail
+
+    def _makeOne(self, *args, **kw):
+        return self._getTargetClass()(*args, **kw)
+
+    def _makeMessage(self, text=MESSAGE):
+        import rfc822
+        from StringIO import StringIO
+        return rfc822.Message(StringIO(text))
+
+    def test_simple(self):
+        message = self._makeMessage()
+        rm = self._makeOne(message)
+        self.assertEqual(rm._context, message)
+
+def test_suite():
+    suite = unittest.TestSuite()
+    loader = unittest.defaultTestLoader
+    suite.addTest(loader.loadTestsFromTestCase(RDFMailTests))
+    return suite
+
+if __name__ == '__main__':
+    unittest.main(defaultTest='test_suite')

Added: zope2/Products/ZemanticIndex/README.txt
===================================================================
--- zope2/Products/ZemanticIndex/README.txt	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/README.txt	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,9 @@
+This directory contains an "instance home" for the Zope application
+server.  It contains the following directories:
+
+  bin/         Scripts used to control the Zope instance
+  etc/         Configuration files
+  Extensions/  Python sources for External Methods
+  log/         Log files
+  Products/    Installed products specific to the instance
+  var/         Run-time data files, including the object database

Added: zope2/Products/ZemanticIndex/bin/runzope
===================================================================
--- zope2/Products/ZemanticIndex/bin/runzope	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/bin/runzope	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,13 @@
+#! /bin/sh
+
+PYTHON="/home/tseaver/projects/paris/bin/python"
+ZOPE_HOME="/home/tseaver/projects/paris/opt/Zope2"
+INSTANCE_HOME="/home/tseaver/projects/paris/var/zope"
+CONFIG_FILE="/home/tseaver/projects/paris/var/zope/etc/zope.conf"
+SOFTWARE_HOME="/home/tseaver/projects/paris/opt/Zope2/lib/python"
+PYTHONPATH="$SOFTWARE_HOME"
+export PYTHONPATH INSTANCE_HOME SOFTWARE_HOME
+
+ZOPE_RUN="$SOFTWARE_HOME/Zope2/Startup/run.py"
+
+exec "$PYTHON" "$ZOPE_RUN" -C "$CONFIG_FILE" "$@"


Property changes on: zope2/Products/ZemanticIndex/bin/runzope
___________________________________________________________________
Name: svn:executable
   + 

Added: zope2/Products/ZemanticIndex/bin/runzope.bat
===================================================================
--- zope2/Products/ZemanticIndex/bin/runzope.bat	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/bin/runzope.bat	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,8 @@
+ at set PYTHON=/home/tseaver/projects/paris/bin/python
+ at set ZOPE_HOME=/home/tseaver/projects/paris/opt/Zope-2.8-head
+ at set INSTANCE_HOME=/home/tseaver/projects/paris/var/zope
+ at set SOFTWARE_HOME=/home/tseaver/projects/paris/opt/Zope-2.8-head/lib/python
+ at set CONFIG_FILE=/home/tseaver/projects/paris/var/zope\etc\zope.conf
+ at set PYTHONPATH=%SOFTWARE_HOME%
+ at set ZOPE_RUN=%SOFTWARE_HOME%\Zope\Startup\run.py
+"%PYTHON%" "%ZOPE_RUN%" -C "%CONFIG_FILE%" %1 %2 %3 %4 %5 %6 %7

Added: zope2/Products/ZemanticIndex/bin/zopectl
===================================================================
--- zope2/Products/ZemanticIndex/bin/zopectl	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/bin/zopectl	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,13 @@
+#! /bin/sh
+
+PYTHON="/home/tseaver/projects/paris/bin/python"
+ZOPE_HOME="/home/tseaver/projects/paris/opt/Zope2"
+INSTANCE_HOME="/home/tseaver/projects/paris/var/zope"
+CONFIG_FILE="/home/tseaver/projects/paris/var/zope/etc/zope.conf"
+SOFTWARE_HOME="/home/tseaver/projects/paris/opt/Zope2/lib/python"
+PYTHONPATH="$SOFTWARE_HOME"
+export PYTHONPATH INSTANCE_HOME SOFTWARE_HOME
+
+ZDCTL="$SOFTWARE_HOME/Zope2/Startup/zopectl.py"
+
+exec "$PYTHON" "$ZDCTL" -C "$CONFIG_FILE" "$@"


Property changes on: zope2/Products/ZemanticIndex/bin/zopectl
___________________________________________________________________
Name: svn:executable
   + 

Added: zope2/Products/ZemanticIndex/bin/zopeservice.py
===================================================================
--- zope2/Products/ZemanticIndex/bin/zopeservice.py	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/bin/zopeservice.py	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,114 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
+"""
+A Zope Windows NT service frontend.
+
+Usage:
+
+  Installation
+
+    The Zope service should be installed by the Zope Windows
+    installer. You can manually install, uninstall the service from
+    the commandline.
+
+      ntservice.py [options] install|update|remove|start [...]
+           |stop|restart [...]|debug [...]
+
+    Options for 'install' and 'update' commands only:
+
+     --username domain\username : The Username the service is to run
+                                  under
+
+     --password password : The password for the username
+
+     --startup [manual|auto|disabled] : How the service starts,
+                                        default = manual
+
+    Commands
+
+      install : Installs the service
+
+      update : Updates the service, use this when you change
+               the service class implementation 
+
+      remove : Removes the service
+
+      start : Starts the service, this can also be done from the
+              services control panel
+
+      stop : Stops the service, this can also be done from the
+             services control panel
+
+      restart : Restarts the service
+
+      debug : Runs the service in debug mode
+
+    You can view the usage options by running ntservice.py without any
+    arguments.
+
+    Note: you may have to register the Python service program first,
+
+      win32\PythonService.exe /register
+
+  Starting Zope
+
+    Start Zope by clicking the 'start' button in the services control
+    panel. You can set Zope to automatically start at boot time by
+    choosing 'Auto' startup by clicking the 'statup' button.
+
+  Stopping Zope
+
+    Stop Zope by clicking the 'stop' button in the services control
+    panel. You can also stop Zope through the web by going to the
+    Zope control panel and by clicking 'Shutdown'.
+
+  Event logging
+
+    Zope events are logged to the NT application event log. Use the
+    event viewer to keep track of Zope events.
+
+Note: to successfully run this script, the Zope software home needs to be on
+the PYTHONPATH.
+"""
+
+import os.path
+from os.path import dirname as dn
+import sys
+
+# these are replacements from mkzopeinstance
+PYTHONW = r'/home/tseaver/projects/paris/bin/python'
+SOFTWARE_HOME=r'/home/tseaver/projects/paris/opt/Zope-2.8-head/lib/python'
+INSTANCE_HOME = r'/home/tseaver/projects/paris/var/zope'
+ZOPE_HOME = r'/home/tseaver/projects/paris/opt/Zope-2.8-head'
+
+ZOPE_RUN = r'%s\Zope\Startup\run.py' % SOFTWARE_HOME
+CONFIG_FILE= os.path.join(INSTANCE_HOME, 'etc', 'zope.conf')
+PYTHONSERVICE_EXE=r'%s\bin\PythonService.exe' % ZOPE_HOME
+
+sys.path.insert(0, SOFTWARE_HOME)
+sys.path.insert(1, os.path.join(SOFTWARE_HOME, 'third_party', 'docutils'))
+sys.path.insert(2, os.path.join(SOFTWARE_HOME, 'third_party', 'docutils', 'extras'))
+
+from nt_svcutils.service import Service
+
+servicename = 'Zope_%s' % str(hash(INSTANCE_HOME.lower()))
+
+class InstanceService(Service):
+    start_cmd = '"%s" "%s" -C "%s"' % (PYTHONW, ZOPE_RUN, CONFIG_FILE)
+    _svc_name_ = servicename
+    _svc_display_name_ = 'Zope instance at %s' % INSTANCE_HOME
+    _exe_name_ = PYTHONSERVICE_EXE
+
+if __name__ == '__main__':
+    import win32serviceutil
+    win32serviceutil.HandleCommandLine(InstanceService)

Added: zope2/Products/ZemanticIndex/etc/site.zcml.aside
===================================================================
--- zope2/Products/ZemanticIndex/etc/site.zcml.aside	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/etc/site.zcml.aside	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,40 @@
+<zopeConfigure xmlns='http://namespaces.zope.org/zope'>
+
+<!-- XXX:  This is likely not suitable for Five-based use!!! -->
+
+<!-- set up what we minimally need for our particular Zope 3 use -->
+
+<include package="zope.configuration" file="meta.zcml" />
+<include package="zope.app.publisher.browser" file="meta.zcml" />
+<include package="zope.app.browser.form" file="meta.zcml" />
+<include package="zope.app.component" file="meta.zcml" />
+<include package="zope.app.event" file="meta.zcml" />
+<include package="zope.app.schema" file="meta.zcml" />
+<include package="zope.app.i18n" file="meta.zcml" />
+<include package="zope.app.component" />
+<include package="zope.app.browser.form" />
+<include package="zope.app.browser.exception" />
+<include package="zope.app.i18n" />
+<include package="zope.app.event" />
+
+<adapter for="*"
+  factory="zope.app.traversing.adapters.Traverser"
+  provides="zope.app.interfaces.traversing.ITraverser"
+  />
+
+<adapter for="*"
+  factory="zope.app.traversing.adapters.DefaultTraversable"
+  provides="zope.app.interfaces.traversing.ITraversable" />
+
+<!-- add include directives for products here -->
+
+<!--
+<include package="Products.example" />
+-->
+
+<<SITE_ZCML_INCLUDES>>
+
+<!-- end products -->
+
+</zopeConfigure>
+

Added: zope2/Products/ZemanticIndex/etc/zope.conf
===================================================================
--- zope2/Products/ZemanticIndex/etc/zope.conf	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/etc/zope.conf	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,807 @@
+###############################################################################
+# Welcome to Zope 2.
+###############################################################################
+#
+# This is the Zope configuration file.  The Zope configuration file
+# shows what the default configuration directives are, and show
+# examples for each directive.  To declare a directive, make sure that
+# you add it to a line that does not begin with '#'.  Note that comments 
+# are only allowed at the beginning of a line: you may not add comments
+# after directive text on the same line.
+
+# ZConfig "defines" used for later textual substitution
+
+%define BASE_DIR /home/tseaver/projects/paris
+%define INSTANCE $BASE_DIR/var/zope
+%define ZOPE $BASE_DIR/opt/Zope2
+
+# Directive: instancehome
+#
+# Description:
+#     The path to the data files, local product files, import directory,
+#     and Extensions directory used by Zope.
+#
+# Required (no default)
+#
+# Example:
+#
+#    instancehome /home/chrism/projects/sessions
+
+instancehome $INSTANCE
+
+# Directive: environment
+#
+# Description:
+#     A section which can be used to define arbitrary key-value pairs
+#     for use as environment variables during Zope's run cycle.  It
+#     is not recommended to set system-related environment variables such as
+#     PYTHONPATH within this section.
+#
+# Default: unset
+#
+# Example:
+#
+<environment>
+   ZOPE3_SITE_ZCML $INSTANCE/etc/site.zcml
+</environment>
+
+# Directive: clienthome
+#
+# Description:
+#     The directory in which a running Zope's process identifier files are
+#     placed.
+#
+# Default: $INSTANCE/var
+#
+# Example:
+#
+#    clienthome /home/chrism/projects/sessions/var
+
+
+# Directive: path
+#
+# Description:
+#     Name of a directory which should be inserted into the
+#     the beginning of Python's module search path.  This directive
+#     may be specified as many times as needed to insert additional
+#     directories.  The set of directories specified is inserted into the
+#     beginning of the module search path in the order which they are specified
+#     here.  Note that the processing of this directive may happen too late
+#     under some circumstances; it is recommended that you use the PYTHONPATH
+#     environment variable if using this directive doesn't work for you.
+#
+# Default: $INSTANCE/lib/python
+#
+# Example:
+#
+# path $INSTANCE/lib/python
+
+
+# Directive: products
+#
+# Description:
+#     Name of a directory that contains additional Product packages.  This
+#     directive may be used as many times as needed to add additional
+#     collections of products.  Each directory identified will be
+#     added to the __path__ of the Products package.  All Products are
+#     initialized in ascending alphabetical order by product name.  If
+#     two products with the same name exist in two Products directories,
+#     the order in which the packages appear here defines the load
+#     order.  The master Products directory exists in Zope's software home,
+#     and cannot be removed from the products path (and should not be added
+#     to it here).
+#
+# Default: $INSTANCE/Products
+#
+# Example:
+#
+products $BASE_DIR/opt/Products
+
+# Directive: debug-mode
+#
+# Description:
+#     A switch which controls several aspects of Zope operation useful for
+#     developing under Zope.  When debug mode is on:
+#
+#     - The process will not detach from the controlling terminal
+#
+#     - Errors in product initialization will cause startup to fail
+#       (instead of writing error messages to the event log file).
+#
+#     - Filesystem-based scripts such as skins, PageTemplateFiles, and
+#       DTMLFiles can be edited while the server is running and the server
+#       will detect these changes in real time.  When this switch is
+#       off, you must restart the server to see the changes.
+#
+#     Setting this to 'off' when Zope is in a
+#     production environment is encouraged, as it speeds execution (sometimes
+#     dramatically).
+#
+# Default: on
+#
+# Example:
+#
+#    debug-mode on
+
+
+# Directive: effective-user
+#
+# Description:
+#     If you intend to run Zope as the "root" user, you must supply this
+#     directive with an effective username or userid number to which Zope
+#     will 'suid' after the server ports are bound. This directive only
+#     has effect under UNIX and if Zope is started as the root user.
+#
+# Default: unset
+#
+# Example:
+#
+#    effective-user chrism
+
+
+# Directive: enable-product-installation
+#
+# Description:
+#     If this directive is turned, Zope performs 'product installation'
+#     (the registration of Python modules in various Products directories)
+#     at startup. Turning this off can speed Zope/ZEO startup time,
+#     but it can also cause your Control_Panel Product list to become
+#     desynchronized with the contents of your Products
+#     directories. 
+#
+# Default: on
+#
+# Example:
+#
+#    enable-product-installation off
+
+# Directive: locale
+#
+# Description:
+#     Enable locale (internationalization) support by supplying a locale
+#     name to be used. See your operating system documentation for locale
+#     information specific to your system. If your Python module does not
+#     support the locale module, or if the requested locale is not
+#     supported by your system, an error will be raised and Zope will not
+#     start.
+#
+# Default: unset
+#
+# Example:
+#
+#    locale fr_FR
+
+
+# Directives: port-base
+#
+# Description:
+#     Offset applied to the port numbers used for ZServer
+#     configurations.  For example, if the http-server port is 8080 and
+#     the port-base is 1000, the HTTP server will listen on port 9080.
+#     This makes it easy to change the complete set of ports used by a
+#     Zope server process
+#
+# Default:
+#
+#     0
+#
+# Example:
+#
+#     port-base 1000
+
+# Directive: datetime-format
+#
+# Description:
+#     Set this variable either to "us" or "international" to force the
+#     DateTime module to parse date strings either with
+#     month-before-days-before-year ("us") or
+#     days-before-month-before-year ("international").  The default
+#     behaviour of DateTime (when this setting is left unset) is to
+#     parse dates as US dates.
+#
+# Default: us
+#
+# Example:
+#
+#    datetime-format international
+
+
+# Directive: zserver-threads
+#
+# Description:
+#     Specify the number of threads that Zope's ZServer web server will use
+#     to service requests. The default is 4.
+#
+# Default: 4
+#
+# Example:
+#
+#    zserver-threads 10
+
+
+# Directive: python-check-interval
+#
+# Description:
+#     Specify an integer representing the Python interpreter "check
+#     interval" This interval determines how often the interpreter checks
+#     for periodic things such as thread switches and signal handlers. The
+#     Zope default is 500, but you may want to experiment with other values
+#     in order to attempt to increae performance in your particular
+#     environment.
+#
+# Default: 500
+#
+# Example:
+#
+#    python-check-interval 1000
+
+
+# Directive: zserver-read-only-mode
+#
+# Description:
+#     If this directive is set to 'on', it will cause Zope to inhibit the
+#     creation of log files and pid files. Access and event log files will
+#     be presented on standard output. Setting this directive 'on' causes
+#     pcgi, fastcgi, and daemon-related directives to have no effect.
+#
+# Default: off
+#
+# Example:
+#
+#    zserver-read-only-mode on
+
+
+# Directive: pid-filename
+#
+# Description:
+#     The path to the file in which the Zope process id(s) will be written.
+#     This defaults to client-home/Z2.pid.
+#
+# Default: CLIENT_HOME/Z2.pid
+#
+# Example:
+#
+#    pid-filename /home/chrism/projects/sessions/var/Z2.pid
+
+
+# Directive: lock-filename
+#
+# Description:
+#     The path to a "lock file" which will be locked by Zope while it's
+#     running.  This file is used by zopectl.py to determine if Zope is
+#     currently running.  This defaults to CLIENT_HOME/Z2.lock.
+#
+# Default: CLIENT_HOME/Z2.lock
+#
+# Example:
+#
+#    lock-filename /home/chrism/projects/sessions/var/Z2.lock
+
+
+
+# Directive: structured-text-header-level
+#
+# Description:
+#     Set the default starting HTML header level for structured text
+#     documents. The default is 3, which implies that top-level headers
+#     will be created with an <H3> tag.
+#
+# Default: 3
+#
+# Example:
+#
+#    structured-text-header-level 1
+
+# Directive: rest-input-encoding
+#
+# Description:
+#    Specifies the input encoding of re-StructuredText documents
+#    (e.g. 'utf-8', 'iso-8859-15' or any other valid encoding recognized
+#    by Python).  The default is your Python's default encoding.
+#
+# Default: unset (uses system default)
+#
+# Example:
+#
+#    rest-input-encoding iso-8859-15
+
+# Directive: rest-output-encoding
+#
+# Description:
+#    Specifies the output encoding of re-StructuredText documents
+#    (e.g. 'utf-8', 'iso-8859-15' or any other valid encoding recognized
+#    by Python).  The default is your Python's default encoding.
+#
+# Default: unset (uses system default)
+#
+# Example:
+#
+#    rest-output-encoding iso-8859-15
+
+# Directive: cgi-environment
+#
+# Description:
+#     A section which allows a user to define arbitrary key-value pairs for
+#     use as the initial CGI environment variables. This is useful
+#     when you want to proxy requests from another web server to Zserver,
+#     and would like Zserver's CGI environment to reflect the CGI
+#     environment of the other web server.
+#
+# Default: unset
+#
+# Example:
+#
+# <cgi-environment>
+#   HTTPS_SERVER Foobar Server 1.0
+#   HTTPS_PORT 443
+# </cgi-environment>
+
+
+
+# Directive: dns-server
+#
+# Description:
+#     Specify the IP address of your DNS server in order to cause resolved
+#     hostnames to be written to Zope's access log. By default, Zope will
+#     not resolve hostnames unless this is set.
+#
+# Default: unset
+#
+# Example:
+#
+#    dns-server 127.0.0.1
+
+
+# Directive: ip-address
+#
+# Description:
+#     The default IP address on which Zope's various server protocol
+#     implementations will listen for requests. If this is unset, Zope
+#     will listen on all IP addresses supported by the machine. This
+#     directive can be overridden on a per-server basis in the servers
+#     section.
+#
+# Default: unset
+#
+# Example:
+#
+#    ip-address 127.0.0.1
+
+
+# Directive: http-realm
+#
+# Description:
+#     The HTTP "Realm" header value sent by this Zope instance. This value
+#     often shows up in basic authentication dialogs.
+#
+# Default: Zope
+#
+# Example:
+#
+#    http-realm Slipknot
+
+
+# Directive: automatically-quote-dtml-request-data
+#
+# Description:
+#     Set this directive to 'off' in order to disable the autoquoting of
+#     implicitly retrieved REQUEST data by DTML code which contains a '<'
+#     when used in <dtml-var> construction. When this directive is 'on',
+#     all data implicitly retrieved from the REQUEST in DTML (as opposed to
+#     addressing REQUEST.somevarname directly) that contains a '<' will be
+#     HTML-quoted when interpolated via a <dtml-var> or &dtml- construct. This
+#     mitigates the possibility that DTML programmers will leave their
+#     sites open to a "client-side trojan" attack.
+#
+# Default: on
+#
+# Example:
+#
+#    automatically-quote-dtml-request-data on
+
+# Directive: trusted-proxy
+#
+# Description:
+#     Define one or more 'trusted-proxies' directives, each of which is a
+#     hostname or an IP address.  The set of definitions comprises a list
+#     of front-end proxies that are trusted to supply an accurate
+#     X-Forwarded-For header to Zope.  If a connection comes from
+#     a trusted proxy, Zope will trust any X-Forwarded header to contain
+#     the user's real IP address for the purposes of address-based
+#     authentication restriction.
+#
+# Default: unset
+#
+# Example:
+#
+#    trusted-proxy www.example.com
+#    trusted-proxy 192.168.1.1
+
+# Directive: maximum-security-manager-stack-size
+#
+# Description:
+#     This variable allows you to customize the size of the Zope
+#     SecurityManager stack. You shouldn't change this unless you know what
+#     it means.
+#
+# Default: 100
+#
+# Example:
+#
+#    maximum-security-manager-stack-size 200
+
+# Directive: publisher-profile-file
+#
+# Description:
+#    Names a file on the filesystem which causes Zope's Python
+#    profiling capabilities to be enabled.  For more information, see
+#    the Debug Information - > Profiling tab of Zope's Control_Panel
+#    via the Zope Management Interface.  IMPORTANT: setting this
+#    filename will cause Zope code to be executed much more slowly
+#    than normal.  This should not be enabled in production.  #
+# Default: unset
+#
+# Example:
+#
+#    publisher-profile-file $INSTANCE/var/profile.dat
+
+
+# Directive: security-policy-implementation
+#
+# Description:
+#     The default Zope security machinery is implemented in C.
+#     Change this to "python" to use the Python version of the
+#     Zope security machinery.  This impacts performance but
+#     is useful for debugging purposes and required by Products such as
+#     VerboseSecurity, which need to "monkey-patch" the security
+#     machinery.
+#
+# Default: C
+#
+# Example:
+#
+#    security-policy-implementation python
+security-policy-implementation python
+
+# Directive: skip-authentication-checking
+#
+# Description:
+#     Set this directive to 'on' to cause Zope to skip checks related
+#     to authentication, for servers which serve only anonymous content.
+#     Only works if security-policy-implementation is 'C'.
+#
+# Default: off
+#
+# Example:
+#
+#    skip-authentication-checking on
+
+
+# Directive: skip-ownership-checking
+#
+# Description:
+#     Set this directive to 'on' to cause Zope to ignore ownership checking
+#     when attempting to execute "through the web" code. By default, this
+#     directive is on in order to prevent 'trojan horse' security problems
+#     whereby a user with less privilege can cause a user with more
+#     privilege to execute dangerous code.
+#
+# Default: off
+#
+# Example:
+#
+#    skip-ownership-checking on
+skip-ownership-checking on
+
+# Directive: maximum-number-of-session-objects
+#
+# Description:
+#     An integer value representing the number of items to use as a
+#     "maximum number of subobjects" value of the
+#     '/temp_folder/session_data' transient object container.
+#
+# Default: 1000
+#
+# Example:
+#
+#    maximum-number-of-session-objects 10000
+
+
+# Directive: session-add-notify-script-path
+#
+# Description:
+#     An optional fill Zope path name of a callable object to be set as the
+#     "script to call on object addition" of the sessioN_data transient
+#     object container created in the /temp_folder folder at startup.
+#
+# Default: unset
+#
+# Example:
+#
+#    session-add-notify-script-path /scripts/add_notifier
+
+
+# Directive: session-delete-notify-script-path
+#
+# Description:
+#     An optional fill Zope path name of a callable object to be set as the
+#     "script to call on object deletion" of the sessioN_data transient
+#     object container created in the /temp_folder folder at startup.
+#
+# Default: unset
+#
+# Example:
+#
+#    session-delete-notify-script-path /scripts/del_notifier
+
+
+# Directive: session-timeout-minutes
+#
+# Description:
+#     An integer value representing the number of minutes to be used as the
+#     "data object timeout" of the '/temp_folder/session_data' transient
+#     object container.
+#
+# Default: 20
+#
+# Example:
+#
+#    session-timeout-minutes 30
+
+
+# Directive: suppress-all-access-rules
+#
+# Description:
+#     If this directive is set to on, no access rules in your Zope site
+#     will be executed. This is useful if you "lock yourself out" of a
+#     particular part of your site by setting an improper access rule.
+#
+# Default: off
+#
+# Example:
+#
+#    suppress-all-access-rules on
+
+
+# Directive: suppress-all-site-roots
+#
+# Description:
+#     If this directive is set to on, no site roots in your Zope site will
+#     be effective. This is useful if you "lock yourself out" of a
+#     particular part of your site by setting an improper site root.
+#
+# Default: off
+#
+# Example:
+#
+#    suppress-all-site-roots on
+
+
+# Directive: database-quota-size
+#
+# Description:
+#     Set this directive to an integer in bytes in order to place a hard
+#     limit on the size which the default FileStorage-backed Zope database
+#     can grow. Additions to the database will not be permitted once this
+#     filesize is exceeded.
+#
+# Default: unset
+#
+# Example:
+#
+#    database-quota-size 1000000
+
+
+# Directive: read-only-database
+#
+# Description:
+#     This causes the main Zope FileStorage-backed ZODB to be opened in
+#     read-only mode.
+#
+# Default: off
+#
+# Example:
+#
+#    read-only-database on
+
+
+# Directive: zeo-client-name
+#
+# Description:
+#     If you want a persistent ZEO client cache which retains cache
+#     contents across ClientStorage restarts, you need to define a
+#     zeo-client-name.  If you use ZEO and you don't set a
+#     zeo-client-name, the client cache is stored in temporary files
+#     which are removed when the ClientStorage shuts down.  The value
+#     of zeo-client-name is used to uniquely identify the local cache
+#     files created if this Zope is a ZEO client.
+#
+# Default: unset
+#
+# Example:
+#
+#    zeo-client-name zeo1
+
+
+# Directives: logger
+#
+# Description:
+#     This area should define one or more "logger" sections of the
+#     names "access", "event", and "trace".  The "access" logger logs
+#     Zope server access.  The "event" logger logs Zope event
+#     information.  The "trace" logger logs detailed server request
+#     information (for debugging purposes only).  Each logger section
+#     may contain a "level" name/value pair which indicates the level
+#     of logging detail to capture for this logger.  The default level
+#     is INFO.  Level may be any of "CRITICAL", 'ERROR", WARN", "INFO",
+#     "DEBUG", and "ALL".  Each logger section may additionally contain
+#     one or more "handler" sections which indicates a types of log
+#     "handlers" (file, syslog, NT event log, etc) to be used for the
+#     logger being defined.  There are 5 types of handlers: logfile,
+#     syslog, win32-eventlog, http-handler, email-notifier.  Each
+#     handler type has its own set of allowable subkeys which define
+#     aspects of the handler.  All handler sections also allow for the
+#     specification of a "format" (the log message format string), a
+#     "dateformat" (the log message format for date strings), and a
+#     "level", which has the same semantics of the overall logger
+#     level but overrides the logger's level for the handler it's
+#     defined upon.  XXXX much more detail necessary here
+#
+# Default:
+#
+#     The access log will log to the file <instancehome>/log/Z2.log at
+#     level INFO, the event log will log to the file
+#     <instancehome>/log/event.log at level INFO, and the trace log
+#     will not be written anywhere.
+
+<eventlog>
+  level blather
+  <logfile>
+    path $INSTANCE/log/event.log
+    level info
+  </logfile>
+</eventlog>
+
+<logger access>
+  level WARN
+  <logfile>
+    path $INSTANCE/log/Z2.log
+    format %(message)s
+  </logfile>
+</logger>
+
+# <logger trace>
+#   level WARN
+#   <syslog-handler>
+#     host localhost
+#     port 514
+#   </syslog-handler>
+#   <nteventlog-handler>
+#     appname Zope
+#   </nteventlog-handler>
+# </logger>
+
+
+# Directive: max-listen-sockets
+#
+# Description:
+#     The maximum number of sockets that ZServer will attempt to open
+#     in order to service incoming connections.
+#
+# Default: 1000
+#
+# Example:
+#
+#    max-listen-sockets 500
+
+
+
+# Directives: servers
+#
+# Description:
+#     A set of sections which allow the specification of Zope's various
+#     ZServer servers.  7 different server types may be defined:
+#     http-server, ftp-server, webdav-source-server, persistent-cgi,
+#     fast-cgi, monitor-server, and icp-server.  If no servers are
+#     defined, the default servers are used.
+#
+#     Ports may be specified either in simple form (80) or in
+#     complex form including hostname 127.0.0.1:80.  If the hostname
+#     is "left off", the default-ip-address is used as the hostname.
+#
+#     Port numbers are offset by the setting of port-base, which
+#     defaults to 8000.
+#
+# Default:
+#
+#     An HTTP server starts on port 8080, an FTP server starts on port
+#     8021.
+
+<http-server>
+  # valid keys are "address" and "force-connection-close"
+  address 9080
+  # force-connection-close on
+</http-server>
+
+<ftp-server>
+  # valid key is "address"
+  address 9021
+</ftp-server>
+
+# Examples:
+#
+#  <webdav-source-server>
+#    # valid keys are "address" and "force-connection-close"
+#    address 1980
+#    force-connection-close off
+#  </webdav-source-server>
+#
+#  <persistent-cgi>
+#    # valid key is "path"
+#    path somefile
+#  </persistent-cgi>
+#
+#  <fast-cgi>
+#    # valid key is "address"; the address may be hostname:port, port,
+#    # or a path for a Unix-domain socket
+#    address somefile
+#  </fast-cgi>
+#
+#  <monitor-server>
+#    # valid keys are "address"
+#    address 99
+#  </monitor-server>
+#
+#  <icp-server>
+#    # valid key is "address"
+#    address 888
+#  </icp-server>
+
+
+# Database (zodb_db) section
+#
+# Description:
+#     A database section allows the definition of custom database and
+#     storage types.
+#
+# Default:
+#   If a database is not specified, a FileStorage in client-home is
+#   used for the main storage, and a TemporaryStorage is used for
+#   the mounted storage which backs the '/temp_folder'.
+#
+# ZEO client storage:
+
+<zodb_db main>
+   <zeoclient>
+     server localhost:9100
+     storage 1
+     name zeostorage
+     var $INSTANCE/var
+   </zeoclient>
+   mount-point /
+   cache-size          5000
+   pool-size              7
+   version-pool-size      3
+   version-cache-size   100
+</zodb_db>
+
+# Main database (no ZEO)
+#<zodb_db main>
+#   <filestorage>
+#     path $INSTANCE/var/FileStorage
+#   </filestorage>
+#   mount-point /
+#   cache-size          5000
+#   pool-size              7
+#   version-pool-size      3
+#   version-cache-size   100
+#</zodb_db>
+
+# Temporary storage
+<zodb_db temporary>
+   <temporarystorage>
+     name sessions
+   </temporarystorage>
+   mount-point /temp_folder
+   container-class Products.TemporaryFolder.TemporaryContainer
+</zodb_db>

Added: zope2/Products/ZemanticIndex/import/README.txt
===================================================================
--- zope2/Products/ZemanticIndex/import/README.txt	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/import/README.txt	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,4 @@
+This directory is used by the running Zope process to import objects
+into the ZODB.  Please place any files that you wish to be able to
+import into this directy.  For more information, please see The Zope
+Book.


Property changes on: zope2/Products/ZemanticIndex/import/README.txt
___________________________________________________________________
Name: svn:executable
   + 

Added: zope2/Products/ZemanticIndex/log/README.txt
===================================================================
--- zope2/Products/ZemanticIndex/log/README.txt	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/log/README.txt	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1 @@
+This is the directory used to hold log files by default.

Added: zope2/Products/ZemanticIndex/log/Z2.log
===================================================================
--- zope2/Products/ZemanticIndex/log/Z2.log	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/log/Z2.log	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,944 @@
+127.0.0.1 - Anonymous [14/Mar/2005:09:14:45 -0400] "GET /manage HTTP/1.1" 401 563 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:52 -0400] "GET /manage HTTP/1.1" 200 1064 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:52 -0400] "GET /manage_top_frame HTTP/1.1" 200 1365 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:52 -0400] "GET /manage_page_style.css HTTP/1.1" 200 3007 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:52 -0400] "GET /p_/zopelogo_jpg HTTP/1.1" 200 3086 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:52 -0400] "GET /manage_menu HTTP/1.1" 200 2861 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:52 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 200 1149 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /p_/pl HTTP/1.1" 200 1118 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 200 1179 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 200 1163 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 200 458 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /p_/sp HTTP/1.1" 200 288 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /p_/rtab HTTP/1.1" 200 341 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /misc_/Sessions/idmgr.gif HTTP/1.1" 200 782 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 200 367 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /misc_/OFSP/dtmlmethod.gif HTTP/1.1" 200 1127 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 200 748 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /misc_/Sessions/datamgr.gif HTTP/1.1" 200 776 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /misc_/PageTemplates/zpt.gif HTTP/1.1" 200 376 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /misc_/SiteAccess/VirtualHostMonster.gif HTTP/1.1" 200 472 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /manage_main HTTP/1.1" 200 24558 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [14/Mar/2005:09:14:53 -0400] "GET /p_/ltab HTTP/1.1" 200 341 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [15/Mar/2005:11:58:04 -0400] "GET /manage HTTP/1.1" 401 563 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:13 -0400] "GET /manage HTTP/1.1" 200 1064 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:13 -0400] "GET /manage_top_frame HTTP/1.1" 200 1365 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:13 -0400] "GET /manage_page_style.css HTTP/1.1" 200 3007 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:13 -0400] "GET /p_/zopelogo_jpg HTTP/1.1" 304 255 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:13 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:13 -0400] "GET /p_/pl HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:13 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:13 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:13 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:13 -0400] "GET /manage_menu HTTP/1.1" 200 2861 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:13 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:14 -0400] "GET /manage_main HTTP/1.1" 200 24852 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:14 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:14 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:14 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:14 -0400] "GET /misc_/Sessions/idmgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:14 -0400] "GET /misc_/OFSP/dtmlmethod.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:14 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:14 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:14 -0400] "GET /misc_/Sessions/datamgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:14 -0400] "GET /misc_/PageTemplates/zpt.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:14 -0400] "GET /misc_/SiteAccess/VirtualHostMonster.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:11:58:29 -0400] "GET /manage_addProduct/OFSP/folderAdd HTTP/1.1" 200 3015 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:04 -0400] "POST /manage_addProduct/OFSP/manage_addFolder HTTP/1.1" 302 213 "http://localhost:9080/manage_addProduct/OFSP/folderAdd" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:04 -0400] "GET /manage_main?update_menu=1 HTTP/1.1" 200 25564 "http://localhost:9080/manage_addProduct/OFSP/folderAdd" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:04 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/manage_main?update_menu=1" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:04 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:04 -0400] "GET /p_/pl HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:04 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:04 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:04 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:51 -0400] "GET /selenium/manage_workspace HTTP/1.1" 302 360 "http://localhost:9080/manage_main?update_menu=1" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:51 -0400] "GET /selenium/manage_main HTTP/1.1" 200 13889 "http://localhost:9080/manage_main?update_menu=1" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:51 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:51 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:00:51 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [15/Mar/2005:12:09:34 -0400] "OPTIONS / HTTP/1.1" 200 312 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - Anonymous [15/Mar/2005:12:09:34 -0400] "PROPFIND / HTTP/1.1" 401 603 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:09:37 -0400] "PROPFIND / HTTP/1.1" 207 887 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:09:41 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 896 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:10:00 -0400] "PUT /selenium/domviewer.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:10:04 -0400] "GET /selenium/manage_main HTTP/1.1" 200 16570 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:04 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:04 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:04 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:04 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:04 -0400] "GET /misc_/OFSP/dtmldoc.gif HTTP/1.1" 200 1151 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:09 -0400] "GET /selenium/domviewer.html/manage_workspace HTTP/1.1" 302 375 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:09 -0400] "GET /selenium/domviewer.html/manage_main HTTP/1.1" 200 11936 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:09 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 304 254 "http://localhost:9080/selenium/domviewer.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:16 -0400] "GET /selenium/manage_workspace HTTP/1.1" 302 360 "http://localhost:9080/selenium/domviewer.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:16 -0400] "GET /selenium/manage_main HTTP/1.1" 200 16570 "http://localhost:9080/selenium/domviewer.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:19 -0400] "POST /selenium/ HTTP/1.1" 200 14019 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:19 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:19 -0400] "GET /p_/pl HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:19 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:19 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:19 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:25 -0400] "GET /selenium/manage_addProduct/CMFCore/misc_/CMFCore/tool.gif HTTP/1.1" 200 412 "http://localhost:9080/selenium/manage_addProduct/CMFCore/manage_addToolForm" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:25 -0400] "GET /selenium/manage_addProduct/CMFCore/manage_addToolForm HTTP/1.1" 200 3641 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:34 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:42 -0400] "GET /selenium/manage_addProduct/CMFDefault/manage_addToolForm HTTP/1.1" 200 2733 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:43 -0400] "GET /selenium/manage_addProduct/CMFDefault/misc_/CMFDefault/tool.gif HTTP/1.1" 200 412 "http://localhost:9080/selenium/manage_addProduct/CMFDefault/manage_addToolForm" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:46 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:10:57 -0400] "GET /selenium/manage_addProduct/ExternalMethod/methodAdd HTTP/1.1" 200 2867 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:06 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:06 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:11 -0400] "PUT /selenium/domviewer.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:11:23 -0400] "PUT /selenium/domviewer.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:11:28 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:28 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:28 -0400] "GET /misc_/OFSP/dtmldoc.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:28 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:28 -0400] "GET /misc_/OFSP/File_icon.gif HTTP/1.1" 200 1155 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:28 -0400] "GET /selenium/manage_main HTTP/1.1" 200 17427 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:28 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:34 -0400] "POST /selenium/ HTTP/1.1" 200 16674 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:34 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:34 -0400] "GET /p_/pl HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:34 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:34 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:34 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:37 -0400] "POST /selenium/ HTTP/1.1" 200 16860 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:39 -0400] "POST /selenium/ HTTP/1.1" 200 17671 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:39 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:45 -0400] "POST /selenium/ HTTP/1.1" 200 2296 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:51 -0400] "POST /selenium HTTP/1.1" 200 17623 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:51 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/selenium" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:11:55 -0400] "PUT /selenium/domviewer.html HTTP/1.1" 204 169 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:12:08 -0400] "PUT /selenium/htmlutils.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:12:23 -0400] "POST /selenium/ HTTP/1.1" 200 19395 "http://localhost:9080/selenium" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:12:23 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:12:23 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:12:29 -0400] "POST /selenium/ HTTP/1.1" 200 2296 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:12:29 -0400] "GET /misc_/OFSP/File_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:12:33 -0400] "POST /selenium HTTP/1.1" 200 19327 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:12:33 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/selenium" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:12:33 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/selenium" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:12:33 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/selenium" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:12:33 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 304 254 "http://localhost:9080/selenium" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:12:33 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/selenium" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:13:01 -0400] "PUT /selenium/index.html HTTP/1.1" 204 169 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:13:08 -0400] "POST /selenium/ HTTP/1.1" 200 20242 "http://localhost:9080/selenium" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:13:08 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:13:08 -0400] "GET /p_/pl HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:13:08 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:13:08 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:13:08 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:13:11 -0400] "POST /selenium/ HTTP/1.1" 200 2296 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:13:26 -0400] "POST /selenium HTTP/1.1" 200 20219 "http://localhost:9080/selenium/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:13:26 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:13:26 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/selenium" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:13:39 -0400] "PUT /selenium/SeleneseRunner.html HTTP/1.1" 204 169 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:13:40 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 3718 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:13:51 -0400] "PUT /selenium/selenium-api.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:14:08 -0400] "PUT /selenium/selenium-commandhandlers.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:14:20 -0400] "PUT /selenium/selenium-executioncontext.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:14:31 -0400] "PUT /selenium/selenium-executionloop.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /manage HTTP/1.1" 200 1064 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /manage_menu HTTP/1.1" 200 3221 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /manage_top_frame HTTP/1.1" 200 1365 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /p_/pl HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /p_/zopelogo_jpg HTTP/1.1" 304 255 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /manage_main HTTP/1.1" 200 25582 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:33 -0400] "GET /misc_/Sessions/idmgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:34 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:34 -0400] "GET /misc_/OFSP/dtmlmethod.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:34 -0400] "GET /misc_/Sessions/datamgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:34 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:34 -0400] "GET /misc_/PageTemplates/zpt.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:34 -0400] "GET /misc_/SiteAccess/VirtualHostMonster.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:38 -0400] "GET /selenium/manage_workspace HTTP/1.1" 302 360 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:38 -0400] "GET /selenium/manage_main HTTP/1.1" 200 23771 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:38 -0400] "GET /misc_/OFSP/File_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:14:54 -0400] "PUT /selenium/selenium-fitrunner.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:15:15 -0400] "PUT /selenium/selenium-logo.jpg HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:15:25 -0400] "PUT /selenium/selenium-tableparser.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:15:27 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 7734 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:15:39 -0400] "MKCOL /selenium/dom-images/ HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:15:45 -0400] "MKCOL /selenium/dom-styles/ HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:15:52 -0400] "MKCOL /selenium/html-xpath/ HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:15:57 -0400] "MKCOL /selenium/jsmock/ HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:16:01 -0400] "MKCOL /selenium/jsunit/ HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:16:06 -0400] "MKCOL /selenium/tests/ HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:16:11 -0400] "PUT /selenium/xmlextras.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /manage HTTP/1.1" 200 1064 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /manage_top_frame HTTP/1.1" 200 1365 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /manage_menu HTTP/1.1" 200 3379 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /manage_main HTTP/1.1" 200 25582 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /p_/zopelogo_jpg HTTP/1.1" 304 255 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /p_/pl HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:16 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:17 -0400] "GET /misc_/Sessions/idmgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:17 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:17 -0400] "GET /misc_/OFSP/dtmlmethod.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:17 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:17 -0400] "GET /misc_/Sessions/datamgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:17 -0400] "GET /misc_/PageTemplates/zpt.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:17 -0400] "GET /misc_/SiteAccess/VirtualHostMonster.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:20 -0400] "GET /selenium/manage_workspace HTTP/1.1" 302 360 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:20 -0400] "GET /selenium/manage_main HTTP/1.1" 200 31105 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:20 -0400] "GET /misc_/OFSP/File_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:20 -0400] "GET /misc_/OFSP/Image_icon.gif HTTP/1.1" 200 1161 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:32 -0400] "GET /selenium/dom-images/manage_workspace HTTP/1.1" 302 371 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:32 -0400] "GET /selenium/dom-images/manage_main HTTP/1.1" 200 14129 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:35 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 11723 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:16:36 -0400] "PROPFIND /selenium/dom-images/ HTTP/1.1" 207 907 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:16:52 -0400] "PUT /selenium/dom-images/butplus.gif HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:16:52 -0400] "PUT /selenium/dom-images/butmin.gif HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:16:54 -0400] "GET /manage HTTP/1.1" 200 1064 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:54 -0400] "GET /manage_menu HTTP/1.1" 200 3379 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:54 -0400] "GET /manage_top_frame HTTP/1.1" 200 1365 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:54 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:16:55 -0400] "GET /manage_main HTTP/1.1" 200 25582 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:17:01 -0400] "GET /selenium/dom-images/manage_workspace HTTP/1.1" 302 371 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:17:01 -0400] "GET /selenium/dom-images/manage_main HTTP/1.1" 200 17623 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:17:06 -0400] "GET /selenium/dom-styles/manage_workspace HTTP/1.1" 302 371 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:17:06 -0400] "GET /selenium/dom-styles/manage_main HTTP/1.1" 200 14129 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:17:21 -0400] "PROPFIND /selenium/dom-images/ HTTP/1.1" 207 2051 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:17:22 -0400] "PROPFIND /selenium/dom-styles/ HTTP/1.1" 207 907 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:17:31 -0400] "PUT /selenium/dom-styles/default.css HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:17:35 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/selenium/dom-styles/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:17:35 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/selenium/dom-styles/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:17:35 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/dom-styles/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:17:36 -0400] "GET /selenium/dom-styles/manage_main HTTP/1.1" 200 16759 "http://localhost:9080/selenium/dom-styles/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:17:36 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/selenium/dom-styles/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:17:56 -0400] "GET /selenium/html-xpath/manage_workspace HTTP/1.1" 302 371 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:17:56 -0400] "GET /selenium/html-xpath/manage_main HTTP/1.1" 200 14129 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:18:58 -0400] "GET /selenium/html-xpath/manage_main HTTP/1.1" 200 14129 "http://localhost:9080/selenium/html-xpath/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:18:58 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/selenium/html-xpath/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:18:58 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/selenium/html-xpath/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:18:58 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/selenium/html-xpath/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:18:58 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/html-xpath/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:19:06 -0400] "PROPFIND /selenium/html-xpath/ HTTP/1.1" 207 907 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:19:15 -0400] "PUT /selenium/html-xpath/rainbow.jpg HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:19:15 -0400] "PUT /selenium/html-xpath/carnation.jpg HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:19:18 -0400] "PUT /selenium/html-xpath/license.txt HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:19:22 -0400] "PROPFIND /selenium/html-xpath/ HTTP/1.1" 207 2630 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:19:28 -0400] "PUT /selenium/html-xpath/example.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:19:37 -0400] "PUT /selenium/html-xpath/html-xpath.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:19:44 -0400] "PUT /selenium/html-xpath/html-xpath-patched.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:19:54 -0400] "PROPFIND /selenium/html-xpath/ HTTP/1.1" 207 4364 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:20:04 -0400] "GET /selenium/manage_workspace HTTP/1.1" 302 360 "http://localhost:9080/selenium/html-xpath/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:20:04 -0400] "GET /selenium/manage_main HTTP/1.1" 200 31105 "http://localhost:9080/selenium/html-xpath/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:20:05 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:20:05 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:20:05 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:20:05 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:20:05 -0400] "GET /misc_/OFSP/File_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:20:05 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:20:05 -0400] "GET /misc_/OFSP/Image_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:20:08 -0400] "GET /selenium/jsmock/manage_workspace HTTP/1.1" 302 367 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:20:09 -0400] "GET /selenium/jsmock/manage_main HTTP/1.1" 200 14097 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:20:13 -0400] "PROPFIND /selenium/html-xpath/ HTTP/1.1" 207 4364 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:20:13 -0400] "PROPFIND /selenium/jsmock/ HTTP/1.1" 207 903 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:22:25 -0400] "PUT /selenium/jsmock/mock.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:22:32 -0400] "PUT /selenium/jsmock/mock-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:22:34 -0400] "PROPFIND /selenium/jsmock/ HTTP/1.1" 207 2042 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:22:38 -0400] "PROPFIND /selenium/jsmock/ HTTP/1.1" 207 2042 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:22:39 -0400] "PROPFIND /selenium/jsunit/ HTTP/1.1" 207 903 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:22:51 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 896 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:22:52 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 11723 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:23:07 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 11723 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:23:07 -0400] "PROPFIND /selenium/selenium-/ HTTP/1.1" 404 1723 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:23:18 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 11723 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:23:32 -0400] "PUT /selenium/TestRunner.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:23:42 -0400] "GET /selenium/manage_workspace HTTP/1.1" 302 360 "http://localhost:9080/selenium/jsmock/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:42 -0400] "GET /selenium/manage_main HTTP/1.1" 200 31993 "http://localhost:9080/selenium/jsmock/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:42 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:42 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:42 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:42 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:42 -0400] "GET /misc_/OFSP/File_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:42 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:42 -0400] "GET /misc_/OFSP/dtmldoc.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:42 -0400] "GET /misc_/OFSP/Image_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:50 -0400] "GET /selenium/TestRunner.html/manage_workspace HTTP/1.1" 302 376 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:50 -0400] "GET /selenium/TestRunner.html/manage_main HTTP/1.1" 200 16512 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:55 -0400] "GET /selenium/TestRunner.html HTTP/1.1" 200 4024 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:55 -0400] "GET /selenium/selenium.css HTTP/1.1" 404 1273 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:55 -0400] "GET /selenium/html-xpath/html-xpath-patched.js HTTP/1.1" 200 16825 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:55 -0400] "GET /selenium/selenium-browserbot.js HTTP/1.1" 404 1283 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:55 -0400] "GET /selenium/selenium-api.js HTTP/1.1" 200 13380 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:55 -0400] "GET /selenium/selenium-commandhandlers.js HTTP/1.1" 200 6684 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:55 -0400] "GET /selenium/selenium-executionloop.js HTTP/1.1" 200 7319 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:55 -0400] "GET /selenium/selenium-executioncontext.js HTTP/1.1" 200 4313 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:55 -0400] "GET /selenium/selenium-fitrunner.js HTTP/1.1" 200 20111 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:55 -0400] "GET /selenium/htmlutils.js HTTP/1.1" 200 4050 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:55 -0400] "GET /selenium/domviewer.js HTTP/1.1" 200 3901 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:23:55 -0400] "GET /selenium/tests/TestSuite.html HTTP/1.1" 404 1278 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:24:33 -0400] "GET /selenium/tests/manage_workspace HTTP/1.1" 302 366 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:24:33 -0400] "GET /selenium/tests/manage_main HTTP/1.1" 200 14089 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:24:37 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 12289 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:24:37 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 902 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:24:41 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 902 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:24:53 -0400] "MKCOL /selenium/tests/browserbot/ HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:24:56 -0400] "MKCOL /selenium/tests/events/ HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:25:03 -0400] "MKCOL /selenium/tests/html/ HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:25:22 -0400] "PUT /selenium/tests/TestSuite.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:25:25 -0400] "GET /selenium/TestRunner.html HTTP/1.1" 200 4024 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:25:25 -0400] "GET /selenium/selenium.css HTTP/1.1" 404 1273 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:25:25 -0400] "GET /selenium/html-xpath/html-xpath-patched.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:25:25 -0400] "GET /selenium/selenium-browserbot.js HTTP/1.1" 404 1283 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:25:25 -0400] "GET /selenium/selenium-api.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:25:25 -0400] "GET /selenium/selenium-commandhandlers.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:25:25 -0400] "GET /selenium/selenium-executionloop.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:25:25 -0400] "GET /selenium/selenium-executioncontext.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:25:25 -0400] "GET /selenium/selenium-fitrunner.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:25:25 -0400] "GET /selenium/htmlutils.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:25:25 -0400] "GET /selenium/domviewer.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:25:25 -0400] "GET /selenium/tests/TestSuite.html HTTP/1.1" 200 4325 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:25:51 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 3201 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:25:57 -0400] "PUT /selenium/tests/ErrorCheckingTestSuite.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:27:42 -0400] "PUT /selenium/tests/GoogleTestSearch.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:28:12 -0400] "PUT /selenium/tests/GoogleTestSuite.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:28:24 -0400] "PUT /selenium/tests/JsUnitSuite.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:28:34 -0400] "PUT /selenium/tests/TestClick.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:34:45 -0400] "PUT /selenium/tests/TestClickJavascriptHref.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:34:57 -0400] "PUT /selenium/tests/TestCommandError.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:35:10 -0400] "PUT /selenium/tests/TestConfirmations.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:35:27 -0400] "PUT /selenium/tests/TestErrorChecking.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:35:48 -0400] "PUT /selenium/tests/TestFailingAssert.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:36:25 -0400] "PUT /selenium/tests/TestFailingVerifications.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:36:45 -0400] "PUT /selenium/tests/TestLocators.html.dtml HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:37:03 -0400] "PUT /selenium/tests/TestModalDialogDialog.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:37:15 -0400] "PUT /selenium/tests/TestModalDialog.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:40:33 -0400] "PUT /selenium/tests/TestOpen.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:40:45 -0400] "PUT /selenium/tests/TestPause.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:41:08 -0400] "PUT /selenium/tests/TestProxy.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:44:20 -0400] "PUT /selenium/tests/TestSelectWindow.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:44:33 -0400] "PUT /selenium/tests/TestSetVariable.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:47:52 -0400] "PUT /selenium/tests/TestStoreValue.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:48:01 -0400] "PUT /selenium/tests/TestSuite.html HTTP/1.1" 204 168 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:48:11 -0400] "PUT /selenium/tests/TestType.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:48:28 -0400] "PUT /selenium/tests/TestVerifications.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:48:47 -0400] "PUT /selenium/tests/TestVerifyAlertsFailures.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:49:19 -0400] "PUT /selenium/tests/TestVerifyAlerts.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:49:22 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 17064 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:50:24 -0400] "PUT /selenium/tests/TestVerifyConfirmationFailures.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:50:45 -0400] "PUT /selenium/tests/TestVerifyEditableFailures.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:51:01 -0400] "PUT /selenium/tests/TestVerifyEditable.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:51:13 -0400] "PUT /selenium/tests/TestVisibilityFailures.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:51:22 -0400] "PUT /selenium/tests/TestVisibility.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:51:29 -0400] "PUT /selenium/tests/TestWait.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:51:37 -0400] "GET /selenium/TestRunner.html HTTP/1.1" 200 4024 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:51:37 -0400] "GET /selenium/selenium.css HTTP/1.1" 404 1273 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:51:37 -0400] "GET /selenium/html-xpath/html-xpath-patched.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:51:37 -0400] "GET /selenium/selenium-browserbot.js HTTP/1.1" 404 1283 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:51:37 -0400] "GET /selenium/selenium-api.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:51:37 -0400] "GET /selenium/selenium-commandhandlers.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:51:37 -0400] "GET /selenium/selenium-executionloop.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:51:37 -0400] "GET /selenium/selenium-executioncontext.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:51:37 -0400] "GET /selenium/selenium-fitrunner.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:51:37 -0400] "GET /selenium/htmlutils.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:51:37 -0400] "GET /selenium/domviewer.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:51:37 -0400] "GET /selenium/tests/TestSuite.html HTTP/1.1" 200 4325 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:51:52 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 20554 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:51:53 -0400] "PROPFIND /selenium/tests/browserbot/ HTTP/1.1" 207 913 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:52:03 -0400] "PUT /selenium/tests/browserbot/alert-handling-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:52:07 -0400] "PUT /selenium/tests/browserbot/browserbot-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:52:13 -0400] "PUT /selenium/tests/browserbot/command-factory-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:52:19 -0400] "PUT /selenium/tests/browserbot/command-handler-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:52:25 -0400] "PUT /selenium/tests/browserbot/confirm-handling-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:52:31 -0400] "PUT /selenium/tests/browserbot/error-checking-command-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:52:35 -0400] "PUT /selenium/tests/browserbot/event-bubble-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:52:45 -0400] "PUT /selenium/tests/browserbot/pagebot-accessor-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:52:53 -0400] "PUT /selenium/tests/browserbot/pagebot-action-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:53:01 -0400] "PUT /selenium/tests/browserbot/pagebot-attribute-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:53:12 -0400] "PUT /selenium/tests/browserbot/pagebot-locator-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:53:22 -0400] "PUT /selenium/tests/browserbot/pagebot-locator-tests-include.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:56:16 -0400] "PUT /selenium/tests/browserbot/pagebot-property-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:56:22 -0400] "PUT /selenium/tests/browserbot/selenium-api-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:56:25 -0400] "PUT /selenium/tests/browserbot/suite.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:56:27 -0400] "GET /selenium/TestRunner.html HTTP/1.1" 200 4024 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:27 -0400] "GET /selenium/selenium.css HTTP/1.1" 404 1273 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:27 -0400] "GET /selenium/html-xpath/html-xpath-patched.js HTTP/1.1" 200 16825 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:27 -0400] "GET /selenium/selenium-browserbot.js HTTP/1.1" 404 1283 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:28 -0400] "GET /selenium/selenium-api.js HTTP/1.1" 200 13380 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:28 -0400] "GET /selenium/selenium-commandhandlers.js HTTP/1.1" 200 6684 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:28 -0400] "GET /selenium/selenium-executionloop.js HTTP/1.1" 200 7319 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:28 -0400] "GET /selenium/selenium-executioncontext.js HTTP/1.1" 200 4313 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:28 -0400] "GET /selenium/selenium-fitrunner.js HTTP/1.1" 200 20111 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:28 -0400] "GET /selenium/htmlutils.js HTTP/1.1" 200 4050 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:28 -0400] "GET /selenium/domviewer.js HTTP/1.1" 200 3901 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:28 -0400] "GET /selenium/tests/TestSuite.html HTTP/1.1" 200 4325 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:33 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 902 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:56:36 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 20554 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:56:40 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 20554 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:56:40 -0400] "PROPFIND /selenium/tests/html/ HTTP/1.1" 207 907 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:56:43 -0400] "PROPFIND /selenium/tests/html/ HTTP/1.1" 207 907 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:56:53 -0400] "PUT /selenium/tests/html/banner.gif HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:56:56 -0400] "GET /selenium/TestRunner.html HTTP/1.1" 200 4024 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:56 -0400] "GET /selenium/selenium.css HTTP/1.1" 404 1273 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:56 -0400] "GET /selenium/html-xpath/html-xpath-patched.js HTTP/1.1" 200 16825 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:56 -0400] "GET /selenium/selenium-browserbot.js HTTP/1.1" 404 1283 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:56 -0400] "GET /selenium/selenium-commandhandlers.js HTTP/1.1" 200 6684 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:56 -0400] "GET /selenium/selenium-api.js HTTP/1.1" 200 13380 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:56 -0400] "GET /selenium/selenium-executionloop.js HTTP/1.1" 200 7319 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:56 -0400] "GET /selenium/selenium-executioncontext.js HTTP/1.1" 200 4313 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:56 -0400] "GET /selenium/selenium-fitrunner.js HTTP/1.1" 200 20111 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:56 -0400] "GET /selenium/domviewer.js HTTP/1.1" 200 3901 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:56 -0400] "GET /selenium/htmlutils.js HTTP/1.1" 200 4050 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:56:56 -0400] "GET /selenium/tests/TestSuite.html HTTP/1.1" 200 4325 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:12:57:32 -0400] "PUT /selenium/tests/html/test_click_javascript_page.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:57:41 -0400] "PUT /selenium/tests/html/test_click_page1.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:57:47 -0400] "PUT /selenium/tests/html/test_click_page2.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:58:11 -0400] "PUT /selenium/tests/html/test_confirm.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:58:20 -0400] "PUT /selenium/tests/html/test_dummy_page.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:58:30 -0400] "PUT /selenium/tests/html/test_editable.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:58:37 -0400] "PUT /selenium/tests/html/test_form_events.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:58:43 -0400] "PUT /selenium/tests/html/test_framed_page.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:58:49 -0400] "PUT /selenium/tests/html/test_just_text.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:58:54 -0400] "PUT /selenium/tests/html/test_locators.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:59:09 -0400] "PUT /selenium/tests/html/test_modal_dialog_dialog.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:59:29 -0400] "PUT /selenium/tests/html/test_modal_dialog.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:59:37 -0400] "PUT /selenium/tests/html/test_open.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:59:44 -0400] "PUT /selenium/tests/html/test_reload_onchange_page.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:12:59:54 -0400] "PUT /selenium/tests/html/test_select_window.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:00:06 -0400] "PUT /selenium/tests/html/test_select_window_popup.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:00:12 -0400] "PUT /selenium/tests/html/test_slowloading_page.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:00:20 -0400] "PUT /selenium/tests/html/test_store_value.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:00:28 -0400] "PUT /selenium/tests/html/test_type_page1.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:00:34 -0400] "PUT /selenium/tests/html/test_type_page2.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:00:45 -0400] "PUT /selenium/tests/html/test_verifications.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:00:46 -0400] "PROPFIND /selenium/tests/html/ HTTP/1.1" 207 13737 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:01:08 -0400] "PUT /selenium/tests/html/test_verify_alert.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:01:20 -0400] "PUT /selenium/tests/html/test_visibility.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:01:24 -0400] "GET /selenium/TestRunner.html HTTP/1.1" 200 4024 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:01:24 -0400] "GET /selenium/selenium.css HTTP/1.1" 404 1273 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:01:24 -0400] "GET /selenium/html-xpath/html-xpath-patched.js HTTP/1.1" 200 16825 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:01:24 -0400] "GET /selenium/selenium-browserbot.js HTTP/1.1" 404 1283 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:01:24 -0400] "GET /selenium/selenium-api.js HTTP/1.1" 200 13380 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:01:24 -0400] "GET /selenium/selenium-commandhandlers.js HTTP/1.1" 200 6684 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:01:24 -0400] "GET /selenium/selenium-executionloop.js HTTP/1.1" 200 7319 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:01:24 -0400] "GET /selenium/selenium-executioncontext.js HTTP/1.1" 200 4313 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:01:24 -0400] "GET /selenium/selenium-fitrunner.js HTTP/1.1" 200 20111 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:01:24 -0400] "GET /selenium/htmlutils.js HTTP/1.1" 200 4050 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:01:24 -0400] "GET /selenium/domviewer.js HTTP/1.1" 200 3901 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:01:24 -0400] "GET /selenium/tests/TestSuite.html HTTP/1.1" 200 4325 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:01:29 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 902 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:01:29 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 20554 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:01:36 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 20554 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:01:36 -0400] "PROPFIND /selenium/tests/events/ HTTP/1.1" 207 909 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:01:43 -0400] "PUT /selenium/tests/events/readme.txt HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:01:50 -0400] "PUT /selenium/tests/events/TestButtonEvents.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:02:38 -0400] "PUT /selenium/tests/events/TestCheckboxEvents.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:03:04 -0400] "PUT /selenium/tests/events/TestLinkEvents.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:03:14 -0400] "PUT /selenium/tests/events/TestRadioEvents.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:03:21 -0400] "PUT /selenium/tests/events/TestSelectEvents.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:03:30 -0400] "PUT /selenium/tests/events/TestTextEvents.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:03:33 -0400] "PROPFIND /selenium/tests/events/ HTTP/1.1" 207 4991 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:03:39 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 902 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:04:02 -0400] "MKCOL /selenium/tests/tableparser/ HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:04:04 -0400] "PROPFIND /selenium/tests/ HTTP/1.1" 207 21134 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:04:05 -0400] "PROPFIND /selenium/tests/tableparser/ HTTP/1.1" 207 914 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:04:12 -0400] "PUT /selenium/tests/tableparser/tableparser-tests.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:04:18 -0400] "GET /selenium/tests/TestOpen.html HTTP/1.1" 200 1888 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:37 -0400] "GET /manage_page_style.css HTTP/1.1" 200 3007 "http://localhost:9080/selenium/tests/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:37 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/selenium/tests/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:37 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/selenium/tests/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:37 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/tests/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:37 -0400] "GET /misc_/OFSP/dtmldoc.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/tests/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:37 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 304 254 "http://localhost:9080/selenium/tests/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:37 -0400] "GET /selenium/tests/manage_main HTTP/1.1" 200 47056 "http://localhost:9080/selenium/tests/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:37 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/selenium/tests/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:44 -0400] "GET /selenium/manage_workspace HTTP/1.1" 302 360 "http://localhost:9080/selenium/tests/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:44 -0400] "GET /selenium/manage_main HTTP/1.1" 200 31993 "http://localhost:9080/selenium/tests/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:44 -0400] "GET /misc_/OFSP/File_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:44 -0400] "GET /misc_/OFSP/Image_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:53 -0400] "GET /selenium/TestRunner.html/manage_workspace HTTP/1.1" 302 376 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:53 -0400] "GET /selenium/TestRunner.html/manage_main HTTP/1.1" 200 16512 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:57 -0400] "GET /selenium/TestRunner.html HTTP/1.1" 200 4024 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:57 -0400] "GET /selenium/selenium.css HTTP/1.1" 404 1273 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:57 -0400] "GET /selenium/selenium-browserbot.js HTTP/1.1" 404 1283 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:04:57 -0400] "GET /selenium/tests/TestSuite.html HTTP/1.1" 200 4325 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:05:03 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 896 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:05:17 -0400] "PROPFIND /selenium/-l/ HTTP/1.1" 404 1723 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:05:20 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 12289 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:05:37 -0400] "MKCOL /selenium/devtests/ HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:05:38 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 12860 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:05:39 -0400] "PROPFIND /selenium/devtests/ HTTP/1.1" 207 905 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:05:47 -0400] "MKCOL /selenium/devtests/meta/ HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:05:50 -0400] "PROPFIND /selenium/devtests/ HTTP/1.1" 207 1482 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:05:50 -0400] "PROPFIND /selenium/devtests/meta/ HTTP/1.1" 207 910 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:05:58 -0400] "PUT /selenium/devtests/meta/page.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:05:59 -0400] "PROPFIND /selenium/devtests/ HTTP/1.1" 207 905 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:06:08 -0400] "PUT /selenium/devtests/TestClickInFrame.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:06:20 -0400] "PUT /selenium/devtests/TestOpenInFrame.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:06:29 -0400] "PUT /selenium/devtests/TestOpenInNewWindow.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:06:37 -0400] "PUT /selenium/devtests/TestSuite.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:06:40 -0400] "PROPFIND /selenium/devtests/ HTTP/1.1" 207 3801 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:06:43 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 896 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:06:47 -0400] "PROPFIND /selenium/ HTTP/1.1" 207 12860 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:07:21 -0400] "PUT /selenium/selenium-browserbot.js HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:07:27 -0400] "PUT /selenium/selenium.css HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:07:47 -0400] "PUT /selenium/selenium-Konqueror.css HTTP/1.1" 201 166 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:08:14 -0400] "PUT /selenium/TestRunner-Konqueror.html HTTP/1.1" 201 165 "" "cadaver/0.22.1 neon/0.24.5"
+127.0.0.1 - zope [15/Mar/2005:13:08:23 -0400] "GET /selenium/TestRunner.html/manage_workspace HTTP/1.1" 302 376 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:23 -0400] "GET /selenium/TestRunner.html/manage_main HTTP/1.1" 200 16512 "http://localhost:9080/selenium/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:23 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:23 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:23 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:23 -0400] "GET /misc_/OFSP/dtmldoc.gif HTTP/1.1" 304 254 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:23 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 304 254 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/TestRunner.html HTTP/1.1" 200 4024 "http://localhost:9080/selenium/TestRunner.html/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/selenium.css HTTP/1.1" 200 2181 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/html-xpath/html-xpath-patched.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/selenium-browserbot.js HTTP/1.1" 200 18168 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/selenium-api.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/selenium-commandhandlers.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/selenium-executionloop.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/selenium-executioncontext.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/selenium-fitrunner.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/htmlutils.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/domviewer.js HTTP/1.1" 304 257 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/tests/TestSuite.html HTTP/1.1" 200 4325 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/selenium-logo.jpg HTTP/1.1" 200 14306 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:26 -0400] "GET /selenium/tests/TestOpen.html HTTP/1.1" 200 1888 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:38 -0400] "GET /selenium/tests/html/test_open.html HTTP/1.1" 200 920 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:38 -0400] "GET /selenium/tests/html/banner.gif HTTP/1.1" 200 8494 "http://localhost:9080/selenium/tests/html/test_open.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:39 -0400] "GET /selenium/tests/html/test_slowloading_page.html HTTP/1.1" 200 1012 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:48 -0400] "GET /selenium/tests/TestOpen.html HTTP/1.1" 200 1888 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:48 -0400] "GET /selenium/tests/html/test_open.html HTTP/1.1" 200 920 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:48 -0400] "GET /selenium/tests/html/test_slowloading_page.html HTTP/1.1" 200 1012 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:48 -0400] "GET /selenium/tests/TestClick.html HTTP/1.1" 200 4020 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:48 -0400] "GET /selenium/tests/html/test_click_page1.html HTTP/1.1" 200 1469 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:48 -0400] "GET /selenium/tests/html/tw.jpg HTTP/1.1" 404 1274 "http://localhost:9080/selenium/tests/html/test_click_page1.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:49 -0400] "GET /selenium/tests/html/test_click_page2.html HTTP/1.1" 200 1109 "http://localhost:9080/selenium/tests/html/test_click_page1.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:49 -0400] "GET /selenium/tests/html/test_click_page1.html HTTP/1.1" 200 1469 "http://localhost:9080/selenium/tests/html/test_click_page2.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:49 -0400] "GET /selenium/tests/html/tw.jpg HTTP/1.1" 404 1274 "http://localhost:9080/selenium/tests/html/test_click_page1.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:49 -0400] "GET /selenium/tests/html/test_click_page2.html HTTP/1.1" 200 1109 "http://localhost:9080/selenium/tests/html/test_click_page1.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:49 -0400] "GET /selenium/tests/html/test_click_page1.html HTTP/1.1" 200 1469 "http://localhost:9080/selenium/tests/html/test_click_page2.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:49 -0400] "GET /selenium/tests/html/tw.jpg HTTP/1.1" 404 1274 "http://localhost:9080/selenium/tests/html/test_click_page1.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:50 -0400] "GET /selenium/tests/html/test_click_page2.html HTTP/1.1" 200 1109 "http://localhost:9080/selenium/tests/html/test_click_page1.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:50 -0400] "GET /selenium/tests/html/test_click_page1.html HTTP/1.1" 200 1469 "http://localhost:9080/selenium/tests/html/test_click_page2.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:50 -0400] "GET /selenium/tests/html/tw.jpg HTTP/1.1" 404 1274 "http://localhost:9080/selenium/tests/html/test_click_page1.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:51 -0400] "GET /selenium/tests/TestClickJavascriptHref.html HTTP/1.1" 200 2896 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:51 -0400] "GET /selenium/tests/html/test_click_javascript_page.html HTTP/1.1" 200 1635 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:51 -0400] "GET /selenium/tests/html/tw.jpg HTTP/1.1" 404 1274 "http://localhost:9080/selenium/tests/html/test_click_javascript_page.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:51 -0400] "GET /selenium/tests/TestType.html HTTP/1.1" 200 2075 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:51 -0400] "GET /selenium/tests/html/test_type_page1.html HTTP/1.1" 200 1233 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:56 -0400] "GET /selenium/tests/html/test_type_page2.html?username=TestUser&password=testUserPassword HTTP/1.1" 200 2102 "http://localhost:9080/selenium/tests/html/test_type_page1.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:56 -0400] "GET /selenium/tests/TestSelectWindow.html HTTP/1.1" 200 2106 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:56 -0400] "GET /selenium/tests/html/test_select_window.html HTTP/1.1" 200 1140 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:56 -0400] "GET /selenium/tests/html/test_select_window_popup.html HTTP/1.1" 200 998 "http://localhost:9080/selenium/tests/html/test_select_window.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:57 -0400] "GET /selenium/tests/TestStoreValue.html HTTP/1.1" 200 3008 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:57 -0400] "GET /selenium/tests/html/test_verifications.html HTTP/1.1" 200 1293 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:57 -0400] "GET /selenium/tests/html/test_store_value.html HTTP/1.1" 200 919 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:57 -0400] "GET /selenium/tests/html/test_verifications.html HTTP/1.1" 200 1293 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:57 -0400] "GET /selenium/tests/html/test_store_value.html HTTP/1.1" 200 919 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:58 -0400] "GET /selenium/tests/html/test_just_text.html HTTP/1.1" 200 823 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:58 -0400] "GET /selenium/tests/html/test_store_value.html HTTP/1.1" 200 919 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:58 -0400] "GET /selenium/tests/TestSetVariable.html HTTP/1.1" 200 1635 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:58 -0400] "GET /selenium/tests/html/test_store_value.html HTTP/1.1" 200 919 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:58 -0400] "GET /selenium/tests/TestPause.html HTTP/1.1" 200 2272 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:58 -0400] "GET /selenium/tests/html/test_reload_onchange_page.html HTTP/1.1" 200 1377 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:08:59 -0400] "GET /selenium/tests/html/test_slowloading_page.html?theSelect=option2&theTextbox=initialValue HTTP/1.1" 200 1012 "http://localhost:9080/selenium/tests/html/test_reload_onchange_page.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:00 -0400] "GET /selenium/tests/TestWait.html HTTP/1.1" 200 1944 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:00 -0400] "GET /selenium/tests/html/test_reload_onchange_page.html HTTP/1.1" 200 1377 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:00 -0400] "GET /selenium/tests/html/test_slowloading_page.html?theSelect=option2&theTextbox=initialValue HTTP/1.1" 200 1012 "http://localhost:9080/selenium/tests/html/test_reload_onchange_page.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:00 -0400] "GET /selenium/tests/html/test_reload_onchange_page.html HTTP/1.1" 200 1377 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:00 -0400] "GET /selenium/tests/html/test_slowloading_page.html?theSelect=&theTextbox=new+value HTTP/1.1" 200 1012 "http://localhost:9080/selenium/tests/html/test_reload_onchange_page.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:00 -0400] "GET /selenium/tests/TestVerifications.html HTTP/1.1" 200 2576 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:00 -0400] "GET /selenium/tests/html/test_verifications.html HTTP/1.1" 200 1293 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:01 -0400] "GET /selenium/tests/TestLocators.html HTTP/1.1" 404 1281 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:01 -0400] "GET /selenium/tests/events/TestLinkEvents.html HTTP/1.1" 200 1746 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:01 -0400] "GET /selenium/tests/html/test_form_events.html HTTP/1.1" 200 3553 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:01 -0400] "GET /selenium/tests/events/TestButtonEvents.html HTTP/1.1" 200 2014 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:01 -0400] "GET /selenium/tests/html/test_form_events.html HTTP/1.1" 200 3553 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:01 -0400] "GET /selenium/tests/events/TestSelectEvents.html HTTP/1.1" 200 2789 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:02 -0400] "GET /selenium/tests/html/test_form_events.html HTTP/1.1" 200 3553 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:02 -0400] "GET /selenium/tests/events/TestRadioEvents.html HTTP/1.1" 200 3233 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:02 -0400] "GET /selenium/tests/html/test_form_events.html HTTP/1.1" 200 3553 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:03 -0400] "GET /selenium/tests/events/TestCheckboxEvents.html HTTP/1.1" 200 2412 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:03 -0400] "GET /selenium/tests/html/test_form_events.html HTTP/1.1" 200 3553 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:03 -0400] "GET /selenium/tests/events/TestTextEvents.html HTTP/1.1" 200 2429 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:03 -0400] "GET /selenium/tests/html/test_form_events.html HTTP/1.1" 200 3553 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:04 -0400] "GET /selenium/tests/TestVerifyAlerts.html HTTP/1.1" 200 2019 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:04 -0400] "GET /selenium/tests/html/test_verify_alert.html HTTP/1.1" 200 1646 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:04 -0400] "GET /selenium/tests/html/test_dummy_page.html HTTP/1.1" 200 1005 "http://localhost:9080/selenium/tests/html/test_verify_alert.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:04 -0400] "GET /selenium/tests/TestConfirmations.html HTTP/1.1" 200 2056 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:04 -0400] "GET /selenium/tests/html/test_confirm.html HTTP/1.1" 200 1283 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:04 -0400] "GET /selenium/tests/html/test_dummy_page.html HTTP/1.1" 200 1005 "http://localhost:9080/selenium/tests/html/test_confirm.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:04 -0400] "GET /selenium/tests/TestVisibility.html HTTP/1.1" 200 2310 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:04 -0400] "GET /selenium/tests/html/test_visibility.html HTTP/1.1" 200 2138 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:05 -0400] "GET /selenium/tests/TestVerifyEditable.html HTTP/1.1" 200 1759 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:05 -0400] "GET /selenium/tests/html/test_editable.html HTTP/1.1" 200 1500 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:05 -0400] "GET /selenium/tests/TestFailingVerifications.html HTTP/1.1" 200 3978 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:05 -0400] "GET /selenium/tests/html/test_verifications.html HTTP/1.1" 200 1293 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:06 -0400] "GET /selenium/tests/TestFailingAssert.html HTTP/1.1" 200 1523 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:06 -0400] "GET /selenium/tests/html/test_verifications.html HTTP/1.1" 200 1293 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:06 -0400] "GET /selenium/tests/TestCommandError.html HTTP/1.1" 200 1498 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:06 -0400] "GET /selenium/tests/html/test_verifications.html HTTP/1.1" 200 1293 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:06 -0400] "GET /selenium/tests/TestVerifyAlertsFailures.html HTTP/1.1" 200 2769 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:06 -0400] "GET /selenium/tests/html/test_verify_alert.html HTTP/1.1" 200 1646 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:07 -0400] "GET /selenium/tests/TestVerifyConfirmationFailures.html HTTP/1.1" 200 2432 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:07 -0400] "GET /selenium/tests/html/test_confirm.html HTTP/1.1" 200 1283 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:07 -0400] "GET /selenium/tests/html/test_dummy_page.html HTTP/1.1" 200 1005 "http://localhost:9080/selenium/tests/html/test_confirm.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:07 -0400] "GET /selenium/tests/html/test_confirm.html HTTP/1.1" 200 1283 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:07 -0400] "GET /selenium/tests/html/test_dummy_page.html HTTP/1.1" 200 1005 "http://localhost:9080/selenium/tests/html/test_confirm.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:07 -0400] "GET /selenium/tests/TestVisibilityFailures.html HTTP/1.1" 200 3319 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:07 -0400] "GET /selenium/tests/html/test_visibility.html HTTP/1.1" 200 2138 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:08 -0400] "GET /selenium/tests/TestVerifyEditableFailures.html HTTP/1.1" 200 2357 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [15/Mar/2005:13:09:08 -0400] "GET /selenium/tests/html/test_editable.html HTTP/1.1" 200 1500 "http://localhost:9080/selenium/TestRunner.html" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [16/Mar/2005:11:45:31 -0400] "GET /manage HTTP/1.1" 401 563 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:35 -0400] "GET /manage HTTP/1.1" 200 1064 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:35 -0400] "GET /manage_top_frame HTTP/1.1" 200 1365 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:35 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:35 -0400] "GET /favicon.ico HTTP/1.1" 404 1264 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:35 -0400] "GET /manage_page_style.css HTTP/1.1" 200 3007 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:36 -0400] "GET /manage_menu HTTP/1.1" 200 3379 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:36 -0400] "GET /p_/zopelogo_jpg HTTP/1.1" 200 3086 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:36 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 200 1149 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /p_/pl HTTP/1.1" 200 1118 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 200 1179 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 200 1163 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 200 458 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /p_/sp HTTP/1.1" 200 288 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /p_/rtab HTTP/1.1" 200 341 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /misc_/Sessions/idmgr.gif HTTP/1.1" 200 782 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 200 367 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /misc_/OFSP/dtmlmethod.gif HTTP/1.1" 200 1127 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 200 748 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /misc_/Sessions/datamgr.gif HTTP/1.1" 200 776 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /misc_/PageTemplates/zpt.gif HTTP/1.1" 200 376 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /misc_/SiteAccess/VirtualHostMonster.gif HTTP/1.1" 200 472 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /manage_main HTTP/1.1" 200 25482 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:37 -0400] "GET /p_/ltab HTTP/1.1" 200 341 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:42 -0400] "GET /manage_addProduct/CMFDefault/addPortal HTTP/1.1" 200 3338 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:52 -0400] "POST /manage_addProduct/CMFDefault/manage_addCMFSite HTTP/1.1" 302 227 "http://localhost:9080/manage_addProduct/CMFDefault/addPortal" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:53 -0400] "GET /test_cmf_z28/zpt_stylesheet.css HTTP/1.1" 200 6323 "http://localhost:9080/test_cmf_z28/finish_portal_construction" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:53 -0400] "GET /test_cmf_z28/go.gif HTTP/1.1" 200 421 "http://localhost:9080/test_cmf_z28/finish_portal_construction" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:53 -0400] "GET /test_cmf_z28/test_cmf_z28/folder_icon.gif HTTP/1.1" 200 1115 "http://localhost:9080/test_cmf_z28/finish_portal_construction" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:53 -0400] "GET /test_cmf_z28/finish_portal_construction HTTP/1.1" 200 5044 "http://localhost:9080/manage_addProduct/CMFDefault/addPortal" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:45:53 -0400] "GET /test_cmf_z28/Zope_logo.gif HTTP/1.1" 200 983 "http://localhost:9080/test_cmf_z28/finish_portal_construction" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:46:02 -0400] "GET /test_cmf_z28/folder_contents HTTP/1.1" 401 5759 "http://localhost:9080/test_cmf_z28/finish_portal_construction" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [16/Mar/2005:11:46:58 -0400] "GET /manage_workspace HTTP/1.1" 401 563 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:03 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:03 -0400] "GET /manage_main HTTP/1.1" 200 26155 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:03 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:03 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:03 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:03 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:03 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:03 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:03 -0400] "GET /misc_/Sessions/idmgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:03 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:03 -0400] "GET /misc_/OFSP/dtmlmethod.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:04 -0400] "GET /misc_/ExternalEditor/edit_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:04 -0400] "GET /misc_/Sessions/datamgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:04 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:04 -0400] "GET /misc_/PageTemplates/zpt.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:04 -0400] "GET /misc_/SiteAccess/VirtualHostMonster.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:04 -0400] "GET /misc_/CMFDefault/portal.gif HTTP/1.1" 200 527 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:06 -0400] "GET /error_log/manage_workspace HTTP/1.1" 302 361 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:06 -0400] "GET /error_log/manage_main HTTP/1.1" 200 6468 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:13 -0400] "POST /error_log/setProperties HTTP/1.1" 302 249 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:13 -0400] "GET /error_log/manage_main?manage_tabs_message=Changed+properties. HTTP/1.1" 200 6527 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:42 -0400] "GET /test_cmf_z28/folder_contents HTTP/1.1" 401 5979 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:44 -0400] "GET /test_cmf_z28/folder_contents HTTP/1.1" 401 5905 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:48 -0400] "GET /test_cmf_z28/zpt_stylesheet.css HTTP/1.1" 200 6396 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:48 -0400] "GET /test_cmf_z28/Zope_logo.gif HTTP/1.1" 200 1056 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:48 -0400] "GET /test_cmf_z28/test_cmf_z28/folder_icon.gif HTTP/1.1" 200 1188 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:48 -0400] "GET /test_cmf_z28/go.gif HTTP/1.1" 200 494 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:53 -0400] "GET /error_log/manage_main HTTP/1.1" 200 7598 "http://localhost:9080/error_log/manage_main?manage_tabs_message=Changed+properties." "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:53 -0400] "GET /misc_/SiteErrorLog/ok.gif HTTP/1.1" 200 581 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:47:55 -0400] "GET /error_log/showEntry?id=1110991663.690.97408482018 HTTP/1.1" 200 11172 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:54:22 -0400] "GET /test_cmf_z28/folder_contents HTTP/1.1" 401 5910 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:54:26 -0400] "GET /test_cmf_z28/folder_contents HTTP/1.1" 401 5836 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:54:27 -0400] "GET /test_cmf_z28/zpt_stylesheet.css HTTP/1.1" 304 295 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:54:27 -0400] "GET /test_cmf_z28/go.gif HTTP/1.1" 304 295 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:54:27 -0400] "GET /test_cmf_z28/Zope_logo.gif HTTP/1.1" 304 295 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:54:27 -0400] "GET /test_cmf_z28/test_cmf_z28/folder_icon.gif HTTP/1.1" 304 295 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:02 -0400] "GET /test_cmf_z28/folder_contents HTTP/1.1" 401 5910 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:08 -0400] "GET /test_cmf_z28/folder_contents HTTP/1.1" 401 5838 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:09 -0400] "GET /test_cmf_z28/zpt_stylesheet.css HTTP/1.1" 304 295 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:09 -0400] "GET /test_cmf_z28/Zope_logo.gif HTTP/1.1" 304 295 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:09 -0400] "GET /test_cmf_z28/test_cmf_z28/folder_icon.gif HTTP/1.1" 304 295 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:09 -0400] "GET /test_cmf_z28/go.gif HTTP/1.1" 304 295 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:16 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:16 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:16 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 304 254 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:16 -0400] "GET /misc_/SiteErrorLog/ok.gif HTTP/1.1" 304 254 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:16 -0400] "GET /error_log/manage_main HTTP/1.1" 200 7566 "http://localhost:9080/error_log/showEntry?id=1110991663.690.97408482018" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:16 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:11:55:20 -0400] "GET /error_log/showEntry?id=1110992108.660.0185980081711 HTTP/1.1" 200 11102 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:07:30 -0400] "GET /test_cmf_z28/folder_contents HTTP/1.1" 401 5909 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:07:34 -0400] "GET /test_cmf_z28/folder_contents HTTP/1.1" 401 5837 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:07:35 -0400] "GET /test_cmf_z28/zpt_stylesheet.css HTTP/1.1" 304 295 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:07:35 -0400] "GET /test_cmf_z28/Zope_logo.gif HTTP/1.1" 304 295 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:07:35 -0400] "GET /test_cmf_z28/go.gif HTTP/1.1" 304 295 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:07:35 -0400] "GET /test_cmf_z28/test_cmf_z28/folder_icon.gif HTTP/1.1" 304 295 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:12:06 -0400] "GET /test_cmf_z28/ HTTP/1.1" 401 5964 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:12:09 -0400] "GET /test_cmf_z28/ HTTP/1.1" 401 5892 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:12:20 -0400] "GET /error_log/manage_main HTTP/1.1" 200 7549 "http://localhost:9080/error_log/showEntry?id=1110992108.660.0185980081711" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:12:20 -0400] "GET /manage_page_style.css HTTP/1.1" 200 3007 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:12:20 -0400] "GET /p_/sp HTTP/1.1" 200 288 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:12:20 -0400] "GET /p_/rtab HTTP/1.1" 200 341 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:12:20 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 200 367 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:12:20 -0400] "GET /misc_/SiteErrorLog/ok.gif HTTP/1.1" 200 581 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:12:20 -0400] "GET /p_/ltab HTTP/1.1" 200 341 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:13:12:22 -0400] "GET /error_log/showEntry?id=1110996725.560.27582210241 HTTP/1.1" 200 10831 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [16/Mar/2005:14:00:11 -0400] "GET /test_cmf_z28 HTTP/1.1" 302 4920 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [16/Mar/2005:14:00:11 -0400] "GET /test_cmf_z28/login_form?came_from=http://localhost:9080/test_cmf_z28&retry=&disable_cookie_login__=1 HTTP/1.1" 200 5111 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [16/Mar/2005:14:00:11 -0400] "GET /test_cmf_z28/zpt_stylesheet.css HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28/login_form?came_from=http%3A//localhost%3A9080/test_cmf_z28&retry=&disable_cookie_login__=1" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [16/Mar/2005:14:00:11 -0400] "GET /test_cmf_z28/Zope_logo.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28/login_form?came_from=http%3A//localhost%3A9080/test_cmf_z28&retry=&disable_cookie_login__=1" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [16/Mar/2005:14:00:11 -0400] "GET /test_cmf_z28/go.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28/login_form?came_from=http%3A//localhost%3A9080/test_cmf_z28&retry=&disable_cookie_login__=1" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [16/Mar/2005:14:00:11 -0400] "GET /test_cmf_z28/test_cmf_z28/folder_icon.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28/login_form?came_from=http%3A//localhost%3A9080/test_cmf_z28&retry=&disable_cookie_login__=1" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:00:25 -0400] "GET /test_cmf_z28 HTTP/1.1" 401 6145 "http://localhost:9080/test_cmf_z28/login_form?came_from=http%3A//localhost%3A9080/test_cmf_z28&retry=&disable_cookie_login__=1" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:00:25 -0400] "POST /test_cmf_z28/logged_in HTTP/1.1" 302 5268 "http://localhost:9080/test_cmf_z28/login_form?came_from=http%3A//localhost%3A9080/test_cmf_z28&retry=&disable_cookie_login__=1" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [16/Mar/2005:14:00:53 -0400] "GET /manage HTTP/1.1" 401 563 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:01 -0400] "GET /manage HTTP/1.1" 200 1064 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:01 -0400] "GET /manage_top_frame HTTP/1.1" 200 1365 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:02 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:02 -0400] "GET /manage_page_style.css HTTP/1.1" 200 3007 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:02 -0400] "GET /manage_menu HTTP/1.1" 200 3911 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:02 -0400] "GET /p_/zopelogo_jpg HTTP/1.1" 200 3086 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:02 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 200 1149 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:02 -0400] "GET /p_/pl HTTP/1.1" 200 1118 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:02 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 200 1179 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:02 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 200 1163 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:02 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 200 458 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:02 -0400] "GET /misc_/CMFDefault/portal.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:02 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:03 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:03 -0400] "GET /misc_/Sessions/idmgr.gif HTTP/1.1" 200 782 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:03 -0400] "GET /manage_main HTTP/1.1" 200 24828 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:03 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:03 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:03 -0400] "GET /misc_/OFSP/dtmlmethod.gif HTTP/1.1" 200 1127 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:03 -0400] "GET /misc_/Sessions/datamgr.gif HTTP/1.1" 200 776 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:03 -0400] "GET /misc_/PageTemplates/zpt.gif HTTP/1.1" 200 376 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:03 -0400] "GET /misc_/SiteAccess/VirtualHostMonster.gif HTTP/1.1" 200 472 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:24 -0400] "GET /test_cmf_z28/manage_workspace HTTP/1.1" 302 364 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:24 -0400] "GET /test_cmf_z28/manage_main HTTP/1.1" 200 33676 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:24 -0400] "GET /misc_/CMFCore/tool.gif HTTP/1.1" 200 412 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:24 -0400] "GET /misc_/CMFDefault/tool.gif HTTP/1.1" 200 412 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:24 -0400] "GET /misc_/CMFUid/tool.gif HTTP/1.1" 200 412 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:24 -0400] "GET /misc_/CMFCore/cookie.gif HTTP/1.1" 200 516 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:24 -0400] "GET /misc_/MailHost/MailHost_icon.gif HTTP/1.1" 200 1142 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:24 -0400] "GET /misc_/CMFCore/registry.gif HTTP/1.1" 200 370 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:24 -0400] "GET /test_cmf_z28/folder_icon.gif HTTP/1.1" 200 1115 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:41 -0400] "GET /test_cmf_z28/Members/manage_workspace HTTP/1.1" 302 372 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:41 -0400] "GET /test_cmf_z28/Members/manage_main HTTP/1.1" 200 18763 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:43 -0400] "GET /test_cmf_z28/Members/zope/manage_workspace HTTP/1.1" 302 377 "http://localhost:9080/test_cmf_z28/Members/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:43 -0400] "GET /test_cmf_z28/document_icon.gif HTTP/1.1" 200 371 "http://localhost:9080/test_cmf_z28/Members/zope/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:01:43 -0400] "GET /test_cmf_z28/Members/zope/manage_main HTTP/1.1" 200 17635 "http://localhost:9080/test_cmf_z28/Members/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [16/Mar/2005:14:02:02 -0400] "GET /test_cmf_z28/Members/zope HTTP/1.1" 302 3435 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [16/Mar/2005:14:02:02 -0400] "GET /test_cmf_z28/login_form?came_from=http://localhost:9080/test_cmf_z28/Members/zope&retry=&disable_cookie_login__=1 HTTP/1.1" 200 5128 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:02:13 -0400] "POST /test_cmf_z28/logged_in HTTP/1.1" 302 5461 "http://localhost:9080/test_cmf_z28/login_form?came_from=http%3A//localhost%3A9080/test_cmf_z28/Members/zope&retry=&disable_cookie_login__=1" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:02:13 -0400] "GET /test_cmf_z28/Members/zope HTTP/1.1" 200 6333 "http://localhost:9080/test_cmf_z28/login_form?came_from=http%3A//localhost%3A9080/test_cmf_z28/Members/zope&retry=&disable_cookie_login__=1" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:02:13 -0400] "GET /test_cmf_z28/test_cmf_z28/document_icon.gif HTTP/1.1" 200 444 "http://localhost:9080/test_cmf_z28/Members/zope" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:02:18 -0400] "GET /test_cmf_z28/Members/zope/folder_contents HTTP/1.1" 401 6388 "http://localhost:9080/test_cmf_z28/Members/zope" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:08:36 -0400] "GET /test_cmf_z28/Members/zope/folder_contents HTTP/1.1" 503 2273 "http://localhost:9080/test_cmf_z28/Members/zope" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [16/Mar/2005:14:09:19 -0400] "GET /test_cmf_z28/Members/zope/folder_contents HTTP/1.1" 500 2253 "http://localhost:9080/test_cmf_z28/Members/zope" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:13:54:04 -0400] "GET /manage HTTP/1.1" 401 563 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:10 -0400] "GET /manage HTTP/1.1" 200 1064 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:10 -0400] "GET /manage_top_frame HTTP/1.1" 200 1365 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:10 -0400] "GET /manage_page_style.css HTTP/1.1" 200 3007 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:10 -0400] "GET /p_/zopelogo_jpg HTTP/1.1" 200 3086 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:11 -0400] "GET /manage_menu HTTP/1.1" 200 3911 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:11 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:11 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 200 1149 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:11 -0400] "GET /p_/pl HTTP/1.1" 200 1118 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:11 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 200 1179 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:11 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 200 1163 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:11 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 200 458 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:11 -0400] "GET /misc_/CMFDefault/portal.gif HTTP/1.1" 200 527 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:11 -0400] "GET /manage_main HTTP/1.1" 200 24828 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:12 -0400] "GET /p_/ltab HTTP/1.1" 200 341 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:12 -0400] "GET /p_/sp HTTP/1.1" 200 288 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:12 -0400] "GET /p_/rtab HTTP/1.1" 200 341 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:12 -0400] "GET /misc_/Sessions/idmgr.gif HTTP/1.1" 200 782 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:12 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 200 367 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:12 -0400] "GET /misc_/OFSP/dtmlmethod.gif HTTP/1.1" 200 1127 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:12 -0400] "GET /misc_/Sessions/datamgr.gif HTTP/1.1" 200 776 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:12 -0400] "GET /misc_/PageTemplates/zpt.gif HTTP/1.1" 200 376 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:12 -0400] "GET /misc_/SiteAccess/VirtualHostMonster.gif HTTP/1.1" 200 472 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:15 -0400] "GET /test_cmf_z28/manage_workspace HTTP/1.1" 302 364 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:15 -0400] "GET /misc_/CMFCore/tool.gif HTTP/1.1" 200 412 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:15 -0400] "GET /misc_/CMFUid/tool.gif HTTP/1.1" 200 412 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:15 -0400] "GET /misc_/MailHost/MailHost_icon.gif HTTP/1.1" 200 1142 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:15 -0400] "GET /misc_/CMFCore/cookie.gif HTTP/1.1" 200 516 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:15 -0400] "GET /test_cmf_z28/folder_icon.gif HTTP/1.1" 200 1115 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:15 -0400] "GET /misc_/CMFCore/registry.gif HTTP/1.1" 200 370 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:15 -0400] "GET /test_cmf_z28/manage_main HTTP/1.1" 200 33676 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:15 -0400] "GET /misc_/CMFDefault/tool.gif HTTP/1.1" 200 412 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:54:20 -0400] "GET /test_cmf_z28 HTTP/1.1" 401 6072 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:13:54:23 -0400] "GET /test_cmf_z28/zpt_stylesheet.css HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:13:54:23 -0400] "GET /test_cmf_z28/Zope_logo.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:13:54:23 -0400] "GET /test_cmf_z28/go.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:13:54:23 -0400] "GET /test_cmf_z28/test_cmf_z28/folder_icon.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:13:55:32 -0400] "GET /manage_workspace HTTP/1.1" 401 563 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:39 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /misc_/Sessions/idmgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /misc_/OFSP/dtmlmethod.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /misc_/Sessions/datamgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /misc_/PageTemplates/zpt.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /misc_/CMFDefault/portal.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:40 -0400] "GET /misc_/SiteAccess/VirtualHostMonster.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:41 -0400] "GET /manage_main HTTP/1.1" 200 24828 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:41 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:46 -0400] "GET /test_cmf_z28/manage_workspace HTTP/1.1" 302 364 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:47 -0400] "GET /misc_/CMFCore/tool.gif HTTP/1.1" 304 254 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:47 -0400] "GET /misc_/CMFUid/tool.gif HTTP/1.1" 304 254 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:47 -0400] "GET /misc_/MailHost/MailHost_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:47 -0400] "GET /misc_/CMFCore/cookie.gif HTTP/1.1" 304 254 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:47 -0400] "GET /misc_/CMFCore/registry.gif HTTP/1.1" 304 254 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:47 -0400] "GET /test_cmf_z28/manage_main HTTP/1.1" 200 33676 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:47 -0400] "GET /misc_/CMFDefault/tool.gif HTTP/1.1" 304 254 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:13:55:54 -0400] "GET /test_cmf_z28 HTTP/1.1" 500 2568 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:16:35:34 -0400] "GET /manage HTTP/1.1" 401 563 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:35 -0400] "GET /manage HTTP/1.1" 200 1064 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:35 -0400] "GET /manage_top_frame HTTP/1.1" 200 1365 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:35 -0400] "GET /manage_page_style.css HTTP/1.1" 200 3007 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:35 -0400] "GET /p_/zopelogo_jpg HTTP/1.1" 304 255 "http://localhost:9080/manage_top_frame" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:36 -0400] "GET /manage_menu HTTP/1.1" 200 3911 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:36 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:36 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:36 -0400] "GET /p_/pl HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:36 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:36 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:36 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:36 -0400] "GET /misc_/CMFDefault/portal.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:36 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:36 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:37 -0400] "GET /misc_/Sessions/idmgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:37 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:37 -0400] "GET /misc_/OFSP/dtmlmethod.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:37 -0400] "GET /misc_/Sessions/datamgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:37 -0400] "GET /misc_/PageTemplates/zpt.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:37 -0400] "GET /misc_/SiteAccess/VirtualHostMonster.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:37 -0400] "GET /manage_main HTTP/1.1" 200 24828 "http://localhost:9080/manage" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:37 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:40 -0400] "GET /test_cmf_z28/manage_workspace HTTP/1.1" 302 364 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:40 -0400] "GET /misc_/CMFCore/tool.gif HTTP/1.1" 304 254 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:40 -0400] "GET /misc_/CMFUid/tool.gif HTTP/1.1" 304 254 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:40 -0400] "GET /misc_/MailHost/MailHost_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:40 -0400] "GET /misc_/CMFCore/cookie.gif HTTP/1.1" 304 254 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:40 -0400] "GET /test_cmf_z28/folder_icon.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:40 -0400] "GET /misc_/CMFCore/registry.gif HTTP/1.1" 304 254 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:41 -0400] "GET /test_cmf_z28/manage_main HTTP/1.1" 200 33676 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:41 -0400] "GET /misc_/CMFDefault/tool.gif HTTP/1.1" 304 254 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:35:47 -0400] "GET /test_cmf_z28 HTTP/1.1" 401 6072 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:16:36:14 -0400] "GET /manage_workspace HTTP/1.1" 401 563 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:36:20 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:36:20 -0400] "GET /manage_main HTTP/1.1" 200 24828 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:36:24 -0400] "GET /error_log/manage_workspace HTTP/1.1" 302 361 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:36:24 -0400] "GET /error_log/manage_main HTTP/1.1" 200 8138 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:36:25 -0400] "GET /misc_/SiteErrorLog/ok.gif HTTP/1.1" 200 581 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:36:41 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/error_log/showEntry?id=1111095346.680.772226763734" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:36:41 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/error_log/showEntry?id=1111095346.680.772226763734" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:36:41 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 304 254 "http://localhost:9080/error_log/showEntry?id=1111095346.680.772226763734" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:36:41 -0400] "GET /error_log/showEntry?id=1111095346.680.772226763734 HTTP/1.1" 200 11087 "http://localhost:9080/error_log/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:36:41 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/error_log/showEntry?id=1111095346.680.772226763734" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:43:36 -0400] "GET /test_cmf_z28 HTTP/1.1" 500 5968 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:43:36 -0400] "GET /test_cmf_z28/zpt_stylesheet.css HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:43:36 -0400] "GET /test_cmf_z28/go.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:43:36 -0400] "GET /test_cmf_z28/Zope_logo.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:43:36 -0400] "GET /test_cmf_z28/test_cmf_z28/folder_icon.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:44:14 -0400] "GET /test_cmf_z28/zpt_stylesheet.css HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:44:15 -0400] "GET /test_cmf_z28/go.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:44:15 -0400] "GET /test_cmf_z28/test_cmf_z28/folder_icon.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:44:15 -0400] "GET /test_cmf_z28 HTTP/1.1" 500 5966 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:44:15 -0400] "GET /test_cmf_z28/Zope_logo.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:45:47 -0400] "GET /test_cmf_z28 HTTP/1.1" 401 6072 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:16:45:49 -0400] "GET /test_cmf_z28/zpt_stylesheet.css HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:16:45:49 -0400] "GET /test_cmf_z28/Zope_logo.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:16:45:49 -0400] "GET /test_cmf_z28/go.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:16:45:49 -0400] "GET /test_cmf_z28/test_cmf_z28/folder_icon.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - Anonymous [17/Mar/2005:16:47:19 -0400] "GET /manage_workspace HTTP/1.1" 401 563 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /manage_workspace HTTP/1.1" 302 351 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /p_/sp HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /p_/rtab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /misc_/OFSP/Folder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /p_/ControlPanel_icon HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /misc_/OFSP/UserFolder_icon.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /misc_/Sessions/idmgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /misc_/SiteErrorLog/error.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /misc_/OFSP/dtmlmethod.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /misc_/Sessions/datamgr.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /misc_/PageTemplates/zpt.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /misc_/TemporaryFolder/tempfolder.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /misc_/CMFDefault/portal.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /misc_/SiteAccess/VirtualHostMonster.gif HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /manage_main HTTP/1.1" 200 24828 "http://localhost:9080/manage_menu" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:47:24 -0400] "GET /p_/ltab HTTP/1.1" 304 254 "http://localhost:9080/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:48:45 -0400] "GET /test_cmf_z28/zpt_stylesheet.css HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:48:45 -0400] "GET /test_cmf_z28/go.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:48:45 -0400] "GET /test_cmf_z28/test_cmf_z28/folder_icon.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:48:45 -0400] "GET /test_cmf_z28 HTTP/1.1" 500 5967 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:48:45 -0400] "GET /test_cmf_z28/Zope_logo.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:49:12 -0400] "GET /test_cmf_z28/zpt_stylesheet.css HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:49:12 -0400] "GET /test_cmf_z28/go.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:49:12 -0400] "GET /test_cmf_z28/test_cmf_z28/folder_icon.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:49:12 -0400] "GET /test_cmf_z28/folder_icon.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:49:12 -0400] "GET /test_cmf_z28/spacer.gif HTTP/1.1" 200 254 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:49:12 -0400] "GET /test_cmf_z28 HTTP/1.1" 200 5829 "http://localhost:9080/test_cmf_z28/manage_main" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:49:12 -0400] "GET /test_cmf_z28/Zope_logo.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:52:17 -0400] "GET /test_cmf_z28/Members HTTP/1.1" 200 5263 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:52:25 -0400] "GET /test_cmf_z28/folder_edit HTTP/1.1" 404 4653 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:52:36 -0400] "GET /test_cmf_z28/Members/folder_edit HTTP/1.1" 404 4749 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:52:42 -0400] "GET /test_cmf_z28/Members/folder_edit_form HTTP/1.1" 200 5536 "" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:52:51 -0400] "POST /test_cmf_z28/Members/folder_edit_form HTTP/1.1" 302 265 "http://localhost:9080/test_cmf_z28/Members/folder_edit_form" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:52:51 -0400] "GET /test_cmf_z28/Members/folder_edit_form?portal_status_message=Folder changed. HTTP/1.1" 200 5623 "http://localhost:9080/test_cmf_z28/Members/folder_edit_form" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:52:54 -0400] "GET /test_cmf_z28 HTTP/1.1" 200 5906 "http://localhost:9080/test_cmf_z28/Members/folder_edit_form?portal_status_message=Folder%20changed." "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:00 -0400] "GET /test_cmf_z28/UpFolder_icon.gif HTTP/1.1" 200 1127 "http://localhost:9080/test_cmf_z28/Members/zope/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:00 -0400] "GET /test_cmf_z28/Members/zope/folder_contents HTTP/1.1" 200 7381 "http://localhost:9080/test_cmf_z28" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:00 -0400] "GET /test_cmf_z28/document_icon.gif HTTP/1.1" 200 371 "http://localhost:9080/test_cmf_z28/Members/zope/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:04 -0400] "GET /test_cmf_z28/Members/zope/index_html/document_view HTTP/1.1" 200 6260 "http://localhost:9080/test_cmf_z28/Members/zope/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:04 -0400] "GET /test_cmf_z28/test_cmf_z28/document_icon.gif HTTP/1.1" 304 222 "http://localhost:9080/test_cmf_z28/Members/zope/index_html/document_view" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:15 -0400] "GET /test_cmf_z28/Members/zope/index_html/document_view HTTP/1.1" 200 6367 "http://localhost:9080/test_cmf_z28/Members/zope/index_html/document_view" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:15 -0400] "GET /test_cmf_z28/Members/zope/index_html/addtoFavorites HTTP/1.1" 302 238 "http://localhost:9080/test_cmf_z28/Members/zope/index_html/document_view" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:20 -0400] "GET /test_cmf_z28/Members/zope/folder_contents HTTP/1.1" 200 8427 "http://localhost:9080/test_cmf_z28/Members/zope/index_html/document_view" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:22 -0400] "GET /test_cmf_z28/Members/zope/Favorites/folder_contents HTTP/1.1" 200 7784 "http://localhost:9080/test_cmf_z28/Members/zope/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:26 -0400] "GET /test_cmf_z28/Members/zope/Favorites/folder_localrole_form HTTP/1.1" 200 6923 "http://localhost:9080/test_cmf_z28/Members/zope/Favorites/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:29 -0400] "POST /test_cmf_z28/Members/zope/Favorites/folder_localrole_form HTTP/1.1" 200 6420 "http://localhost:9080/test_cmf_z28/Members/zope/Favorites/folder_localrole_form" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:38 -0400] "GET /test_cmf_z28/Members/zope/Favorites HTTP/1.1" 200 6367 "http://localhost:9080/test_cmf_z28/Members/zope/Favorites/folder_localrole_form" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:55 -0400] "GET /test_cmf_z28/Members/zope/folder_contents HTTP/1.1" 200 8427 "http://localhost:9080/test_cmf_z28/Members/zope/Favorites" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:53:58 -0400] "GET /test_cmf_z28/Members/folder_contents HTTP/1.1" 200 7240 "http://localhost:9080/test_cmf_z28/Members/zope/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:00 -0400] "GET /test_cmf_z28/folder_contents HTTP/1.1" 200 6812 "http://localhost:9080/test_cmf_z28/Members/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:02 -0400] "POST /test_cmf_z28/folder_contents HTTP/1.1" 302 217 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:02 -0400] "GET /test_cmf_z28/folder_factories HTTP/1.1" 200 7695 "http://localhost:9080/test_cmf_z28/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:12 -0400] "GET /test_cmf_z28/tests/folder_edit_form HTTP/1.1" 200 5623 "http://localhost:9080/test_cmf_z28/folder_factories" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:12 -0400] "POST /test_cmf_z28/folder_factories HTTP/1.1" 302 223 "http://localhost:9080/test_cmf_z28/folder_factories" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:18 -0400] "POST /test_cmf_z28/tests/folder_edit_form HTTP/1.1" 302 263 "http://localhost:9080/test_cmf_z28/tests/folder_edit_form" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:19 -0400] "GET /test_cmf_z28/tests/folder_edit_form?portal_status_message=Folder changed. HTTP/1.1" 200 5713 "http://localhost:9080/test_cmf_z28/tests/folder_edit_form" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:22 -0400] "GET /test_cmf_z28/tests/folder_contents HTTP/1.1" 200 5869 "http://localhost:9080/test_cmf_z28/tests/folder_edit_form?portal_status_message=Folder%20changed." "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:27 -0400] "POST /test_cmf_z28/tests/folder_contents HTTP/1.1" 302 223 "http://localhost:9080/test_cmf_z28/tests/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:28 -0400] "GET /test_cmf_z28/tests/folder_factories HTTP/1.1" 200 7851 "http://localhost:9080/test_cmf_z28/tests/folder_contents" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:35 -0400] "POST /test_cmf_z28/tests/folder_factories HTTP/1.1" 302 234 "http://localhost:9080/test_cmf_z28/tests/folder_factories" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:36 -0400] "GET /test_cmf_z28/tests/document/metadata_edit_form HTTP/1.1" 200 7227 "http://localhost:9080/test_cmf_z28/tests/folder_factories" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:50 -0400] "POST /test_cmf_z28/tests/document/metadata_edit_form HTTP/1.1" 302 276 "http://localhost:9080/test_cmf_z28/tests/document/metadata_edit_form" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:50 -0400] "GET /test_cmf_z28/tests/document/metadata_edit_form?portal_status_message=Metadata changed. HTTP/1.1" 200 7333 "http://localhost:9080/test_cmf_z28/tests/document/metadata_edit_form" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:54:59 -0400] "GET /test_cmf_z28/search?SearchableText=aaa&go.x=0&go.y=0&go=go HTTP/1.1" 200 4974 "http://localhost:9080/test_cmf_z28/tests/document/metadata_edit_form?portal_status_message=Metadata%20changed." "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:55:05 -0400] "GET /test_cmf_z28/search_form HTTP/1.1" 200 8481 "http://localhost:9080/test_cmf_z28/search?SearchableText=aaa&go.x=0&go.y=0&go=go" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:55:15 -0400] "GET /test_cmf_z28/search?review_state=&SearchableText=&Title=&Subject:list=aaa&Description=&created.query:record:date=1970/01/01+00:00:01+GMT&created.range:record=min&portal_type:list=&listCreators= HTTP/1.1" 200 5544 "http://localhost:9080/test_cmf_z28/search_form" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"
+127.0.0.1 - zope [17/Mar/2005:16:55:17 -0400] "GET /test_cmf_z28/tests/document/view HTTP/1.1" 200 5954 "http://localhost:9080/test_cmf_z28/search?review_state=&SearchableText=&Title=&Subject%3Alist=aaa&Description=&created.query%3Arecord%3Adate=1970%2F01%2F01+00%3A00%3A01+GMT&created.range%3Arecord=min&portal_type%3Alist=&listCreators=" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20041013 Firefox/0.9.3 (Ubuntu)"

Added: zope2/Products/ZemanticIndex/log/event.log
===================================================================
--- zope2/Products/ZemanticIndex/log/event.log	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/log/event.log	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,1210 @@
+------
+2005-03-14T05:59:20 INFO ZServer HTTP server started at Mon Mar 14 05:59:20 2005
+	Hostname: localhost.localdomain
+	Port: 8080
+------
+2005-03-14T05:59:20 INFO ZServer FTP server started at Mon Mar 14 05:59:20 2005
+	Hostname: 
+	Port: 8021
+------
+2005-03-14T05:59:20 INFO ZEO.ClientStorage (18455) ClientStorage (pid=18455) created RW/normal for storage: '1'
+------
+2005-03-14T05:59:20 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-14T05:59:21 INFO ZEO.ClientStorage (18455) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-14T05:59:21 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-14T05:59:21 INFO ZEO.ClientStorage (18455) Server authentication protocol None
+------
+2005-03-14T05:59:21 INFO ZEO.ClientStorage (18455) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-14T05:59:21 INFO ZEO.ClientStorage (18455) Verifying cache
+------
+2005-03-14T05:59:21 INFO ZEO.ClientStorage (18455) Waiting for cache verification to finish
+------
+2005-03-14T05:59:21 INFO ZEO.ClientStorage (18455) Waiting for cache verification to finish
+------
+2005-03-14T05:59:21 INFO ZEO.ClientStorage (18455) endVerify finishing
+------
+2005-03-14T05:59:21 INFO ZEO.ClientStorage (18455) endVerify finished
+------
+2005-03-14T05:59:21 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/ExternalMethod/Help/catalog
+------
+2005-03-14T05:59:21 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:21 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:21 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/ExternalMethod/Help/catalog
+------
+2005-03-14T05:59:22 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/MailHost/Help/catalog
+------
+2005-03-14T05:59:22 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:22 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:22 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/MailHost/Help/catalog
+------
+2005-03-14T05:59:22 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/OFSP/Help/catalog
+------
+2005-03-14T05:59:22 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:22 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:22 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/OFSP/Help/catalog
+------
+2005-03-14T05:59:24 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/PageTemplates/Help/catalog
+------
+2005-03-14T05:59:24 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:24 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:24 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/PageTemplates/Help/catalog
+------
+2005-03-14T05:59:24 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/PythonScripts/Help/catalog
+------
+2005-03-14T05:59:24 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:24 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:24 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/PythonScripts/Help/catalog
+------
+2005-03-14T05:59:24 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/Sessions/Help/catalog
+------
+2005-03-14T05:59:24 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:24 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:24 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/Sessions/Help/catalog
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/SiteAccess/Help/catalog
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/SiteAccess/Help/catalog
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/StandardCacheManagers/Help/catalog
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/StandardCacheManagers/Help/catalog
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/TemporaryFolder/Help/catalog
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/TemporaryFolder/Help/catalog
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/Transience/Help/catalog
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/Transience/Help/catalog
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/ZCTextIndex/Help/catalog
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:25 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/ZCTextIndex/Help/catalog
+------
+2005-03-14T05:59:26 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/ZCatalog/Help/catalog
+------
+2005-03-14T05:59:26 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:26 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:26 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/ZCatalog/Help/catalog
+------
+2005-03-14T05:59:26 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/ZSQLMethods/Help/catalog
+------
+2005-03-14T05:59:26 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:26 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:26 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/ZSQLMethods/Help/catalog
+------
+2005-03-14T05:59:26 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/ZopeTutorial/Help/catalog
+------
+2005-03-14T05:59:26 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T05:59:26 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T05:59:26 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/ZopeTutorial/Help/catalog
+------
+2005-03-14T05:59:28 INFO Zope New disk product detected, determining if we need to fix up any ZClasses.
+------
+2005-03-14T05:59:28 INFO Zope Ready to handle requests
+------
+2005-03-14T05:59:31 INFO Z2 Caught signal SIGINT
+------
+2005-03-14T05:59:31 INFO Z2 Shutting down
+------
+2005-03-14T06:00:36 INFO ZServer HTTP server started at Mon Mar 14 06:00:36 2005
+	Hostname: localhost.localdomain
+	Port: 8080
+------
+2005-03-14T06:00:36 INFO ZServer FTP server started at Mon Mar 14 06:00:36 2005
+	Hostname: 
+	Port: 8021
+------
+2005-03-14T06:00:37 INFO ZEO.ClientStorage (18491) ClientStorage (pid=18491) created RW/normal for storage: '1'
+------
+2005-03-14T06:00:37 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-14T06:00:37 INFO ZEO.ClientStorage (18491) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-14T06:00:37 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-14T06:00:37 INFO ZEO.ClientStorage (18491) Server authentication protocol None
+------
+2005-03-14T06:00:37 INFO ZEO.ClientStorage (18491) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-14T06:00:37 INFO ZEO.ClientStorage (18491) Verifying cache
+------
+2005-03-14T06:00:37 INFO ZEO.ClientStorage (18491) Waiting for cache verification to finish
+------
+2005-03-14T06:00:37 INFO ZEO.ClientStorage (18491) Waiting for cache verification to finish
+------
+2005-03-14T06:00:37 INFO ZEO.ClientStorage (18491) endVerify finishing
+------
+2005-03-14T06:00:37 INFO ZEO.ClientStorage (18491) endVerify finished
+------
+2005-03-14T06:00:38 INFO Zope Ready to handle requests
+------
+2005-03-14T06:01:02 INFO Z2 Caught signal SIGINT
+------
+2005-03-14T06:01:02 INFO Z2 Shutting down
+------
+2005-03-14T06:01:07 INFO ZServer HTTP server started at Mon Mar 14 06:01:07 2005
+	Hostname: localhost.localdomain
+	Port: 8080
+------
+2005-03-14T06:01:07 INFO ZServer FTP server started at Mon Mar 14 06:01:07 2005
+	Hostname: 
+	Port: 8021
+------
+2005-03-14T06:01:07 INFO ZEO.ClientStorage (18509) ClientStorage (pid=18509) created RW/normal for storage: '1'
+------
+2005-03-14T06:01:07 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-14T06:01:07 INFO ZEO.ClientStorage (18509) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-14T06:01:07 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-14T06:01:07 INFO ZEO.ClientStorage (18509) Server authentication protocol None
+------
+2005-03-14T06:01:07 INFO ZEO.ClientStorage (18509) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-14T06:01:07 INFO ZEO.ClientStorage (18509) Verifying cache
+------
+2005-03-14T06:01:07 INFO ZEO.ClientStorage (18509) Waiting for cache verification to finish
+------
+2005-03-14T06:01:07 INFO ZEO.ClientStorage (18509) Waiting for cache verification to finish
+------
+2005-03-14T06:01:07 INFO ZEO.ClientStorage (18509) endVerify finishing
+------
+2005-03-14T06:01:07 INFO ZEO.ClientStorage (18509) endVerify finished
+------
+2005-03-14T06:01:08 INFO Zope Ready to handle requests
+------
+2005-03-14T09:09:09 INFO Z2 Caught signal SIGTERM
+------
+2005-03-14T09:09:09 INFO Z2 Shutting down fast
+------
+2005-03-14T09:09:09 INFO ZServer closing HTTP to new connections
+------
+2005-03-14T09:09:09 INFO ZServer closing FTP to new connections
+------
+2005-03-14T09:09:22 INFO ZServer HTTP server started at Mon Mar 14 09:09:22 2005
+	Hostname: localhost.localdomain
+	Port: 8080
+------
+2005-03-14T09:09:22 INFO ZServer FTP server started at Mon Mar 14 09:09:22 2005
+	Hostname: 
+	Port: 8021
+------
+2005-03-14T09:09:26 ERROR VerboseSecurity Unable to patch PermissionRole.
+Traceback (most recent call last):
+  File "/home/tseaver/projects/paris/var/zope/Products/VerboseSecurity/PermissionRolePatch.py", line 41, in ?
+    PermissionRole.__of__ = __of__
+TypeError: can't set attributes of built-in/extension type 'PermissionRole' if the attribute name begins and ends with __ and contains only 4 _ characters
+------
+2005-03-14T09:09:27 INFO ZEO.ClientStorage (25263) ClientStorage (pid=25263) created RW/normal for storage: '1'
+------
+2005-03-14T09:09:27 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-14T09:09:27 INFO ZEO.ClientStorage (25263) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-14T09:09:27 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-14T09:09:27 INFO ZEO.ClientStorage (25263) Server authentication protocol None
+------
+2005-03-14T09:09:27 INFO ZEO.ClientStorage (25263) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-14T09:09:27 INFO ZEO.ClientStorage (25263) Verifying cache
+------
+2005-03-14T09:09:27 INFO ZEO.ClientStorage (25263) Waiting for cache verification to finish
+------
+2005-03-14T09:09:27 INFO ZEO.ClientStorage (25263) Waiting for cache verification to finish
+------
+2005-03-14T09:09:27 INFO ZEO.ClientStorage (25263) endVerify finishing
+------
+2005-03-14T09:09:27 INFO ZEO.ClientStorage (25263) endVerify finished
+------
+2005-03-14T09:09:28 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/CMFCore/Help/catalog
+------
+2005-03-14T09:09:28 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T09:09:28 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T09:09:28 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/CMFCore/Help/catalog
+------
+2005-03-14T09:09:28 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/CMFDefault/Help/catalog
+------
+2005-03-14T09:09:28 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T09:09:28 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T09:09:28 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/CMFDefault/Help/catalog
+------
+2005-03-14T09:09:29 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/CMFTopic/Help/catalog
+------
+2005-03-14T09:09:29 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T09:09:29 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T09:09:29 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/CMFTopic/Help/catalog
+------
+2005-03-14T09:09:30 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/DCWorkflow/Help/catalog
+------
+2005-03-14T09:09:30 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-14T09:09:30 INFO Zope.ZCatalog processing index categories
+------
+2005-03-14T09:09:30 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/DCWorkflow/Help/catalog
+------
+2005-03-14T09:09:32 INFO Zope New disk product detected, determining if we need to fix up any ZClasses.
+------
+2005-03-14T09:09:33 INFO Zope Ready to handle requests
+------
+2005-03-14T09:13:41 INFO Z2 Caught signal SIGINT
+------
+2005-03-14T09:13:41 INFO Z2 Shutting down
+------
+2005-03-14T09:14:39 INFO ZServer HTTP server started at Mon Mar 14 09:14:39 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-14T09:14:39 INFO ZServer FTP server started at Mon Mar 14 09:14:39 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-14T09:14:42 ERROR VerboseSecurity Unable to patch PermissionRole.
+Traceback (most recent call last):
+  File "/home/tseaver/projects/paris/var/zope/Products/VerboseSecurity/PermissionRolePatch.py", line 41, in ?
+    PermissionRole.__of__ = __of__
+TypeError: can't set attributes of built-in/extension type 'PermissionRole' if the attribute name begins and ends with __ and contains only 4 _ characters
+------
+2005-03-14T09:14:42 INFO ZEO.ClientStorage (25450) ClientStorage (pid=25450) created RW/normal for storage: '1'
+------
+2005-03-14T09:14:42 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-14T09:14:42 INFO ZEO.ClientStorage (25450) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-14T09:14:42 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-14T09:14:42 INFO ZEO.ClientStorage (25450) Server authentication protocol None
+------
+2005-03-14T09:14:42 INFO ZEO.ClientStorage (25450) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-14T09:14:42 INFO ZEO.ClientStorage (25450) Verifying cache
+------
+2005-03-14T09:14:42 INFO ZEO.ClientStorage (25450) Waiting for cache verification to finish
+------
+2005-03-14T09:14:43 INFO ZEO.ClientStorage (25450) Waiting for cache verification to finish
+------
+2005-03-14T09:14:43 INFO ZEO.ClientStorage (25450) endVerify finishing
+------
+2005-03-14T09:14:43 INFO ZEO.ClientStorage (25450) endVerify finished
+------
+2005-03-14T09:14:44 INFO Zope Ready to handle requests
+------
+2005-03-14T09:17:14 INFO Z2 Caught signal SIGINT
+------
+2005-03-14T09:17:14 INFO Z2 Shutting down
+------
+2005-03-15T11:57:42 INFO ZServer HTTP server started at Tue Mar 15 11:57:42 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-15T11:57:42 INFO ZServer FTP server started at Tue Mar 15 11:57:42 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-15T11:57:43 INFO ZEO.ClientStorage (18713) ClientStorage (pid=18713) created RW/normal for storage: '1'
+------
+2005-03-15T11:57:43 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-15T11:57:43 INFO ZEO.ClientStorage (18713) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-15T11:57:43 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-15T11:57:43 INFO ZEO.ClientStorage (18713) Server authentication protocol None
+------
+2005-03-15T11:57:43 INFO ZEO.ClientStorage (18713) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-15T11:57:43 INFO ZEO.ClientStorage (18713) Verifying cache
+------
+2005-03-15T11:57:43 INFO ZEO.ClientStorage (18713) Waiting for cache verification to finish
+------
+2005-03-15T11:57:43 INFO ZEO.ClientStorage (18713) Waiting for cache verification to finish
+------
+2005-03-15T11:57:43 INFO ZEO.ClientStorage (18713) endVerify finishing
+------
+2005-03-15T11:57:43 INFO ZEO.ClientStorage (18713) endVerify finished
+------
+2005-03-15T11:57:45 INFO Zope Ready to handle requests
+------
+2005-03-15T13:09:54 INFO Z2 Caught signal SIGINT
+------
+2005-03-15T13:09:54 INFO Z2 Shutting down
+------
+2005-03-16T04:45:19 INFO ZServer HTTP server started at Wed Mar 16 04:45:19 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T04:45:19 INFO ZServer FTP server started at Wed Mar 16 04:45:19 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T04:45:22 ERROR VerboseSecurity Unable to patch PermissionRole.
+Traceback (most recent call last):
+  File "/home/tseaver/projects/paris/var/zope/Products/VerboseSecurity/PermissionRolePatch.py", line 41, in ?
+    PermissionRole.__of__ = __of__
+TypeError: can't set attributes of built-in/extension type 'PermissionRole' if the attribute name begins and ends with __ and contains only 4 _ characters
+------
+2005-03-16T04:45:23 INFO ZEO.ClientStorage (5773) ClientStorage (pid=5773) created RW/normal for storage: '1'
+------
+2005-03-16T04:45:23 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T04:45:23 INFO ZEO.ClientStorage (5773) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T04:45:23 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T04:45:23 INFO ZEO.ClientStorage (5773) Server authentication protocol None
+------
+2005-03-16T04:45:23 INFO ZEO.ClientStorage (5773) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T04:45:23 INFO ZEO.ClientStorage (5773) Verifying cache
+------
+2005-03-16T04:45:23 INFO ZEO.ClientStorage (5773) Waiting for cache verification to finish
+------
+2005-03-16T04:45:23 INFO ZEO.ClientStorage (5773) Waiting for cache verification to finish
+------
+2005-03-16T04:45:23 INFO ZEO.ClientStorage (5773) endVerify finishing
+------
+2005-03-16T04:45:23 INFO ZEO.ClientStorage (5773) endVerify finished
+------
+2005-03-16T04:45:25 INFO Zope Ready to handle requests
+------
+2005-03-16T04:47:58 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T04:47:58 INFO Z2 Shutting down
+------
+2005-03-16T04:48:01 INFO ZServer HTTP server started at Wed Mar 16 04:48:01 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T04:48:01 INFO ZServer FTP server started at Wed Mar 16 04:48:01 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T04:48:02 ERROR VerboseSecurity Unable to patch PermissionRole.
+Traceback (most recent call last):
+  File "/home/tseaver/projects/paris/var/zope/Products/VerboseSecurity/PermissionRolePatch.py", line 42, in ?
+    PermissionRole.__dict__['__of__'] = __of__
+TypeError: object does not support item assignment
+------
+2005-03-16T04:48:02 INFO ZEO.ClientStorage (5841) ClientStorage (pid=5841) created RW/normal for storage: '1'
+------
+2005-03-16T04:48:02 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T04:48:02 INFO ZEO.ClientStorage (5841) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T04:48:02 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T04:48:02 INFO ZEO.ClientStorage (5841) Server authentication protocol None
+------
+2005-03-16T04:48:02 INFO ZEO.ClientStorage (5841) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T04:48:02 INFO ZEO.ClientStorage (5841) Verifying cache
+------
+2005-03-16T04:48:02 INFO ZEO.ClientStorage (5841) Waiting for cache verification to finish
+------
+2005-03-16T04:48:02 INFO ZEO.ClientStorage (5841) Waiting for cache verification to finish
+------
+2005-03-16T04:48:02 INFO ZEO.ClientStorage (5841) endVerify finishing
+------
+2005-03-16T04:48:02 INFO ZEO.ClientStorage (5841) endVerify finished
+------
+2005-03-16T04:48:03 INFO Zope Ready to handle requests
+------
+2005-03-16T04:48:10 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T04:48:10 INFO Z2 Shutting down
+------
+2005-03-16T04:48:22 INFO ZServer HTTP server started at Wed Mar 16 04:48:22 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T04:48:22 INFO ZServer FTP server started at Wed Mar 16 04:48:22 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T04:55:26 ERROR VerboseSecurity Unable to patch PermissionRole.
+Traceback (most recent call last):
+  File "/home/tseaver/projects/paris/var/zope/Products/VerboseSecurity/PermissionRolePatch.py", line 43, in ?
+    PermissionRole.__dict__['__of__'] = __of__
+  File "/home/tseaver/projects/paris/var/zope/Products/VerboseSecurity/PermissionRolePatch.py", line 43, in ?
+    PermissionRole.__dict__['__of__'] = __of__
+  File "/home/tseaver/projects/paris/opt/Python-2.3.5/lib/python2.3/bdb.py", line 48, in trace_dispatch
+    return self.dispatch_line(frame)
+  File "/home/tseaver/projects/paris/opt/Python-2.3.5/lib/python2.3/bdb.py", line 61, in dispatch_line
+    if self.quitting: raise BdbQuit
+BdbQuit
+------
+2005-03-16T04:55:26 INFO ZEO.ClientStorage (5851) ClientStorage (pid=5851) created RW/normal for storage: '1'
+------
+2005-03-16T04:55:26 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T04:55:27 INFO ZEO.ClientStorage (5851) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T04:55:27 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T04:55:27 INFO ZEO.ClientStorage (5851) Server authentication protocol None
+------
+2005-03-16T04:55:27 INFO ZEO.ClientStorage (5851) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T04:55:27 INFO ZEO.ClientStorage (5851) Verifying cache
+------
+2005-03-16T04:55:27 INFO ZEO.ClientStorage (5851) Waiting for cache verification to finish
+------
+2005-03-16T04:55:27 INFO ZEO.ClientStorage (5851) Waiting for cache verification to finish
+------
+2005-03-16T04:55:27 INFO ZEO.ClientStorage (5851) endVerify finishing
+------
+2005-03-16T04:55:27 INFO ZEO.ClientStorage (5851) endVerify finished
+------
+2005-03-16T04:55:28 INFO Zope Ready to handle requests
+------
+2005-03-16T04:55:30 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T04:55:30 INFO Z2 Shutting down
+------
+2005-03-16T04:55:32 INFO ZServer HTTP server started at Wed Mar 16 04:55:32 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T04:55:32 INFO ZServer FTP server started at Wed Mar 16 04:55:32 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T04:55:33 ERROR VerboseSecurity Unable to patch PermissionRole.
+Traceback (most recent call last):
+  File "/home/tseaver/projects/paris/var/zope/Products/VerboseSecurity/PermissionRolePatch.py", line 41, in ?
+    PermissionRole.__of__ = __of__
+TypeError: can't set attributes of built-in/extension type 'PermissionRole' if the attribute name begins and ends with __ and contains only 4 _ characters
+------
+2005-03-16T04:55:33 INFO ZEO.ClientStorage (6029) ClientStorage (pid=6029) created RW/normal for storage: '1'
+------
+2005-03-16T04:55:33 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T04:55:33 INFO ZEO.ClientStorage (6029) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T04:55:33 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T04:55:33 INFO ZEO.ClientStorage (6029) Server authentication protocol None
+------
+2005-03-16T04:55:33 INFO ZEO.ClientStorage (6029) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T04:55:33 INFO ZEO.ClientStorage (6029) Verifying cache
+------
+2005-03-16T04:55:33 INFO ZEO.ClientStorage (6029) Waiting for cache verification to finish
+------
+2005-03-16T04:55:34 INFO ZEO.ClientStorage (6029) Waiting for cache verification to finish
+------
+2005-03-16T04:55:34 INFO ZEO.ClientStorage (6029) endVerify finishing
+------
+2005-03-16T04:55:34 INFO ZEO.ClientStorage (6029) endVerify finished
+------
+2005-03-16T04:55:34 INFO Zope Ready to handle requests
+------
+2005-03-16T04:55:48 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T04:55:48 INFO Z2 Shutting down
+------
+2005-03-16T07:06:19 INFO ZServer HTTP server started at Wed Mar 16 07:06:19 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T07:06:19 INFO ZServer FTP server started at Wed Mar 16 07:06:19 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T07:06:19 ERROR VerboseSecurity Unable to patch PermissionRole.
+Traceback (most recent call last):
+  File "/home/tseaver/projects/paris/var/zope/Products/VerboseSecurity/PermissionRolePatch.py", line 41, in ?
+    PermissionRole.__of__ = __of__
+TypeError: can't set attributes of built-in/extension type 'PermissionRole' if the attribute name begins and ends with __ and contains only 4 _ characters
+------
+2005-03-16T07:06:20 INFO ZEO.ClientStorage (10466) ClientStorage (pid=10466) created RW/normal for storage: '1'
+------
+2005-03-16T07:06:20 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T07:06:20 INFO ZEO.ClientStorage (10466) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T07:06:20 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T07:06:20 INFO ZEO.ClientStorage (10466) Server authentication protocol None
+------
+2005-03-16T07:06:20 INFO ZEO.ClientStorage (10466) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T07:06:20 INFO ZEO.ClientStorage (10466) Verifying cache
+------
+2005-03-16T07:06:20 INFO ZEO.ClientStorage (10466) Waiting for cache verification to finish
+------
+2005-03-16T07:06:20 INFO ZEO.ClientStorage (10466) Waiting for cache verification to finish
+------
+2005-03-16T07:06:20 INFO ZEO.ClientStorage (10466) endVerify finishing
+------
+2005-03-16T07:06:20 INFO ZEO.ClientStorage (10466) endVerify finished
+------
+2005-03-16T07:06:22 INFO Zope Ready to handle requests
+------
+2005-03-16T07:07:28 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T07:07:28 INFO Z2 Shutting down
+------
+2005-03-16T11:45:04 INFO ZServer HTTP server started at Wed Mar 16 11:45:04 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T11:45:04 INFO ZServer FTP server started at Wed Mar 16 11:45:04 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T11:45:07 ERROR VerboseSecurity Unable to patch PermissionRole.
+Traceback (most recent call last):
+  File "/home/tseaver/projects/paris/var/zope/Products/VerboseSecurity/PermissionRolePatch.py", line 41, in ?
+    PermissionRole.__of__ = __of__
+TypeError: can't set attributes of built-in/extension type 'PermissionRole' if the attribute name begins and ends with __ and contains only 4 _ characters
+------
+2005-03-16T11:45:08 INFO ZEO.ClientStorage (20955) ClientStorage (pid=20955) created RW/normal for storage: '1'
+------
+2005-03-16T11:45:08 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T11:45:08 INFO ZEO.ClientStorage (20955) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T11:45:08 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T11:45:08 INFO ZEO.ClientStorage (20955) Server authentication protocol None
+------
+2005-03-16T11:45:08 INFO ZEO.ClientStorage (20955) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T11:45:08 INFO ZEO.ClientStorage (20955) Verifying cache
+------
+2005-03-16T11:45:08 INFO ZEO.ClientStorage (20955) Waiting for cache verification to finish
+------
+2005-03-16T11:45:08 INFO ZEO.ClientStorage (20955) Waiting for cache verification to finish
+------
+2005-03-16T11:45:08 INFO ZEO.ClientStorage (20955) endVerify finishing
+------
+2005-03-16T11:45:08 INFO ZEO.ClientStorage (20955) endVerify finished
+------
+2005-03-16T11:45:10 INFO Zope Ready to handle requests
+------
+2005-03-16T11:54:01 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T11:54:01 INFO Z2 Shutting down
+------
+2005-03-16T11:54:09 INFO ZServer HTTP server started at Wed Mar 16 11:54:09 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T11:54:09 INFO ZServer FTP server started at Wed Mar 16 11:54:09 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T11:54:11 INFO ZEO.ClientStorage (21199) ClientStorage (pid=21199) created RW/normal for storage: '1'
+------
+2005-03-16T11:54:11 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T11:54:11 INFO ZEO.ClientStorage (21199) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T11:54:11 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T11:54:11 INFO ZEO.ClientStorage (21199) Server authentication protocol None
+------
+2005-03-16T11:54:11 INFO ZEO.ClientStorage (21199) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T11:54:11 INFO ZEO.ClientStorage (21199) Verifying cache
+------
+2005-03-16T11:54:11 INFO ZEO.ClientStorage (21199) Waiting for cache verification to finish
+------
+2005-03-16T11:54:11 INFO ZEO.ClientStorage (21199) Waiting for cache verification to finish
+------
+2005-03-16T11:54:11 INFO ZEO.ClientStorage (21199) endVerify finishing
+------
+2005-03-16T11:54:11 INFO ZEO.ClientStorage (21199) endVerify finished
+------
+2005-03-16T11:54:12 INFO Zope Ready to handle requests
+------
+2005-03-16T11:54:51 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T11:54:51 INFO Z2 Shutting down
+------
+2005-03-16T11:54:54 INFO ZServer HTTP server started at Wed Mar 16 11:54:54 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T11:54:54 INFO ZServer FTP server started at Wed Mar 16 11:54:54 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T11:54:55 INFO ZEO.ClientStorage (21228) ClientStorage (pid=21228) created RW/normal for storage: '1'
+------
+2005-03-16T11:54:55 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T11:54:55 INFO ZEO.ClientStorage (21228) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T11:54:55 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T11:54:55 INFO ZEO.ClientStorage (21228) Server authentication protocol None
+------
+2005-03-16T11:54:55 INFO ZEO.ClientStorage (21228) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T11:54:55 INFO ZEO.ClientStorage (21228) Verifying cache
+------
+2005-03-16T11:54:55 INFO ZEO.ClientStorage (21228) Waiting for cache verification to finish
+------
+2005-03-16T11:54:55 INFO ZEO.ClientStorage (21228) Waiting for cache verification to finish
+------
+2005-03-16T11:54:55 INFO ZEO.ClientStorage (21228) endVerify finishing
+------
+2005-03-16T11:54:55 INFO ZEO.ClientStorage (21228) endVerify finished
+------
+2005-03-16T11:54:56 INFO Zope Ready to handle requests
+------
+2005-03-16T11:55:44 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T11:55:44 INFO Z2 Shutting down
+------
+2005-03-16T13:07:14 INFO ZServer HTTP server started at Wed Mar 16 13:07:14 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T13:07:14 INFO ZServer FTP server started at Wed Mar 16 13:07:14 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T13:07:15 INFO ZEO.ClientStorage (24225) ClientStorage (pid=24225) created RW/normal for storage: '1'
+------
+2005-03-16T13:07:15 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T13:07:15 INFO ZEO.ClientStorage (24225) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T13:07:15 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T13:07:16 INFO ZEO.ClientStorage (24225) Server authentication protocol None
+------
+2005-03-16T13:07:16 INFO ZEO.ClientStorage (24225) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T13:07:16 INFO ZEO.ClientStorage (24225) Verifying cache
+------
+2005-03-16T13:07:16 INFO ZEO.ClientStorage (24225) Waiting for cache verification to finish
+------
+2005-03-16T13:07:16 INFO ZEO.ClientStorage (24225) Waiting for cache verification to finish
+------
+2005-03-16T13:07:16 INFO ZEO.ClientStorage (24225) endVerify finishing
+------
+2005-03-16T13:07:16 INFO ZEO.ClientStorage (24225) endVerify finished
+------
+2005-03-16T13:07:17 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/CMFCore/Help/catalog
+------
+2005-03-16T13:07:17 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-16T13:07:17 INFO Zope.ZCatalog processing index categories
+------
+2005-03-16T13:07:17 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/CMFCore/Help/catalog
+------
+2005-03-16T13:07:19 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/CMFDefault/Help/catalog
+------
+2005-03-16T13:07:19 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-16T13:07:19 INFO Zope.ZCatalog processing index categories
+------
+2005-03-16T13:07:19 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/CMFDefault/Help/catalog
+------
+2005-03-16T13:07:20 INFO Zope.ZCatalog Start migration of indexes for Control_Panel/Products/CMFTopic/Help/catalog
+------
+2005-03-16T13:07:20 INFO Zope.ZCatalog processing index permissions
+------
+2005-03-16T13:07:20 INFO Zope.ZCatalog processing index categories
+------
+2005-03-16T13:07:20 INFO Zope.ZCatalog Finished migration of indexes for Control_Panel/Products/CMFTopic/Help/catalog
+------
+2005-03-16T13:07:22 INFO Zope New disk product detected, determining if we need to fix up any ZClasses.
+------
+2005-03-16T13:07:22 INFO Zope Ready to handle requests
+------
+2005-03-16T13:07:28 WARNING ZODB Could not import class 'UniqueIdAnnotationTool' from module 'Products.CMFUid.UniqueIdAnnotationTool'
+------
+2005-03-16T13:07:28 WARNING ZODB Could not import class 'UniqueIdHandlerTool' from module 'Products.CMFUid.UniqueIdHandlerTool'
+------
+2005-03-16T13:07:28 WARNING ZODB Could not import class 'UniqueIdGeneratorTool' from module 'Products.CMFUid.UniqueIdGeneratorTool'
+------
+2005-03-16T13:08:12 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T13:08:12 INFO Z2 Shutting down
+------
+2005-03-16T13:11:54 INFO ZServer HTTP server started at Wed Mar 16 13:11:54 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T13:11:54 INFO ZServer FTP server started at Wed Mar 16 13:11:54 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T13:11:55 INFO ZEO.ClientStorage (24371) ClientStorage (pid=24371) created RW/normal for storage: '1'
+------
+2005-03-16T13:11:55 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T13:11:55 INFO ZEO.ClientStorage (24371) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T13:11:55 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T13:11:55 INFO ZEO.ClientStorage (24371) Server authentication protocol None
+------
+2005-03-16T13:11:55 INFO ZEO.ClientStorage (24371) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T13:11:55 INFO ZEO.ClientStorage (24371) Verifying cache
+------
+2005-03-16T13:11:55 INFO ZEO.ClientStorage (24371) Waiting for cache verification to finish
+------
+2005-03-16T13:11:55 INFO ZEO.ClientStorage (24371) Waiting for cache verification to finish
+------
+2005-03-16T13:11:55 INFO ZEO.ClientStorage (24371) endVerify finishing
+------
+2005-03-16T13:11:55 INFO ZEO.ClientStorage (24371) endVerify finished
+------
+2005-03-16T13:11:56 INFO Zope Ready to handle requests
+------
+2005-03-16T13:15:16 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T13:15:16 INFO Z2 Shutting down
+------
+2005-03-16T13:59:41 INFO ZServer HTTP server started at Wed Mar 16 13:59:41 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T13:59:41 INFO ZServer FTP server started at Wed Mar 16 13:59:41 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T13:59:44 INFO ZEO.ClientStorage (26040) ClientStorage (pid=26040) created RW/normal for storage: '1'
+------
+2005-03-16T13:59:44 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T13:59:44 INFO ZEO.ClientStorage (26040) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T13:59:44 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T13:59:44 INFO ZEO.ClientStorage (26040) Server authentication protocol None
+------
+2005-03-16T13:59:44 INFO ZEO.ClientStorage (26040) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T13:59:44 INFO ZEO.ClientStorage (26040) Verifying cache
+------
+2005-03-16T13:59:44 INFO ZEO.ClientStorage (26040) Waiting for cache verification to finish
+------
+2005-03-16T13:59:44 INFO ZEO.ClientStorage (26040) Waiting for cache verification to finish
+------
+2005-03-16T13:59:44 INFO ZEO.ClientStorage (26040) endVerify finishing
+------
+2005-03-16T13:59:44 INFO ZEO.ClientStorage (26040) endVerify finished
+------
+2005-03-16T13:59:57 INFO Zope Ready to handle requests
+------
+2005-03-16T14:08:19 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T14:08:19 INFO Z2 Shutting down
+------
+2005-03-16T14:08:23 INFO ZServer HTTP server started at Wed Mar 16 14:08:23 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T14:08:23 INFO ZServer FTP server started at Wed Mar 16 14:08:23 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T14:08:25 INFO ZEO.ClientStorage (26323) ClientStorage (pid=26323) created RW/normal for storage: '1'
+------
+2005-03-16T14:08:25 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T14:08:25 INFO ZEO.ClientStorage (26323) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T14:08:25 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T14:08:25 INFO ZEO.ClientStorage (26323) Server authentication protocol None
+------
+2005-03-16T14:08:25 INFO ZEO.ClientStorage (26323) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T14:08:25 INFO ZEO.ClientStorage (26323) Verifying cache
+------
+2005-03-16T14:08:25 INFO ZEO.ClientStorage (26323) Waiting for cache verification to finish
+------
+2005-03-16T14:08:25 INFO ZEO.ClientStorage (26323) Waiting for cache verification to finish
+------
+2005-03-16T14:08:25 INFO ZEO.ClientStorage (26323) endVerify finishing
+------
+2005-03-16T14:08:25 INFO ZEO.ClientStorage (26323) endVerify finished
+------
+2005-03-16T14:08:27 INFO Zope Ready to handle requests
+------
+2005-03-16T14:09:08 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T14:09:08 INFO Z2 Shutting down
+------
+2005-03-16T14:09:10 INFO ZServer HTTP server started at Wed Mar 16 14:09:10 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-16T14:09:10 INFO ZServer FTP server started at Wed Mar 16 14:09:10 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-16T14:09:12 INFO ZEO.ClientStorage (26348) ClientStorage (pid=26348) created RW/normal for storage: '1'
+------
+2005-03-16T14:09:12 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-16T14:09:12 INFO ZEO.ClientStorage (26348) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-16T14:09:12 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-16T14:09:12 INFO ZEO.ClientStorage (26348) Server authentication protocol None
+------
+2005-03-16T14:09:12 INFO ZEO.ClientStorage (26348) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-16T14:09:12 INFO ZEO.ClientStorage (26348) Verifying cache
+------
+2005-03-16T14:09:12 INFO ZEO.ClientStorage (26348) Waiting for cache verification to finish
+------
+2005-03-16T14:09:12 INFO ZEO.ClientStorage (26348) Waiting for cache verification to finish
+------
+2005-03-16T14:09:12 INFO ZEO.ClientStorage (26348) endVerify finishing
+------
+2005-03-16T14:09:12 INFO ZEO.ClientStorage (26348) endVerify finished
+------
+2005-03-16T14:09:13 INFO Zope Ready to handle requests
+------
+2005-03-16T14:10:27 INFO Z2 Caught signal SIGINT
+------
+2005-03-16T14:10:27 INFO Z2 Shutting down
+------
+2005-03-17T13:53:40 INFO ZServer HTTP server started at Thu Mar 17 13:53:40 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-17T13:53:40 INFO ZServer FTP server started at Thu Mar 17 13:53:40 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-17T13:53:42 INFO ZEO.ClientStorage (9431) ClientStorage (pid=9431) created RW/normal for storage: '1'
+------
+2005-03-17T13:53:42 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-17T13:53:42 INFO ZEO.ClientStorage (9431) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-17T13:53:42 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-17T13:53:42 INFO ZEO.ClientStorage (9431) Server authentication protocol None
+------
+2005-03-17T13:53:42 INFO ZEO.ClientStorage (9431) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-17T13:53:42 INFO ZEO.ClientStorage (9431) Verifying cache
+------
+2005-03-17T13:53:42 INFO ZEO.ClientStorage (9431) Waiting for cache verification to finish
+------
+2005-03-17T13:53:42 INFO ZEO.ClientStorage (9431) Waiting for cache verification to finish
+------
+2005-03-17T13:53:42 INFO ZEO.ClientStorage (9431) endVerify finishing
+------
+2005-03-17T13:53:42 INFO ZEO.ClientStorage (9431) endVerify finished
+------
+2005-03-17T13:53:58 INFO Zope Ready to handle requests
+------
+2005-03-17T13:55:24 INFO Z2 Caught signal SIGINT
+------
+2005-03-17T13:55:24 INFO Z2 Shutting down
+------
+2005-03-17T13:55:27 INFO ZServer HTTP server started at Thu Mar 17 13:55:27 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-17T13:55:27 INFO ZServer FTP server started at Thu Mar 17 13:55:27 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-17T13:55:28 INFO ZEO.ClientStorage (9544) ClientStorage (pid=9544) created RW/normal for storage: '1'
+------
+2005-03-17T13:55:28 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-17T13:55:28 INFO ZEO.ClientStorage (9544) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-17T13:55:28 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-17T13:55:28 INFO ZEO.ClientStorage (9544) Server authentication protocol None
+------
+2005-03-17T13:55:28 INFO ZEO.ClientStorage (9544) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-17T13:55:28 INFO ZEO.ClientStorage (9544) Verifying cache
+------
+2005-03-17T13:55:28 INFO ZEO.ClientStorage (9544) Waiting for cache verification to finish
+------
+2005-03-17T13:55:28 INFO ZEO.ClientStorage (9544) Waiting for cache verification to finish
+------
+2005-03-17T13:55:28 INFO ZEO.ClientStorage (9544) endVerify finishing
+------
+2005-03-17T13:55:28 INFO ZEO.ClientStorage (9544) endVerify finished
+------
+2005-03-17T13:55:30 INFO Zope Ready to handle requests
+------
+2005-03-17T13:56:28 INFO Z2 Caught signal SIGINT
+------
+2005-03-17T13:56:28 INFO Z2 Shutting down
+------
+2005-03-17T16:35:20 INFO ZServer HTTP server started at Thu Mar 17 16:35:20 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-17T16:35:20 INFO ZServer FTP server started at Thu Mar 17 16:35:20 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-17T16:35:22 INFO ZEO.ClientStorage (5638) ClientStorage (pid=5638) created RW/normal for storage: '1'
+------
+2005-03-17T16:35:22 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-17T16:35:22 INFO ZEO.ClientStorage (5638) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-17T16:35:22 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-17T16:35:22 INFO ZEO.ClientStorage (5638) Server authentication protocol None
+------
+2005-03-17T16:35:22 INFO ZEO.ClientStorage (5638) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-17T16:35:22 INFO ZEO.ClientStorage (5638) Verifying cache
+------
+2005-03-17T16:35:22 INFO ZEO.ClientStorage (5638) Waiting for cache verification to finish
+------
+2005-03-17T16:35:22 INFO ZEO.ClientStorage (5638) Waiting for cache verification to finish
+------
+2005-03-17T16:35:22 INFO ZEO.ClientStorage (5638) endVerify finishing
+------
+2005-03-17T16:35:22 INFO ZEO.ClientStorage (5638) endVerify finished
+------
+2005-03-17T16:35:25 INFO Zope Ready to handle requests
+------
+2005-03-17T16:39:53 INFO Z2 Caught signal SIGINT
+------
+2005-03-17T16:39:53 INFO Z2 Shutting down
+------
+2005-03-17T16:40:00 INFO ZServer HTTP server started at Thu Mar 17 16:40:00 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-17T16:40:00 INFO ZServer FTP server started at Thu Mar 17 16:40:00 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-17T16:40:01 INFO ZEO.ClientStorage (5818) ClientStorage (pid=5818) created RW/normal for storage: '1'
+------
+2005-03-17T16:40:01 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-17T16:40:01 INFO ZEO.ClientStorage (5818) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-17T16:40:01 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-17T16:40:01 INFO ZEO.ClientStorage (5818) Server authentication protocol None
+------
+2005-03-17T16:40:01 INFO ZEO.ClientStorage (5818) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-17T16:40:02 INFO ZEO.ClientStorage (5818) Verifying cache
+------
+2005-03-17T16:40:02 INFO ZEO.ClientStorage (5818) Waiting for cache verification to finish
+------
+2005-03-17T16:40:02 INFO ZEO.ClientStorage (5818) Waiting for cache verification to finish
+------
+2005-03-17T16:40:02 INFO ZEO.ClientStorage (5818) endVerify finishing
+------
+2005-03-17T16:40:02 INFO ZEO.ClientStorage (5818) endVerify finished
+------
+2005-03-17T16:40:03 INFO Zope Ready to handle requests
+------
+2005-03-17T16:43:42 INFO Z2 Caught signal SIGINT
+------
+2005-03-17T16:43:42 INFO Z2 Shutting down
+------
+2005-03-17T16:43:45 INFO ZServer HTTP server started at Thu Mar 17 16:43:45 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-17T16:43:45 INFO ZServer FTP server started at Thu Mar 17 16:43:45 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-17T16:43:46 INFO ZEO.ClientStorage (5919) ClientStorage (pid=5919) created RW/normal for storage: '1'
+------
+2005-03-17T16:43:46 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-17T16:43:46 INFO ZEO.ClientStorage (5919) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-17T16:43:46 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-17T16:43:47 INFO ZEO.ClientStorage (5919) Server authentication protocol None
+------
+2005-03-17T16:43:47 INFO ZEO.ClientStorage (5919) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-17T16:43:47 INFO ZEO.ClientStorage (5919) Verifying cache
+------
+2005-03-17T16:43:47 INFO ZEO.ClientStorage (5919) Waiting for cache verification to finish
+------
+2005-03-17T16:43:47 INFO ZEO.ClientStorage (5919) Waiting for cache verification to finish
+------
+2005-03-17T16:43:47 INFO ZEO.ClientStorage (5919) endVerify finishing
+------
+2005-03-17T16:43:47 INFO ZEO.ClientStorage (5919) endVerify finished
+------
+2005-03-17T16:43:48 INFO Zope Ready to handle requests
+------
+2005-03-17T16:44:49 INFO Z2 Caught signal SIGINT
+------
+2005-03-17T16:44:49 INFO Z2 Shutting down
+------
+2005-03-17T16:44:51 INFO ZServer HTTP server started at Thu Mar 17 16:44:51 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-17T16:44:51 INFO ZServer FTP server started at Thu Mar 17 16:44:51 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-17T16:44:52 INFO ZEO.ClientStorage (5952) ClientStorage (pid=5952) created RW/normal for storage: '1'
+------
+2005-03-17T16:44:52 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-17T16:44:52 INFO ZEO.ClientStorage (5952) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-17T16:44:52 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-17T16:44:52 INFO ZEO.ClientStorage (5952) Server authentication protocol None
+------
+2005-03-17T16:44:52 INFO ZEO.ClientStorage (5952) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-17T16:44:52 INFO ZEO.ClientStorage (5952) Verifying cache
+------
+2005-03-17T16:44:52 INFO ZEO.ClientStorage (5952) Waiting for cache verification to finish
+------
+2005-03-17T16:44:53 INFO ZEO.ClientStorage (5952) Waiting for cache verification to finish
+------
+2005-03-17T16:44:53 INFO ZEO.ClientStorage (5952) endVerify finishing
+------
+2005-03-17T16:44:53 INFO ZEO.ClientStorage (5952) endVerify finished
+------
+2005-03-17T16:44:54 INFO Zope Ready to handle requests
+------
+2005-03-17T16:47:12 INFO Z2 Caught signal SIGINT
+------
+2005-03-17T16:47:12 INFO Z2 Shutting down
+------
+2005-03-17T16:47:15 INFO ZServer HTTP server started at Thu Mar 17 16:47:15 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-17T16:47:15 INFO ZServer FTP server started at Thu Mar 17 16:47:15 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-17T16:47:16 INFO ZEO.ClientStorage (6020) ClientStorage (pid=6020) created RW/normal for storage: '1'
+------
+2005-03-17T16:47:16 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-17T16:47:16 INFO ZEO.ClientStorage (6020) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-17T16:47:16 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-17T16:47:16 INFO ZEO.ClientStorage (6020) Server authentication protocol None
+------
+2005-03-17T16:47:16 INFO ZEO.ClientStorage (6020) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-17T16:47:16 INFO ZEO.ClientStorage (6020) Verifying cache
+------
+2005-03-17T16:47:16 INFO ZEO.ClientStorage (6020) Waiting for cache verification to finish
+------
+2005-03-17T16:47:16 INFO ZEO.ClientStorage (6020) Waiting for cache verification to finish
+------
+2005-03-17T16:47:16 INFO ZEO.ClientStorage (6020) endVerify finishing
+------
+2005-03-17T16:47:16 INFO ZEO.ClientStorage (6020) endVerify finished
+------
+2005-03-17T16:47:17 INFO Zope Ready to handle requests
+------
+2005-03-17T16:48:57 INFO Z2 Caught signal SIGINT
+------
+2005-03-17T16:48:57 INFO Z2 Shutting down
+------
+2005-03-17T16:49:01 INFO ZServer HTTP server started at Thu Mar 17 16:49:01 2005
+	Hostname: localhost.localdomain
+	Port: 9080
+------
+2005-03-17T16:49:01 INFO ZServer FTP server started at Thu Mar 17 16:49:01 2005
+	Hostname: 
+	Port: 9021
+------
+2005-03-17T16:49:02 INFO ZEO.ClientStorage (6072) ClientStorage (pid=6072) created RW/normal for storage: '1'
+------
+2005-03-17T16:49:02 WARNING zeo.cache reuse=True but the given file path None doesn't exist; ignoring reuse=True
+------
+2005-03-17T16:49:03 INFO ZEO.ClientStorage (6072) Testing connection <ManagedConnection ('127.0.0.1', 9100)>
+------
+2005-03-17T16:49:03 INFO ZEO.zrpc.Connection (localhost:9100) received handshake 'Z201'
+------
+2005-03-17T16:49:03 INFO ZEO.ClientStorage (6072) Server authentication protocol None
+------
+2005-03-17T16:49:03 INFO ZEO.ClientStorage (6072) Connected to storage: ('localhost.localdomain', 9100)
+------
+2005-03-17T16:49:03 INFO ZEO.ClientStorage (6072) Verifying cache
+------
+2005-03-17T16:49:03 INFO ZEO.ClientStorage (6072) Waiting for cache verification to finish
+------
+2005-03-17T16:49:03 INFO ZEO.ClientStorage (6072) Waiting for cache verification to finish
+------
+2005-03-17T16:49:03 INFO ZEO.ClientStorage (6072) endVerify finishing
+------
+2005-03-17T16:49:03 INFO ZEO.ClientStorage (6072) endVerify finished
+------
+2005-03-17T16:49:04 INFO Zope Ready to handle requests
+------
+2005-03-17T17:25:11 INFO Z2 Caught signal SIGINT
+------
+2005-03-17T17:25:11 INFO Z2 Shutting down

Added: zope2/Products/ZemanticIndex/var/README.txt
===================================================================
--- zope2/Products/ZemanticIndex/var/README.txt	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/var/README.txt	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,5 @@
+This directory contains files created and maintained by the Zope
+application server and related utilities while the server is running.
+This can include the object database as well as supplemental files
+(such as "pidfiles").  Log files are normally stored in the log/
+directory in the instance home.

Added: zope2/Products/ZemanticIndex/zope.conf.old
===================================================================
--- zope2/Products/ZemanticIndex/zope.conf.old	2005-03-22 21:23:39 UTC (rev 377)
+++ zope2/Products/ZemanticIndex/zope.conf.old	2005-03-24 23:25:42 UTC (rev 378)
@@ -0,0 +1,966 @@
+###############################################################################
+# Welcome to Zope 2.
+###############################################################################
+#
+# This is the Zope configuration file.  The Zope configuration file
+# shows what the default configuration directives are, and show
+# examples for each directive.  To declare a directive, make sure that
+# you add it to a line that does not begin with '#'.  Note that comments
+# are only allowed at the beginning of a line: you may not add comments
+# after directive text on the same line.
+#
+# Note for Developers
+# ===================
+#
+# This file is *not* auto-generated. If you create a new directive you
+# very likely want to include an example of how to use the new
+# directive in this file.
+#
+# You shouldn't modify 'zope.conf.in' to change
+# configuration. Instead, you should make a copy into 'zope.conf' and
+# modify that to avoid checking in changes to this file by mistake.
+
+# ZConfig "defines" used for later textual substitution
+
+%define INSTANCE /home/tseaver/projects/paris/var/zope
+%define ZOPE /home/tseaver/projects/paris/opt/Zope-2.8-head
+
+# Directive: instancehome
+#
+# Description:
+#     The path to the data files, local product files, import directory,
+#     and Extensions directory used by Zope.
+#
+# Required (no default)
+#
+# Example:
+#
+#    instancehome /home/chrism/projects/sessions
+
+instancehome $INSTANCE
+
+# Directive: clienthome
+#
+# Description:
+#     The directory in which a running Zope's process identifier files are
+#     placed.
+#
+# Default: $INSTANCE/var
+#
+# Example:
+#
+#    clienthome /home/chrism/projects/sessions/var
+
+
+# Directive: path
+#
+# Description:
+#     Name of a directory which should be inserted into the
+#     the beginning of Python's module search path.  This directive
+#     may be specified as many times as needed to insert additional
+#     directories.  The set of directories specified is inserted into the
+#     beginning of the module search path in the order which they are specified
+#     here.  Note that the processing of this directive may happen too late
+#     under some circumstances; it is recommended that you use the PYTHONPATH
+#     environment variable if using this directive doesn't work for you.
+#
+# Default: $INSTANCE/lib/python
+#
+# Example:
+#
+#    path $INSTANCE/mypymodules
+
+
+# Directive: products
+#
+# Description:
+#     Name of a directory that contains additional Product packages.  This
+#     directive may be used as many times as needed to add additional
+#     collections of products.  Each directory identified will be
+#     added to the __path__ of the Products package.  All Products are
+#     initialized in ascending alphabetical order by product name.  If
+#     two products with the same name exist in two Products directories,
+#     the order in which the packages appear here defines the load
+#     order.  The master Products directory exists in Zope's software home,
+#     and cannot be removed from the products path (and should not be added
+#     to it here).
+#
+# Default: $INSTANCE/Products
+#
+# Example:
+#
+#    products /home/chrism/projects/myproducts
+
+
+# Directive: environment
+#
+# Description:
+#     A section which can be used to define arbitrary key-value pairs
+#     for use as environment variables during Zope's run cycle.  It
+#     is not recommended to set system-related environment variables such as
+#     PYTHONPATH within this section.
+#
+# Default: unset
+#
+# Example:
+#
+#    <environment>
+#      MY_PRODUCT_ENVVAR foobar
+#    </environment>
+
+# Directive: debug-mode
+#
+# Description:
+#     A switch which controls several aspects of Zope operation useful for
+#     developing under Zope.  When debug mode is on:
+#
+#     - The process will not detach from the controlling terminal
+#
+#     - Errors in product initialization will cause startup to fail
+#       (instead of writing error messages to the event log file).
+#
+#     - Filesystem-based scripts such as skins, PageTemplateFiles, and
+#       DTMLFiles can be edited while the server is running and the server
+#       will detect these changes in real time.  When this switch is
+#       off, you must restart the server to see the changes.
+#
+#     Setting this to 'off' when Zope is in a
+#     production environment is encouraged, as it speeds execution (sometimes
+#     dramatically).
+#
+# Default: on
+#
+# Example:
+#
+#    debug-mode on
+debug-mode on
+
+
+# Directive: effective-user
+#
+# Description:
+#     If you intend to run Zope as the "root" user, you must supply this
+#     directive with an effective username or userid number to which Zope
+#     will 'suid' after the server ports are bound. This directive only
+#     has effect under UNIX and if Zope is started as the root user.
+#
+# Default: unset
+#
+# Example:
+#
+#    effective-user chrism
+
+
+# Directive: enable-product-installation
+#
+# Description:
+#     If this directive is turned on, Zope performs 'product installation'
+#     (the registration of Python modules in various Products directories)
+#     at startup. Turning this off can speed Zope/ZEO startup time,
+#     but it can also cause your Control_Panel Product list to become
+#     desynchronized with the contents of your Products
+#     directories.  NOTE: Zope *must* be started at least once with
+#     this directive set to "on" or you will receive an error.  If using ZEO,
+#     at least one ZEO client must be run with this directive set to "on"
+#     once, the others can have it turned off.
+#     NOTE: If your main storage is mounted read-only,
+#     you must set this directive to "off".
+#
+# Default: on
+#
+# Example:
+#
+#    enable-product-installation off
+
+# Directive: locale
+#
+# Description:
+#     Enable locale (internationalization) support by supplying a locale
+#     name to be used. See your operating system documentation for locale
+#     information specific to your system. If your Python module does not
+#     support the locale module, or if the requested locale is not
+#     supported by your system, an error will be raised and Zope will not
+#     start.
+#
+# Default: unset
+#
+# Example:
+#
+#    locale fr_FR
+
+
+# Directive: datetime-format
+#
+# Description:
+#     Set this variable either to "us" or "international" to force the
+#     DateTime module to parse date strings either with
+#     month-before-days-before-year ("us") or
+#     days-before-month-before-year ("international").  The default
+#     behaviour of DateTime (when this setting is left unset) is to
+#     parse dates as US dates.
+#
+# Default: us
+#
+# Example:
+#
+#    datetime-format international
+
+
+# Directive: zserver-threads
+#
+# Description:
+#     Specify the number of threads that Zope's ZServer web server will use
+#     to service requests. The default is 4.
+#
+# Default: 4
+#
+# Example:
+#
+#    zserver-threads 10
+
+
+# Directive: python-check-interval
+#
+# Description:
+#     Specify an integer representing the Python interpreter "check
+#     interval" This interval determines how often the interpreter checks
+#     for periodic things such as thread switches and signal handlers. The
+#     Zope default is 500, but you may want to experiment with other values
+#     in order to attempt to increae performance in your particular
+#     environment.
+#
+# Default: 500
+#
+# Example:
+#
+#    python-check-interval 1000
+
+
+# Directive: zserver-read-only-mode
+#
+# Description:
+#     If this directive is set to 'on', it will cause Zope to inhibit the
+#     creation of log files and pid files. Access and event log files will
+#     be presented on standard output. Setting this directive 'on' causes
+#     pcgi, fastcgi, and daemon-related directives to have no effect.
+#
+# Default: off
+#
+# Example:
+#
+#    zserver-read-only-mode on
+
+
+# Directive: pid-filename
+#
+# Description:
+#     The path to the file in which the Zope process id(s) will be written.
+#     This defaults to client-home/Z2.pid.
+#
+# Default: CLIENT_HOME/Z2.pid
+#
+# Example:
+#
+#    pid-filename /home/chrism/projects/sessions/var/Z2.pid
+
+
+# Directive: lock-filename
+#
+# Description:
+#     The path to a "lock file" which will be locked by Zope while it's
+#     running.  This file is used by zopectl.py to determine if Zope is
+#     currently running.  This defaults to CLIENT_HOME/Z2.lock.
+#
+# Default: CLIENT_HOME/Z2.lock
+#
+# Example:
+#
+#    lock-filename /home/chrism/projects/sessions/var/Z2.lock
+
+
+# Directive: mime-types
+#
+# Description:
+#     Tells Zope about additional mime.types files that should be
+#     loaded.  The files have the same format as the mime.types file
+#     distributed with Apache.  The "mime-types" setting may be given
+#     more than once in the configuration file.
+#
+# Example:
+#
+#     mime-types  $INSTANCE/etc/mime.types
+
+
+# Directive: structured-text-header-level
+#
+# Description:
+#     Set the default starting HTML header level for structured text
+#     documents. The default is 3, which implies that top-level headers
+#     will be created with an <H3> tag.
+#
+# Default: 3
+#
+# Example:
+#
+#    structured-text-header-level 1
+
+# Directive: rest-input-encoding
+#
+# Description:
+#    Specifies the input encoding of re-StructuredText documents
+#    (e.g. 'utf-8', 'iso-8859-15' or any other valid encoding recognized
+#    by Python).  The default is your Python's default encoding.
+#
+# Default: unset (uses system default)
+#
+# Example:
+#
+#    rest-input-encoding iso-8859-15
+
+# Directive: rest-output-encoding
+#
+# Description:
+#    Specifies the output encoding of re-StructuredText documents
+#    (e.g. 'utf-8', 'iso-8859-15' or any other valid encoding recognized
+#    by Python).  The default is your Python's default encoding.
+#
+# Default: unset (uses system default)
+#
+# Example:
+#
+#    rest-output-encoding iso-8859-15
+
+# Directive: rest-header-level
+#
+# Description:
+#     Set the default starting HTML header level for restructured text
+#     documents. The default is 3, which implies that top-level headers
+#     will be created with an <H3> tag.
+#
+# Default: 3
+#
+# Example:
+#
+#    rest-header-level 2
+
+# Directive: rest-language-code
+#
+# Description:
+#    Language code used for some internal translations inside of the docutils
+#    package and for DTD bibliographic elements mapping. See
+#    lib/python/docutils/languages/ for a list of supported language codes.
+#
+# Default: en
+#
+# Example:
+#
+#    rest-language-code de
+
+# Directive: cgi-environment
+#
+# Description:
+#     A section which allows a user to define arbitrary key-value pairs for
+#     use as the initial CGI environment variables. This is useful
+#     when you want to proxy requests from another web server to Zserver,
+#     and would like Zserver's CGI environment to reflect the CGI
+#     environment of the other web server.
+#
+# Default: unset
+#
+# Example:
+#
+# <cgi-environment>
+#   HTTPS_SERVER Foobar Server 1.0
+#   HTTPS_PORT 443
+# </cgi-environment>
+
+
+
+# Directive: dns-server
+#
+# Description:
+#     Specify the IP address of your DNS server in order to cause resolved
+#     hostnames to be written to Zope's access log. By default, Zope will
+#     not resolve hostnames unless this is set.
+#
+# Default: unset
+#
+# Example:
+#
+#    dns-server 127.0.0.1
+
+
+# Directive: ip-address
+#
+# Description:
+#     The default IP address on which Zope's various server protocol
+#     implementations will listen for requests. If this is unset, Zope
+#     will listen on all IP addresses supported by the machine. This
+#     directive can be overridden on a per-server basis in the servers
+#     section.
+#
+# Default: unset
+#
+# Example:
+#
+#    ip-address 127.0.0.1
+
+
+# Directive: http-realm
+#
+# Description:
+#     The HTTP "Realm" header value sent by this Zope instance. This value
+#     often shows up in basic authentication dialogs.
+#
+# Default: Zope
+#
+# Example:
+#
+#    http-realm Slipknot
+
+
+# Directive: cgi-maxlen
+#
+# Description:
+#     Set this value to limit the amount of form data being processed 
+#     by Zope to prevent DoS attacks.
+#
+# Default: 0 (= no restrictions)
+#
+# Example:
+#
+#    cgi-maxlen 10000
+
+
+# Directive: http-header-max-length
+#
+# Description:
+#     Maximum number of bytes allowed within a HTTP request header. The request
+#     is discarded and considered as a DoS attack if the header size exceeds
+#     this limit.
+#
+# Default: 8192
+#
+# Example:
+#
+#     http-header-max-length 16384
+
+
+# Directive: automatically-quote-dtml-request-data
+#
+# Description:
+#     Set this directive to 'off' in order to disable the autoquoting of
+#     implicitly retrieved REQUEST data by DTML code which contains a '<'
+#     when used in <dtml-var> construction. When this directive is 'on',
+#     all data implicitly retrieved from the REQUEST in DTML (as opposed to
+#     addressing REQUEST.somevarname directly) that contains a '<' will be
+#     HTML-quoted when interpolated via a <dtml-var> or &dtml- construct. This
+#     mitigates the possibility that DTML programmers will leave their
+#     sites open to a "client-side trojan" attack.
+#
+# Default: on
+#
+# Example:
+#
+#    automatically-quote-dtml-request-data on
+
+# Directive: trusted-proxy
+#
+# Description:
+#     Define one or more 'trusted-proxies' directives, each of which is a
+#     hostname or an IP address.  The set of definitions comprises a list
+#     of front-end proxies that are trusted to supply an accurate
+#     X-Forwarded-For header to Zope.  If a connection comes from
+#     a trusted proxy, Zope will trust any X-Forwarded header to contain
+#     the user's real IP address for the purposes of address-based
+#     authentication restriction.
+#
+# Default: unset
+#
+# Example:
+#
+#    trusted-proxy www.example.com
+#    trusted-proxy 192.168.1.1
+
+# Directive: publisher-profile-file
+#
+# Description:
+#    Names a file on the filesystem which causes Zope's Python
+#    profiling capabilities to be enabled.  For more information, see
+#    the Debug Information - > Profiling tab of Zope's Control_Panel
+#    via the Zope Management Interface.  IMPORTANT: setting this
+#    filename will cause Zope code to be executed much more slowly
+#    than normal.  This should not be enabled in production.
+#
+# Default: unset
+#
+# Example:
+#
+#    publisher-profile-file $INSTANCE/var/profile.dat
+
+
+# Directive: security-policy-implementation
+#
+# Description:
+#     The default Zope security machinery is implemented in C.
+#     Change this to "python" to use the Python version of the
+#     Zope security machinery.  This impacts performance but
+#     is useful for debugging purposes and required by Products such as
+#     VerboseSecurity, which need to "monkey-patch" the security
+#     machinery.
+#
+# Default: C
+#
+# Example:
+#
+#    security-policy-implementation python
+security-policy-implementation python
+
+# Directive: skip-authentication-checking
+#
+# Description:
+#     Set this directive to 'on' to cause Zope to skip checks related
+#     to authentication, for servers which serve only anonymous content.
+#     Only works if security-policy-implementation is 'C'.
+#
+# Default: off
+#
+# Example:
+#
+#    skip-authentication-checking on
+
+
+# Directive: skip-ownership-checking
+#
+# Description:
+#     Set this directive to 'on' to cause Zope to ignore ownership checking
+#     when attempting to execute "through the web" code. By default, this
+#     directive is on in order to prevent 'trojan horse' security problems
+#     whereby a user with less privilege can cause a user with more
+#     privilege to execute dangerous code.
+#
+# Default: off
+#
+# Example:
+#
+#    skip-ownership-checking on
+
+
+# Directive: maximum-number-of-session-objects
+#
+# Description:
+#     An integer value representing the number of items to use as a
+#     "maximum number of subobjects" value of the
+#     '/temp_folder/session_data' transient object container.
+#
+# Default: 1000
+#
+# Example:
+#
+#    maximum-number-of-session-objects 10000
+
+
+# Directive: session-add-notify-script-path
+#
+# Description:
+#     An optional fill Zope path name of a callable object to be set as the
+#     "script to call on object addition" of the sessioN_data transient
+#     object container created in the /temp_folder folder at startup.
+#
+# Default: unset
+#
+# Example:
+#
+#    session-add-notify-script-path /scripts/add_notifier
+
+
+# Directive: session-delete-notify-script-path
+#
+# Description:
+#     An optional fill Zope path name of a callable object to be set as the
+#     "script to call on object deletion" of the sessioN_data transient
+#     object container created in the /temp_folder folder at startup.
+#
+# Default: unset
+#
+# Example:
+#
+#    session-delete-notify-script-path /scripts/del_notifier
+
+
+# Directive: session-timeout-minutes
+#
+# Description:
+#     An integer value representing the number of minutes to be used as the
+#     "data object timeout" of the '/temp_folder/session_data' transient
+#     object container.
+#
+# Default: 20
+#
+# Example:
+#
+#    session-timeout-minutes 30
+
+
+# Directive: session-resolution-seconds
+#
+# Description:
+#    An integer value representing the number of seconds to be used as the
+#    "timeout resolution" of the '/temp_folder/session_data' transient
+#    object container.
+#
+# Default: 20
+#
+# Example:
+#
+#    session-resolution-seconds 60
+
+
+# Directive: suppress-all-access-rules
+#
+# Description:
+#     If this directive is set to on, no access rules in your Zope site
+#     will be executed. This is useful if you "lock yourself out" of a
+#     particular part of your site by setting an improper access rule.
+#
+# Default: off
+#
+# Example:
+#
+#    suppress-all-access-rules on
+
+
+# Directive: suppress-all-site-roots
+#
+# Description:
+#     If this directive is set to on, no site roots in your Zope site will
+#     be effective. This is useful if you "lock yourself out" of a
+#     particular part of your site by setting an improper site root.
+#
+# Default: off
+#
+# Example:
+#
+#    suppress-all-site-roots on
+
+
+# Directive: database-quota-size
+#
+# Description:
+#     Set this directive to an integer in bytes in order to place a hard
+#     limit on the size which the default FileStorage-backed Zope database
+#     can grow. Additions to the database will not be permitted once this
+#     filesize is exceeded.
+#
+# Default: unset
+#
+# Example:
+#
+#    database-quota-size 1000000
+
+
+# Directive: read-only-database
+#
+# Description:
+#     This causes the main Zope FileStorage-backed ZODB to be opened in
+#     read-only mode.
+#
+# Default: off
+#
+# Example:
+#
+#    read-only-database on
+
+
+# Directive: zeo-client-name
+#
+# Description:
+#     If you want a persistent ZEO client cache which retains cache
+#     contents across ClientStorage restarts, you need to define a
+#     zeo-client-name.  If you use ZEO and you don't set a
+#     zeo-client-name, the client cache is stored in temporary files
+#     which are removed when the ClientStorage shuts down.  The value
+#     of zeo-client-name is used to uniquely identify the local cache
+#     files created if this Zope is a ZEO client.
+#
+# Default: unset
+#
+# Example:
+#
+#    zeo-client-name zeo1
+
+
+# Directives: logger
+#
+# Description:
+#     This area should define one or more "logger" sections of the
+#     names "access", "event", and "trace".  The "access" logger logs
+#     Zope server access.  The "event" logger logs Zope event
+#     information.  The "trace" logger logs detailed server request
+#     information (for debugging purposes only).  Each logger section
+#     may contain a "level" name/value pair which indicates the level
+#     of logging detail to capture for this logger.  The default level
+#     is INFO.  Level may be any of "CRITICAL", 'ERROR", WARN", "INFO",
+#     "DEBUG", and "ALL".  Each logger section may additionally contain
+#     one or more "handler" sections which indicates a types of log
+#     "handlers" (file, syslog, NT event log, etc) to be used for the
+#     logger being defined.  There are 5 types of handlers: logfile,
+#     syslog, win32-eventlog, http-handler, email-notifier.  Each
+#     handler type has its own set of allowable subkeys which define
+#     aspects of the handler.  All handler sections also allow for the
+#     specification of a "format" (the log message format string), a
+#     "dateformat" (the log message format for date strings), and a
+#     "level", which has the same semantics of the overall logger
+#     level but overrides the logger's level for the handler it's
+#     defined upon.  XXXX much more detail necessary here
+#
+# Default:
+#
+#     The access log will log to the file <instancehome>/log/Z2.log at
+#     level INFO, the event log will log to the file
+#     <instancehome>/log/event.log at level INFO, and the trace log
+#     will not be written anywhere.
+
+<eventlog>
+  level info
+  <logfile>
+    path $INSTANCE/log/event.log
+    level info
+  </logfile>
+</eventlog>
+
+<logger access>
+  level WARN
+  <logfile>
+    path $INSTANCE/log/Z2.log
+    format %(message)s
+  </logfile>
+</logger>
+
+# <logger trace>
+#   level WARN
+#   <logfile>
+#     path $INSTANCE/log/trace.log
+#     format %(message)s
+#   </logfile>
+# </logger>
+
+# Directive: warnfilter
+#
+# Description:
+#     A section that allows you to define a warning filter.
+#     The following keys are valid within a warnfilter section:
+#
+#      action:  one of the following strings:
+#
+#           "error"   turn matching warnings into exceptions
+#           "ignore"  never print matching warnings
+#           "always"  always print matching warnings
+#           "default" print the first occurrence of matching warnings
+#                     for each location where the warning is issued
+#           "module"  print the first occurrence of matching warnings
+#                     for each module where the warning is issued
+#           "once"    print only the first occurrence of matching
+#                     warnings, regardless of location
+#
+#      message:  a string containing a regular expression that the
+#                warning message must match (the match is compiled to
+#                always be case-insensitive)
+#
+#      category: a Python dotted-path classname (must be a subclass of
+#                Warning) of which the warning category must be a subclass in
+#                order to match
+#
+#      module:   a string containing a regular expression that the
+#                module name must match (the match is compiled to be
+#                case-sensitive)
+#
+#      lineno:   an integer that the line number where the warning
+#                occurred must match, or 0 to match all line numbers
+#
+#     All keys within a warnfilter section are optional.  More than
+#     one warnfilter section may be specified.
+#
+# Default: unset
+#
+# Example:
+#
+#    <warnfilter>
+#       action ignore
+#       category exceptions.DeprecationWarning
+#    </warnfilter>
+
+
+# Directive: max-listen-sockets
+#
+# Description:
+#     The maximum number of sockets that ZServer will attempt to open
+#     in order to service incoming connections.
+#
+# Default: 1000
+#
+# Example:
+#
+#    max-listen-sockets 500
+
+
+# Directive: large-file-threshold
+#
+# Description:
+#     Requests bigger than this size get saved into a temporary file
+#     instead of being read completely into memory.
+#
+# Default: 512K
+#
+# Example:
+#
+#    large-file-threshold 1Mb
+
+
+# Directives: port-base
+#
+# Description:
+#     Offset applied to the port numbers used for ZServer
+#     configurations.  For example, if the http-server port is 8080 and
+#     the port-base is 1000, the HTTP server will listen on port 9080.
+#     This makes it easy to change the complete set of ports used by a
+#     Zope server process
+#
+# Default:
+#
+#     0
+#
+# Example:
+#
+#     port-base 1000
+
+
+# Directives: servers
+#
+# Description:
+#     A set of sections which allow the specification of Zope's various
+#     ZServer servers.  7 different server types may be defined:
+#     http-server, ftp-server, webdav-source-server, persistent-cgi,
+#     fast-cgi, monitor-server, and icp-server.  If no servers are
+#     defined, the default servers are used.
+#
+#     Ports may be specified using the 'address' directive either in simple
+#     form (80) or in complex form including hostname 127.0.0.1:80.  If the
+#     hostname is "left off", the default-ip-address is used as the hostname.
+#
+#     Port numbers are offset by the setting of port-base.
+#
+#     To run the monitor-server an emergency user must be defined 
+#     (through an 'access' file).
+#
+# Default:
+#
+#     An HTTP server starts on port 8080, an FTP server starts on port
+#     8021.
+
+<http-server>
+  # valid keys are "address" and "force-connection-close"
+  address 9080
+  # force-connection-close on
+</http-server>
+
+<ftp-server>
+  # valid key is "address"
+  address 9021
+</ftp-server>
+
+# Examples:
+#
+#  <webdav-source-server>
+#    # valid keys are "address" and "force-connection-close"
+#    address 1980
+#    force-connection-close off
+#  </webdav-source-server>
+#
+#  <persistent-cgi>
+#    # valid key is "path"
+#    path somefile
+#  </persistent-cgi>
+#
+#  <fast-cgi>
+#    # valid key is "address"; the address may be hostname:port, port,
+#    # or a path for a Unix-domain socket
+#    address somefile
+#  </fast-cgi>
+#
+#  <monitor-server>
+#    # valid keys are "address"
+#    address 99
+#  </monitor-server>
+#
+#  <icp-server>
+#    # valid key is "address"
+#    address 888
+#  </icp-server>
+
+
+# Database (zodb_db) section
+#
+# Description:
+#     A database section allows the definition of custom database and
+#     storage types.  More than one zodb_db section can be defined.
+#
+# Default: unset.
+#          IMPORTANT: At least one database with a mount-point of "/"
+#          must be specified for Zope to start properly.
+
+#<zodb_db main>
+    # Main FileStorage database
+#    <filestorage>
+#      path $INSTANCE/var/Data.fs
+#    </filestorage>
+#    mount-point /
+#</zodb_db>
+
+#
+# ZEO client storage:
+#
+<zodb_db main>
+  mount-point /
+  # ZODB cache, in number of objects
+  cache-size 5000
+  <zeoclient>
+    server localhost:9100
+    storage 1
+    name zeostorage
+    var $INSTANCE/var
+    # ZEO client cache, in bytes
+    cache-size 20MB
+    # Uncomment to have a persistent disk cache
+    #client zeo1
+  </zeoclient>
+</zodb_db>
+
+<zodb_db temporary>
+    # Temporary storage database (for sessions)
+    <temporarystorage>
+      name temporary storage for sessioning
+    </temporarystorage>
+    mount-point /temp_folder
+    container-class Products.TemporaryFolder.TemporaryContainer
+</zodb_db>
+
+# Other storage examples
+#
+# ZEO client storage:
+#
+# <zodb_db main>
+#   mount-point /
+#   # ZODB cache, in number of objects
+#   cache-size 5000
+#   <zeoclient>
+#     server localhost:8100
+#     storage 1
+#     name zeostorage
+#     var $INSTANCE/var
+#     # ZEO client cache, in bytes
+#     cache-size 20MB
+#     # Uncomment to have a persistent disk cache
+#     #client zeo1
+#   </zeoclient>
+# </zodb_db>



More information about the Zope-CVS mailing list