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
ecec90d8
Commit
ecec90d8
authored
Mar 04, 1999
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
9d813142
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
13 deletions
+11
-13
lib/python/webdav/client.py
lib/python/webdav/client.py
+9
-11
lib/python/webdav/xmlcmds.py
lib/python/webdav/xmlcmds.py
+2
-2
No files found.
lib/python/webdav/client.py
View file @
ecec90d8
"""HTTP 1.1 / WebDAV client library."""
__version__
=
'$Revision: 1.
1
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
2
$'
[
11
:
-
2
]
import
sys
,
os
,
string
,
regex
,
time
,
types
import
socket
,
httplib
,
mimetools
...
...
@@ -573,15 +573,13 @@ class MultiPart:
}
a=Resource('
http
:
//
tarzan
.
digicool
.
com
/
dev
/
brian3
')
b=Resource('
http
:
//
tarzan
.
digicool
.
com
/
dev
/
brian3
',
username='
brian
',
password='
123
')
z=Resource('
http
:
//
www
.
zope
.
org
/
')
x=Resource('
http
:
//
sandbox
.
xerox
.
com
:
8080
/
')
bri =Resource('
http
:
//
tarzan
.
digicool
.
com
/
dev
/
brian3
/
',
username='
brian
',
password='
123
')
abri=Resource('
http
:
//
tarzan
.
digicool
.
com
/
dev
/
brian3
/
')
t=Resource('
http
:
//
tarzan
.
digicool
.
com
/
')
dav =Resource('
http
:
//
tarzan
.
digicool
.
com
/
dev
/
dav
/
',
username='
brian
',
password='
123
')
adav=Resource('
http
:
//
tarzan
.
digicool
.
com
/
dev
/
dav
/
')
f=Resource('
http
:
//
www
.
fwi
.
com
:
8080
/
',
username='
BrianL
',
password='
999999
')
lib/python/webdav/xmlcmds.py
View file @
ecec90d8
...
...
@@ -85,7 +85,7 @@
"""WebDAV xml request objects."""
__version__
=
'$Revision: 1.
4
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
5
$'
[
11
:
-
2
]
import
sys
,
os
,
string
from
common
import
absattr
,
aq_base
,
urlfix
...
...
@@ -172,7 +172,7 @@ class PropPatch:
attrs
=
{}
val
.
remap
({})
for
attr
in
val
.
attrs
():
md
[
attr
.
name
()]
=
attr
.
value
()
attrs
[
attr
.
name
()]
=
attr
.
value
()
md
=
{
'attrs'
:
attrs
,
'nsid'
:
val
.
__nskey__
}
item
=
(
val
.
name
(),
val
.
namespace
(),
val
.
strval
(),
md
)
vals
.
append
(
item
)
...
...
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