juergen     01/09/19 07:39:20

  Modified:    src/webdav/server/org/apache/slide/webdav/method
                        GetMethod.java
  Log:
  Apache did not refresh content. reason was, instead of lastModified the property 
createdAt was used (this is in the ISO format, not accepted by http).
  
  Revision  Changes    Path
  1.17      +4 -4      
jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/GetMethod.java
  
  Index: GetMethod.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/GetMethod.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- GetMethod.java    2001/09/04 17:37:57     1.16
  +++ GetMethod.java    2001/09/19 14:39:20     1.17
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/GetMethod.java,v
 1.16 2001/09/04 17:37:57 juergen Exp $
  - * $Revision: 1.16 $
  - * $Date: 2001/09/04 17:37:57 $
  + * $Header: 
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/GetMethod.java,v
 1.17 2001/09/19 14:39:20 juergen Exp $
  + * $Revision: 1.17 $
  + * $Date: 2001/09/19 14:39:20 $
    *
    * ====================================================================
    *
  @@ -219,7 +219,7 @@
                       resp.setHeader("ETag", getETag(resourceInfo, true));
                       resp.addHeader
                           ("Last-Modified",
  -                         revisionDescriptor.getCreationDate().toString());
  +                         revisionDescriptor.getLastModified().toString());
                       
                       if ( ((ranges == null) || (ranges.isEmpty()))
                           && (req.getHeader("Range") == null) ) {
  
  
  

Reply via email to