[Checkins] SVN: bluebream/website/examples/v1.0/tut/stage4/ implement basic skin

Baiju M baiju.m.mail at gmail.com
Tue Jan 26 20:00:19 EST 2010


Log message for revision 108541:
  implement basic skin
  

Changed:
  U   bluebream/website/examples/v1.0/tut/stage4/etc/site.zcml
  U   bluebream/website/examples/v1.0/tut/stage4/setup.py
  U   bluebream/website/examples/v1.0/tut/stage4/src/tc/main/application.zcml
  U   bluebream/website/examples/v1.0/tut/stage4/src/tc/main/configure.zcml
  U   bluebream/website/examples/v1.0/tut/stage4/src/tc/main/interfaces.py
  A   bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/
  A   bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/__init__.py
  A   bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/bluewaves.css
  A   bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/configure.zcml
  A   bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/interfaces.py
  A   bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/view_macros.pt
  _U  bluebream/website/examples/v1.0/tut/stage4/var/filestorage/
  U   bluebream/website/examples/v1.0/tut/stage4/var/log/access.log
  U   bluebream/website/examples/v1.0/tut/stage4/var/log/z3.log

-=-
Modified: bluebream/website/examples/v1.0/tut/stage4/etc/site.zcml
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/etc/site.zcml	2010-01-27 00:14:16 UTC (rev 108540)
+++ bluebream/website/examples/v1.0/tut/stage4/etc/site.zcml	2010-01-27 01:00:18 UTC (rev 108541)
@@ -35,6 +35,7 @@
   <include package="zope.app.zcmlfiles" file="menus.zcml" />
   <include package="zope.app.authentication" />
   <include package="zope.app.security.browser" />
+  <include package="zope.traversing.browser" />
 
   <include package="tc.main" file="securitypolicy.zcml" />
   <include package="tc.main" file="application.zcml" />

Modified: bluebream/website/examples/v1.0/tut/stage4/setup.py
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/setup.py	2010-01-27 00:14:16 UTC (rev 108540)
+++ bluebream/website/examples/v1.0/tut/stage4/setup.py	2010-01-27 01:00:18 UTC (rev 108541)
@@ -54,6 +54,7 @@
                         'zope.testbrowser',
                         'zope.login',
                         'zope.app.zcmlfiles',
