Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
56f1205e
Commit
56f1205e
authored
Feb 13, 2005
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Integrated persistent metaclass with ZClasses and got basic ZClass
test to pass.
parent
5e1d9f08
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
80 additions
and
42 deletions
+80
-42
lib/python/ZClasses/ZClass.py
lib/python/ZClasses/ZClass.py
+13
-1
lib/python/ZClasses/ZClass.txt
lib/python/ZClasses/ZClass.txt
+61
-40
lib/python/ZClasses/_pmc.py
lib/python/ZClasses/_pmc.py
+3
-0
lib/python/ZClasses/tests.py
lib/python/ZClasses/tests.py
+3
-1
No files found.
lib/python/ZClasses/ZClass.py
View file @
56f1205e
...
...
@@ -22,6 +22,7 @@ from ComputedAttribute import ComputedAttribute
from
Products.PythonScripts.PythonScript
import
PythonScript
from
zExceptions
import
BadRequest
,
Redirect
import
webdav.Collection
import
ZClasses._pmc
import
marshal
...
...
@@ -91,7 +92,18 @@ from OFS.misc_ import p_
p_
.
ZClass_Icon
=
Globals
.
ImageFile
(
'class.gif'
,
globals
())
class
PersistentClass
(
Base
,
webdav
.
Collection
.
Collection
):
def
__class_init__
(
self
):
pass
__metaclass__
=
ZClasses
.
_pmc
.
ZClassPersistentMetaClass
# We need this class to be treated as a normal global class, even
# though it is an instance of ZClassPersistentMetaClass.
# Subclasses should be stored in the database. See
# _pmc._p_DataDescr.__get__.
__global_persistent_class_not_stored_in_DB__
=
True
def
__class_init__
(
self
):
pass
manage_addZClassForm
=
Globals
.
DTMLFile
(
'dtml/addZClass'
,
globals
(),
...
...
lib/python/ZClasses/ZClass.txt
View file @
56f1205e
...
...
@@ -6,11 +6,7 @@ ZClasses were designed mainly to be used from the web.
To do anything, we need a working Zope object space:
>>> from ZODB.DemoStorage import DemoStorage
>>> s = DemoStorage()
>>> import ZODB.DB
>>> db = ZODB.DB(s)
>>> conn = db.open()
>>> conn = some_database.open()
>>> from OFS.Application import Application
>>> app = Application()
>>> conn.root()['Application'] = app
...
...
@@ -41,7 +37,8 @@ give them data by defining property sheets:
... 'x', 'hee ', 'string')
>>> app.c.x
'hee '
>>> test.C.propertysheets.common['basic'].manage_addProperty('y', 42, 'int')
>>> test.C.propertysheets.common['basic'].manage_addProperty(
... 'y', 42, 'int')
>>> app.c.y
42
...
...
@@ -63,8 +60,32 @@ We can also add methods, such as Python scripts:
>>> app.c.eek()
'hi hi hi '
We're done, so clean up
:
Let's commit our changes
:
>>> import transaction
>>> transaction.commit()
>>> db.close()
We can access the class in another connection:
>>> import threading
>>> def run(func):
... thread = threading.Thread(target=func)
... thread.start()
... thread.join()
>>> def read_class():
... connection = some_database.open()
... app = connection.root()['Application']
... test = app.Control_Panel.Products['test']
... c2 = test.C()
... c2._setId('c')
... app._setObject('c2', c2)
... app.c2.x = '*'
... print app.c2.x, app.c2.y, app.c2.eek(), '!'
... print app.c.x, app.c.y, app.c.eek(), '!'
... connection.close()
... run(read_class)
hee 42 ****************************************** !
hi 3 hi hi hi !
lib/python/ZClasses/_pmc.py
View file @
56f1205e
...
...
@@ -57,6 +57,9 @@ class _p_DataDescr(object):
def
__get__
(
self
,
inst
,
cls
):
if
inst
is
None
:
return
self
if
'__global_persistent_class_not_stored_in_DB__'
in
inst
.
__dict__
:
raise
AttributeError
,
self
.
__name__
return
inst
.
_p_class_dict
.
get
(
self
.
__name__
)
def
__set__
(
self
,
inst
,
v
):
...
...
lib/python/ZClasses/tests.py
View file @
56f1205e
...
...
@@ -44,11 +44,13 @@ def test_suite():
return
unittest
.
TestSuite
((
# To do:
# -
test integration: doctest.DocFileSuite("ZClass.txt"),
# -
Beef up basic test
# - Test working with old pickles
# - Test proper handling of __of__
# - Test export/import
doctest
.
DocFileSuite
(
"_pmc.txt"
,
setUp
=
setUp
,
tearDown
=
tearDown
),
doctest
.
DocFileSuite
(
"ZClass.txt"
,
setUp
=
setUp
,
tearDown
=
tearDown
),
))
if
__name__
==
'__main__'
:
...
...
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