Donate Share

PHP iCalendar

Code

Programming Languages: PHP

License: GNU General Public License (GPL)

Repositories

browse code, statistics, last commit on 2009-07-30 cvs -d:pserver:anonymous@phpicalendar.cvs.sourceforge.net:/cvsroot/phpicalendar login

cvs -z3 -d:pserver:anonymous@phpicalendar.cvs.sourceforge.net:/cvsroot/phpicalendar co -P modulename

Show:

What's happening?

  • Rendering HTML Descriptions on Hover

    This is in regard to event descriptions that contain rich text (HTML). When I click on the event title, the HTML renders fine in the pop-up. However, if I hover over the event, the floating window just displays HTML code. How can this be fixed? 1) What version of PHP iCalendar are you using? 2.31 2) Did you try to run PHP iCalendar before making any changes to the config? YES 3) Where is...

    2009-12-12 14:19:19 UTC by jotsbox

  • function typo

    I downloaded v 2.31 and found the following error on line 382 in functions/ical_parser.php: $chooseOffset(...) should be chooseOffset(...) Thanks for maintaining and improving the app.

    2009-12-01 00:43:11 UTC by eikosaedra

  • phpicalendar french translation

    Hello, I noticed a little detail about phpicalendar's french localization. I (and maybe a lot of french people) never use "12:00" time format. So I think that the default small time format should be "G:i" (not "g:i"). This is file phpicalendar/languages/french.inc.php , line 172. phpicalendar would be perfect with that. Thanks.

    2009-11-27 17:44:06 UTC by ljanvier

  • LDAP Support

    Wrote a basic plugin to add LDAP support. Works well with openLDAP should work with AD with a little tweaking. Patch is based off LDAP patch from Projectpier project by 'darkstructures' http://www.projectpier.org/node/1338 I had trouble getting TLS to work, but left it in there.

    2009-11-18 23:06:31 UTC by mulroony

  • Events with duration 0 and start at 0:00 are not displayed

    Events with duration 0 and start at 0:00 are not displayed. Solution: Change if($this_date_tmp == $end_date_tmp && ($end_time == '0000')) continue; (near Line 325) to if($this_date_tmp == $end_date_tmp && ($end_time == '0000') && $length > 0){ continue; }.

    2009-11-12 17:41:20 UTC by cvolhard

  • Recurring Events

    Version 2.31 In functions/ical_parser.php $recurrence_d and $recurrence_t have to be unset like the other variables. Otherwise all following events will write their $uid into the $recurrence_delete array. If a single event of a recurrence event changes the start date/time, both events are displayed. Example: You have a weekly event on monday at six o clock. If you change on of theses...

    2009-11-12 16:50:29 UTC by cvolhard

  • Comment: ATTENDEE and ORGANIZER from Lightning parsed wrong

    if(strpos($data, "mailto:") === false){ $email = ereg_replace (".*mailto:(.*).*", "\\1", $field); } else { $email = str_replace ("mailto:", "", $data); } if(strpos($field, "CN=") === false){ $name = $email; } else { $name = ereg_replace (".*CN=([^;]*).*", "\\1", $field); } $attendee[] = array...

    2009-10-24 14:44:44 UTC by cvolhard

  • ATTENDEE and ORGANIZER from Lightning parsed wrong

    Lightning saves ATTENDEE and ORGANIZER like this: ORGANIZER;RSVP=TRUE;CN=Name;PARTSTAT=ACCEPTED;ROLE=CHAIR:mailto: email@provider.de ATTENDEE;RSVP=TRUE;CN=Name;PARTSTAT=NEEDS-ACTION;ROLE=REQ-PARTICIPANT: mailto:email@provider.de Because of this phpicalendar can not parse the name and email Solution: modify ical_parser.php case 'ATTENDEE': if(strpos($data, "mailto:") ===...

    2009-10-24 14:26:56 UTC by cvolhard

  • Google-like multiday events

    It would be great if there was a way to make multi-day events spread across multiple days like in Google Calendar. It already happens with day and week views, but it would be awesome to see it in month view.

    2009-09-24 22:13:47 UTC by edsysad

  • Comment: non .ics files appears...

    Fix: publish.php (in calendar folder) change the 1 to a 0 example below: // toggle logging define( 'PHPICALENDAR_LOG_PUBLISHING', 1 ); to: // toggle logging define( 'PHPICALENDAR_LOG_PUBLISHING', 0 );.

    2009-08-14 09:37:44 UTC by wmknowlden

Our Numbers