[z3-checkins] r44004 - in z3/NudgeNudge/branches/zope-on-a-paste-demos: . logs

philikon at codespeak.net philikon at codespeak.net
Sun Jun 3 14:26:36 CEST 2007


Author: philikon
Date: Sun Jun  3 14:26:36 2007
New Revision: 44004

Added:
   z3/NudgeNudge/branches/zope-on-a-paste-demos/apache2.conf
   z3/NudgeNudge/branches/zope-on-a-paste-demos/logs/
   z3/NudgeNudge/branches/zope-on-a-paste-demos/mod_python.conf
   z3/NudgeNudge/branches/zope-on-a-paste-demos/nudge.wsgi
Log:
Apache mod_python and mod_wsgi conf files


Added: z3/NudgeNudge/branches/zope-on-a-paste-demos/apache2.conf
==============================================================================
--- (empty file)
+++ z3/NudgeNudge/branches/zope-on-a-paste-demos/apache2.conf	Sun Jun  3 14:26:36 2007
@@ -0,0 +1,98 @@
+ServerRoot "/Users/philipp/dev/NudgeNudge"
+ServerName 127.0.0.1
+Listen 127.0.0.1:8080
+
+LoadModule authn_file_module /opt/local/apache2/modules/mod_authn_file.so
+LoadModule authn_dbm_module /opt/local/apache2/modules/mod_authn_dbm.so
+LoadModule authn_anon_module /opt/local/apache2/modules/mod_authn_anon.so
+LoadModule authn_dbd_module /opt/local/apache2/modules/mod_authn_dbd.so
+LoadModule authn_default_module /opt/local/apache2/modules/mod_authn_default.so
+LoadModule authz_host_module /opt/local/apache2/modules/mod_authz_host.so
+LoadModule authz_groupfile_module /opt/local/apache2/modules/mod_authz_groupfile.so
+LoadModule authz_user_module /opt/local/apache2/modules/mod_authz_user.so
+LoadModule authz_dbm_module /opt/local/apache2/modules/mod_authz_dbm.so
+LoadModule authz_owner_module /opt/local/apache2/modules/mod_authz_owner.so
+LoadModule authz_default_module /opt/local/apache2/modules/mod_authz_default.so
+LoadModule auth_basic_module /opt/local/apache2/modules/mod_auth_basic.so
+LoadModule auth_digest_module /opt/local/apache2/modules/mod_auth_digest.so
+LoadModule file_cache_module /opt/local/apache2/modules/mod_file_cache.so
+LoadModule cache_module /opt/local/apache2/modules/mod_cache.so
+LoadModule disk_cache_module /opt/local/apache2/modules/mod_disk_cache.so
+LoadModule mem_cache_module /opt/local/apache2/modules/mod_mem_cache.so
+LoadModule dbd_module /opt/local/apache2/modules/mod_dbd.so
+LoadModule dumpio_module /opt/local/apache2/modules/mod_dumpio.so
+LoadModule ext_filter_module /opt/local/apache2/modules/mod_ext_filter.so
+LoadModule include_module /opt/local/apache2/modules/mod_include.so
+LoadModule filter_module /opt/local/apache2/modules/mod_filter.so
+LoadModule deflate_module /opt/local/apache2/modules/mod_deflate.so
+LoadModule log_config_module /opt/local/apache2/modules/mod_log_config.so
+LoadModule log_forensic_module /opt/local/apache2/modules/mod_log_forensic.so
+LoadModule logio_module /opt/local/apache2/modules/mod_logio.so
+LoadModule env_module /opt/local/apache2/modules/mod_env.so
+LoadModule mime_magic_module /opt/local/apache2/modules/mod_mime_magic.so
+LoadModule cern_meta_module /opt/local/apache2/modules/mod_cern_meta.so
+LoadModule expires_module /opt/local/apache2/modules/mod_expires.so
+LoadModule headers_module /opt/local/apache2/modules/mod_headers.so
+LoadModule ident_module /opt/local/apache2/modules/mod_ident.so
+LoadModule usertrack_module /opt/local/apache2/modules/mod_usertrack.so
+#LoadModule unique_id_module /opt/local/apache2/modules/mod_unique_id.so
+LoadModule setenvif_module /opt/local/apache2/modules/mod_setenvif.so
+LoadModule version_module /opt/local/apache2/modules/mod_version.so
+LoadModule proxy_module /opt/local/apache2/modules/mod_proxy.so
+LoadModule proxy_connect_module /opt/local/apache2/modules/mod_proxy_connect.so
+LoadModule proxy_ftp_module /opt/local/apache2/modules/mod_proxy_ftp.so
+LoadModule proxy_http_module /opt/local/apache2/modules/mod_proxy_http.so
+LoadModule proxy_ajp_module /opt/local/apache2/modules/mod_proxy_ajp.so
+LoadModule proxy_balancer_module /opt/local/apache2/modules/mod_proxy_balancer.so
+LoadModule ssl_module /opt/local/apache2/modules/mod_ssl.so
+LoadModule mime_module /opt/local/apache2/modules/mod_mime.so
+LoadModule dav_module /opt/local/apache2/modules/mod_dav.so
+LoadModule status_module /opt/local/apache2/modules/mod_status.so
+LoadModule autoindex_module /opt/local/apache2/modules/mod_autoindex.so
+LoadModule asis_module /opt/local/apache2/modules/mod_asis.so
+LoadModule info_module /opt/local/apache2/modules/mod_info.so
+LoadModule cgi_module /opt/local/apache2/modules/mod_cgi.so
+LoadModule dav_fs_module /opt/local/apache2/modules/mod_dav_fs.so
+LoadModule vhost_alias_module /opt/local/apache2/modules/mod_vhost_alias.so
+LoadModule negotiation_module /opt/local/apache2/modules/mod_negotiation.so
+LoadModule dir_module /opt/local/apache2/modules/mod_dir.so
+LoadModule imagemap_module /opt/local/apache2/modules/mod_imagemap.so
+LoadModule actions_module /opt/local/apache2/modules/mod_actions.so
+LoadModule speling_module /opt/local/apache2/modules/mod_speling.so
+LoadModule userdir_module /opt/local/apache2/modules/mod_userdir.so
+LoadModule alias_module /opt/local/apache2/modules/mod_alias.so
+LoadModule rewrite_module /opt/local/apache2/modules/mod_rewrite.so
+
+LoadModule python_module /opt/local/apache2/modules/mod_python.so
+LoadModule wsgi_module /opt/local/apache2/modules/mod_wsgi.so
+
+ServerAdmin philipp at weitershausen.de
+DocumentRoot "/Users/philipp/dev/NudgeNudge"
+MaxSpareServers 1
+
+<Directory />
+    Options FollowSymLinks
+    AllowOverride None
+    Order deny,allow
+    Deny from all
+</Directory>
+
+<Directory "/Users/philipp/dev/NudgeNudge">
+    Options Indexes FollowSymLinks
+    AllowOverride None
+    Order allow,deny
+    Allow from all
+</Directory>
+
+DirectoryIndex index.html
+ErrorLog logs/error_log
+LogLevel warn
+DefaultType text/plain
+
+<IfModule mime_module>
+    TypesConfig /opt/local/apache2/conf/mime.types
+</IfModule>
+
+Include "mod_python.conf"
+
+#WSGISCriptAlias / /Users/philipp/dev/NudgeNudge/nudge.wsgi

