创建用于本地同步的中央日历 (iCal/CalDAV/???)
目前我正在开发的一个网站有一个基于网络的即将发生的事件的日历。我们正在研究扩展此功能的可能性,以便人们可以在本地访问日历数据 - 如果可能的话,通过交换、谷歌日历或任何其他主要日历程序。
我的问题是如何实施这一点。日记可能会发生变化,这需要同步到本地日历中,而无需用户输入。
这可以通过 iCal 文件实现吗?
CalDAV 似乎是一个不错的选择,但关于创建/维护 CalCAV 文件的文档很少。有谁知道这方面有什么好的资源吗? CalDAV 和 Exchange 是否可以协同工作?
人们是否还有其他成功的替代选择?
Currently a website I'm working on has a web-based calendar of upcoming events. We are looking into the possiblilty of expanding this so that people can locally access the calendar data - if possible through exchange, google calendar or any other major calendar program.
My question is on how to implement this. The diary is likely to change and this needs to be synced into the local calendars without user input.
Is this possible with an iCal file?
CalDAV seems a good alternative, but there is little documentation on creating/mantaining a CalCAV file. Does anyone know of any good resources on this? And is it possible to get CalDAV and exchange working together?
Are there any other alternate options that people have had success with?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我发现可以使用 .ics (iCal) 文件。重要的是用户如何将其添加到日历中。如果他们下载副本然后将其添加到本地日历,那么它不会自动更新。然而,如果他们说这是一个网络日历并将他们的计算机指向 iCal 文件的 URL,那么任何更改都将镜像到他们的本地日历上。
I've found it's possible with an .ics (iCal) file. It's just how the user adds it into their calender that matters. If they download a copy then add that to their local calender then it won't auto update. However, if they say it's a web calender and point their computer towards the url of the iCal file then any alteration will be mirror onto their local calender.
我用数据库支持日历,并通过 HTML 和 iCal 界面提供数据。
I'd back the calendar with a database, and offer the data through both HTML and an iCal interface.