juergen     02/04/24 22:48:34

  Modified:    src/webdav/server/org/apache/slide/webdav/util
                        PropertyRetrieverImpl.java
  Log:
  Skip DeltaV specific properties in allprop request if flag 'allpropSupportsDeltav' 
is false.
  (ralf)
  
  Revision  Changes    Path
  1.10      +9 -4      
jakarta-slide/src/webdav/server/org/apache/slide/webdav/util/PropertyRetrieverImpl.java
  
  Index: PropertyRetrieverImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/util/PropertyRetrieverImpl.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- PropertyRetrieverImpl.java        23 Apr 2002 08:16:39 -0000      1.9
  +++ PropertyRetrieverImpl.java        25 Apr 2002 05:48:34 -0000      1.10
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/util/PropertyRetrieverImpl.java,v
 1.9 2002/04/23 08:16:39 pnever Exp $
  - * $Revision: 1.9 $
  - * $Date: 2002/04/23 08:16:39 $
  + * $Header: 
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/util/PropertyRetrieverImpl.java,v
 1.10 2002/04/25 05:48:34 juergen Exp $
  + * $Revision: 1.10 $
  + * $Date: 2002/04/25 05:48:34 $
    *
    * ====================================================================
    *
  @@ -135,7 +135,7 @@
    * providing property information (<code>PropFindMethod</code>,
    * <code>ReportMethod</code>) should use this class.
    *
  - * @version $Revision: 1.9 $
  + * @version $Revision: 1.10 $
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Ralf Stuckert</a>
    */
  @@ -582,6 +582,11 @@
                               (NodeProperty.DEFAULT_NAMESPACE.equals(
                                    currentProperty.getNamespace()))) {
                           // skip owner property
  +                        continue;
  +                    }
  +                    if ( !allpropSupportsDeltaV &&
  +                        
DeltavConstants.DELTAV_PROPERTY_LIST.contains(currentProperty.getName()) ) {
  +                        // skip DeltaV properties
                           continue;
                       }
                       generateNamespaceAbbreviation(
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to