1. 28 Nov, 2000 16 commits
  2. 27 Nov, 2000 12 commits
  3. 26 Nov, 2000 5 commits
  4. 25 Nov, 2000 1 commit
  5. 24 Nov, 2000 1 commit
  6. 23 Nov, 2000 5 commits
    • Joshua Slive's avatar
      39644c67
    • Greg Stein's avatar
      a9860c7c
    • Greg Stein's avatar
      shift some processing of "core" WebDAV properties out of the generic · 81019eac
      Greg Stein authored
      property handling code, and into a new, core liveprop handler.
      
      *) add std_liveprop.c to deal with the core DAV properties
      *) move DAV:resourcetype, DAV:supported-method-set,
         DAV:supported-live-property-set, and DAV:supported-report-set over to the
         new handler
      *) props.c::dav_get_allprops() should not look in the deadprop database for
         the DAV:resourcetype -- it is readonly, so should never be in there.
      *) strip vsn_hooks from the propdb; only the core liveprops need it now
      *) mod_dav.c: register the core liveprop hooks and URIs
      *) fs/repos.c: stripped DAV:displayname and DAV:source, in favor of letting
         the core handler deal with them.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87075 13f79535-47bb-0310-9956-ffa450edef68
      81019eac
    • Greg Stein's avatar
      312bcac0
    • Greg Stein's avatar
      More revamping of live properties. Focused around the fact that a provider's · e1c4f4f1
      Greg Stein authored
      hooks are only called if that provider defines the prop (e.g. NOTME return
      values are no longer needed). Also refactored some code to simplify liveprop
      management for providers (assuming they don't have "funny" stuff).
      
      *) enumerate all known DAV properties (DAV_PROPID_* in mod_dav.h)
         - use these in fs/repos.c rather than DAV_PROPID_FS_*
         - will use in SVN and a second-round whack on the "core" props in props.c
      *) refactor dav_fs_liveprop_name to dav_liveprop_spec and add a writeable
         flag
      *) add dav_liveprop_group to hold a number of "top-level" items to pass to
         the new liveprop utility functions
      *) add dav_do_find_liveprop() as a util for the find_liveprop hook function
         - toss repos.c::dav_fs_find_prop
         - use the new function for repos.c::dav_fs_find_liveprop
      *) rebuild dav_register_liveprop_namespace() as a full "group" registration
         which will handle all the namespaces in a liveprop provider. The new func
         is called dav_register_liveprop_group().
      *) add dav_get_liveprop_info() to look up liveprop info given a provider's
         propid. used in dav_fs_insert_prop() and dav_fs_is_writeable()
      *) fold dav_fs_insert_all() directly into dav_fs_insert_all_liveprops()
         since the former wasn't called by anything else
      *) rename var in dav_fs_insert_prop() to "global_ns" to clarify its purpose.
         torch a couple out-of-date comments in there.
      *) toss dav_prop_rw type and simplify is_writeable hook. fix up calling of
         hook in props.c::dav_rw_liveprop(). dav_rw_liveprop() should also call
         the provider *first*, if one has stated it is handling the property.
      *) toss DAV_PROP_INSERT_NOTME since we can't call a provider's insert_prop
         with somebody else's liveprop
      *) remove DAV_IS_CORE_PROP() in props.c. a core prop is not defined by its
         propid, but by provider==NULL. add comments to clarify when that happens.
      *) fix sub-request creation to include new next-filter arg
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87073 13f79535-47bb-0310-9956-ffa450edef68
      e1c4f4f1