+                        'z3c.layer.minimal',
                         ],
       entry_points = """
       [paste.app_factory]

Modified: bluebream/website/examples/v1.0/tut/stage4/src/tc/main/application.zcml
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/src/tc/main/application.zcml	2010-01-27 00:14:16 UTC (rev 108540)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/main/application.zcml	2010-01-27 01:00:18 UTC (rev 108541)
@@ -16,5 +16,6 @@
      />
 
   <include package="tc.main" />
+  <include package="tc.skin" />
 
 </configure>

Modified: bluebream/website/examples/v1.0/tut/stage4/src/tc/main/configure.zcml
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/src/tc/main/configure.zcml	2010-01-27 00:14:16 UTC (rev 108540)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/main/configure.zcml	2010-01-27 01:00:18 UTC (rev 108541)
@@ -13,6 +13,7 @@
      name="index"
      permission="zope.Public"
      class=".views.RootDefaultView"
+     layer="tc.skin.interfaces.IBlueWaves"
      />
 
   <interface 

Modified: bluebream/website/examples/v1.0/tut/stage4/src/tc/main/interfaces.py
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/src/tc/main/interfaces.py	2010-01-27 00:14:16 UTC (rev 108540)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/main/interfaces.py	2010-01-27 01:00:18 UTC (rev 108541)
@@ -1,3 +1,4 @@
+from zope.interface import Interface
 from zope.container.interfaces import IContainer
 from zope.schema import TextLine
 from zope.schema import Text
@@ -21,5 +22,8 @@
 class ITicket(Interface):
     """ """
 
-    name = ""
-
+    name = TextLine(
+        title=u"Name",
+        description=u"Name of application.",
+        default=u"",
+        required=True)

Added: bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/__init__.py
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/__init__.py	                        (rev 0)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/__init__.py	2010-01-27 01:00:18 UTC (rev 108541)
@@ -0,0 +1 @@
+# Python Package

Added: bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/configure.zcml
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/configure.zcml	                        (rev 0)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/configure.zcml	2010-01-27 01:00:18 UTC (rev 108541)
@@ -0,0 +1,28 @@
+<configure
+   i18n_domain="tc.skin"
+   xmlns="http://namespaces.zope.org/zope"
+   xmlns:browser="http://namespaces.zope.org/browser">
+
+  <interface
+     interface="tc.skin.interfaces.IBlueWaves"
+     type="zope.publisher.interfaces.browser.IBrowserSkinType"
+     name="BlueWaves"
+     />
+
+  <browser:resource
+     name="bluewaves.css"
+     file="bluewaves.css"
+     layer="tc.skin.interfaces.IBlueWaves"
+     />
+
+  <browser:page
+     for="*"
+     name="bluewaves_macros"
+     permission="zope.View"
+     layer="tc.skin.interfaces.IBlueWaves"
+     template="view_macros.pt"
+     />
+
+  <browser:defaultSkin name="BlueWaves" />
+
+</configure>

Added: bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/interfaces.py
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/interfaces.py	                        (rev 0)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/interfaces.py	2010-01-27 01:00:18 UTC (rev 108541)
@@ -0,0 +1,5 @@
+from zope.publisher.interfaces.browser import IDefaultBrowserLayer
+
+class IBlueWaves(IDefaultBrowserLayer):
+    """BlueWaves skin that contains the default layer and nothing
+    else"""

Added: bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/view_macros.pt
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/view_macros.pt	                        (rev 0)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/skin/view_macros.pt	2010-01-27 01:00:18 UTC (rev 108541)
@@ -0,0 +1,34 @@
+<html metal:define-macro="page" i18n:domain="collector">
+
+<head metal:define-macro="head">
+  <title>Ticket Collector</title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+  <link href="context/++resource++bluewaves.css" rel="stylesheet" type="text/css"
+        tal:attributes="href context/++resource++bluewaves.css" />
+</head>
+
+<body metal:define-macro="body">
+<div id="uberclass">
+  <div id="sidebar">
+    <ul id="navigation">
+    <div metal:define-slot="sidebox">
+      <li metal:define-slot="homelink">
+        <a href="../@@index" i18n:translate="">Home</a>
+      </li>
+      <li class="last" metal:define-slot="addticketlink">
+        <a href="/@@+/add_ticket" i18n:translate="">Add Ticket</a>
+      </li>
+    </div>
+    </ul>
+  </div>
+  <div id="container">
+    <div metal:define-slot="mainbox">
+      <h1 i18n:translate="">Collector</h1>
+      <h2 i18n:translate="">Ticket Collector Software</h2>
+      <p i18n:translate="">Use the left navigation bar
+        for accessing the functionalities of Collector.</p>
+    </div>
+  </div>
+</div>
+</body>
+</html>


Property changes on: bluebream/website/examples/v1.0/tut/stage4/var/filestorage
___________________________________________________________________
Added: svn:ignore
   + Data*


Modified: bluebream/website/examples/v1.0/tut/stage4/var/log/access.log
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/var/log/access.log	2010-01-27 00:14:16 UTC (rev 108540)
+++ bluebream/website/examples/v1.0/tut/stage4/var/log/access.log	2010-01-27 01:00:18 UTC (rev 108541)
@@ -103,3 +103,12 @@
 127.0.0.1 - - [19/Jan/2010:15:30:12 +0600] "GET /ok-8 HTTP/1.1" 200 12 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
 127.0.0.1 - - [19/Jan/2010:15:30:21 +0600] "GET /ok-8/%40%40index HTTP/1.1" 200 12 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
 127.0.0.1 - - [19/Jan/2010:15:31:11 +0600] "GET /ok-8/%40%40index HTTP/1.1" 200 35 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.30 Safari/532.5"
+127.0.0.1 - - [26/Jan/2010:08:01:07 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
+127.0.0.1 - - [26/Jan/2010:08:01:13 +0600] "GET /%40%40login.html HTTP/1.1" 401 662 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
+127.0.0.1 - - [26/Jan/2010:08:01:17 +0600] "GET /%40%40login.html HTTP/1.1" 200 671 "http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
+127.0.0.1 - - [27/Jan/2010:06:00:37 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
+127.0.0.1 - - [27/Jan/2010:06:00:58 +0600] "GET /%2B%2Bskin%2B%2BBlueWaves HTTP/1.1" 200 814 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
+127.0.0.1 - - [27/Jan/2010:06:13:23 +0600] "GET /%2B%2Bskin%2B%2BBlueWaves HTTP/1.1" 200 814 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
+127.0.0.1 - - [27/Jan/2010:06:13:28 +0600] "GET /%2B%2Bskin%2B%2BBasic HTTP/1.1" 200 810 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
+127.0.0.1 - - [27/Jan/2010:06:13:32 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"
+127.0.0.1 - - [27/Jan/2010:06:21:47 +0600] "GET / HTTP/1.1" 200 749 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7"

Modified: bluebream/website/examples/v1.0/tut/stage4/var/log/z3.log
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/var/log/z3.log	2010-01-27 00:14:16 UTC (rev 108540)
+++ bluebream/website/examples/v1.0/tut/stage4/var/log/z3.log	2010-01-27 01:00:18 UTC (rev 108541)
@@ -850,3 +850,149 @@
 2010-01-19T15:35:15 INFO paste.httpserver.ThreadPool Shutting down threadpool
 ------
 2010-01-19T15:35:15 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-26T07:57:10 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-26T07:59:16 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-26T07:59:54 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-26T08:00:53 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-26T08:00:55 WARNING ZODB.blob (8230) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
+------
+2010-01-26T08:00:55 WARNING ZODB.blob (8230) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
+------
+2010-01-26T08:03:35 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-26T08:03:35 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-26T08:03:35 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-26T08:03:35 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-26T08:05:51 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-26T08:05:52 WARNING ZODB.FileStorage Ignoring index for /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/filestorage/Data.fs
+------
+2010-01-26T08:05:52 WARNING ZODB.blob (8295) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
+------
+2010-01-26T08:05:52 WARNING ZODB.blob (8295) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
+------
+2010-01-26T08:07:11 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-26T08:07:12 WARNING ZODB.blob (8299) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
+------
+2010-01-26T08:07:12 WARNING ZODB.blob (8299) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
+------
+2010-01-26T08:08:10 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-26T08:08:10 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-26T08:08:10 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-26T08:08:10 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-26T08:10:07 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-26T08:10:08 WARNING ZODB.blob (8335) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
+------
+2010-01-26T08:10:08 WARNING ZODB.blob (8335) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
+------
+2010-01-26T08:10:39 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-26T08:10:39 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-26T08:10:39 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-26T08:10:39 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-26T08:10:45 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-26T08:10:46 WARNING ZODB.blob (8348) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
+------
+2010-01-26T08:10:46 WARNING ZODB.blob (8348) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
+------
+2010-01-26T08:13:53 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-26T08:13:54 WARNING ZODB.blob (8375) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
+------
+2010-01-26T08:13:54 WARNING ZODB.blob (8375) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
+------
+2010-01-27T05:52:03 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-27T05:52:06 WARNING ZODB.blob (20852) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
+------
+2010-01-27T05:52:06 WARNING ZODB.blob (20852) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
+------
+2010-01-27T06:05:50 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-27T06:05:50 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-27T06:05:50 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-27T06:05:50 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-27T06:05:52 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-27T06:06:04 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-27T06:12:32 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-27T06:13:00 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-27T06:13:12 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-27T06:13:16 WARNING ZODB.blob (21322) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
+------
+2010-01-27T06:13:16 WARNING ZODB.blob (21322) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
+------
+2010-01-27T06:15:33 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-27T06:15:33 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-27T06:15:33 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-27T06:15:33 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-27T06:15:45 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-27T06:15:46 WARNING ZODB.blob (21364) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
+------
+2010-01-27T06:15:46 WARNING ZODB.blob (21364) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
+------
+2010-01-27T06:16:44 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-27T06:16:44 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-27T06:16:44 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-27T06:16:44 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-27T06:16:46 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-27T06:16:48 WARNING ZODB.blob (21383) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
+------
+2010-01-27T06:16:48 WARNING ZODB.blob (21383) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
+------
+2010-01-27T06:21:39 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-27T06:21:39 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-27T06:21:39 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-27T06:21:39 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-27T06:21:41 WARNING root Developer mode is enabled: this is a security risk and should NOT be enabled on production servers. Developer mode can usually be turned off by setting the `devmode` option to `off` or by removing it from the instance configuration file completely.
+------
+2010-01-27T06:21:42 WARNING ZODB.blob (21445) The `lawn` blob directory layout is deprecated due to scalability issues on some file systems, please consider migrating to the `bushy` layout.
+------
+2010-01-27T06:21:42 WARNING ZODB.blob (21445) Blob dir /opt/baiju/wa/bluebream_website/examples/v1.0/tut/stage4/var/blob/ has insecure mode setting
+------
+2010-01-27T06:26:26 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-27T06:26:26 INFO paste.httpserver.ThreadPool All workers stopped
+------
+2010-01-27T06:26:26 INFO paste.httpserver.ThreadPool Shutting down threadpool
+------
+2010-01-27T06:26:26 INFO paste.httpserver.ThreadPool All workers stopped



More information about the checkins mailing list