RE: [PHP] Algorithm for repeating calendar events

2001-07-13 Thread Matthew Loff


That's a good question, Michael-- I don't really know if libmcal can be
used on Win32...  Is it made to be compiled under VC++?

If it can't, you should be able to achieve similar results by storing
events in a DB, and using the Date_Calc class:
http://www.phpinsider.com/php/code/Date_Calc/

Good luck!

-Original Message-
From: Michael Hall [mailto:[EMAIL PROTECTED]] 
Sent: Friday, July 13, 2001 9:13 AM
To: [EMAIL PROTECTED]
Subject: RE: [PHP] Algorithm for repeating calendar events


This libmcal sounds like something I've been needing for another
project.

Unfortunately, I'm on a Windows platform.  Is there any way to get this
functionality on Win32?

I downloaded the tar.gz file with teh libmcal library in it, but I have
no idea what I would do next.



 -Original Message-
 From: Matthew Loff [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, July 12, 2001 1:43 PM
 To: 'Rasmus Lerdorf'; 'Reuben D Budiardja'
 Cc: 'php php'
 Subject: RE: [PHP] Algorithm for repeating calendar events



 libmcal is a pain in the butt to set up, but once it's set up, it has 
 some great features...  I had to write a PHP page that handled 
 scheduling of appointments, and mcal saved me a lot of time, after I 
 spent the initial 2 hours pulling my hair to set it up. :)


 -Original Message-
 From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, July 12, 2001 2:28 PM
 To: Reuben D Budiardja
 Cc: php php
 Subject: Re: [PHP] Algorithm for repeating calendar events


 Not quite live yet.  You'll see it when it goes live.

 By the way, there is a very complete date class in PEAR that has 
 pretty much everything you would need to build a calendar app.  See 
 pear/Date/Calc.php

 -Rasmus

 On Thu, 12 Jul 2001, Reuben D Budiardja wrote:

  Great, I'd like to steal it too then :). I just check php.net, but 
  couldn't find it. In what section would you put it?
 
  Thanks.
  Reuben D. Budiardja
 
  On Tuesday 10 July 2001 05:34 pm, Rasmus Lerdorf wrote:
Have any of you seen those calendar applications that let you 
program events that repeat periodically? You can set it to 
repeat every thursday, every week, every third week, every six 
months, and so on?
   
I am developing such an application in PHP and I know that the 
client will ask for this feature. So in thinking ahead of time, 
I would like to know if any of you has had any experience 
developing

such an application so that you can point me in the right 
direction.
  
   I just wrote one on the plane back from LinuxTag.  I'll get it up 
   on

   php.net soon and you can steal it from there.
  
   -Rasmus
 


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED] To 
 contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED] To
contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Algorithm for repeating calendar events

2001-07-12 Thread Reuben D Budiardja

Great, I'd like to steal it too then :). I just check php.net, but 
couldn't find it. 
In what section would you put it?

Thanks.
Reuben D. Budiardja

On Tuesday 10 July 2001 05:34 pm, Rasmus Lerdorf wrote:
  Have any of you seen those calendar applications that let you program
  events that repeat periodically? You can set it to repeat every
  thursday, every week, every third week, every six months, and so on?
 
  I am developing such an application in PHP and I know that the client
  will ask for this feature. So in thinking ahead of time, I would like to
  know if any of you has had any experience developing such an application
  so that you can point me in the right direction.

 I just wrote one on the plane back from LinuxTag.  I'll get it up on
 php.net soon and you can steal it from there.

 -Rasmus


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Algorithm for repeating calendar events

2001-07-12 Thread Rasmus Lerdorf

Not quite live yet.  You'll see it when it goes live.

By the way, there is a very complete date class in PEAR that has pretty
much everything you would need to build a calendar app.  See
pear/Date/Calc.php

-Rasmus

On Thu, 12 Jul 2001, Reuben D Budiardja wrote:

 Great, I'd like to steal it too then :). I just check php.net, but
 couldn't find it.
 In what section would you put it?

 Thanks.
 Reuben D. Budiardja

 On Tuesday 10 July 2001 05:34 pm, Rasmus Lerdorf wrote:
   Have any of you seen those calendar applications that let you program
   events that repeat periodically? You can set it to repeat every
   thursday, every week, every third week, every six months, and so on?
  
   I am developing such an application in PHP and I know that the client
   will ask for this feature. So in thinking ahead of time, I would like to
   know if any of you has had any experience developing such an application
   so that you can point me in the right direction.
 
  I just wrote one on the plane back from LinuxTag.  I'll get it up on
  php.net soon and you can steal it from there.
 
  -Rasmus



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Algorithm for repeating calendar events

2001-07-12 Thread Matthew Loff


libmcal is a pain in the butt to set up, but once it's set up, it has
some great features...  I had to write a PHP page that handled
scheduling of appointments, and mcal saved me a lot of time, after I
spent the initial 2 hours pulling my hair to set it up. :)


-Original Message-
From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, July 12, 2001 2:28 PM
To: Reuben D Budiardja
Cc: php php
Subject: Re: [PHP] Algorithm for repeating calendar events


Not quite live yet.  You'll see it when it goes live.

By the way, there is a very complete date class in PEAR that has pretty
much everything you would need to build a calendar app.  See
pear/Date/Calc.php

-Rasmus

On Thu, 12 Jul 2001, Reuben D Budiardja wrote:

 Great, I'd like to steal it too then :). I just check php.net, but 
 couldn't find it. In what section would you put it?

 Thanks.
 Reuben D. Budiardja

 On Tuesday 10 July 2001 05:34 pm, Rasmus Lerdorf wrote:
   Have any of you seen those calendar applications that let you 
   program events that repeat periodically? You can set it to repeat 
   every thursday, every week, every third week, every six months, 
   and so on?
  
   I am developing such an application in PHP and I know that the 
   client will ask for this feature. So in thinking ahead of time, I 
   would like to know if any of you has had any experience developing

   such an application so that you can point me in the right 
   direction.
 
  I just wrote one on the plane back from LinuxTag.  I'll get it up on

  php.net soon and you can steal it from there.
 
  -Rasmus



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED] To
contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Algorithm for repeating calendar events

2001-07-10 Thread rodrigo

Have any of you seen those calendar applications that let you program
events that repeat periodically? You can set it to repeat every
thursday, every week, every third week, every six months, and so on?

I am developing such an application in PHP and I know that the client
will ask for this feature. So in thinking ahead of time, I would like to
know if any of you has had any experience developing such an application
so that you can point me in the right direction.

Thanks in advance.
-- 

Ivan R. Quintero E.* (507)228-3477  
Aptdo 1263 * (507)228-9105
Balboa, Ancon  * 612-1103
Republic of Panama * 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Algorithm for repeating calendar events

2001-07-10 Thread Rasmus Lerdorf

 Have any of you seen those calendar applications that let you program
 events that repeat periodically? You can set it to repeat every
 thursday, every week, every third week, every six months, and so on?

 I am developing such an application in PHP and I know that the client
 will ask for this feature. So in thinking ahead of time, I would like to
 know if any of you has had any experience developing such an application
 so that you can point me in the right direction.

I just wrote one on the plane back from LinuxTag.  I'll get it up on
php.net soon and you can steal it from there.

-Rasmus


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]