~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to document_webdav_old/webdav/DAV/constants.py

  • Committer: Fabien Pinckaers
  • Date: 2008-12-12 09:09:57 UTC
  • Revision ID: fp@tinyerp.com-20081212090957-cson0n0jove7dt7i
document_webdav

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""
 
2
 
 
3
constants definition
 
4
 
 
5
 
 
6
"""
 
7
 
 
8
# definition for resourcetype
 
9
COLLECTION=1
 
10
OBJECT=None
 
11
DAV_PROPS=['creationdate', 'displayname', 'getcontentlanguage', 'getcontentlength', 'getcontenttype', 'getetag', 'getlastmodified', 'lockdiscovery', 'resourcetype', 'source', 'supportedlock']
 
12
 
 
13
 
 
14
# Request classes in propfind
 
15
 
 
16
RT_ALLPROP=1
 
17
RT_PROPNAME=2
 
18
RT_PROP=3