src/server/plugins/postgresql/webdav.c

branch
webdav
changeset 372
1d2538a1ba8f
parent 370
d6d8c86c95c3
child 374
77506ec632a4
equal deleted inserted replaced
371:ea836c4f7341 372:1d2538a1ba8f
269 static const char *sql_proppatch_remove = "\ 269 static const char *sql_proppatch_remove = "\
270 delete from Property where resource_id = $1 and xmlns = $2 and pname = $3"; 270 delete from Property where resource_id = $1 and xmlns = $2 and pname = $3";
271 271
272 272
273 void* pg_webdav_init(ServerConfiguration *cfg, pool_handle_t *pool, WSConfigNode *config) { 273 void* pg_webdav_init(ServerConfiguration *cfg, pool_handle_t *pool, WSConfigNode *config) {
274 return pg_init_repo(pool, config); 274 return pg_init_repo(cfg, pool, config);
275 } 275 }
276 276
277 WebdavBackend* pg_webdav_create(Session *sn, Request *rq, pblock *pb, void *initData) { 277 WebdavBackend* pg_webdav_create(Session *sn, Request *rq, pblock *pb, void *initData) {
278 PgRepository *repo = initData; 278 PgRepository *repo = initData;
279 279

mercurial