问题标签 [vcalendar]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
652 浏览

php - PHP:vcal 描述为空

我真的需要帮助。我有这个功能:

它应该发送事件调用。它发送除描述之外的所有内容。它总是将描述字段留空。不管我送什么。我从作为描述发送的字符串中剥离<br/>,它仍然发送空白字段。标题中是否有一些我看不到的错误?有谁知道如何解决这个问题?

0 投票
1 回答
1818 浏览

jquery - Internet Explorer 8 and vCalendar/ICS files

I'm trying to dynamically generate a vCal file using Javascript and everything is working fine until i try in IE8. In IE8 the browser tries to open the calendar file in the request bar instead of downloading. This is a sample of the code i use

return iCal;

I then try to open the calendar file using the following;

Any suggestions as to why IE8 cannot recognize the file?

0 投票
1 回答
904 浏览

java - 附件在 Lotus Notes 上发送会议邀请时出现

我正在尝试使用 iCalendar 和 Java Mail API 在 Lotus notes 上发送会议邀请,它工作正常,除了邮件内容中的附件即将到来,甚至没有打开。我已经检查了我的代码,并且可以确认代码末尾没有包含此类附件。有人可以解释一下为什么会这样吗?这是我的一段代码:

下面是我运行此代码的主要方法:

0 投票
1 回答
986 浏览

iphone - 从 UIWebView 打开时,订阅的日历名称具有 .ics URL

我的 iPhone 应用程序(支持 iOS 6+)有一个 Web 视图,其中列出了每个事件的“添加到日历”按钮。“添加到日历”按钮是指向服务器上 .ics 文件的超链接。为了完成这项工作,我修改了 IIS 以使用“文本/日历”作为 .ics 文件的 MIME 类型,并在我的 UIWebView 委托的 shouldStartLoadWithRequest 中使用以下代码:当请求 URL 包含“.ics”路径扩展名时

[[UIApplication sharedApplication] openURL:ics_url];

当点击事件的“添加到日历”按钮时,我收到一个警报“订阅日历” http://blah.com/pathtoics/file.ics “”,带有 2 个按钮订阅和取消。当我点击“订阅”时,我会收到另一个警报“日历” http://blah.com/pathtoics/file.ics “已添加”,其中包含“查看事件”和“完成”两个按钮。当我通过点击“查看事件”按钮打开日历应用程序时,我看到该事件已添加,但订阅的日历名称是 URL“ http://blah.com/pathtoics/file.ics

两个问题:

有没有办法将警报修改为“订阅日历事件团队事件 1”,即事件名称/描述而不是 ics 文件的服务器路径?如果是,我该怎么做?

有没有办法让订阅日历的名称成为我在 ics 文件中使用的描述文本,而不是 ics 文件的路径?如果有怎么办?

0 投票
1 回答
87 浏览

icalendar - iCalendar 2 week interval/cycle

What I want to achieve is somewhat simple: I need to represent an event with a 2 week or 14 days period like so:

So in the first week the event does not take place on mondays and in the 2nd week it does not take place on fridays. On the days it takes place it should last from 09:30 to 09:45.

I don't want to split it into multiple events as the event is indeed identical, but I did not manage to get the correct RRULE parts together. What I accomplished was something like:

By using 3 RRULE parts with one for mondays, one for fridays and one for the the other days. But this is obviously not correct.

I thought about using the EXRULE directive, but I learned it was deprecated anyway.

Any suggestions?

P.S. For anyone wondering what the event is about: It's the daily scrum meeting on a 2 week sprint with exceptions for planning and review days.

0 投票
0 回答
761 浏览

c# - 在 C# 中发送具有多个日期的 Outlook 会议请求

我有要求发送Outlook 会议请求。我做到了,它在单身约会时工作得很好。但会议应该包含多个日期。我正在使用Vcalendar请参考以下代码。

请给我你的建议

0 投票
1 回答
1698 浏览

php - PHP Vcalendar:纯文本描述可见而不是html文本

我正在通过 php 发送会议邀请。我的代码确实发送了会议邀请(最终用户可以看到会议邀请)但是我无法设置 html 描述。

我怀疑问题可能是因为我使用字符串变量将参数传递给X-ALT-DESC. 在邀请中,我通过DESCRIPTION标签设置的纯文本可见,但 HTML 文本不可见。如果 Outlook 2007 收到邀请,他应该会看到 HTML 文本,对吗?

这是代码:

----编辑这里是生成的 iCalendar 字符串

0 投票
2 回答
445 浏览

asp.net - 如何在 Asp.Net 中使用 SMTP 在 Outlook 中发送任务项?可能吗?

几天以来,我一直在寻找如何在asp.net中使用SMTP在outlook中发送任务项?但我找不到任何具体的解决方案。

请帮助我。我不想使用任何互操作或 dll,我只想使用 SMTP 并发送一个任务项,就像我们可以使用 .ics/vcs/ical 发送会议请求一样。

谢谢并恭祝安康

0 投票
0 回答
213 浏览

android - 在android phonegap中打开一个vcs文件

我正在从远程服务器下载一个 vcs 文件,以便在 android phonegap 中的日历上添加事件..vcs 文件下载正确..我的问题是它提示我打开文件..所以用户无法自动加载事件.. any1 可以建议我一个插件或任何其他等效代码..

PS:我是android的新手:)

}

0 投票
1 回答
525 浏览

php - 带有附件问题的php Outlook日历事件

我们的邮件附件有问题。目前我正在为带有附件的 Outlook 日历活动工作。一切都很好,我收到了带有附件的邮件,但只有当附件小于 10Kb 时我才会收到电子邮件。否则我没有收到任何邮件。如果我使用 chunk_split() 功能而不是收到带有超过 10Kb 文件附件的电子邮件,但只收到文件的一部分(我用文本文件测试,我只收到前几行)。

我检查了服务器,它有能力发送大文件。

这是我的代码。请帮帮我。。

我尝试了几乎所有类型的标题,但没有运气。