Added: z3/NudgeNudge/branches/zope-on-a-paste-demos/mod_python.conf
==============================================================================
--- (empty file)
+++ z3/NudgeNudge/branches/zope-on-a-paste-demos/mod_python.conf	Sun Jun  3 14:26:36 2007
@@ -0,0 +1,92 @@
+<Location />
+    SetHandler python-program
+    PythonHandler paste.modpython
+    PythonPath "[  '/Users/philipp/shared-eggs/setuptools-0.6c6-py2.4.egg', \
+  '/Users/philipp/shared-eggs/grok-0.9dev_r75634-py2.4.egg', \
+  '/Users/philipp/dev/NudgeNudge/src', \
+  '/Users/philipp/shared-eggs/zope.paste-0.3-py2.4.egg', \
+  '/Users/philipp/shared-eggs/PasteDeploy-1.3-py2.4.egg', \
+  '/Users/philipp/dev/NudgeNudge/deliverance', \
+  '/Users/philipp/shared-eggs/PasteScript-1.3.4-py2.4.egg', \
+  '/Users/philipp/shared-eggs/WSGIUtils-0.7-py2.4.egg', \
+  '/Users/philipp/shared-eggs/Paste-1.3-py2.4.egg', \
+  '/Users/philipp/shared-eggs/WSGIFilter-0.1dev-py2.4.egg', \
+  '/Users/philipp/shared-eggs/nose-0.9.3-py2.4.egg', \
+  '/Users/philipp/shared-eggs/elementtree-1.2.6_20050316-py2.4.egg', \
+  '/Users/philipp/shared-eggs/FormEncode-0.7.1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/lxml-1.3beta-py2.4-macosx-10.4-i386.egg', \
+  '/Users/philipp/shared-eggs/zope.app.server-3.4.0b1dev_r75388-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.twisted-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.wsgi-3.4.0b1dev_r75415-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.appsetup-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.interface-3.4.0b1-py2.4-macosx-10.4-i386.egg', \
+  '/Users/philipp/shared-eggs/zope.app.securitypolicy-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.security-3.4.0a1_1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.authentication-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.catalog-3.4.0a2-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.component-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.schema-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/ZODB3-3.8.0a1-py2.4-macosx-10.4-i386.egg', \
+  '/Users/philipp/shared-eggs/simplejson-1.7.1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/HTTPEncode-0.1dev_r6484-py2.4.egg', \
+  '/Users/philipp/shared-eggs/ZConfig-2.4a2-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zdaemon-2.0a6-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.server-3.5.0a2-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.publisher-3.4.0a1_1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.event-3.4.0b1.dev_r75122-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.configuration-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.publication-3.4.0a1_2-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.applicationcontrol-3.4_dev_r73715-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.zapi-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.security-3.4.0a1-py2.4-macosx-10.4-i386.egg', \
+  '/Users/philipp/shared-eggs/zope.exceptions-3.4dev_r73107-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.copypastemove-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.container-3.4.0a1-py2.4-macosx-10.4-i386.egg', \
+  '/Users/philipp/shared-eggs/zope.traversing-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.folder-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.component-0.1dev_r74310-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.location-3.4.0b1.dev_r75152-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.i18nmessageid-3.4.0a1-py2.4-macosx-10.4-i386.egg', \
+  '/Users/philipp/shared-eggs/zope.i18n-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.form-0.1.dev_r74902-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.annotation-3.4.0b1.dev_r75758-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.deprecation-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.deferredimport-3.4dev-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.publisher-0.1dev_r73800-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.pagetemplate-3.4.0b1dev_r75616-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.i18n-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.dublincore-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.session-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.testing-3.4_r75911-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.lifecycleevent-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.index-3.4.0a2-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.testing-3.4.0b1_r75826-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.intid-3.4.0a2-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.proxy-3.4.0a1-py2.4-macosx-10.4-i386.egg', \
+  '/Users/philipp/shared-eggs/httplib2-0.3.0-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.exception-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.error-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.http-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.size-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.interface-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.thread-3.4dev_r73086-py2.4-macosx-10.4-i386.egg', \
+  '/Users/philipp/shared-eggs/pytz-2007d-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.broken-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.filerepresentation-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.dottedname-3.4dev_r73113-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.cachedescriptors-3.4.0b1_r75830-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.datetime-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.formlib-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.hookable-3.4.0a1-py2.4-macosx-10.4-i386.egg', \
+  '/Users/philipp/shared-eggs/zope.app.basicskin-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.pagetemplate-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.contenttype-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.tales-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.dependable-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.debug-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.app.keyreference-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zodbcode-3.4.0b1dev_r75670-py2.4.egg', \
+  '/Users/philipp/shared-eggs/zope.tal-3.4.0a1-py2.4.egg', \
+  '/Users/philipp/shared-eggs/RestrictedPython-3.4dev_r73257-py2.4.egg'] + sys.path"
+    PythonOption paste.ini /Users/philipp/dev/NudgeNudge/nudge.ini
+</Location>

