[Checkins] SVN: bluebream/website/ update example

Baiju M baiju.m.mail at gmail.com
Sun Feb 7 08:09:08 EST 2010


Log message for revision 108860:
  update example
  

Changed:
  U   bluebream/website/docs/v1.0/tutorial2.rst
  U   bluebream/website/examples/v1.0/tut/stage4/setup.py
  U   bluebream/website/examples/v1.0/tut/stage4/src/tc/main/collectormain.pt
  U   bluebream/website/examples/v1.0/tut/stage4/src/tc/main/configure.zcml
  A   bluebream/website/examples/v1.0/tut/stage4/src/tc/main/ticket.py
  U   bluebream/website/examples/v1.0/tut/stage4/src/tc/main/views.py
  D   bluebream/website/examples/v1.0/tut/stage4/var/log/access.log
  D   bluebream/website/examples/v1.0/tut/stage4/var/log/z3.log

-=-
Modified: bluebream/website/docs/v1.0/tutorial2.rst
===================================================================
--- bluebream/website/docs/v1.0/tutorial2.rst	2010-02-07 04:19:57 UTC (rev 108859)
+++ bluebream/website/docs/v1.0/tutorial2.rst	2010-02-07 13:09:08 UTC (rev 108860)
@@ -9,6 +9,8 @@
    Status <http://wiki.zope.org/bluebream/DocumentationStatus>`_ page
    in wiki for the current status and timeline.
 
+.. _tut2-intro:
+
 Introduction
 ------------
 
@@ -21,13 +23,16 @@
 - Change the look and feel
 - Use catalog to search
 
+.. _tut2-adding-tickets:
+
 Adding tickets
 --------------
 
 In this section, you will learn about adding tickets to collector.
+In order to use ticket objects, first you need to create an interface
+for tickets.  Update the ``interfaces.py`` with the ticket
+interface::
 
-Update the ::
-
   class ITicket(Interface):
      """Ticket - the main content object"""
 
@@ -37,6 +42,15 @@
           default=u"",
           required=True)
 
+      summary = TextLine(
+          title=u"Summary",
+          description=u"Ticket summary",
+          default=u"",
+          required=True)
+
+
+.. _tut2-adding-tickets:
+
 Change the look and feel
 ------------------------
 

Modified: bluebream/website/examples/v1.0/tut/stage4/setup.py
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/setup.py	2010-02-07 04:19:57 UTC (rev 108859)
+++ bluebream/website/examples/v1.0/tut/stage4/setup.py	2010-02-07 13:09:08 UTC (rev 108860)
@@ -54,7 +54,6 @@
                         'zope.testbrowser',
                         'zope.login',
                         'zope.app.zcmlfiles',
