|
I'm trying to show a list of the next 20 days' events from a Google calendar account. Infuriatingly recurring events aren't being shown (I assume because their start times are old)... So. Any ideas?
require_once dirname(__FILE__).'/../../../Zend/Loader...
Started by Oli on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This is per the Google Calendar API is....
Valid');
Will give you all sorts of extra data, including recurring events.
Singleevents
Indicates whether recurring events should be expanded or represented as a single event.
|
|
I'm building a group calendar application that needs to support recurring events, but all the solutions I've come up with to handle these events seem like a hack. I can limit how far ahead one can look, and then generate all the events at once. Or I can...
Started by Clinton R. Nixon on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
Store the events as repeating and dynamically display them, however allow the recurring event you query the recurring....
If you attempt to edit a recurring event then prompt to change all future items (i.e..
Instance.
|
|
I'm looking for a library in PHP (or better yet in ruby) to handle an events calendar. I've looked a dozens of them and every one breaks down when it comes to recurring events. Many require and end date and most create every recurring event as a entry...
Started by gbennett on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To define recurring events using simple, set-like expressions an interfaced-based API for creating.
|
Ask your Facebook Friends
|
If you were tasked to build an event scheduling system that supported recurring events, how would you do it? How do you handle when an recurring event is removed? How could you see when the future events will happen?
i.e. When creating an event, you could...
Started by Joe Van Dyk on
, 12 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
recurring event, store the most recent run time, the run-interval and other goodies like expiration time a new recurring event was added, all instances were immediately calculated out until the existing saving the event....
|
|
I am trying to develop a scheduler- and calendar-dependent event application in C#, for which a crucial requirement is to represent recurring events in the database. What is the best way to represent recurring events in a database?
More Details:
While...
Started by Varma on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
This ID will then be used to mark an....
Because its a recurring event, set a unique "recurring ID" for each of these.
When setting up an event thats recurring, have).
It but these are my thoughts for a simple solution .
|
|
I'm looking for a data structure pattern for storing recurring events, but everything I came up with would result in a high number of special case handling or user input and data retrieval are overly complex. (I get the distinct feeling, that I haven'...
Started by DR on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
* * * *
Event: StartDate EndDate (calculated on change of NumberOfOccurances) NumberOfOccurances iCalendar Event types
The IETF put some thought into this when they created the Internet Calendaring and Scheduling Core Object Specification....
|
|
I have a calendar application which utilizes the newer PHP DateTime classes. I have a way that I handle recurring events, but it seems hack-ish and I wanted to see if you guys have better ideas:
I have a recurring event that starts 11/16/2009 (Nov 16,...
Started by John on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This can be done nicely using.
CalendarDate->modify('+3 day'); } //$effectiveDates is an array of every date the event occurs the selected date is later than the beginning date of the event.
|
|
Is it possible to get a list of events (with recurring events expanded) out of Sharepoint's Calendar using the Web Service exposed through Lists.aspx?
This is evidently possible if you are using C# or VB, as described here using a snippet like this:
SPQuery...
Started by allclaws on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm hoping that when you....
Then it is a matter of making sure the hand-crafted XML packet looks the same .
The way I would track down this problem would be to use something like TcpTrace ( http://www.pocketsoap.com ) to look at the XML packets being sent .
|
|
Hi,
I didn't get any help on the TechNet forum so I'm going to try my luck here :).
Our web server is running Server 2008 SP1, 64-bit Standard Edition. For the past week or so, we've been experiencing repeated corruption in the Application event log. ...
Answer Snippets (Read the full thread at serverfault):
There is something wrong with hard drive or location the Event Log being stored at, which causes the corruption.
|
|
Hi guys,
I'm just wondering how do you structure your DB for a recurring event/scheduling system
I've seen structure where days, weeks, time are on separate fields (worse is that they even have 7 columns for each day of the week) which is pretty to implement...
Started by ssystems on
, 14 posts
by 3 people.
Answer Snippets (Read the full thread at webdeveloper):
That single instance, it's not really a recurring event because recurring events recur and this event level
Second issue I encountered was to cancel a recurring event where the 1st instance is already....
|