Added: z3/NudgeNudge/branches/zope-on-a-paste-demos/nudge.wsgi
==============================================================================
--- (empty file)
+++ z3/NudgeNudge/branches/zope-on-a-paste-demos/nudge.wsgi	Sun Jun  3 14:26:36 2007
@@ -0,0 +1,94 @@
+import sys
+sys.path[0:0] = [
+  '/Users/philipp/shared-eggs/setuptools-0.6c6-py2.4.egg',
+  '/Users/philipp/shared-eggs/grok-0.9dev_r75634-py2.4.egg',
+  '/Users/philipp/dev/NudgeNudge/src',
+  '/Users/philipp/shared-eggs/zope.paste-0.3-py2.4.egg',
+  '/Users/philipp/shared-eggs/PasteDeploy-1.3-py2.4.egg',
+  '/Users/philipp/dev/NudgeNudge/deliverance',
+  '/Users/philipp/shared-eggs/PasteScript-1.3.4-py2.4.egg',
+  '/Users/philipp/shared-eggs/WSGIUtils-0.7-py2.4.egg',
+  '/Users/philipp/shared-eggs/Paste-1.3-py2.4.egg',
+  '/Users/philipp/shared-eggs/WSGIFilter-0.1dev-py2.4.egg',
+  '/Users/philipp/shared-eggs/nose-0.9.3-py2.4.egg',
+  '/Users/philipp/shared-eggs/elementtree-1.2.6_20050316-py2.4.egg',
+  '/Users/philipp/shared-eggs/FormEncode-0.7.1-py2.4.egg',
+  '/Users/philipp/shared-eggs/lxml-1.3beta-py2.4-macosx-10.4-i386.egg',
+  '/Users/philipp/shared-eggs/zope.app.server-3.4.0b1dev_r75388-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.twisted-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.wsgi-3.4.0b1dev_r75415-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.appsetup-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.interface-3.4.0b1-py2.4-macosx-10.4-i386.egg',
+  '/Users/philipp/shared-eggs/zope.app.securitypolicy-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.security-3.4.0a1_1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.authentication-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.catalog-3.4.0a2-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.component-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.schema-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/ZODB3-3.8.0a1-py2.4-macosx-10.4-i386.egg',
+  '/Users/philipp/shared-eggs/simplejson-1.7.1-py2.4.egg',
+  '/Users/philipp/shared-eggs/HTTPEncode-0.1dev_r6484-py2.4.egg',
+  '/Users/philipp/shared-eggs/ZConfig-2.4a2-py2.4.egg',
+  '/Users/philipp/shared-eggs/zdaemon-2.0a6-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.server-3.5.0a2-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.publisher-3.4.0a1_1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.event-3.4.0b1.dev_r75122-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.configuration-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.publication-3.4.0a1_2-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.applicationcontrol-3.4_dev_r73715-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.zapi-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.security-3.4.0a1-py2.4-macosx-10.4-i386.egg',
+  '/Users/philipp/shared-eggs/zope.exceptions-3.4dev_r73107-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.copypastemove-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.container-3.4.0a1-py2.4-macosx-10.4-i386.egg',
+  '/Users/philipp/shared-eggs/zope.traversing-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.folder-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.component-0.1dev_r74310-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.location-3.4.0b1.dev_r75152-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.i18nmessageid-3.4.0a1-py2.4-macosx-10.4-i386.egg',
+  '/Users/philipp/shared-eggs/zope.i18n-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.form-0.1.dev_r74902-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.annotation-3.4.0b1.dev_r75758-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.deprecation-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.deferredimport-3.4dev-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.publisher-0.1dev_r73800-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.pagetemplate-3.4.0b1dev_r75616-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.i18n-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.dublincore-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.session-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.testing-3.4_r75911-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.lifecycleevent-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.index-3.4.0a2-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.testing-3.4.0b1_r75826-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.intid-3.4.0a2-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.proxy-3.4.0a1-py2.4-macosx-10.4-i386.egg',
+  '/Users/philipp/shared-eggs/httplib2-0.3.0-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.exception-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.error-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.http-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.size-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.interface-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.thread-3.4dev_r73086-py2.4-macosx-10.4-i386.egg',
+  '/Users/philipp/shared-eggs/pytz-2007d-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.broken-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.filerepresentation-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.dottedname-3.4dev_r73113-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.cachedescriptors-3.4.0b1_r75830-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.datetime-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.formlib-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.hookable-3.4.0a1-py2.4-macosx-10.4-i386.egg',
+  '/Users/philipp/shared-eggs/zope.app.basicskin-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.pagetemplate-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.contenttype-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.tales-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.dependable-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.debug-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.app.keyreference-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/zodbcode-3.4.0b1dev_r75670-py2.4.egg',
+  '/Users/philipp/shared-eggs/zope.tal-3.4.0a1-py2.4.egg',
+  '/Users/philipp/shared-eggs/RestrictedPython-3.4dev_r73257-py2.4.egg',
+  '/lib/python',
+  ]
+
+from paste.deploy import loadapp
+application = loadapp("config:/Users/philipp/dev/NudgeNudge/nudge.ini")


More information about the z3-checkins mailing list