I am using android default codebase 2.0 to try to write an ActiveSync for calendar. I coded the function
"sendLocalchanges" in Email App's CalendarSyncAdapter.java, like below:
@Override
public boolean sendLocalChanges(Serializer s) throws IOException {
// TODO Auto-generated method stub
s.start(Tags.SYNC_COMMANDS);
String...
So I want to add an iCal file to a web page, so that people can add an event to their calendars. But when I view the event in my calendar (Outlook 2007) I want to see everyone who will be attending.
How can I do that?
I just started experimenting with this, I used Outlook's Save As to create an iCal file for a single event. That works...
Operating system : WinXP
Program and version you use to access Google Calendar (FF3.5):
I'm developing a script (based on an existing vCal ASP.NET class I found online) to generate an .ics file. This file works perfectly when importing to Outlook 2003. When I try to import to Google Calendar, I get the following error:
Failed to impo...
Hi, I've been looking at adding iCal support to my new application and everything seemed just fine and worked on my Mac OS X 10.6 Snow Leopard development machine without a hitch.
Now it looks like depending on what is in your calendar the very simple query below:
- (NSArray*) fetchCalendarEventsForNext50Minutes {
NSLog(@"fetchCalend...
I am trying to get applescript to read todays ical events and write them to a file. The code is as follows:
set out to ""
tell application "iCal"
set todaysDate to current date
set time of todaysDate to 0
set tomorrowsDate to todaysDate + (1 * days)
repeat with c in (every calendar)
set theEvents to (every event of c whose start date ≥...
Hi All guys! ;-)
i need help with creating a regex for putting all values into an array!
assuming we have a huge file full of theese:
Classic iCalendar style:
so we know that each segment start with BEGIN:VEVENT and end with END:VEVENT
...
END:VEVENT
BEGIN:VEVENT
UID:e3cafdf3-c5c7-427e-b8c3-653015e9321a
SUMMARY:Some Text Here
DESC...
If we want to send a calendar event to Exchange Server, it is needed to fill with Timezone field. I find some request added event symbol. For example:
IP7//wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...
I'm trying to work out how to use the icalendar ruby gem, found at:
http://icalendar.rubyforge.org/
According to their tutorial, you do something like:
cal.event.do
# ...other event properties
alarm do
action "EMAIL"
description "This is an event reminder" # email body (required)
summary "Alarm notification" ...
I am using the calendar module with its iCal support for Drupal 6. I have made my event type which appears on the iCal feed. However, I want to make the event content type private, so only authenticated users can read it. By doing this they will not show on the iCal feed. Is there any way that I could get the iCal feed to still show thes...
I am trying to do an Ajax request for an ICS file. Yeah, I know it sounds crazy, but I found the perfect library to parse the iCal data. Any ideas why the data comes up blank when I do this?
$.ajax({
success:function(data){
alert(data);
},
url:"http://wsidecar.apple.com/cgi-bin/nph-reg3rdpty2.pl/product=15714&cat=98&platfor...
G'day everyone,
I am currently trying to send meeting invitations to Outlook recipients. After reading several blogs and various literature iCalcreator seems to be the most complete iCalendar PHP class available. And the documentation is just...crazily complete.
If creating a iCal .ics file is OK, I can't find a nice way to send it by ...
include a link to download an .ics / .iCal file? attach .ics file through email?
How to construct the file? Where to find the spec?
What're the benefits of rendering the data in hCalendar on the page? So search engine can index it somehow?
Thanks
...
Is there an easy way to convert an Outlook.Recurrence object to a recurrence string in iCal format?
...
How can i update my iCalendar subscription in Microsoft outlook.
...
I need to be able to offer "downloadable" events for Outlook, via vCalendar objects - if I'm not mistaken.
From the research I've done, I've been pointed at using vObject. I've looked at their usage examples, but having no prior experience with the format, it's not clear to me how to solve my problem, as I'm not sure what fields are av...
I have seen a very specific and professional web page widget (e.g. http://whatsnextlectures-work.eventbrite.com/ and meetup.com). Please help me find the library that creates the links.
I have looked at http://stackoverflow.com/questions/2348590/need-a-service-that-build-calendar-ical-outlook-links, but that answer seems to address the ...
I've been assigned to upgrade/rewrite a webapp that my company uses to schedule conference calls. One of the goals of the upgrade is to improve integration between the application and our user's Outlook calendars (and ideally other calendar programs as well).
At present, when a user is viewing the details of a scheduled conference call ...
specifically, the CN (common name) parameter, e.g.
ORGANIZER;CN=John Doe,Eng:mailto:[email protected]
The RFC is vague on this, IMHO. It is very clear about property values of type TEXT, but for this parameter it just says "The parameter value is text". Anyways, the escaping specified for TEXT type doesn't seem complete for parameter val...
I have an interesting problem trying to represent complex schedule data in a database. As a guideline, I need to be able to represent the entirety of what the iCalendar -- ics -- format can represent, but in a database. I'm not actually implementing anything relating to ics, but it gives a good scope of the type of rules I need to be abl...
I'm using outlook api for sending task in a web application application. I'm also trying to save task, for saving task it gives error - "Could not complete the operation. One or more parameter values are not valid."
private static void CreateTaskO(Request instance, string email, string msgBody)
{
Microsoft.Office.Interop.Ou...