Re: : Re-ocurring Events

2007-04-27 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, Robert Rawlins - Think Blue <[EMAIL PROTECTED]> wrote: . . . >I've been thinking about the possibility of using a combination of xpath to >search the XML with some loops which change the date. As

RE: Re-ocurring Events

2007-04-27 Thread Robert Rawlins - Think Blue
: python-list@python.org Subject: Re: Re-ocurring Events Robert Rawlins - Think Blue napisał(a): > and I need to do and conditional that ensures start is before today's > date/time and end is after today's date/time. > > The string looks like: '2007-01-01 00:00:00'

Re: Re-ocurring Events

2007-04-27 Thread Jarek Zgoda
Robert Rawlins - Think Blue napisał(a): > and I need to do and conditional that ensures start is before today's > date/time and end is after today's date/time. > > The string looks like: '2007-01-01 00:00:00' > > Do I have to convert this to a proper time object to do the comparison? Or > can I

RE: Re-ocurring Events

2007-04-27 Thread Robert Rawlins - Think Blue
s, Rob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert Rawlins - Think Blue Sent: 27 April 2007 09:55 To: 'Laurent Pointal' Cc: python-list@python.org Subject: RE: Re-ocurring Events Thanks for getting back to me Laurent. I've now made s

RE: Re-ocurring Events

2007-04-27 Thread Robert Rawlins - Think Blue
Original Message- From: Laurent Pointal [mailto:[EMAIL PROTECTED] Sent: 27 April 2007 09:49 To: Robert Rawlins - Think Blue Subject: Re: Re-ocurring Events Robert Rawlins - Think Blue a écrit : > Thank you guys for your suggestions. > > I've been having a look at that launchd st

RE: : Re-ocurring Events

2007-04-27 Thread Robert Rawlins - Think Blue
CTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert Rawlins - Think Blue Sent: 27 April 2007 08:24 To: python-list@python.org Subject: RE:: Re-ocurring Events Thank you guys for your suggestions. I've been having a look at that launchd stuff from apple but couldn’t really see how that applies

RE:: Re-ocurring Events

2007-04-27 Thread Robert Rawlins - Think Blue
lf Of Laurent Pointal Sent: 26 April 2007 15:33 To: python-list@python.org Subject: Re: Re-ocurring Events Daniel Nogradi a écrit : >> A bit more of a complex one this time, and I thought I'd get your >> opinions >> on the best way to achieve this. Basically I'm looking for

Re: Re-ocurring Events

2007-04-26 Thread Laurent Pointal
Daniel Nogradi a écrit : >> A bit more of a complex one this time, and I thought I'd get your >> opinions >> on the best way to achieve this. Basically I'm looking for a way to >> describe >> a re-occurring event, like a calendar event or appointment I guess. I'm >> likely to use an XML file for

Re: Re-ocurring Events

2007-04-26 Thread Michael Bentley
On Apr 26, 2007, at 4:26 AM, Robert Rawlins - Think Blue wrote: > A bit more of a complex one this time, and I thought I’d get your > opinions on the best way to achieve this. Basically I’m looking for > a way to describe a re-occurring event, like a calendar event or > appointment I guess.

Re: Re-ocurring Events

2007-04-26 Thread Daniel Nogradi
> A bit more of a complex one this time, and I thought I'd get your opinions > on the best way to achieve this. Basically I'm looking for a way to describe > a re-occurring event, like a calendar event or appointment I guess. I'm > likely to use an XML file for the definition of the events, but ima