[Checkins] SVN: bluebream/website/docs/v1.0/examples/tut/stage1/ example code used in tutorial

Baiju M baiju.m.mail at gmail.com
Mon Jan 25 05:09:25 EST 2010


Log message for revision 108465:
  example code used in tutorial
  

Changed:
  A   bluebream/website/docs/v1.0/examples/tut/stage1/bootstrap.py
  A   bluebream/website/docs/v1.0/examples/tut/stage1/buildout.cfg
  A   bluebream/website/docs/v1.0/examples/tut/stage1/debug.ini
  A   bluebream/website/docs/v1.0/examples/tut/stage1/deploy.ini
  A   bluebream/website/docs/v1.0/examples/tut/stage1/etc/
  A   bluebream/website/docs/v1.0/examples/tut/stage1/etc/site.zcml
  A   bluebream/website/docs/v1.0/examples/tut/stage1/setup.py
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/__init__.py
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/README.txt
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/__init__.py
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/application.zcml
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/collectormain.pt
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/configure.zcml
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/debug.py
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/ftesting.zcml
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/interfaces.py
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/securitypolicy.zcml
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/startup.py
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/tests.py
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/ticketcollector.py
  A   bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/views.py
  A   bluebream/website/docs/v1.0/examples/tut/stage1/templates/
  A   bluebream/website/docs/v1.0/examples/tut/stage1/templates/zope_conf.in
  A   bluebream/website/docs/v1.0/examples/tut/stage1/var/
  A   bluebream/website/docs/v1.0/examples/tut/stage1/var/blob/
  A   bluebream/website/docs/v1.0/examples/tut/stage1/var/blob/.layout
  A   bluebream/website/docs/v1.0/examples/tut/stage1/var/blob/README.txt
  A   bluebream/website/docs/v1.0/examples/tut/stage1/var/blob/tmp/
  A   bluebream/website/docs/v1.0/examples/tut/stage1/var/filestorage/
  A   bluebream/website/docs/v1.0/examples/tut/stage1/var/filestorage/README.txt
  A   bluebream/website/docs/v1.0/examples/tut/stage1/var/log/
  A   bluebream/website/docs/v1.0/examples/tut/stage1/var/log/README.txt
  A   bluebream/website/docs/v1.0/examples/tut/stage1/var/log/access.log
  A   bluebream/website/docs/v1.0/examples/tut/stage1/var/log/z3.log
  A   bluebream/website/docs/v1.0/examples/tut/stage1/versions.cfg

