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
19f83d77
Commit
19f83d77
authored
Sep 25, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made some corrections for network behavior.
parent
bc7b5406
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
lib/python/Shared/DC/ZRDB/DA.py
lib/python/Shared/DC/ZRDB/DA.py
+7
-4
No files found.
lib/python/Shared/DC/ZRDB/DA.py
View file @
19f83d77
...
...
@@ -11,8 +11,8 @@
__doc__
=
'''Generic Database adapter
$Id: DA.py,v 1.
7 1997/09/22 18:44:38
jim Exp $'''
__version__
=
'$Revision: 1.
7
$'
[
11
:
-
2
]
$Id: DA.py,v 1.
8 1997/09/25 17:35:30
jim Exp $'''
__version__
=
'$Revision: 1.
8
$'
[
11
:
-
2
]
import
string
,
OFS
.
Folder
,
Aqueduct
.
Aqueduct
,
Aqueduct
.
RDB
import
DocumentTemplate
,
marshal
,
md5
,
zlib
,
base64
,
DateTime
,
Acquisition
...
...
@@ -94,7 +94,7 @@ class Folder(OFS.Folder.Folder):
self
.
_setObject
(
id
,
q
)
return
self
.
manage_main
(
self
,
REQUEST
)
test_url___
allow_group
s__
=
None
test_url___
role
s__
=
None
def
test_url_
(
self
):
'Method for testing server connection information'
return
'PING'
...
...
@@ -181,7 +181,7 @@ class Query(Aqueduct.Aqueduct.BaseQuery,Persistent,Acquisition.Implicit):
'%s is not connected to a database'
%
self
.
id
)
try
:
argdata
=
REQUEST
.
form
.
value
argdata
=
REQUEST
[
'BODY'
]
argdata
=
decodestring
(
argdata
)
argdata
=
self
.
rotor
.
decrypt
(
argdata
)
digest
,
argdata
=
argdata
[:
16
],
argdata
[
16
:]
...
...
@@ -218,6 +218,9 @@ class Query(Aqueduct.Aqueduct.BaseQuery,Persistent,Acquisition.Implicit):
##############################################################################
#
# $Log: DA.py,v $
# Revision 1.8 1997/09/25 17:35:30 jim
# Made some corrections for network behavior.
#
# Revision 1.7 1997/09/22 18:44:38 jim
# Got rid of ManageHTML
# Fixed bug in manage_test that caused extra database updates.
...
...
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