WebDAV: Difference between revisions

Content deleted Content added
WikiCleanerBot (talk | contribs)
m v2.05b - Bot T20 CW#61 - Fix errors for CW project (Reference before punctuation)
Implementation: Show the added HTTP verbs in a table
Line 30:
WebDAV extends the set of standard HTTP verbs and headers allowed for [[Hypertext Transfer Protocol#Request methods|request methods]]. The added verbs include:
 
{| class="wikitable"
'''COPY''': copy a resource from one [[uniform resource identifier]] (URI) to another
! Verb
'''LOCK''': put a [[lock (computer science)|lock]] on a resource. WebDAV supports both shared and exclusive locks.
! Action
'''MKCOL''': create collections (also known as a [[folder (computing)|directory]])
|-
'''MOVE''': move a resource from one URI to another
| '''COPY'''
'''PROPFIND''': retrieve properties, stored as [[XML]], from a [[web resource]]. It is also [[method overloading|overloaded]] to allow one to retrieve the collection structure (also known as directory hierarchy) of a remote system.
'''COPY''':| copy a resource from one [[uniform resource identifier]] (URI) to another
'''PROPPATCH''': change and delete multiple properties on a resource in a single [[atomic commit|atomic act]]
|-
'''UNLOCK''': remove a lock from a resource
| '''LOCK'''
'''LOCK''':| put a [[lock (computer science)|lock]] on a resource. WebDAV supports both shared and exclusive locks.
|-
| '''MKCOL'''
'''MKCOL''':| create collections (also known as a [[folder (computing)|directory]])
|-
| '''MOVE'''
'''MOVE''':| move a resource from one URI to another
|-
| '''PROPFIND'''
'''PROPFIND''':| retrieve properties, stored as [[XML]], from a [[web resource]]. It is also [[method overloading|overloaded]] to allow one to retrieve the collection structure (also known as directory hierarchy) of a remote system.
|-
| '''PROPPATCH'''
'''PROPPATCH''':| change and delete multiple properties on a resource in a single [[atomic commit|atomic act]]
|-
| '''UNLOCK'''
'''UNLOCK''':| remove a lock from a resource
|}
 
=== Properties ===