Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
fcab1ded
Commit
fcab1ded
authored
May 09, 2005
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge rev 30307 from 3.4 branch.
ZApplication.py is moving to Zope trunk.
parent
3416d261
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
88 deletions
+13
-88
NEWS.txt
NEWS.txt
+13
-0
src/ZODB/ZApplication.py
src/ZODB/ZApplication.py
+0
-88
No files found.
NEWS.txt
View file @
fcab1ded
...
...
@@ -3,6 +3,19 @@ What's new in ZODB3 3.5a0?
Release date: DD-MMM-YYYY
What's new in ZODB3 3.4a8?
==========================
Release date: DD-May-2005
Another internal release, to move Zope 2.8 along.
ZApplication
------------
- The file ``ZApplication.py`` was moved, from ZODB to Zope(3). ZODB and
Zope3 don't use it, but Zope2 does.
What's new in ZODB3 3.4a7?
==========================
Release date: 06-May-2005
...
...
src/ZODB/ZApplication.py
deleted
100644 → 0
View file @
3416d261
##############################################################################
#
# Copyright (c) 2001, 2002 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
#
##############################################################################
"""Implement an bobo_application object that is BoboPOS3 aware
This module provides a wrapper that causes a database connection to be created
and used when bobo publishes a bobo_application object.
"""
import
transaction
connection_open_hooks
=
[]
class
ZApplicationWrapper
:
def
__init__
(
self
,
db
,
name
,
klass
=
None
,
klass_args
=
(),
version_cookie_name
=
None
):
self
.
_stuff
=
db
,
name
,
version_cookie_name
if
klass
is
not
None
:
conn
=
db
.
open
()
root
=
conn
.
root
()
if
not
root
.
has_key
(
name
):
root
[
name
]
=
klass
()
transaction
.
commit
()
conn
.
close
()
self
.
_klass
=
klass
# This hack is to overcome a bug in Bobo!
def
__getattr__
(
self
,
name
):
return
getattr
(
self
.
_klass
,
name
)
def
__bobo_traverse__
(
self
,
REQUEST
=
None
,
name
=
None
):
db
,
aname
,
version_support
=
self
.
_stuff
if
version_support
is
not
None
and
REQUEST
is
not
None
:
version
=
REQUEST
.
get
(
version_support
,
''
)
else
:
version
=
''
conn
=
db
.
open
(
version
)
if
connection_open_hooks
:
for
hook
in
connection_open_hooks
:
hook
(
conn
)
# arrange for the connection to be closed when the request goes away
cleanup
=
Cleanup
(
conn
)
REQUEST
.
_hold
(
cleanup
)
conn
.
setDebugInfo
(
REQUEST
.
environ
,
REQUEST
.
other
)
v
=
conn
.
root
()[
aname
]
if
name
is
not
None
:
if
hasattr
(
v
,
'__bobo_traverse__'
):
return
v
.
__bobo_traverse__
(
REQUEST
,
name
)
if
hasattr
(
v
,
name
):
return
getattr
(
v
,
name
)
return
v
[
name
]
return
v
def
__call__
(
self
,
connection
=
None
):
db
,
aname
,
version_support
=
self
.
_stuff
if
connection
is
None
:
connection
=
db
.
open
()
elif
isinstance
(
connection
,
basestring
):
connection
=
db
.
open
(
connection
)
return
connection
.
root
()[
aname
]
class
Cleanup
:
def
__init__
(
self
,
jar
):
self
.
_jar
=
jar
def
__del__
(
self
):
self
.
_jar
.
close
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment