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

« back to all changes in this revision

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

  • Committer: Fabien Pinckaers
  • Date: 2007-10-01 19:40:45 UTC
  • Revision ID: fp@tinyerp.com-15d89d735ac468ebe966d8e63cc9bc8efb592b72
Moved Document and Base Synchro to SFD

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