-=-
Added: bluebream/website/docs/v1.0/examples/tut/stage1/bootstrap.py
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/bootstrap.py	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/bootstrap.py	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,121 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Bootstrap a buildout-based project
+
+Simply run this script in a directory containing a buildout.cfg.
+The script accepts buildout command-line options, so you can
+use the -c option to specify an alternate configuration file.
+
+$Id: bootstrap.py 105417 2009-11-01 15:15:20Z tarek $
+"""
+
+import os, shutil, sys, tempfile, urllib2
+from optparse import OptionParser
+
+tmpeggs = tempfile.mkdtemp()
+
+is_jython = sys.platform.startswith('java')
+
+# parsing arguments
+parser = OptionParser()
+parser.add_option("-v", "--version", dest="version",
+                          help="use a specific zc.buildout version")
+parser.add_option("-d", "--distribute",
+                   action="store_true", dest="distribute", default=False,
+                   help="Use Disribute rather than Setuptools.")
+
+parser.add_option("-c", None, action="store", dest="config_file",
+                   help=("Specify the path to the buildout configuration "
+                         "file to be used."))
+
+options, args = parser.parse_args()
+
+# if -c was provided, we push it back into args for buildout' main function
+if options.config_file is not None:
+    args += ['-c', options.config_file]
+
+if options.version is not None:
+    VERSION = '==%s' % options.version
+else:
+    VERSION = ''
+
+USE_DISTRIBUTE = options.distribute
+args = args + ['bootstrap']
+
+to_reload = False
+try:
+    import pkg_resources
+    if not hasattr(pkg_resources, '_distribute'):
+        to_reload = True
+        raise ImportError
+except ImportError:
+    ez = {}
+    if USE_DISTRIBUTE:
+        exec urllib2.urlopen('http://python-distribute.org/distribute_setup.py'
+                         ).read() in ez
+        ez['use_setuptools'](to_dir=tmpeggs, download_delay=0, no_fake=True)
+    else:
+        exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
+                             ).read() in ez
+        ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
+
+    if to_reload:
+        reload(pkg_resources)
+    else:
+        import pkg_resources
+
+if sys.platform == 'win32':
+    def quote(c):
+        if ' ' in c:
+            return '"%s"' % c # work around spawn lamosity on windows
+        else:
+            return c
+else:
+    def quote (c):
+        return c
+
+cmd = 'from setuptools.command.easy_install import main; main()'
+ws  = pkg_resources.working_set
+
+if USE_DISTRIBUTE:
+    requirement = 'distribute'
+else:
+    requirement = 'setuptools'
+
+if is_jython:
+    import subprocess
+
+    assert subprocess.Popen([sys.executable] + ['-c', quote(cmd), '-mqNxd',
+           quote(tmpeggs), 'zc.buildout' + VERSION],
+           env=dict(os.environ,
+               PYTHONPATH=
+               ws.find(pkg_resources.Requirement.parse(requirement)).location
+               ),
+           ).wait() == 0
+
+else:
+    assert os.spawnle(
+        os.P_WAIT, sys.executable, quote (sys.executable),
+        '-c', quote (cmd), '-mqNxd', quote (tmpeggs), 'zc.buildout' + VERSION,
+        dict(os.environ,
+            PYTHONPATH=
+            ws.find(pkg_resources.Requirement.parse(requirement)).location
+            ),
+        ) == 0
+
+ws.add_entry(tmpeggs)
+ws.require('zc.buildout' + VERSION)
+import zc.buildout.buildout
+zc.buildout.buildout.main(args)
+shutil.rmtree(tmpeggs)

Added: bluebream/website/docs/v1.0/examples/tut/stage1/buildout.cfg
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/buildout.cfg	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/buildout.cfg	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,30 @@
+[config]
+site_zcml = ${buildout:directory}/etc/site.zcml
+blob = ${buildout:directory}/var/blob
+filestorage = ${buildout:directory}/var/filestorage
+log = ${buildout:directory}/var/log
+
+[buildout]
+develop = .
+extends = versions.cfg
+parts = app
+        zope_conf
+        test 
+
+[app]
+recipe = zc.recipe.egg
+eggs = ticketcollector
+       z3c.evalexception>=2.0
+       Paste
+       PasteScript
+       PasteDeploy
+interpreter = breampy
+
+[zope_conf]
+recipe = collective.recipe.template
+input = templates/zope_conf.in
+output = etc/zope.conf
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = ticketcollector

Added: bluebream/website/docs/v1.0/examples/tut/stage1/debug.ini
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/debug.ini	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/debug.ini	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,61 @@
+[loggers]
+keys = root, wsgi
+
+[handlers]
+keys = console, accesslog
+
+[formatters]
+keys = generic, accesslog
+
+[formatter_generic]
+format = %(asctime)s %(levelname)s [%(name)s] %(message)s
+
+[formatter_accesslog]
+format = %(message)s
+
+[handler_console]
+class = StreamHandler
+args = (sys.stderr,)
+level = NOTSET
+formatter = generic
+
+[handler_accesslog]
+class = FileHandler
+args = (os.path.join('var', 'log', 'access.log'),
+        'a')
+level = INFO
+formatter = accesslog
+
+[logger_root]
+level = INFO
+handlers = console
+
+[logger_wsgi]
+level = INFO
+handlers = accesslog
+qualname = wsgi
+propagate = 0
+
+[filter:translogger]
+use = egg:Paste#translogger
+setup_console_handler = False
+logger_name = wsgi
+
+[filter-app:main]
+# Change the last part from 'ajax' to 'pdb' for a post-mortem debugger
+# on the console:
+use = egg:z3c.evalexception#ajax
+next = zope
+
+[app:zope]
+use = egg:ticketcollector
+filter-with = translogger
+
+[server:main]
+use = egg:Paste#http
+host = 127.0.0.1
+port = 8080
+
+[DEFAULT]
+# set the name of the zope.conf file
+zope_conf = %(here)s/etc/zope.conf

Added: bluebream/website/docs/v1.0/examples/tut/stage1/deploy.ini
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/deploy.ini	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/deploy.ini	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,11 @@
+[app:main]
+use = egg:ticketcollector
+
+[server:main]
+use = egg:Paste#http
+host = 127.0.0.1
+port = 8080
+
+[DEFAULT]
+# set the name of the zope.conf file
+zope_conf = %(here)s/etc/zope.conf

Added: bluebream/website/docs/v1.0/examples/tut/stage1/etc/site.zcml
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/etc/site.zcml	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/etc/site.zcml	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,42 @@
+<configure
+   xmlns="http://namespaces.zope.org/zope">
+
+  <include package="zope.component" file="meta.zcml" />
+  <include package="zope.security" file="meta.zcml" />
+  <include package="zope.publisher" file="meta.zcml" />
+  <include package="zope.i18n" file="meta.zcml" />
+  <include package="zope.browserresource" file="meta.zcml" />
+  <include package="zope.browsermenu" file="meta.zcml" />
+  <include package="zope.browserpage" file="meta.zcml" />
+  <include package="zope.securitypolicy" file="meta.zcml" />
+  <include package="zope.principalregistry" file="meta.zcml" />
+  <include package="zope.app.publication" file="meta.zcml" />
+  <include package="zope.app.form.browser" file="meta.zcml" />
+  <include package="zope.app.container.browser" file="meta.zcml" />
+
+  <include package="zope.publisher" />
+  <include package="zope.component" />
+  <include package="zope.traversing" />
+  <include package="zope.site" />
+  <include package="zope.annotation" />
+  <include package="zope.container" />
+  <include package="zope.componentvocabulary" />
+  <include package="zope.formlib" />
+  <include package="zope.app.appsetup" />
+  <include package="zope.app.security" />
+  <include package="zope.app.publication" />
+  <include package="zope.app.form.browser" />
+  <include package="zope.app.basicskin" />
+  <include package="zope.browsermenu" />
+  <include package="zope.principalregistry" />
+  <include package="zope.authentication" />
+  <include package="zope.securitypolicy" />
+  <include package="zope.login" />
+  <include package="zope.app.zcmlfiles" file="menus.zcml" />
+  <include package="zope.app.authentication" />
+  <include package="zope.app.security.browser" />
+
+  <include package="tc.main" file="securitypolicy.zcml" />
+  <include package="tc.main" file="application.zcml" />
+
+</configure>

Added: bluebream/website/docs/v1.0/examples/tut/stage1/setup.py
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/setup.py	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/setup.py	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,65 @@
+from setuptools import setup, find_packages
+
+
+setup(name='ticketcollector',
+      version='0.1',
+      description='Ticket Collector',
+      long_description="""\
+A ticket collector application""",
+      # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
+      classifiers=[], 
+      keywords='',
+      author='Baiju M',
+      author_email='baiju at muthukadan.net',
+      url='',
+      license='ZPL',
+      package_dir={'': 'src'},
+      packages=find_packages('src'),
+      namespace_packages=['tc',],
+      include_package_data=True,
+      zip_safe=False,
+      install_requires=['setuptools',
+                        'zope.app.twisted',
+                        'zope.securitypolicy',
+                        'zope.component',
+                        'zope.annotation',
+                        'zope.app.dependable',
+                        'zope.app.appsetup',
+                        'zope.app.content',
+                        'zope.publisher',
+                        'zope.app.broken',
+                        'zope.app.component',
+                        'zope.app.generations',
+                        'zope.app.error',
+                        'zope.app.interface',
+                        'zope.app.publisher',
+                        'zope.app.security',
+                        'zope.app.form',
+                        'zope.app.i18n',
+                        'zope.app.locales',
+                        'zope.app.zopeappgenerations',
+                        'zope.app.principalannotation',
+                        'zope.app.basicskin',
+                        'zope.app.rotterdam',
+                        'zope.app.folder',
+                        'zope.app.wsgi',
+                        'zope.formlib',
+                        'zope.i18n',
+                        'zope.app.pagetemplate',
+                        'zope.app.schema',
+                        'zope.app.container',
+                        'zope.app.debug',
+                        'z3c.testsetup',
+                        'zope.app.testing',
+                        'zope.testbrowser',
+                        'zope.login',
+                        'zope.app.zcmlfiles',
+                        ],
+      entry_points = """
+      [paste.app_factory]
+      main = tc.main.startup:application_factory
+
+      [paste.global_paster_command]
+      shell = tc.main.debug:Shell
+      """,
+      )

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/__init__.py
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/__init__.py	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/__init__.py	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1 @@
+__import__('pkg_resources').declare_namespace(__name__)

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/README.txt
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/README.txt	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/README.txt	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,12 @@
+ticketcollector
+
+:doctest:
+:functional-zcml-layer: ftesting.zcml
+
+Open browser and test::
+
+  >>> from zope.testbrowser.testing import Browser
+  >>> browser = Browser()
+  >>> browser.open('http://localhost/@@index')
+  >>> 'Welcome to BlueBream' in browser.contents
+  True

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/__init__.py
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/__init__.py	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/__init__.py	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1 @@
+# Python Package

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/application.zcml
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/application.zcml	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/application.zcml	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,20 @@
+<configure
+   i18n_domain="tc.main"
+   xmlns="http://namespaces.zope.org/zope"
+   xmlns:browser="http://namespaces.zope.org/browser">
+
+  <!-- The following registration (defaultView) register 'index' as
+       the default view for a container.  The name of default view
+       can be chaged to a different value, for example, 'index.html'.
+       More details about defaultView registration is available here:
+       http://packages.python.org/bluebream/howto/defaultview.html
+       -->
+
+  <browser:defaultView
+     name="index"
+     for="zope.container.interfaces.IContainer"
+     />
+
+  <include package="tc.main" />
+
+</configure>

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/collectormain.pt
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/collectormain.pt	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/collectormain.pt	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,10 @@
+<html>
+<head>
+<title>Welcome to ticket collector</title>
+</head>
+<body>
+
+Welcome to ticket collector
+
+</body>
+</html>

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/configure.zcml
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/configure.zcml	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/configure.zcml	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,55 @@
+<configure
+   i18n_domain="tc.main"
+   xmlns="http://namespaces.zope.org/zope"
+   xmlns:browser="http://namespaces.zope.org/browser">
+
+  <!-- The following registration (page) is _not_ required for
+       functioning your application.  This registration is given to
+       provide a default page when you access root folder from web
+       like: http://localhost:8080/ -->
+
+  <browser:page
+     for="zope.site.interfaces.IRootFolder"
+     name="index"
+     permission="zope.Public"
+     class=".views.RootDefaultView"
+     />
+
+  <interface 
+     interface=".interfaces.ICollector" 
+     type="zope.app.content.interfaces.IContentType"
+     /> 
+
+  <class class=".ticketcollector.Collector">
+    <implements
+       interface="zope.annotation.interfaces.IAttributeAnnotatable"
+       />
+    <implements
+       interface="zope.container.interfaces.IContentContainer" 
+       />
+    <require
+       permission="zope.ManageContent"
+       interface=".interfaces.ICollector"
+       />
+    <require
+       permission="zope.ManageContent"
+       set_schema=".interfaces.ICollector"
+       />
+  </class>
+
+  <browser:page
+     for="zope.site.interfaces.IRootFolder"
+     name="add_ticket_collector"
+     permission="zope.ManageContent"
+     class=".views.AddTicketCollector"
+     />
+
+  <browser:page
+     for=".interfaces.ICollector"
+     name="index"
+     permission="zope.ManageContent"
+     class=".views.TicketCollectorMainView"
+     template="collectormain.pt"
+     />
+
+</configure>

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/debug.py
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/debug.py	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/debug.py	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,35 @@
+import os
+from paste.script import command
+from paste.deploy import appconfig
+from zope.app.debug.debug import Debugger
+import zope.app.wsgi
+
+
+class Shell(command.Command):
+
+    max_args = 1
+    min_args = 1
+
+    usage = "CONFIG_FILE"
+    summary = "Python debug shell with BlueBream application loaded"
+    group_name = "bluebream"
+
+    parser = command.Command.standard_parser(verbose=True)
+
+    def command(self):
+        cwd = os.getcwd()
+        config_file = self.args[0]
+        config_name = 'config:%s' % config_file
+        conf = appconfig(config_name, relative_to=cwd)
+        zope_conf = conf['zope_conf']
+        db = zope.app.wsgi.config(zope_conf)
+        debugger = Debugger.fromDatabase(db)
+        # Invoke an interactive interpreter shell
+        banner = ("Welcome to the interactive debug prompt.\n"
+                  "The 'root' variable contains the ZODB root folder.\n"
+                  "The 'app' variable contains the Debugger, 'app.publish(path)' "
+                  "simulates a request.")
+        __import__('code').interact(banner=banner,
+                                    local={'debugger': debugger,
+                                           'app': debugger,
+                                           'root': debugger.root()})

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/ftesting.zcml
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/ftesting.zcml	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/ftesting.zcml	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,54 @@
+<configure
+   xmlns="http://namespaces.zope.org/zope"
+   >
+
+  <include package="zope.component" file="meta.zcml" />
+  <include package="zope.security" file="meta.zcml" />
+  <include package="zope.publisher" file="meta.zcml" />
+  <include package="zope.browserresource" file="meta.zcml" />
+  <include package="zope.browsermenu" file="meta.zcml" />
+  <include package="zope.browserpage" file="meta.zcml" />
+  <include package="zope.securitypolicy" file="meta.zcml" />
+  <include package="zope.principalregistry" file="meta.zcml" />
+  <include package="zope.app.publication" file="meta.zcml" />
+
+  <include package="zope.component" />
+  <include package="zope.traversing" />
+  <include package="zope.site" />
+  <include package="zope.annotation" />
+  <include package="zope.container" />
+  <include package="zope.componentvocabulary" />
+  <include package="zope.app.appsetup" />
+  <include package="zope.app.security" />
+  <include package="zope.app.publication" />
+  <include package="zope.principalregistry" />
+
+  <!-- Typical functional testing security setup -->
+  <securityPolicy
+      component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy"
+      />
+
+  <unauthenticatedPrincipal
+      id="zope.anybody"
+      title="Unauthenticated User"
+      />
+  <grant
+      permission="zope.View"
+      principal="zope.anybody"
+      />
+
+  <principal
+      id="zope.mgr"
+      title="Manager"
+      login="mgr"
+      password="mgrpw"
+      />
+
+  <role id="zope.Manager" title="Site Manager" />
+  <grantAll role="zope.Manager" />
+  <grant role="zope.Manager" principal="zope.mgr" />
+
+  <include package="tc.main" file="securitypolicy.zcml" />
+  <include package="tc.main" file="application.zcml" />
+
+</configure>

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/interfaces.py
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/interfaces.py	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/interfaces.py	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,25 @@
+from zope.container.interfaces import IContainer
+from zope.schema import TextLine
+from zope.schema import Text
+
+class ICollector(IContainer):
+    """The main application container."""
+
+    name = TextLine(
+        title=u"Name",
+        description=u"Name of application.",
+        default=u"",
+        required=True)
+
+    description = Text(
+        title=u"Description",
+        description=u"The name of application container.",
+        default=u"",
+        required=False)
+
+
+class ITicket(Interface):
+    """ """
+
+    name = ""
+

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/securitypolicy.zcml
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/securitypolicy.zcml	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/securitypolicy.zcml	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,48 @@
+<configure
+    xmlns="http://namespaces.zope.org/zope"
+    i18n_domain="zope"
+    >
+
+  <!-- This file contains sample security policy definition -->
+
+  <include package="zope.securitypolicy" />
+
+  <securityPolicy 
+     component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
+
+  <unauthenticatedPrincipal
+     id="zope.anybody"
+     title="Unauthenticated User" />
+
+  <unauthenticatedGroup
+     id="zope.Anybody"
+     title="Unauthenticated Users" />
+
+  <authenticatedGroup
+     id="zope.Authenticated"
+     title="Authenticated Users" />
+
+  <everybodyGroup
+     id="zope.Everybody"
+     title="All Users" />
+
+  <role id="zope.Anonymous" title="Everybody"
+        description="All users have this role implicitly" />
+  <grant permission="zope.View" role="zope.Anonymous" />
+
+  <role id="zope.Manager" title="Site Manager" />
+  <grantAll role="zope.Manager" />
+
+  <principal
+     id="zope.manager"
+     title="Manager"
+     login="admin"
+     password="admin"
+     password_manager="Plain Text"
+     />
+
+  <grant
+     role="zope.Manager"
+     principal="zope.manager" />
+
+</configure>

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/startup.py
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/startup.py	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/startup.py	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,5 @@
+import zope.app.wsgi
+
+def application_factory(global_conf):
+    zope_conf = global_conf['zope_conf']
+    return zope.app.wsgi.getWSGIApplication(zope_conf)

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/tests.py
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/tests.py	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/tests.py	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,3 @@
+import z3c.testsetup
+
+test_suite = z3c.testsetup.register_all_tests('tc.main')

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/ticketcollector.py
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/ticketcollector.py	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/ticketcollector.py	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,13 @@
+from zope.interface import implements
+from zope.container.btree import BTreeContainer
+
+from tc.main.interfaces import ICollector
+
+class Collector(BTreeContainer):
+    """A simple implementation of a collector using B-Tree
+    Container."""
+
+    implements(ICollector)
+
+    name = u""
+    description = u""

Added: bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/views.py
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/views.py	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/src/tc/main/views.py	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,47 @@
+from zope.publisher.browser import BrowserView
+from zope.container.interfaces import INameChooser
+from zope.formlib import form
+
+from interfaces import ICollector
+
+from ticketcollector import Collector
+
+class AddTicketCollector(form.AddForm):
+
+    form_fields = form.Fields(ICollector)
+
+    def createAndAdd(self, data):
+        name = data['name']
+        description = data.get('description')
+        namechooser = INameChooser(self.context)
+        collector = Collector()
+        collector.name = name
+        collector.description = description
+        name = namechooser.chooseName(name, collector)
+        self.context[name] = collector
+        self.request.response.redirect(name)
+
+class TicketCollectorMainView(BrowserView):
+
+    pass
+
+class RootDefaultView(BrowserView):
+
+    def __call__(self):
+        return """\
+<html><head><title>Welcome to BlueBream!</title></head><body>
+<h1>Welcome to BlueBream!</h1>
+<ul>
+<li><a href="http://pypi.python.org/pypi/bluebream">PyPI page</a></li>
+<li><a href="http://packages.python.org/bluebream">Documentation</a></li>
+<li><a href="https://launchpad.net/bluebream">Issue Tracker</a></li>
+<li><a href="http://wiki.zope.org/bluebream">Wiki</a></li>
+<li><a href="http://twitter.com/bluebream">Twitter</a></li>
+<li><a href="https://mail.zope.org/mailman/listinfo/zope3-users">Mailing list</a></li>
+<li><a href="http://webchat.freenode.net/?randomnick=1&channels=bluebream">IRC Channel: #bluebream at irc.freenode.net</a></li>
+</ul>
+<a href="@@login.html">Login</a>
+<br/>
+<a href="@@add">Add Sample application</a>
+</body></html>
+"""

Added: bluebream/website/docs/v1.0/examples/tut/stage1/templates/zope_conf.in
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/templates/zope_conf.in	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/templates/zope_conf.in	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,46 @@
+# Identify the component configuration used to define the site:
+site-definition ${config:site_zcml}
+
+<zodb>
+  # Wrap standard FileStorage with BlobStorage proxy to get ZODB blobs
+  # support.
+  # This won't be needed with ZODB 3.9, as its FileStorage supports
+  # blobs by itself. If you use ZODB 3.9, remove the proxy and specify
+  # the blob-dir parameter right in in filestorage, just after path.
+  <blobstorage>
+    blob-dir ${config:blob}
+    <filestorage>
+      path ${config:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
+
+# Uncomment this if you want to connect to a ZEO server instead:
+#  <zeoclient>
+#    server localhost:8100
+#    storage 1
+#    # ZEO client cache, in bytes
+#    cache-size 20MB
+#    # Uncomment to have a persistent disk cache
+#    #client zeo1
+#  </zeoclient>
+</zodb>
+
+<eventlog>
+  # This sets up logging to both a file and to standard output (STDOUT).
+  # The "path" setting can be a relative or absolute filesystem path or
+  # the tokens STDOUT or STDERR.
+
+  <logfile>
+    path ${config:log}/z3.log
+    formatter zope.exceptions.log.Formatter
+  </logfile>
+
+  <logfile>
+    path STDOUT
+    formatter zope.exceptions.log.Formatter
+  </logfile>
+</eventlog>
+
+# Comment this line to disable developer mode.  This should be done in
+# production
+devmode on

Added: bluebream/website/docs/v1.0/examples/tut/stage1/var/blob/.layout
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/var/blob/.layout	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/var/blob/.layout	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1 @@
+lawn
\ No newline at end of file

Added: bluebream/website/docs/v1.0/examples/tut/stage1/var/blob/README.txt
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/var/blob/README.txt	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/var/blob/README.txt	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1 @@
+This directory contains all blob data stored through ZODB.

Added: bluebream/website/docs/v1.0/examples/tut/stage1/var/filestorage/README.txt
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/var/filestorage/README.txt	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/var/filestorage/README.txt	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,2 @@
+This directory contains the ZODB storage files where all data is
+physically stored. Make sure to back up this directory always.

Added: bluebream/website/docs/v1.0/examples/tut/stage1/var/log/README.txt
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/var/log/README.txt	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/var/log/README.txt	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1 @@
+This directory contains all log files.

Added: bluebream/website/docs/v1.0/examples/tut/stage1/var/log/access.log
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/var/log/access.log	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/var/log/access.log	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,105 @@
+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"

Added: bluebream/website/docs/v1.0/examples/tut/stage1/var/log/z3.log
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/var/log/z3.log	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/var/log/z3.log	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,852 @@
+------
+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

Added: bluebream/website/docs/v1.0/examples/tut/stage1/versions.cfg
===================================================================
--- bluebream/website/docs/v1.0/examples/tut/stage1/versions.cfg	                        (rev 0)
+++ bluebream/website/docs/v1.0/examples/tut/stage1/versions.cfg	2010-01-25 10:09:24 UTC (rev 108465)
@@ -0,0 +1,111 @@
+[buildout]
+versions = versions
+
+[versions]
+ClientForm = 0.2.10
+collective.recipe.template = 1.4
+docutils = 0.6
+martian = 0.12
+mechanize = 0.1.11
+Paste = 1.7.2
+PasteDeploy = 1.3.3
+PasteScript = 1.7.3
+pytz = 2009r
+RestrictedPython = 3.5.1
+roman = 1.4.0
+setuptools = 0.6c11
+transaction = 1.0.0
+z3c.evalexception = 2.0
+z3c.testsetup = 0.6.1
+zc.buildout = 1.4.3
+zc.lockfile = 1.0.0
+ZConfig = 2.7.1
+zc.recipe.egg = 1.2.2
+zc.recipe.testrunner = 1.2.0
+zdaemon = 2.0.4
+ZODB3 = 3.9.4
+zodbcode = 3.4.0
+zope.annotation = 3.5.0
+zope.app.applicationcontrol = 3.5.2
+zope.app.appsetup = 3.13.0
+zope.app.authentication = 3.6.1
+zope.app.basicskin = 3.5.0
+zope.app.broken = 3.5.0
+zope.app.component = 3.8.3
+zope.app.container = 3.8.1
+zope.app.content = 3.4.0
+zope.app.debug = 3.4.1
+zope.app.dependable = 3.5.1
+zope.app.error = 3.5.2
+zope.app.folder = 3.5.1
+zope.app.form = 3.12.1
+zope.app.generations = 3.5.0
+zope.app.i18n = 3.6.2
+zope.app.interface = 3.5.0
+zope.app.locales = 3.6.0
+zope.app.localpermission = 3.7.0
+zope.app.pagetemplate = 3.10.0
+zope.app.principalannotation = 3.7.0
+zope.app.publication = 3.10.0
+zope.app.publisher = 3.10.0
+zope.app.renderer = 3.5.1
+zope.app.rotterdam = 3.5.0
+zope.app.schema = 3.5.0
+zope.app.security = 3.7.4
+zope.app.server = 3.5.0
+zope.app.testing = 3.7.3
+zope.app.twisted = 3.5.0
+zope.app.wsgi = 3.6.0
+zope.app.zopeappgenerations = 3.5.0
+zope.authentication = 3.7.0
+zope.broken = 3.5.0
+zope.browser = 1.2
+zope.browsermenu = 3.9.0
+zope.browserpage = 3.11.0
+zope.browserresource = 3.10.2
+zope.cachedescriptors = 3.5.0
+zope.component = 3.8.0
+zope.componentvocabulary = 1.0
+zope.configuration = 3.7.0
+zope.container = 3.11.0
+zope.contenttype = 3.5.0
+zope.copy = 3.5.0
+zope.copypastemove = 3.6.0
+zope.datetime = 3.4.0
+zope.deferredimport = 3.5.0
+zope.deprecation = 3.4.0
+zope.dottedname = 3.4.6
+zope.dublincore = 3.6.0
+zope.error = 3.7.0
+zope.event = 3.4.1
+zope.exceptions = 3.5.2
+zope.filerepresentation = 3.6.0
+zope.formlib = 3.10.0
+zope.hookable = 3.4.1
+zope.i18n = 3.7.2
+zope.i18nmessageid = 3.5.0
+zope.interface = 3.5.3
+zope.lifecycleevent = 3.6.0
+zope.location = 3.9.0
+zope.minmax = 1.1.2
+zope.pagetemplate = 3.5.0
+zope.password = 3.5.1
+zope.principalannotation = 3.6.0
+zope.principalregistry = 3.7.0
+zope.processlifetime = 1.0
+zope.proxy = 3.5.0
+zope.ptresource = 3.9.0
+zope.publisher = 3.12.0
+zope.schema = 3.6.0
+zope.security = 3.7.2
+zope.securitypolicy = 3.6.1
+zope.server = 3.6.1
+zope.session = 3.9.2
+zope.site = 3.9.0
+zope.size = 3.4.1
+zope.structuredtext = 3.4.0
+zope.tal = 3.5.2
+zope.tales = 3.5.0
+zope.testbrowser = 3.7.0
+zope.testing = 3.8.6
+zope.traversing = 3.12.0



More information about the checkins mailing list