You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by pn...@apache.org on 2002/05/02 14:35:18 UTC

cvs commit: jakarta-slide/src/webdav/server/org/apache/slide/webdav/method PropFindMethod.java

pnever      02/05/02 05:35:18

  Modified:    src/webdav/server/org/apache/slide/webdav/method
                        PropFindMethod.java
  Log:
  Ignore RevisionDescriptorNotFoundException for getLabeledResourceUri() call in parseRequest()
  
  Revision  Changes    Path
  1.66      +5 -3      jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/PropFindMethod.java
  
  Index: PropFindMethod.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/PropFindMethod.java,v
  retrieving revision 1.65
  retrieving revision 1.66
  diff -u -r1.65 -r1.66
  --- PropFindMethod.java	30 Apr 2002 12:59:37 -0000	1.65
  +++ PropFindMethod.java	2 May 2002 12:35:18 -0000	1.66
  @@ -1,7 +1,7 @@
   /*
  - * $Header: /home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/PropFindMethod.java,v 1.65 2002/04/30 12:59:37 juergen Exp $
  - * $Revision: 1.65 $
  - * $Date: 2002/04/30 12:59:37 $
  + * $Header: /home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/PropFindMethod.java,v 1.66 2002/05/02 12:35:18 pnever Exp $
  + * $Revision: 1.66 $
  + * $Date: 2002/05/02 12:35:18 $
    *
    * ====================================================================
    *
  @@ -236,6 +236,8 @@
                   sendPreconditionViolation(new PreconditionViolationException(violatedPrecondition,
                                                                                resourcePath));
                   throw new WebdavException(getErrorCode((Exception)e));
  +            }
  +            catch( RevisionDescriptorNotFoundException x ) {
               }
               catch (SlideException e) {
                   resp.sendError(getErrorCode((Exception)e));
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>