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
0ecc15c2
Commit
0ecc15c2
authored
May 10, 1999
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
b29468f8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
lib/python/ZClasses/Property.py
lib/python/ZClasses/Property.py
+1
-1
lib/python/ZClasses/ZClass.py
lib/python/ZClasses/ZClass.py
+1
-1
lib/python/webdav/client.py
lib/python/webdav/client.py
+2
-2
No files found.
lib/python/ZClasses/Property.py
View file @
0ecc15c2
...
...
@@ -137,7 +137,7 @@ class ZCommonSheet(OFS.PropertySheets.PropertySheet, OFS.SimpleItem.Item):
return
"""
<!--#in %s-->
<!--#var sequence-item-->
<!--#in %s-->
<!--#
/
in %s-->
"""
%
(
id
,
id
)
def
manage_createView
(
self
,
id
,
title
=
''
,
ps_view_type
=
None
,
REQUEST
=
None
):
...
...
lib/python/ZClasses/ZClass.py
View file @
0ecc15c2
...
...
@@ -425,8 +425,8 @@ class ZClassSheets(OFS.PropertySheets.PropertySheets):
class
ZObject
:
manage_options
=
(
{
'label'
:
'Basic'
,
'action'
:
'propertysheets/basic/manage'
},
{
'label'
:
'Methods'
,
'action'
:
'propertysheets/methods/manage'
},
{
'label'
:
'Basic'
,
'action'
:
'propertysheets/basic/manage'
},
{
'label'
:
'Views'
,
'action'
:
'propertysheets/views/manage'
},
{
'label'
:
'Property Sheets'
,
'action'
:
'propertysheets/common/manage'
},
{
'label'
:
'Permissions'
,
...
...
lib/python/webdav/client.py
View file @
0ecc15c2
"""HTTP 1.1 / WebDAV client library."""
__version__
=
'$Revision: 1.
8
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
9
$'
[
11
:
-
2
]
import
sys
,
os
,
string
,
regex
,
time
,
types
import
socket
,
httplib
,
mimetools
...
...
@@ -450,7 +450,7 @@ def marshal_list(name, seq, tname='list', lt=type([]), tt=type(())):
tp=type(v)
if tp in (lt, tt):
raise TypeError, '
Invalid
recursion
in
data
to
be
marshaled
.
'
result.append(marshal_
whateve
r("%s:%s" % (name, tname), v))
result.append(marshal_
va
r("%s:%s" % (name, tname), v))
return string.join(result, '
&
')
def marshal_tuple(name, seq):
...
...
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