From bbf026d4e7b9718e952fdbb46a3081d9a978ce0b Mon Sep 17 00:00:00 2001 From: yomguy Date: Tue, 22 Jan 2008 23:03:20 +0000 Subject: [PATCH] git-svn-id: http://svn.parisson.org/svn/tools/trunk@34 457c0346-1240-4656-8a5a-9edca8063506 --- python-dav/davlib.py | 316 +++++++ python-dav/log.txt | 1969 ------------------------------------------ 2 files changed, 316 insertions(+), 1969 deletions(-) create mode 100644 python-dav/davlib.py delete mode 100644 python-dav/log.txt diff --git a/python-dav/davlib.py b/python-dav/davlib.py new file mode 100644 index 0000000..a88c702 --- /dev/null +++ b/python-dav/davlib.py @@ -0,0 +1,316 @@ +# +# DAV client library +# +# Copyright (C) 1998-2000 Guido van Rossum. All Rights Reserved. +# Written by Greg Stein. Given to Guido. Licensed using the Python license. +# +# This module is maintained by Greg and is available at: +# http://www.lyra.org/greg/python/davlib.py +# +# Since this isn't in the Python distribution yet, we'll use the CVS ID +# for tracking: +# $Id: davlib.py,v 1.7 2000/06/11 10:04:49 gstein Exp $ +# + +import httplib +import urllib +import string +import types +import mimetypes +import qp_xml + + +INFINITY = 'infinity' +XML_DOC_HEADER = '' +XML_CONTENT_TYPE = 'text/xml; charset="utf-8"' + +# block size for copying files up to the server +BLOCKSIZE = 16384 + + +class HTTPConnectionAuth(httplib.HTTPConnection): + def __init__(self, *args, **kw): + apply(httplib.HTTPConnection.__init__, (self,) + args, kw) + + self.__username = None + self.__password = None + self.__nonce = None + self.__opaque = None + + def setauth(self, username, password): + self.__username = username + self.__password = password + + +def _parse_status(elem): + text = elem.textof() + idx1 = string.find(text, ' ') + idx2 = string.find(text, ' ', idx1+1) + return int(text[idx1:idx2]), text[idx2+1:] + +class _blank: + def __init__(self, **kw): + self.__dict__.update(kw) +class _propstat(_blank): pass +class _response(_blank): pass +class _multistatus(_blank): pass + +def _extract_propstat(elem): + ps = _propstat(prop={}, status=None, responsedescription=None) + for child in elem.children: + if child.ns != 'DAV:': + continue + if child.name == 'prop': + for prop in child.children: + ps.prop[(prop.ns, prop.name)] = prop + elif child.name == 'status': + ps.status = _parse_status(child) + elif child.name == 'responsedescription': + ps.responsedescription = child.textof() + ### unknown element name + + return ps + +def _extract_response(elem): + resp = _response(href=[], status=None, responsedescription=None, propstat=[]) + for child in elem.children: + if child.ns != 'DAV:': + continue + if child.name == 'href': + resp.href.append(child.textof()) + elif child.name == 'status': + resp.status = _parse_status(child) + elif child.name == 'responsedescription': + resp.responsedescription = child.textof() + elif child.name == 'propstat': + resp.propstat.append(_extract_propstat(child)) + ### unknown child element + + return resp + +def _extract_msr(root): + if root.ns != 'DAV:' or root.name != 'multistatus': + raise 'invalid response: expected' + + msr = _multistatus(responses=[ ], responsedescription=None) + + for child in root.children: + if child.ns != 'DAV:': + continue + if child.name == 'responsedescription': + msr.responsedescription = child.textof() + elif child.name == 'response': + msr.responses.append(_extract_response(child)) + ### unknown child element + + return msr + +def _extract_locktoken(root): + if root.ns != 'DAV:' or root.name != 'prop': + raise 'invalid response: expected' + elem = root.find('lockdiscovery', 'DAV:') + if not elem: + raise 'invalid response: expected' + elem = elem.find('activelock', 'DAV:') + if not elem: + raise 'invalid response: expected' + elem = elem.find('locktoken', 'DAV:') + if not elem: + raise 'invalid response: expected' + elem = elem.find('href', 'DAV:') + if not elem: + raise 'invalid response: expected' + return elem.textof() + + +class DAVResponse(httplib.HTTPResponse): + def parse_multistatus(self): + self.root = qp_xml.Parser().parse(self) + self.msr = _extract_msr(self.root) + + def parse_lock_response(self): + self.root = qp_xml.Parser().parse(self) + self.locktoken = _extract_locktoken(self.root) + + +class DAV(HTTPConnectionAuth): + + response_class = DAVResponse + + def get(self, url, extra_hdrs={ }): + return self._request('GET', url, extra_hdrs=extra_hdrs) + + def head(self, url, extra_hdrs={ }): + return self._request('HEAD', url, extra_hdrs=extra_hdrs) + + def post(self, url, data={ }, body=None, extra_hdrs={ }): + headers = extra_hdrs.copy() + + assert body or data, "body or data must be supplied" + assert not (body and data), "cannot supply both body and data" + if data: + body = '' + for key, value in data.items(): + if isinstance(value, types.ListType): + for item in value: + body = body + '&' + key + '=' + urllib.quote(str(item)) + else: + body = body + '&' + key + '=' + urllib.quote(str(value)) + body = body[1:] + headers['Content-Type'] = 'application/x-www-form-urlencoded' + + return self._request('POST', url, body, headers) + + def options(self, url='*', extra_hdrs={ }): + return self._request('OPTIONS', url, extra_hdrs=extra_hdrs) + + def trace(self, url, extra_hdrs={ }): + return self._request('TRACE', url, extra_hdrs=extra_hdrs) + + def put(self, url, contents, + content_type=None, content_enc=None, extra_hdrs={ }): + + if not content_type: + content_type, content_enc = mimetypes.guess_type(url) + + headers = extra_hdrs.copy() + if content_type: + headers['Content-Type'] = content_type + if content_enc: + headers['Content-Encoding'] = content_enc + return self._request('PUT', url, contents, headers) + + def delete(self, url, extra_hdrs={ }): + return self._request('DELETE', url, extra_hdrs=extra_hdrs) + + def propfind(self, url, body=None, depth=None, extra_hdrs={ }): + headers = extra_hdrs.copy() + headers['Content-Type'] = XML_CONTENT_TYPE + if depth is not None: + headers['Depth'] = str(depth) + return self._request('PROPFIND', url, body, headers) + + def proppatch(self, url, body, extra_hdrs={ }): + headers = extra_hdrs.copy() + headers['Content-Type'] = XML_CONTENT_TYPE + return self._request('PROPPATCH', url, body, headers) + + def mkcol(self, url, extra_hdrs={ }): + return self._request('MKCOL', url, extra_hdrs) + + def move(self, src, dst, extra_hdrs={ }): + headers = extra_hdrs.copy() + headers['Destination'] = dst + return self._request('MOVE', src, extra_hdrs=headers) + + def copy(self, src, dst, depth=None, extra_hdrs={ }): + headers = extra_hdrs.copy() + headers['Destination'] = dst + if depth is not None: + headers['Depth'] = str(depth) + return self._request('COPY', src, extra_hdrs=headers) + + def lock(self, url, owner='', timeout=None, depth=None, + scope='exclusive', type='write', extra_hdrs={ }): + headers = extra_hdrs.copy() + headers['Content-Type'] = XML_CONTENT_TYPE + if depth is not None: + headers['Depth'] = str(depth) + if timeout is not None: + headers['Timeout'] = timeout + body = XML_DOC_HEADER + \ + '' + \ + '' % scope + \ + '' % type + \ + owner + \ + '' + return self._request('LOCK', url, body, extra_hdrs=headers) + + def unlock(self, url, locktoken, extra_hdrs={ }): + headers = extra_hdrs.copy() + if locktoken[0] != '<': + locktoken = '<' + locktoken + '>' + headers['Lock-Token'] = locktoken + return self._request('UNLOCK', url, extra_hdrs=headers) + + def _request(self, method, url, body=None, extra_hdrs={}): + "Internal method for sending a request." + + self.request(method, url, body, extra_hdrs) + return self.getresponse() + + + # + # Higher-level methods for typical client use + # + + def allprops(self, url, depth=None): + return self.propfind(url, depth=depth) + + def propnames(self, url, depth=None): + body = XML_DOC_HEADER + \ + '' + return self.propfind(url, body, depth) + + def getprops(self, url, *names, **kw): + assert names, 'at least one property name must be provided' + if kw.has_key('ns'): + xmlns = ' xmlns:NS="' + kw['ns'] + '"' + ns = 'NS:' + del kw['ns'] + else: + xmlns = ns = '' + if kw.has_key('depth'): + depth = kw['depth'] + del kw['depth'] + else: + depth = 0 + assert not kw, 'unknown arguments' + body = XML_DOC_HEADER + \ + '<' + ns + \ + string.joinfields(names, '/><' + ns) + \ + '/>' + return self.propfind(url, body, depth) + + def delprops(self, url, *names, **kw): + assert names, 'at least one property name must be provided' + if kw.has_key('ns'): + xmlns = ' xmlns:NS="' + kw['ns'] + '"' + ns = 'NS:' + del kw['ns'] + else: + xmlns = ns = '' + assert not kw, 'unknown arguments' + body = XML_DOC_HEADER + \ + '<' + ns + \ + string.joinfields(names, '/><' + ns) + \ + '/>' + return self.proppatch(url, body) + + def setprops(self, url, *xmlprops, **props): + assert xmlprops or props, 'at least one property must be provided' + xmlprops = list(xmlprops) + if props.has_key('ns'): + xmlns = ' xmlns:NS="' + props['ns'] + '"' + ns = 'NS:' + del props['ns'] + else: + xmlns = ns = '' + for key, value in props.items(): + if value: + xmlprops.append('<%s%s>%s' % (ns, key, value, ns, key)) + else: + xmlprops.append('<%s%s/>' % (ns, key)) + elems = string.joinfields(xmlprops, '') + body = XML_DOC_HEADER + \ + '' + \ + elems + \ + '' + return self.proppatch(url, body) + + def get_lock(self, url, owner='', timeout=None, depth=None): + response = self.lock(url, owner, timeout, depth) + response.parse_lock_response() + return response.locktoken diff --git a/python-dav/log.txt b/python-dav/log.txt deleted file mode 100644 index cccb51e..0000000 --- a/python-dav/log.txt +++ /dev/null @@ -1,1969 +0,0 @@ -REQUEST: PUT /dav/foo.html -STATUS: 401 -REASON: Unauthorized -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 687 -Content-Length: 213 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Unauthorized -Bobo-Exception-File: HTTPResponse.py -WWW-Authenticate: basic realm="Zope" ----------------------------------------------------------------------- - - - -foo.html - - - You are not authorized to access this resource. - - - - - ----------------------------------------------------------------------- -REQUEST: OPTIONS /dav/foo.html -STATUS: 200 -REASON: OK -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Accept-Ranges: none -Content-Length: 0 -Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK -DAV: 1,2 ----------------------------------------------------------------------- - ----------------------------------------------------------------------- -REQUEST: DELETE /dav/foo.html -STATUS: 401 -REASON: Unauthorized -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 687 -Content-Length: 213 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Unauthorized -Bobo-Exception-File: HTTPResponse.py -WWW-Authenticate: basic realm="Zope" ----------------------------------------------------------------------- - - - -foo.html - - - You are not authorized to access this resource. - - - - - ----------------------------------------------------------------------- -REQUEST: DELETE /dav/newdir -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: MKCOL /dav/newdir -STATUS: 409 -REASON: Conflict -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 65 -Content-Length: 828 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Conflict -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: Conflict
- Error Value: Collection ancestors must already exist.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: MKCOL /dav/newdir/another -STATUS: 409 -REASON: Conflict -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 65 -Content-Length: 828 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Conflict -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: Conflict
- Error Value: Collection ancestors must already exist.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PROPFIND /dav -STATUS: 401 -REASON: Unauthorized -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 687 -Content-Length: 200 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Unauthorized -Bobo-Exception-File: HTTPResponse.py -WWW-Authenticate: basic realm="Zope" ----------------------------------------------------------------------- - - - -Zope - - - You are not authorized to access this resource. - - - - - ----------------------------------------------------------------------- -REQUEST: PROPFIND /dav -STATUS: 401 -REASON: Unauthorized -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 687 -Content-Length: 200 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Unauthorized -Bobo-Exception-File: HTTPResponse.py -WWW-Authenticate: basic realm="Zope" ----------------------------------------------------------------------- - - - -Zope - - - You are not authorized to access this resource. - - - - - ----------------------------------------------------------------------- -REQUEST: PROPFIND /dav -STATUS: 401 -REASON: Unauthorized -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 687 -Content-Length: 200 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Unauthorized -Bobo-Exception-File: HTTPResponse.py -WWW-Authenticate: basic realm="Zope" ----------------------------------------------------------------------- - - - -Zope - - - You are not authorized to access this resource. - - - - - ----------------------------------------------------------------------- -REQUEST: PROPFIND /dav -STATUS: 401 -REASON: Unauthorized -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 687 -Content-Length: 200 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Unauthorized -Bobo-Exception-File: HTTPResponse.py -WWW-Authenticate: basic realm="Zope" ----------------------------------------------------------------------- - - - -Zope - - - You are not authorized to access this resource. - - - - - ----------------------------------------------------------------------- -REQUEST: PROPPATCH /dav -STATUS: 401 -REASON: Unauthorized -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 687 -Content-Length: 200 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Unauthorized -Bobo-Exception-File: HTTPResponse.py -WWW-Authenticate: basic realm="Zope" ----------------------------------------------------------------------- - - - -Zope - - - You are not authorized to access this resource. - - - - - ----------------------------------------------------------------------- -REQUEST: PROPPATCH /dav -STATUS: 401 -REASON: Unauthorized -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 687 -Content-Length: 200 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Unauthorized -Bobo-Exception-File: HTTPResponse.py -WWW-Authenticate: basic realm="Zope" ----------------------------------------------------------------------- - - - -Zope - - - You are not authorized to access this resource. - - - - - ----------------------------------------------------------------------- -REQUEST: PUT /dav/blah.cgi -STATUS: 409 -REASON: Conflict -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 65 -Content-Length: 828 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Conflict -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: Conflict
- Error Value: Collection ancestors must already exist.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PUT /dav/file1 -STATUS: 409 -REASON: Conflict -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 65 -Content-Length: 828 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Conflict -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: Conflict
- Error Value: Collection ancestors must already exist.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: MOVE /dav/blah.cgi -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: COPY /dav/subdir -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PROPPATCH /dav/file1 -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PROPFIND /dav/foo.cgi -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: DELETE /dav/testdata -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: MKCOL /dav/testdata -STATUS: 409 -REASON: Conflict -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 65 -Content-Length: 828 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Conflict -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: Conflict
- Error Value: Collection ancestors must already exist.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PUT /dav/testdata/file1 -STATUS: 409 -REASON: Conflict -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 65 -Content-Length: 828 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Conflict -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: Conflict
- Error Value: Collection ancestors must already exist.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PUT /dav/testdata/file2 -STATUS: 409 -REASON: Conflict -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 65 -Content-Length: 828 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Conflict -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: Conflict
- Error Value: Collection ancestors must already exist.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PUT /dav/testdata/file3 -STATUS: 409 -REASON: Conflict -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 65 -Content-Length: 828 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Conflict -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: Conflict
- Error Value: Collection ancestors must already exist.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: MKCOL /dav/testdata/sub -STATUS: 409 -REASON: Conflict -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 65 -Content-Length: 828 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Conflict -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: Conflict
- Error Value: Collection ancestors must already exist.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PUT /dav/testdata/sub/file1 -STATUS: 409 -REASON: Conflict -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 65 -Content-Length: 828 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Conflict -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: Conflict
- Error Value: Collection ancestors must already exist.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PUT /dav/testdata/sub/file2 -STATUS: 409 -REASON: Conflict -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 65 -Content-Length: 828 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Conflict -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: Conflict
- Error Value: Collection ancestors must already exist.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PUT /dav/testdata/sub/file3 -STATUS: 409 -REASON: Conflict -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 65 -Content-Length: 828 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: Conflict -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: Conflict
- Error Value: Collection ancestors must already exist.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PROPPATCH /dav/testdata -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PROPPATCH /dav/testdata/file1 -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PROPPATCH /dav/testdata/file2 -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PROPPATCH /dav/testdata/file3 -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PROPPATCH /dav/testdata/sub -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PROPPATCH /dav/testdata/sub/file1 -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PROPPATCH /dav/testdata/sub/file2 -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:17 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PROPPATCH /dav/testdata/sub/file3 -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:18 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: MOVE /dav/testdata/file1 -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:18 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: MOVE /dav/testdata/sub -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:18 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: MOVE /dav/testdata/newsub/file2 -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:18 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: COPY /dav/testdata/newsub/file3 -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:18 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: COPY /dav/testdata/newsub/file1 -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:18 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: COPY /dav/testdata/newsub -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:18 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -REQUEST: PROPFIND /dav/testdata -STATUS: 404 -REASON: Not Found -Server: Zope/(Zope 2.9.7-final, python 2.4.4, linux2) ZServer/1.1 -Date: Sat, 16 Jun 2007 09:30:18 GMT -Bobo-Exception-Line: 66 -Content-Length: 825 -Bobo-Exception-Value: See the server error log for details -Content-Type: text/html; charset=iso-8859-15 -Bobo-Exception-Type: NotFound -Bobo-Exception-File: NullResource.py ----------------------------------------------------------------------- - - Zope - - - -

Site Error

- -

An error was encountered while publishing this resource. -

- -

- Error Type: NotFound
- Error Value: The requested resource was not found.
-

- -
- -

Troubleshooting Suggestions

- -
    -
  • The URL may be incorrect.
  • -
  • The parameters passed to this resource may be incorrect.
  • -
  • A resource that this resource relies on may be encountering - an error.
  • -
- -

For more detailed information about the error, please - refer to the error log. -

- -

If the error persists please contact the site maintainer. - Thank you for your patience. -

- - - - - - - ----------------------------------------------------------------------- -- 2.39.5