• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python resource.CalDAVResource类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中twistedcaldav.resource.CalDAVResource的典型用法代码示例。如果您正苦于以下问题:Python CalDAVResource类的具体用法?Python CalDAVResource怎么用?Python CalDAVResource使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了CalDAVResource类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: __init__

    def __init__(self, principalCollections, principalDirectory, uri):

        CalDAVResource.__init__(self, principalCollections=principalCollections)

        self.principalDirectory = principalDirectory
        self.uri = uri
        self.directory = None
开发者ID:nunb,项目名称:calendarserver,代码行数:7,代码来源:directorybackedaddressbook.py


示例2: __init__

 def __init__(self, principalCollections, isdir=False, defaultACL=authReadACL):
     """
     Make sure it is a collection.
     """
     CalDAVResource.__init__(self, principalCollections=principalCollections)
     DAVFile.__init__(self, NotFilePath(isfile=not isdir,isdir=isdir), principalCollections=principalCollections)
     self.defaultACL = defaultACL
开发者ID:svn2github,项目名称:calendarserver-raw,代码行数:7,代码来源:simpleresource.py


示例3: __init__

    def __init__(self, parent, record):
        """
        @param path: the path to the file which will back the resource.
        """
        assert parent is not None
        assert record is not None

        CalDAVResource.__init__(self)

        self.record = record
        self.parent = parent

        # Cache children which must be of a specific type
        childlist = (
            ("inbox" , ScheduleInboxResource ),
            ("outbox", ScheduleOutboxResource),
        )
        if config.EnableDropBox:
            childlist += (
                ("dropbox", DropBoxHomeResource),
            )
        if config.FreeBusyURL.Enabled:
            childlist += (
                ("freebusy", FreeBusyURLResource),
            )
        if config.Sharing.Enabled and config.Sharing.Calendars.Enabled:
            childlist += (
                ("notification", NotificationCollectionResource),
            )
        for name, cls in childlist:
            child = self.provisionChild(name)
            # assert isinstance(child, cls), "Child %r is not a %s: %r" % (name, cls.__name__, child)
            self.putChild(name, child)
开发者ID:svn2github,项目名称:calendarserver-raw,代码行数:33,代码来源:calendar.py


示例4: __init__

 def __init__(self, principalCollections, isdir=False, defaultACL=authReadACL):
     """
     Make sure it is a collection.
     """
     CalDAVResource.__init__(self, principalCollections=principalCollections)
     self._isDir = isdir
     self.defaultACL = defaultACL
开发者ID:anemitz,项目名称:calendarserver,代码行数:7,代码来源:simpleresource.py


示例5: testComplianceClasses

    def testComplianceClasses(self):
        resource = CalDAVResource()

        config.EnableProxyPrincipals = True
        self.assertTrue("calendar-proxy" in resource.davComplianceClasses())

        config.EnableProxyPrincipals = False
        self.assertTrue("calendar-proxy" not in resource.davComplianceClasses())
开发者ID:svn2github,项目名称:calendarserver-raw,代码行数:8,代码来源:test_config.py


示例6: __init__

    def __init__(self, parent):
        """
        @param parent: the parent resource of this one.
        """
        assert parent is not None

        CalDAVResource.__init__(self, principalCollections=parent.principalCollections())

        self.parent = parent
开发者ID:svn2github,项目名称:calendarserver-raw,代码行数:9,代码来源:schedule.py


示例7: test_isOwnerUnauthenticated

 def test_isOwnerUnauthenticated(self):
     """
     L{CalDAVResource.isOwner} returns C{False} for unauthenticated requests.
     """
     site = None
     request = SimpleRequest(site, "GET", "/not/a/real/url/")
     request.authzUser = request.authnUser = None
     rsrc = CalDAVResource()
     rsrc.owner = lambda igreq: HRef("/somebody/")
     self.assertEquals((yield rsrc.isOwner(request)), False)
开发者ID:nunb,项目名称:calendarserver,代码行数:10,代码来源:test_resource.py


示例8: test_isOwnerYes

 def test_isOwnerYes(self):
     """
     L{CalDAVResource.isOwner} returns C{True} for authenticated requests
     with a principal that matches the resource's owner.
     """
     site = None
     request = SimpleRequest(site, "GET", "/not/a/real/url/")
     request.authzUser = request.authnUser = StubPrincipal("/yes-i-am-the-owner/")
     rsrc = CalDAVResource()
     rsrc.owner = lambda igreq: HRef("/yes-i-am-the-owner/")
     self.assertEquals((yield rsrc.isOwner(request)), True)