-                        'z3c.layer.minimal',
                         ],
       entry_points = """
       [paste.app_factory]

Modified: bluebream/website/examples/v1.0/tut/stage4/src/tc/main/collectormain.pt
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/src/tc/main/collectormain.pt	2010-02-07 04:19:57 UTC (rev 108859)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/main/collectormain.pt	2010-02-07 13:09:08 UTC (rev 108860)
@@ -4,7 +4,7 @@
 </head>
 <body>
 
-Welcome to ticket collector
+<a href="@@add_ticket">Add Ticket</a>
 
 </body>
 </html>

Modified: bluebream/website/examples/v1.0/tut/stage4/src/tc/main/configure.zcml
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/src/tc/main/configure.zcml	2010-02-07 04:19:57 UTC (rev 108859)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/main/configure.zcml	2010-02-07 13:09:08 UTC (rev 108860)
@@ -38,6 +38,25 @@
        />
   </class>
 
+  <interface 
+     interface=".interfaces.ITicket" 
+     type="zope.app.content.interfaces.IContentType"
+     /> 
+
+  <class class=".ticket.Ticket">
+    <implements
+       interface="zope.annotation.interfaces.IAttributeAnnotatable"
+       />
+    <require
+       permission="zope.ManageContent"
+       interface=".interfaces.ITicket"
+       />
+    <require
+       permission="zope.ManageContent"
+       set_schema=".interfaces.ITicket"
+       />
+  </class>
+
   <browser:page
      for="zope.site.interfaces.IRootFolder"
      name="add_ticket_collector"
@@ -53,4 +72,11 @@
      template="collectormain.pt"
      />
 
+  <browser:page
+     for=".interfaces.ICollector"
+     name="add_ticket"
+     permission="zope.ManageContent"
+     class=".views.AddTicket"
+     />
+
 </configure>

Added: bluebream/website/examples/v1.0/tut/stage4/src/tc/main/ticket.py
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/src/tc/main/ticket.py	                        (rev 0)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/main/ticket.py	2010-02-07 13:09:08 UTC (rev 108860)
@@ -0,0 +1,10 @@
+from zope.interface import implements
+from tc.main.interfaces import ITicket
+
+
+class Ticket(object):
+
+    implements(ITicket)
+
+    number = u""
+    summary = u""

Modified: bluebream/website/examples/v1.0/tut/stage4/src/tc/main/views.py
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/src/tc/main/views.py	2010-02-07 04:19:57 UTC (rev 108859)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/main/views.py	2010-02-07 13:09:08 UTC (rev 108860)
@@ -2,9 +2,11 @@
 from zope.container.interfaces import INameChooser
 from zope.formlib import form
 
-from interfaces import ICollector
+from tc.main.interfaces import ICollector
+from tc.main.interfaces import ITicket
 
-from ticketcollector import Collector
+from tc.main.ticketcollector import Collector
+from tc.main.ticket import Ticket
 
 class AddTicketCollector(form.AddForm):
 
@@ -25,6 +27,19 @@
 
     pass
 
+
+class AddTicket(form.AddForm):
+
+    form_fields = form.Fields(ITicket)
+
+    def createAndAdd(self, data):
+        number = data['number']
+        summary = data['summary']
+        ticket = Ticket()
+        self.context[number] = ticket
+        self.request.response.redirect('.')
+
+
 class RootDefaultView(BrowserView):
 
     def __call__(self):

Deleted: bluebream/website/examples/v1.0/tut/stage4/var/log/access.log
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/var/log/access.log	2010-02-07 04:19:57 UTC (rev 108859)
+++ bluebream/website/examples/v1.0/tut/stage4/var/log/access.log	2010-02-07 13:09:08 UTC (rev 108860)
@@ -1,114 +0,0 @@
-127.0.0.1 - - [10/Jan/2010:21:01:39 +0600] "GET / HTTP/1.1" 200 667 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [10/Jan/2010:21:53:33 +0600] "GET / HTTP/1.1" 200 667 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [10/Jan/2010:22:20:57 +0600] "GET / HTTP/1.1" 200 667 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [10/Jan/2010:22:20:59 +0600] "GET / HTTP/1.1" 200 667 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [10/Jan/2010:22:41:43 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 2992 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [10/Jan/2010:22:42:09 +0600] "GET / HTTP/1.1" 200 667 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [10/Jan/2010:22:42:13 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 2992 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [10/Jan/2010:22:54:18 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 2992 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:10:01:52 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 2992 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:10:53:30 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 2992 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:10:54:41 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 2992 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:17:32:48 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 2992 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:17:37:06 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 2992 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:17:37:08 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 2992 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:52:12 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 8939 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:52:12 +0600] "GET /%40%40/zope3_tablelayout.css HTTP/1.1" 200 10496 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:52:12 +0600] "GET /%40%40/zope3.js HTTP/1.1" 200 3163 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:52:12 +0600] "GET /%40%40/xmltree.js HTTP/1.1" 200 13279 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:52:13 +0600] "GET /%40%40/zope3logo.gif HTTP/1.1" 200 1506 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:52:13 +0600] "GET /%40%40singleBranchTree.xml HTTP/1.1" 200 283 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:52:13 +0600] "GET /%40%40/favicon.png HTTP/1.1" 200 838 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:52:13 +0600] "GET /%40%40/zope-site-interfaces-IFolder-zmi_icon.gif HTTP/1.1" 200 942 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:52:28 +0600] "GET /%40%40SelectedManagementView.html HTTP/1.1" 303 0 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:52:28 +0600] "GET /%40%40contents.html HTTP/1.1" 200 7378 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:52:28 +0600] "GET /%40%40singleBranchTree.xml HTTP/1.1" 200 283 "http://localhost:8080/@@contents.html" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:57:51 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 8939 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:57:52 +0600] "GET /%40%40/zope3_tablelayout.css HTTP/1.1" 304 0 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:57:52 +0600] "GET /%40%40/zope3.js HTTP/1.1" 304 0 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:57:52 +0600] "GET /%40%40/xmltree.js HTTP/1.1" 304 0 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:57:52 +0600] "GET /%40%40/zope3logo.gif HTTP/1.1" 304 0 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:18:57:52 +0600] "GET /%40%40singleBranchTree.xml HTTP/1.1" 200 283 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:19:00:01 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 8939 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:19:00:01 +0600] "GET /%40%40/zope3_tablelayout.css HTTP/1.1" 304 0 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:19:00:01 +0600] "GET /%40%40/xmltree.js HTTP/1.1" 304 0 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:19:00:01 +0600] "GET /%40%40/zope3.js HTTP/1.1" 304 0 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:19:00:01 +0600] "GET /%40%40/zope3logo.gif HTTP/1.1" 304 0 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:19:00:01 +0600] "GET /%40%40singleBranchTree.xml HTTP/1.1" 200 283 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:46:45 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 8939 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:46:45 +0600] "GET /%40%40singleBranchTree.xml HTTP/1.1" 200 283 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:46:45 +0600] "GET /%40%40/zope-site-interfaces-IFolder-zmi_icon.gif HTTP/1.1" 200 942 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:46:49 +0600] "POST /%40%40add_ticket_collector HTTP/1.1" 200 8939 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:46:49 +0600] "GET /%40%40singleBranchTree.xml HTTP/1.1" 200 283 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:46:54 +0600] "GET /%40%40SelectedManagementView.html HTTP/1.1" 303 0 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:46:54 +0600] "GET /%40%40contents.html HTTP/1.1" 200 7378 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:46:54 +0600] "GET /%40%40singleBranchTree.xml HTTP/1.1" 200 283 "http://localhost:8080/@@contents.html" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:46:55 +0600] "GET /%40%40SelectedManagementView.html HTTP/1.1" 303 0 "http://localhost:8080/@@contents.html" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:46:55 +0600] "GET /%40%40contents.html HTTP/1.1" 200 7378 "http://localhost:8080/@@contents.html" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:46:55 +0600] "GET /%40%40singleBranchTree.xml HTTP/1.1" 200 283 "http://localhost:8080/@@contents.html" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:47:34 +0600] "GET /%40%40singleBranchTree.xml HTTP/1.1" 200 283 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:47:37 +0600] "POST /%40%40add_ticket_collector HTTP/1.1" 200 8939 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:47:37 +0600] "GET /%40%40singleBranchTree.xml HTTP/1.1" 200 283 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:47:37 +0600] "GET /%40%40/pl.gif HTTP/1.1" 200 872 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:47:39 +0600] "GET /%40%40children.xml HTTP/1.1" 200 146 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:47:39 +0600] "GET /%40%40/mi.gif HTTP/1.1" 200 868 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:47:40 +0600] "GET /%40%40SelectedManagementView.html HTTP/1.1" 303 0 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:47:40 +0600] "GET /%40%40contents.html HTTP/1.1" 200 8468 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:47:41 +0600] "GET /%40%40singleBranchTree.xml HTTP/1.1" 200 283 "http://localhost:8080/@@contents.html" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:47:43 +0600] "GET /a/%40%40SelectedManagementView.html HTTP/1.1" 303 0 "http://localhost:8080/@@contents.html" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:47:43 +0600] "GET /a/%40%40EditMetaData.html HTTP/1.1" 200 5519 "http://localhost:8080/@@contents.html" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [11/Jan/2010:21:47:44 +0600] "GET /a/%40%40singleBranchTree.xml HTTP/1.1" 200 396 "http://localhost:8080/a/@@EditMetaData.html" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [13/Jan/2010:10:40:06 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [13/Jan/2010:10:40:17 +0600] "GET /%40%40login.html HTTP/1.1" 401 662 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [13/Jan/2010:10:40:19 +0600] "GET /%40%40login.html HTTP/1.1" 200 671 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [13/Jan/2010:10:40:22 +0600] "GET /%40%40add HTTP/1.1" 200 3834 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [13/Jan/2010:10:40:26 +0600] "POST /%40%40add HTTP/1.1" 303 3834 "http://localhost:8080/@@add" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [13/Jan/2010:10:40:26 +0600] "GET /ok HTTP/1.1" 200 33 "http://localhost:8080/@@add" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [13/Jan/2010:10:40:30 +0600] "POST /%40%40add HTTP/1.1" 303 3834 "http://localhost:8080/@@add" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [13/Jan/2010:10:40:30 +0600] "GET /ok-2 HTTP/1.1" 200 33 "http://localhost:8080/@@add" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [13/Jan/2010:10:40:34 +0600] "POST /%40%40add HTTP/1.1" 303 3834 "http://localhost:8080/@@add" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [13/Jan/2010:10:40:34 +0600] "GET /ok-3 HTTP/1.1" 200 33 "http://localhost:8080/@@add" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:08:58:04 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:08:58:56 +0600] "GET /%40%40login.html HTTP/1.1" 401 662 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:08:58:58 +0600] "GET /%40%40login.html HTTP/1.1" 200 671 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:08:59:03 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 3857 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:08:59:08 +0600] "POST /%40%40add_ticket_collector HTTP/1.1" 303 3857 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:00:35 +0600] "GET /ok-4 HTTP/1.1" 200 3899 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:00:38 +0600] "GET /ok-4 HTTP/1.1" 200 3899 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:00:53 +0600] "POST /ok-4/%40%40index HTTP/1.1" 303 3847 "http://localhost:8080/ok-4" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:00:54 +0600] "GET /ok-4/a HTTP/1.1" 200 3903 "http://localhost:8080/ok-4" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:04:51 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 3857 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:04:56 +0600] "POST /%40%40add_ticket_collector HTTP/1.1" 303 3857 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:04:56 +0600] "GET /ok-5 HTTP/1.1" 200 3899 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:05:45 +0600] "GET /ok-5/%40%40index HTTP/1.1" 200 3847 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:10:46 +0600] "GET /ok-5 HTTP/1.1" 200 12 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:16:11 +0600] "GET /ok-5 HTTP/1.1" 200 12 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:16:29 +0600] "GET /ok-5 HTTP/1.1" 200 12 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:16:36 +0600] "GET /ok-4 HTTP/1.1" 200 12 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:16:45 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 3857 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:16:48 +0600] "POST /%40%40add_ticket_collector HTTP/1.1" 303 3857 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [16/Jan/2010:09:16:48 +0600] "GET /ok-6 HTTP/1.1" 200 12 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:11:16:08 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:11:16:09 +0600] "GET /%40%40login.html HTTP/1.1" 401 662 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:11:16:11 +0600] "GET /%40%40login.html HTTP/1.1" 200 671 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:11:16:14 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 3857 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:11:16:25 +0600] "POST /%40%40add_ticket_collector HTTP/1.1" 303 3857 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:11:16:25 +0600] "GET /ok-7 HTTP/1.1" 200 12 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:11:43:34 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:11:43:51 +0600] "GET /%40%40add_ticket_collector HTTP/1.1" 200 3857 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:11:43:55 +0600] "POST /%40%40add_ticket_collector HTTP/1.1" 303 3857 "http://localhost:8080/@@add_ticket_collector" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:15:30:05 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:15:30:07 +0600] "GET /%40%40login.html HTTP/1.1" 401 662 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:15:30:08 +0600] "GET /%40%40login.html HTTP/1.1" 200 671 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:15:30:12 +0600] "GET /ok-8 HTTP/1.1" 200 12 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:15:30:21 +0600] "GET /ok-8/%40%40index HTTP/1.1" 200 12 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [19/Jan/2010:15:31:11 +0600] "GET /ok-8/%40%40index HTTP/1.1" 200 35 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
-127.0.0.1 - - [26/Jan/2010:08:01:07 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
-127.0.0.1 - - [26/Jan/2010:08:01:13 +0600] "GET /%40%40login.html HTTP/1.1" 401 662 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
-127.0.0.1 - - [26/Jan/2010:08:01:17 +0600] "GET /%40%40login.html HTTP/1.1" 200 671 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
-127.0.0.1 - - [27/Jan/2010:06:00:37 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
-127.0.0.1 - - [27/Jan/2010:06:00:58 +0600] "GET /%2B%2Bskin%2B%2BBlueWaves HTTP/1.1" 200 814 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
-127.0.0.1 - - [27/Jan/2010:06:13:23 +0600] "GET /%2B%2Bskin%2B%2BBlueWaves HTTP/1.1" 200 814 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
-127.0.0.1 - - [27/Jan/2010:06:13:28 +0600] "GET /%2B%2Bskin%2B%2BBasic HTTP/1.1" 200 810 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
-127.0.0.1 - - [27/Jan/2010:06:13:32 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
-127.0.0.1 - - [27/Jan/2010:06:21:47 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"

Deleted: bluebream/website/examples/v1.0/tut/stage4/var/log/z3.log
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/var/log/z3.log	2010-02-07 04:19:57 UTC (rev 108859)
+++ bluebream/website/examples/v1.0/tut/stage4/var/log/z3.log	2010-02-07 13:09:08 UTC (rev 108860)
@@ -1,998 +0,0 @@
-------
-2010-01-10T21:01:32 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T21:01:32 INFO ZODB.blob (28130) Blob directory `/opt/baiju/wa/bluebream/ticketcollector/var/blob` is used but has no layout marker set. Selected `lawn` layout. 
-------
-2010-01-10T21:01:32 WARNING ZODB.blob (28130) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T21:01:32 WARNING ZODB.blob (28130) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T21:01:42 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T21:01:42 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T21:01:42 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T21:01:42 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T21:36:52 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T21:44:22 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T21:44:38 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T21:44:46 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T21:44:59 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T21:44:59 WARNING ZODB.FileStorage Ignoring index for /opt/baiju/wa/bluebream/ticketcollector/var/filestorage/Data.fs
-------
-2010-01-10T21:44:59 WARNING ZODB.blob (28737) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T21:44:59 WARNING ZODB.blob (28737) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T21:45:05 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T21:45:05 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T21:45:05 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T21:45:05 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T21:53:23 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T21:53:24 WARNING ZODB.blob (28929) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T21:53:24 WARNING ZODB.blob (28929) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T21:55:01 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T21:55:01 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T21:55:01 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T21:55:01 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T21:55:03 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T21:55:04 WARNING ZODB.blob (28964) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T21:55:04 WARNING ZODB.blob (28964) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T21:59:09 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T21:59:09 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T21:59:09 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T21:59:09 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T21:59:11 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T21:59:12 WARNING ZODB.blob (28987) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T21:59:12 WARNING ZODB.blob (28987) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T22:14:13 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:14:13 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:14:13 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:14:13 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:16:08 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T22:16:09 WARNING ZODB.blob (29052) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T22:16:09 WARNING ZODB.blob (29052) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T22:34:13 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:34:13 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:34:13 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:34:13 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:35:43 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T22:35:44 WARNING ZODB.blob (29149) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T22:35:44 WARNING ZODB.blob (29149) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T22:35:58 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:35:58 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:35:58 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:35:58 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:36:23 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T22:36:24 WARNING ZODB.blob (29164) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T22:36:24 WARNING ZODB.blob (29164) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T22:39:48 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:39:48 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:39:48 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:39:48 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:41:18 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T22:41:38 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T22:41:40 WARNING ZODB.blob (29374) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T22:41:40 WARNING ZODB.blob (29374) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T22:42:16 ERROR SiteError Error while reporting an error to the Error Reporting utility
-Traceback (most recent call last):
-  File "/opt/baiju/wa/z3hello/eggs/zope.app.publication-3.10.0-py2.6.egg/zope/app/publication/zopepublication.py", line 263, in _logErrorWithErrorReportingUtility
-    errUtility = zope.component.getUtility(IErrorReportingUtility)
-  File "/opt/baiju/wa/z3hello/eggs/zope.component-3.8.0-py2.6.egg/zope/component/_api.py", line 171, in getUtility
-    raise ComponentLookupError(interface, name)
-ComponentLookupError: (<InterfaceClass zope.error.interfaces.IErrorReportingUtility>, '')
-------
-2010-01-10T22:46:25 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:46:25 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:46:25 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:46:25 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:46:27 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T22:46:28 WARNING ZODB.blob (29398) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T22:46:28 WARNING ZODB.blob (29398) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T22:46:35 ERROR SiteError Error while reporting an error to the Error Reporting utility
-Traceback (most recent call last):
-  File "/opt/baiju/wa/z3hello/eggs/zope.app.publication-3.10.0-py2.6.egg/zope/app/publication/zopepublication.py", line 263, in _logErrorWithErrorReportingUtility
-    errUtility = zope.component.getUtility(IErrorReportingUtility)
-  File "/opt/baiju/wa/z3hello/eggs/zope.component-3.8.0-py2.6.egg/zope/component/_api.py", line 171, in getUtility
-    raise ComponentLookupError(interface, name)
-ComponentLookupError: (<InterfaceClass zope.error.interfaces.IErrorReportingUtility>, '')
-------
-2010-01-10T22:46:45 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:46:45 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:46:45 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:46:45 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:48:19 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T22:54:13 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T22:54:15 WARNING ZODB.blob (29451) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T22:54:15 WARNING ZODB.blob (29451) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T22:54:20 ERROR SiteError Error while reporting an error to the Error Reporting utility
-Traceback (most recent call last):
-  File "/opt/baiju/wa/z3hello/eggs/zope.app.publication-3.10.0-py2.6.egg/zope/app/publication/zopepublication.py", line 263, in _logErrorWithErrorReportingUtility
-    errUtility = zope.component.getUtility(IErrorReportingUtility)
-  File "/opt/baiju/wa/z3hello/eggs/zope.component-3.8.0-py2.6.egg/zope/component/_api.py", line 171, in getUtility
-    raise ComponentLookupError(interface, name)
-ComponentLookupError: (<InterfaceClass zope.error.interfaces.IErrorReportingUtility>, '')
-------
-2010-01-10T22:55:10 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:55:10 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:55:10 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:55:10 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:55:12 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T22:55:13 WARNING ZODB.blob (29471) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T22:55:13 WARNING ZODB.blob (29471) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T22:55:15 ERROR SiteError Error while reporting an error to the Error Reporting utility
-Traceback (most recent call last):
-  File "/opt/baiju/wa/z3hello/eggs/zope.app.publication-3.10.0-py2.6.egg/zope/app/publication/zopepublication.py", line 263, in _logErrorWithErrorReportingUtility
-    errUtility = zope.component.getUtility(IErrorReportingUtility)
-  File "/opt/baiju/wa/z3hello/eggs/zope.component-3.8.0-py2.6.egg/zope/component/_api.py", line 171, in getUtility
-    raise ComponentLookupError(interface, name)
-ComponentLookupError: (<InterfaceClass zope.error.interfaces.IErrorReportingUtility>, '')
-------
-2010-01-10T22:55:24 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:55:24 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:55:24 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:55:24 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:56:46 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-10T22:56:47 WARNING ZODB.blob (29491) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-10T22:56:47 WARNING ZODB.blob (29491) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-10T22:56:51 ERROR SiteError Error while reporting an error to the Error Reporting utility
-Traceback (most recent call last):
-  File "/opt/baiju/wa/z3hello/eggs/zope.app.publication-3.10.0-py2.6.egg/zope/app/publication/zopepublication.py", line 263, in _logErrorWithErrorReportingUtility
-    errUtility = zope.component.getUtility(IErrorReportingUtility)
-  File "/opt/baiju/wa/z3hello/eggs/zope.component-3.8.0-py2.6.egg/zope/component/_api.py", line 171, in getUtility
-    raise ComponentLookupError(interface, name)
-ComponentLookupError: (<InterfaceClass zope.error.interfaces.IErrorReportingUtility>, '')
-------
-2010-01-10T22:58:39 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:58:39 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-10T22:58:39 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-10T22:58:39 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:01:46 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T10:01:47 WARNING ZODB.blob (2008) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T10:01:47 WARNING ZODB.blob (2008) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T10:01:58 ERROR SiteError Error while reporting an error to the Error Reporting utility
-Traceback (most recent call last):
-  File "/opt/baiju/wa/z3hello/eggs/zope.app.publication-3.10.0-py2.6.egg/zope/app/publication/zopepublication.py", line 263, in _logErrorWithErrorReportingUtility
-    errUtility = zope.component.getUtility(IErrorReportingUtility)
-  File "/opt/baiju/wa/z3hello/eggs/zope.component-3.8.0-py2.6.egg/zope/component/_api.py", line 171, in getUtility
-    raise ComponentLookupError(interface, name)
-ComponentLookupError: (<InterfaceClass zope.error.interfaces.IErrorReportingUtility>, '')
-------
-2010-01-11T10:03:03 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:03:03 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:03:03 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:03:03 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:03:45 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T10:03:46 WARNING ZODB.blob (2026) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T10:03:46 WARNING ZODB.blob (2026) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T10:04:11 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:04:11 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:04:11 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:04:11 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:45:21 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T10:45:22 WARNING ZODB.blob (2748) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T10:45:22 WARNING ZODB.blob (2748) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T10:45:54 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:45:54 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:45:54 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:45:54 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:48:17 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T10:49:03 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T10:49:04 WARNING ZODB.blob (2941) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T10:49:04 WARNING ZODB.blob (2941) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T10:50:28 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:50:28 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:50:28 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:50:28 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:50:32 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T10:50:33 WARNING ZODB.blob (2977) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T10:50:33 WARNING ZODB.blob (2977) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T10:52:36 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:52:36 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:52:36 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:52:36 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:53:09 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T10:53:10 WARNING ZODB.blob (3012) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T10:53:10 WARNING ZODB.blob (3012) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T10:53:21 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:53:21 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:53:21 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:53:21 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:53:24 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T10:53:25 WARNING ZODB.blob (3024) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T10:53:25 WARNING ZODB.blob (3024) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T10:54:33 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:54:33 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:54:33 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:54:33 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:54:35 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T10:54:36 WARNING ZODB.blob (3036) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T10:54:36 WARNING ZODB.blob (3036) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T10:55:50 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:55:50 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T10:55:50 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T10:55:50 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T17:32:46 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T17:32:48 WARNING ZODB.blob (27826) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T17:32:48 WARNING ZODB.blob (27826) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T17:34:01 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T17:34:01 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T17:34:01 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T17:34:01 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T17:34:03 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T17:34:04 WARNING ZODB.blob (27846) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T17:34:04 WARNING ZODB.blob (27846) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T17:35:37 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T17:35:37 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T17:35:37 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T17:35:37 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T17:35:39 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T17:35:40 WARNING ZODB.blob (27865) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T17:35:40 WARNING ZODB.blob (27865) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T17:36:28 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T17:36:28 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T17:36:28 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T17:36:28 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T17:36:30 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T17:36:31 WARNING ZODB.blob (27880) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T17:36:31 WARNING ZODB.blob (27880) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T17:36:57 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T17:36:57 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T17:36:57 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T17:36:57 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T17:36:59 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T17:37:00 WARNING ZODB.blob (27895) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T17:37:00 WARNING ZODB.blob (27895) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T17:37:41 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T17:37:41 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T17:37:41 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T17:37:41 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T17:37:43 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T17:37:52 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T17:37:53 WARNING ZODB.blob (27907) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T17:37:53 WARNING ZODB.blob (27907) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T17:38:05 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T17:38:05 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T17:38:05 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T17:38:05 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T18:01:55 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:01:56 WARNING ZODB.blob (28151) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T18:01:56 WARNING ZODB.blob (28151) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T18:04:46 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T18:04:46 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T18:04:46 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T18:04:46 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T18:37:10 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:47:36 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:50:21 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:50:23 WARNING ZODB.blob (12725) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T18:50:23 WARNING ZODB.blob (12725) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T18:50:23 INFO zope.app.generations main db: evolving in mode EVOLVEMINIMUM
-------
-2010-01-11T18:50:23 INFO zope.app.generations main db/zope.app: running install generation
-------
-2010-01-11T18:52:06 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T18:52:06 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T18:52:06 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T18:52:06 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T18:52:08 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:52:10 WARNING ZODB.blob (29963) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T18:52:10 WARNING ZODB.blob (29963) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T18:52:10 INFO zope.app.generations main db: evolving in mode EVOLVEMINIMUM
-------
-2010-01-11T18:53:16 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T18:53:16 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T18:53:16 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T18:53:16 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T18:53:18 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:53:20 WARNING ZODB.blob (24722) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T18:53:20 WARNING ZODB.blob (24722) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T18:53:20 INFO zope.app.generations main db: evolving in mode EVOLVEMINIMUM
-------
-2010-01-11T18:55:50 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T18:55:50 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T18:55:50 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T18:55:50 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T18:55:53 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:56:04 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:57:46 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:57:47 WARNING ZODB.blob (14971) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T18:57:47 WARNING ZODB.blob (14971) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T18:57:47 INFO zope.app.generations main db: evolving in mode EVOLVEMINIMUM
-------
-2010-01-11T18:58:37 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T18:58:37 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T18:58:37 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T18:58:37 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T18:58:39 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:58:53 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:59:06 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:59:54 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T18:59:56 WARNING ZODB.blob (15181) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T18:59:56 WARNING ZODB.blob (15181) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T18:59:56 INFO zope.app.generations main db: evolving in mode EVOLVEMINIMUM
-------
-2010-01-11T19:23:53 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T19:23:53 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T19:23:53 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T19:23:53 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T19:40:07 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T19:40:09 WARNING ZODB.blob (15651) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T19:40:09 WARNING ZODB.blob (15651) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T19:40:09 INFO zope.app.generations main db: evolving in mode EVOLVEMINIMUM
-------
-2010-01-11T19:49:42 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T19:49:42 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T19:49:42 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T19:49:42 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T21:46:39 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T21:46:40 WARNING ZODB.blob (16586) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T21:46:40 WARNING ZODB.blob (16586) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T21:46:40 INFO zope.app.generations main db: evolving in mode EVOLVEMINIMUM
-------
-2010-01-11T21:47:26 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T21:47:26 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T21:47:26 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T21:47:26 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T21:47:28 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-11T21:47:30 WARNING ZODB.blob (16609) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-11T21:47:30 WARNING ZODB.blob (16609) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-11T21:47:30 INFO zope.app.generations main db: evolving in mode EVOLVEMINIMUM
-------
-2010-01-11T21:47:50 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T21:47:50 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-11T21:47:50 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-11T21:47:50 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-13T10:39:55 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-13T10:39:56 WARNING ZODB.blob (8508) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-13T10:39:56 WARNING ZODB.blob (8508) Blob dir /opt/baiju/wa/bluebream/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-13T10:40:52 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-13T10:40:52 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-13T10:40:52 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-13T10:40:52 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T08:51:16 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T08:52:46 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T08:53:58 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T08:56:11 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T08:56:13 WARNING ZODB.blob (12768) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-16T08:56:13 WARNING ZODB.blob (12768) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-16T09:00:26 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:00:26 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:00:26 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:00:26 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:00:31 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T09:00:33 WARNING ZODB.blob (12830) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-16T09:00:33 WARNING ZODB.blob (12830) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-16T09:04:26 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:04:26 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:04:26 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:04:26 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:04:29 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T09:04:30 WARNING ZODB.blob (12849) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-16T09:04:30 WARNING ZODB.blob (12849) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-16T09:05:37 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:05:37 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:05:37 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:05:37 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:05:39 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T09:05:40 WARNING ZODB.blob (12874) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-16T09:05:40 WARNING ZODB.blob (12874) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-16T09:06:10 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:06:10 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:06:10 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:06:10 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:06:12 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T09:06:13 WARNING ZODB.blob (12885) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-16T09:06:13 WARNING ZODB.blob (12885) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-16T09:06:33 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:06:33 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:06:33 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:06:33 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:06:35 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T09:06:36 WARNING ZODB.blob (12990) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-16T09:06:36 WARNING ZODB.blob (12990) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-16T09:07:57 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:07:57 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:07:57 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:07:57 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:07:59 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T09:10:39 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T09:10:41 WARNING ZODB.blob (13148) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-16T09:10:41 WARNING ZODB.blob (13148) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-16T09:15:29 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:15:29 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:15:29 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:15:29 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:15:31 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T09:15:55 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T09:16:03 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T09:16:04 WARNING ZODB.blob (13178) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-16T09:16:04 WARNING ZODB.blob (13178) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-16T09:16:23 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:16:23 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:16:23 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:16:23 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:16:25 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-16T09:16:26 WARNING ZODB.blob (13189) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-16T09:16:26 WARNING ZODB.blob (13189) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-16T09:20:53 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:20:53 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-16T09:20:53 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-16T09:20:53 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-19T11:14:10 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-19T11:14:14 WARNING ZODB.blob (4151) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-19T11:14:14 WARNING ZODB.blob (4151) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-19T11:15:52 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-19T11:15:53 WARNING ZODB.blob (4224) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-19T11:15:53 WARNING ZODB.blob (4224) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-19T11:16:38 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-19T11:16:38 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-19T11:16:38 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-19T11:16:38 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-19T11:27:53 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-19T11:27:54 WARNING ZODB.blob (4294) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-19T11:27:54 WARNING ZODB.blob (4294) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-19T11:43:28 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-19T11:43:29 WARNING ZODB.blob (4376) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-19T11:43:29 WARNING ZODB.blob (4376) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-19T11:52:18 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-19T11:52:18 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-19T11:52:18 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-19T11:52:18 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-19T15:29:10 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-19T15:29:44 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-19T15:29:45 WARNING ZODB.blob (7910) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-19T15:29:45 WARNING ZODB.blob (7910) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-19T15:30:23 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-19T15:30:23 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-19T15:30:23 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-19T15:30:23 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-19T15:30:40 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-19T15:30:41 WARNING ZODB.blob (7944) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-19T15:30:41 WARNING ZODB.blob (7944) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-19T15:30:43 ERROR root PageTemplateFile: Error in template /opt/baiju/wa/bluebream_website/ticketcollector/src/tc/main/collectormain.pt: Compilation failed
-<class 'zope.tal.htmltalparser.NestingError'>: 
-------
-2010-01-19T15:30:43 ERROR root PageTemplateFile: Error in template /opt/baiju/wa/bluebream_website/ticketcollector/src/tc/main/collectormain.pt: Compilation failed
-<class 'zope.tal.htmltalparser.NestingError'>: 
-------
-2010-01-19T15:30:43 ERROR root PageTemplateFile: Error in template /opt/baiju/wa/bluebream_website/ticketcollector/src/tc/main/collectormain.pt: Compilation failed
-<class 'zope.tal.htmltalparser.NestingError'>: 
-------
-2010-01-19T15:30:43 ERROR root PageTemplateFile: Error in template /opt/baiju/wa/bluebream_website/ticketcollector/src/tc/main/collectormain.pt: Compilation failed
-<class 'zope.tal.htmltalparser.NestingError'>: 
-------
-2010-01-19T15:30:52 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-19T15:30:52 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-19T15:30:52 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-19T15:30:52 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-19T15:31:09 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-19T15:31:10 WARNING ZODB.blob (7957) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-19T15:31:10 WARNING ZODB.blob (7957) Blob dir /opt/baiju/wa/bluebream_website/ticketcollector/var/blob/ has insecure mode setting
-------
-2010-01-19T15:35:15 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-19T15:35:15 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-19T15:35:15 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-19T15:35:15 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-26T07:57:10 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-26T07:59:16 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-26T07:59:54 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-26T08:00:53 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-26T08:00:55 WARNING ZODB.blob (8230) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-26T08:00:55 WARNING ZODB.blob (8230) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
-------
-2010-01-26T08:03:35 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-26T08:03:35 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-26T08:03:35 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-26T08:03:35 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-26T08:05:51 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-26T08:05:52 WARNING ZODB.FileStorage Ignoring index for /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/filestorage/Data.fs
-------
-2010-01-26T08:05:52 WARNING ZODB.blob (8295) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-26T08:05:52 WARNING ZODB.blob (8295) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
-------
-2010-01-26T08:07:11 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-26T08:07:12 WARNING ZODB.blob (8299) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-26T08:07:12 WARNING ZODB.blob (8299) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
-------
-2010-01-26T08:08:10 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-26T08:08:10 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-26T08:08:10 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-26T08:08:10 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-26T08:10:07 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-26T08:10:08 WARNING ZODB.blob (8335) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-26T08:10:08 WARNING ZODB.blob (8335) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
-------
-2010-01-26T08:10:39 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-26T08:10:39 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-26T08:10:39 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-26T08:10:39 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-26T08:10:45 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-26T08:10:46 WARNING ZODB.blob (8348) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-26T08:10:46 WARNING ZODB.blob (8348) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
-------
-2010-01-26T08:13:53 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-26T08:13:54 WARNING ZODB.blob (8375) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-26T08:13:54 WARNING ZODB.blob (8375) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
-------
-2010-01-27T05:52:03 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-27T05:52:06 WARNING ZODB.blob (20852) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-27T05:52:06 WARNING ZODB.blob (20852) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
-------
-2010-01-27T06:05:50 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-27T06:05:50 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-27T06:05:50 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-27T06:05:50 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-27T06:05:52 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-27T06:06:04 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-27T06:12:32 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-27T06:13:00 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-27T06:13:12 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-27T06:13:16 WARNING ZODB.blob (21322) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-27T06:13:16 WARNING ZODB.blob (21322) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
-------
-2010-01-27T06:15:33 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-27T06:15:33 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-27T06:15:33 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-27T06:15:33 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-27T06:15:45 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-27T06:15:46 WARNING ZODB.blob (21364) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-27T06:15:46 WARNING ZODB.blob (21364) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
-------
-2010-01-27T06:16:44 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-27T06:16:44 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-27T06:16:44 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-27T06:16:44 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-27T06:16:46 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-27T06:16:48 WARNING ZODB.blob (21383) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-27T06:16:48 WARNING ZODB.blob (21383) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
-------
-2010-01-27T06:21:39 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-27T06:21:39 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-27T06:21:39 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-27T06:21:39 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-27T06:21:41 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
-------
-2010-01-27T06:21:42 WARNING ZODB.blob (21445) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
-------
-2010-01-27T06:21:42 WARNING ZODB.blob (21445) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
-------
-2010-01-27T06:26:26 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-27T06:26:26 INFO paste.httpserver.ThreadPool All workers stopped
-------
-2010-01-27T06:26:26 INFO paste.httpserver.ThreadPool Shutting down threadpool
-------
-2010-01-27T06:26:26 INFO paste.httpserver.ThreadPool All workers stopped



More information about the checkins mailing list