~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to twisted/web2/dav/noneprops.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-01-17 14:52:35 UTC
  • mfrom: (1.1.5 upstream) (2.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20070117145235-btmig6qfmqfen0om
Tags: 2.5.0-0ubuntu1
New upstream version, compatible with python2.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##
 
2
# Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
 
3
#
 
4
# Permission is hereby granted, free of charge, to any person obtaining a copy
 
5
# of this software and associated documentation files (the "Software"), to deal
 
6
# in the Software without restriction, including without limitation the rights
 
7
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
8
# copies of the Software, and to permit persons to whom the Software is
 
9
# furnished to do so, subject to the following conditions:
 
10
 
11
# The above copyright notice and this permission notice shall be included in all
 
12
# copies or substantial portions of the Software.
 
13
 
14
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
15
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
16
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
17
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
18
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
19
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 
20
# SOFTWARE.
 
21
#
 
22
# DRI: Wilfredo Sanchez, wsanchez@apple.com
 
23
##
 
24
 
 
25
"""
 
26
Empty DAV property store.
 
27
 
 
28
This API is considered private to static.py and is therefore subject to
 
29
change.
 
30
"""
 
31
 
 
32
__all__ = ["NonePropertyStore"]
 
33
 
 
34
from twisted.web2 import responsecode
 
35
from twisted.web2.http import HTTPError, StatusResponse
 
36
 
 
37
class NonePropertyStore (object):
 
38
    """
 
39
    DAV property store which contains no properties and does not allow
 
40
    properties to be set.
 
41
    """
 
42
    __singleton = None
 
43
 
 
44
    def __new__(clazz, resource):
 
45
        if NonePropertyStore.__singleton is None:
 
46
            NonePropertyStore.__singleton = object.__new__(clazz)
 
47
        return NonePropertyStore.__singleton
 
48
 
 
49
    def __init__(self, resource):
 
50
        pass
 
51
 
 
52
    def get(self, qname):
 
53
        raise HTTPError(StatusResponse(responsecode.NOT_FOUND, "No such property: {%s}%s" % qname))
 
54
 
 
55
    def set(self, property):
 
56
        raise HTTPError(StatusResponse(responsecode.FORBIDDEN, "Permission denied for setting property: %s" % (property,)))
 
57
 
 
58
    def delete(self, qname):
 
59
        raise HTTPError(StatusResponse(responsecode.NOT_FOUND, "No such property: {%s}%s" % qname))
 
60
 
 
61
    def contains(self, qname):
 
62
        return False
 
63
 
 
64
    def list(self):
 
65
        return ()