开发者ID:nunb,项目名称:calendarserver,代码行数:11,代码来源:test_resource.py


示例9: CalDAVResourceTests

class CalDAVResourceTests(TestCase):
    def setUp(self):
        TestCase.setUp(self)
        self.resource = CalDAVResource()
        self.resource._dead_properties = InMemoryPropertyStore()

    def test_writeDeadPropertyWritesProperty(self):
        prop = StubProperty()
        self.resource.writeDeadProperty(prop)
        self.assertEquals(self.resource._dead_properties.get(("StubQnamespace", "StubQname")),
                          prop)
开发者ID:svn2github,项目名称:calendarserver-raw,代码行数:11,代码来源:test_resource.py


示例10: test_isOwnerReadPrincipal

 def test_isOwnerReadPrincipal(self):
     """
     L{CalDAVResource.isOwner} returns C{True} for authenticated requests
     with a principal that matches any principal configured in the
     L{AdminPrincipals} list.
     """
     theAdmin = "/read-only-admin/"
     self.patch(config, "ReadPrincipals", [theAdmin])
     site = None
     request = SimpleRequest(site, "GET", "/not/a/real/url/")
     request.authzUser = request.authnUser = StubPrincipal(theAdmin)
     rsrc = CalDAVResource()
     rsrc.owner = lambda igreq: HRef("/some-other-user/")
     self.assertEquals((yield rsrc.isOwner(request)), True)
开发者ID:nunb,项目名称:calendarserver,代码行数:14,代码来源:test_resource.py


示例11: __init__

    def __init__(self, parent, record):
        """
        @param path: the path to the file which will back the resource.
        """
        assert parent is not None
        assert record is not None

        CalDAVResource.__init__(self)

        self.record = record
        self.parent = parent

        childlist = ()
        if config.Sharing.Enabled and config.Sharing.AddressBooks.Enabled and not config.Sharing.Calendars.Enabled:
            childlist += (
                ("notification", NotificationCollectionResource),
            )
        for name, cls in childlist:
            child = self.provisionChild(name)
            assert isinstance(child, cls), "Child %r is not a %s: %r" % (name, cls.__name__, child)
            self.putChild(name, child)
开发者ID:svn2github,项目名称:calendarserver-raw,代码行数:21,代码来源:addressbook.py


示例12: testComplianceClasses

    def testComplianceClasses(self):
        resource = CalDAVResource()

        config.EnableProxyPrincipals = True
        self.assertTrue("calendar-proxy" in resource.davComplianceClasses())

        config.EnableProxyPrincipals = False
        self.assertTrue("calendar-proxy" not in resource.davComplianceClasses())

        self.assertTrue("calendarserver-group-sharee" in resource.davComplianceClasses())
        config.Sharing.Calendars.Groups.Enabled = False
        config.update()
        self.assertTrue("calendarserver-group-sharee" not in resource.davComplianceClasses())
        config.Sharing.Calendars.Groups.Enabled = True
        config.update()

        self.assertTrue("calendarserver-group-attendee" in resource.davComplianceClasses())
        config.GroupAttendees.Enabled = False
        config.update()
        self.assertTrue("calendarserver-group-attendee" not in resource.davComplianceClasses())
        config.GroupAttendees.Enabled = True
        config.update()
开发者ID:eventable,项目名称:CalendarServer,代码行数:22,代码来源:test_config.py


示例13: __init__

    def __init__(self, principalCollections, uri):

        CalDAVResource.__init__(self, principalCollections=principalCollections)

        self.uri = uri
        self.directory = None  # creates directory attribute
开发者ID:svn2github,项目名称:calendarserver-raw,代码行数:6,代码来源:directorybackedaddressbook.py


示例14: __init__

 def __init__(self, parent):
     self._parent = parent
     CalDAVResource.__init__(self)
开发者ID:eventable,项目名称:CalendarServer,代码行数:3,代码来源:notifications.py


示例15: setUp

 def setUp(self):
     TestCase.setUp(self)
     self.resource = CalDAVResource()
     self.resource._dead_properties = InMemoryPropertyStore()
开发者ID:nunb,项目名称:calendarserver,代码行数:4,代码来源:test_resource.py



注:本文中的twistedcaldav.resource.CalDAVResource类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python util.SimpleStoreRequest类代码示例发布时间:2022-05-27
下一篇:
Python ical.Component类代码示例发布时间:2022-05-27
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap