1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 #include "versioning.h"
30
31 int webdav_version_control(pblock *pb, Session *sn, Request *rq) {
32 return REQ_ABORTED;
33 }
34
35 int webdav_checkout(pblock *pb, Session *sn, Request *rq) {
36 return REQ_ABORTED;
37 }
38
39 int webdav_checkin(pblock *pb, Session *sn, Request *rq) {
40 return REQ_ABORTED;
41 }
42
43 int webdav_uncheckout(pblock *pb, Session *sn, Request *rq) {
44 return REQ_ABORTED;
45 }
46
47 int webdav_mkworkspace(pblock *pb, Session *sn, Request *rq) {
48 return REQ_ABORTED;
49 }
50
51 int webdav_update(pblock *pb, Session *sn, Request *rq) {
52 return REQ_ABORTED;
53 }
54
55 int webdav_label(pblock *pb, Session *sn, Request *rq) {
56 return REQ_ABORTED;
57 }
58
59 int webdav_merge(pblock *pb, Session *sn, Request *rq) {
60 return REQ_ABORTED;
61 }
62