[Zope3-checkins] CVS: Zope3/src/zope/app - _app.py:1.11
Sidnei da Silva
sidnei@x3ng.com.br
Thu, 22 May 2003 09:59:23 -0400
Update of /cvs-repository/Zope3/src/zope/app
In directory cvs.zope.org:/tmp/cvs-serv4564/src/zope/app
Modified Files:
_app.py
Log Message:
Slowly getting there. Created a new HTTPTestCase base class for functional tests. Added a few functional tests for DAV and the DC namespace. Still need to solve the minidom issue.
=== Zope3/src/zope/app/_app.py 1.10 => 1.11 ===
--- Zope3/src/zope/app/_app.py:1.10 Tue May 20 16:24:30 2003
+++ Zope3/src/zope/app/_app.py Thu May 22 09:58:52 2003
@@ -81,7 +81,7 @@
if db is None and config_file is None:
db = 'Data.fs'
config_file = 'site.zcml'
-
+
if config_file is not None:
config(config_file)
self.db = database(db)
@@ -91,7 +91,7 @@
The object returned is connected to an open database connection.
"""
-
+
from zope.app.publication.zopepublication import ZopePublication
return self.db.open().root()[ZopePublication.root_name]