You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(5) |
Oct
(159) |
Nov
(123) |
Dec
(27) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(6) |
Feb
(11) |
Mar
(21) |
Apr
(29) |
May
(13) |
Jun
(2) |
Jul
(13) |
Aug
(5) |
Sep
(14) |
Oct
(21) |
Nov
(71) |
Dec
|
2004 |
Jan
(18) |
Feb
(12) |
Mar
|
Apr
(6) |
May
(29) |
Jun
(9) |
Jul
(3) |
Aug
(4) |
Sep
(7) |
Oct
(6) |
Nov
|
Dec
(20) |
2005 |
Jan
(6) |
Feb
(27) |
Mar
(4) |
Apr
(16) |
May
(61) |
Jun
(6) |
Jul
(4) |
Aug
(18) |
Sep
(19) |
Oct
(5) |
Nov
(55) |
Dec
(30) |
2006 |
Jan
(11) |
Feb
(9) |
Mar
(9) |
Apr
(26) |
May
(17) |
Jun
(3) |
Jul
(1) |
Aug
|
Sep
(20) |
Oct
|
Nov
(6) |
Dec
(9) |
2007 |
Jan
|
Feb
|
Mar
(5) |
Apr
|
May
(8) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
(17) |
Mar
(11) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2009 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(7) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
(4) |
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Wesley M. <we...@we...> - 2003-10-16 18:08:23
|
I'm running into a strange bug where the following code results in duplicate events (at least, duplicate all-day events that repeat annually): if ($save_parsed_cals == 'yes' && !$is_webcal) { $start_range_time = strtotime($this_year.'-01-01 -1 month -2 days'); $end_range_time = strtotime($this_year.'-12-31 +1 month +2 days'); } else { The duplication is only seen on the 2nd and later occurrences of the repeating event. The first occurrence is displayed alone. Does anyone know why this is? If I comment those lines out and always use the non-$save_parsed_cals logic for the $start_range-time and $end_range_time then the all-day annual events are not duplicated. I don't really know what this code is doing either. Can someone explain? Thanks, -- Wesley Miaw, Wesley Miaw Consulting http://www.wesman.net/ |
From: Alex T. K. <ale...@ya...> - 2003-10-15 09:56:59
|
Hi All-- I've written a patch that lets PHP iCalendar display iCalendars that require 401 authentication. This catches a 401 authentication error and pops the user/pass dialog before exiting to the error page. Basically, I'm catching the warning message that is output to the screen and checking it since the fopen function doesn't give us anything useful (that I could find) in the built in error handling. More on this in my blog: http://www.alexking.org/blog/index.php?p=520 Here is the code I added to ical_parser.php, line 69: // patch to allow 401 authentication for iCalendars ob_start(); $ifile = fopen($filename, "r"); $err_msg = ob_get_contents(); ob_end_clean(); if ($ifile == false && strstr($err_msg, "HTTP/1.1 401 Authorization Required")) { function prompt_401() { header('WWW-Authenticate: Basic realm="PHP iCalendar"'); header('HTTP/1.0 401 Unauthorized'); echo 'This iCalendar requires a username/password.'; die(); } if (!isset($_SERVER['PHP_AUTH_USER']) || !isset($_SERVER['PHP_AUTH_PW'])) { prompt_401(); } else { if (strstr($filename, "http://")) { $filename = 'http://'.$_SERVER['PHP_AUTH_USER'].':'.$_SERVER['PHP_AUTH_PW'].'@'.substr($filename, 7); } else if (strstr($filename, "webcal://")) { $filename = 'webcal://'.$_SERVER['PHP_AUTH_USER'].':'.$_SERVER['PHP_AUTH_PW'].'@'.substr($filename, 9); } ob_start(); $ifile = fopen($filename, "r"); $err_msg = ob_get_contents(); ob_end_clean(); if ($ifile == false && strstr($err_msg, "HTTP/1.1 401 Authorization Required")) { prompt_401(); } } } // /patch I haven't dug into the PHP iCalendar code very deeply, so this may break something somewhere that I don't know about. Comments, corrections and feedback are welcome. --Alex __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Waitman C. G. I. <wa...@em...> - 2003-10-15 04:35:32
|
Hello, Well, it sounded to me like he was running php as a CGI (which indeed you can do). Companies like XO do this on their vhost servers, you have to run your php out of cgi-bin with the she-bang at the top line. And of course, it needs to be CHMOD 755. However, it truly depends upon how you have your server set up. If you have php compiled in as a module, then the advice of Wesley Miaw is sound. Waitman Gobble EMK Design Telephone (714) 522-2528 Toll Free (877) 290-2768 http://emkdesign.com ....................................... -----Original Message----- From: wai...@ma... [mailto:wai...@ma...] On Behalf Of Wesley Miaw Sent: Tuesday, October 14, 2003 9:23 PM To: php...@li... Subject: [Waitman] Re: [PHPiCalendar-DEV] Installation Problems Hi Moonhawk, I clipped your message body because it sounds like you're trying to execute the *.php files as CGI scripts. They are not CGI scripts, but PHP files. Like JSP or ASP, you need PHP support in your web server software. What you want to do is place the phpicalendar directory into your regular public_html directory. Then make sure PHP is supported by your web server. If you've done that, then going to http://www.stanford.edu/~moonhawk/phpicalendar-0.9.4/ will bring up your calendar. Later, -- Wesley Miaw, Wesley Miaw Consulting http://www.wesman.net/ ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people who have HELPED US provide better services: Click here: http://sourceforge.net/supporters.php _______________________________________________ Phpicalendar-devel mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel |
From: Wesley M. <we...@we...> - 2003-10-15 04:23:33
|
Hi Moonhawk, I clipped your message body because it sounds like you're trying to execute the *.php files as CGI scripts. They are not CGI scripts, but PHP files. Like JSP or ASP, you need PHP support in your web server software. What you want to do is place the phpicalendar directory into your regular public_html directory. Then make sure PHP is supported by your web server. If you've done that, then going to http://www.stanford.edu/~moonhawk/phpicalendar-0.9.4/ will bring up your calendar. Later, -- Wesley Miaw, Wesley Miaw Consulting http://www.wesman.net/ |
From: Waitman C. G. I. <wa...@em...> - 2003-10-15 01:16:30
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Whoops, my example had a typo. Should have been #!/usr/bin/php as in the first sentence, not !#/usr/bin/php Waitman Gobble EMK Design Telephone (714) 522-2528 Toll Free (877) 290-2768 http://emkdesign.com ....................................... - -----Original Message----- From: wai...@ma... [mailto:wai...@ma...] On Behalf Of Waitman C. Gobble, II Sent: Tuesday, October 14, 2003 6:12 PM To: php...@li... Subject: RE: [Waitman] [PHPiCalendar-DEV] Installation Problems -----BEGIN PGP SIGNATURE----- Version: PGP 8.0.2 iQA/AwUBP4yf4vhva8X77el2EQL9cACbBayNA8L7K+ZUEfTzb66tEC+qEHsAoPoS xQu5d/roemFKl4eGYUEvc9Le =vPXf -----END PGP SIGNATURE----- |
From: Waitman C. G. I. <wa...@em...> - 2003-10-15 01:12:30
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, Did you make sure to include the #!/usr/bin/php on the first line? This needs to be _before_ the <?php Ex: !#/usr/bin/php <?php //php code ?> (just guessing that is where php is, might be /usr/local/bin/php or something else. - If you can ssh try "which php" or hunt around for it. Otherwise contact sys admin for location) Take care, Waitman Gobble EMK Design Telephone (714) 522-2528 Toll Free (877) 290-2768 http://emkdesign.com ....................................... - -----Original Message----- From: wai...@ma... [mailto:wai...@ma...] On Behalf Of Moonhawk Kim Sent: Thursday, October 09, 2003 5:30 PM To: php...@li... Subject: [Waitman] [PHPiCalendar-DEV] Installation Problems Hi, I'm having trouble getting the application to run propoerly on the Stanford University server. Here is a step by step description: First, I simply download a copy of phpicalendar-0,9.4, expand it and copy the entire folder to my CGI folder. At Stanford university, members are given CGI-BIN directories that are separate from the web (WWW) directories. The absolute path to the CGI directory is: /afs/ir/users/m/o/moonhawk/cgi-bin/ The web path is: http://cgi.stanford.edu/~moonhawk/cgi-bin/ After copying over the phpicalendar-0.9.4 folder, typing in the following URL (which I know is to be correct): http://cgi.stanford.edu/~moonhawk/cgi-bin/phpicalendar-0.9.4/ results in the following error message: The sbox program encountered an error while processing this request. Couldn't find a valid script to execute in /chroot/afs/ir.stanford.edu/users/m/o/moonhawk/cgi-bin/phpicalendar-0. 9.4/ sbox version 2.00 Second, typing in the following: http://cgi.stanford.edu/~moonhawk/cgi-bin/phpicalendar-0.9.4/index.php gives me the following error message: Script must be readable and executable by owner: /chroot/afs/ir.stanford.edu/users/m/o/moonhawk/cgi-bin/phpicalendar-0. 9.4/index.php Third, issuing "chmod a+rx *.php" within the phpicalendar-0.9.4 directory to make the files executable and accessing the following URL: http://cgi.stanford.edu/~moonhawk/cgi-bin/phpicalendar-0.9.4/index.php results in the following error message: exec of /afs/ir.stanford.edu/users/m/o/moonhawk/cgi-bin/phpicalendar-0.9.4/ind ex.php failed (Exec format error) The server is a SUN Solaris 8 running php 4.3.1 according to: http://www.stanford.edu/services/cgi/ Is phpicalendar only designed for Mac OS X? Or am I doing something wrong. It really looks like a great set of scripts. I would very much appreciate your help! Moonhawk Fiat Lux, Fiat Pax, Fiat Justitia Moonhawk KIM Ph.D. Candidate Dept of Political Science Stanford University Stanford, CA 94305-6044 www.stanford.edu/~moonhawk - ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people who have HELPED US provide better services: Click here: http://sourceforge.net/supporters.php _______________________________________________ Phpicalendar-devel mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel -----BEGIN PGP SIGNATURE----- Version: PGP 8.0.2 iQA/AwUBP4ye8vhva8X77el2EQLVbwCg4Dhsc/Nwn0R8T8iC4+YJLPU2YuoAoKLI daG06OoHYYKV3P0gKvMoKGgz =xIFb -----END PGP SIGNATURE----- |
From: Greg W. <gr...@gr...> - 2003-10-12 14:47:58
|
I sent this message from an address unsubscribed to this list, and it hasn't been approved, so I'm sending it again... Greg Begin forwarded message: > From: Greg Westin <we...@fa...> > Date: Sat Oct 11, 2003 9:59:05 AM US/Eastern > To: php...@li... > Subject: "Misbehaving calendar" > > Hi everyone, > > I have a calendar that doesn't work quite right, and just noticed the > announcement on the PHPiCalendar web site. I think this is logged > as a bug somewhere, but on this calendar the "Movie Night" events > every Saturday show up wrong. In the week view, they have the correct > start time (8:00 pm), but the box for the events starts at the > beginning of the day. In the day view, the start time is displayed > wrong. > > This doesn't seem to happen with other events I create that span > midnight... is this an artifact associated with an old calendar or > something? This recurring event was created long ago. > > Thanks for any help, > > Greg > > P.S. Also, the event doesn't seem to show up for the week of October > 18th. I don't know why. > -- > http://www.gregwestin.com > Contact info: http://www.gregwestin.com/contact.php |
From: Greg W. <gr...@gr...> - 2003-10-12 14:44:23
|
I think it might be wise, considering the fact that our files are archived online in places such as http://cvs.sourceforge.net/viewcvs.py/phpicalendar/phpicalendar/ AUTHORS?rev=1.2 , we might want to change the format of e-mail addresses in that file to something not so amenable to being picked up by spambots. I don't know if there's anything we can do about the archived versions, but at least we can reduce the number of copies of our e-mail addresses out there... Whaddya think? Greg -- http://www.gregwestin.com Contact info: http://www.gregwestin.com/contact.php |
From: Greg W. <we...@fa...> - 2003-10-11 13:59:15
|
Hi everyone, I have a calendar that doesn't work quite right, and just noticed the announcement on the PHPiCalendar web site. I think this is logged as a bug somewhere, but on this calendar the "Movie Night" events every Saturday show up wrong. In the week view, they have the correct start time (8:00 pm), but the box for the events starts at the beginning of the day. In the day view, the start time is displayed wrong. This doesn't seem to happen with other events I create that span midnight... is this an artifact associated with an old calendar or something? This recurring event was created long ago. Thanks for any help, Greg P.S. Also, the event doesn't seem to show up for the week of October 18th. I don't know why. -- http://www.gregwestin.com Contact info: http://www.gregwestin.com/contact.php |
From: Moonhawk K. <moo...@st...> - 2003-10-10 00:29:38
|
Hi, I'm having trouble getting the application to run propoerly on the Stanford University server. Here is a step by step description: First, I simply download a copy of phpicalendar-0,9.4, expand it and copy the entire folder to my CGI folder. At Stanford university, members are given CGI-BIN directories that are separate from the web (WWW) directories. The absolute path to the CGI directory is: /afs/ir/users/m/o/moonhawk/cgi-bin/ The web path is: http://cgi.stanford.edu/~moonhawk/cgi-bin/ After copying over the phpicalendar-0.9.4 folder, typing in the following URL (which I know is to be correct): http://cgi.stanford.edu/~moonhawk/cgi-bin/phpicalendar-0.9.4/ results in the following error message: The sbox program encountered an error while processing this request. Couldn't find a valid script to execute in /chroot/afs/ir.stanford.edu/users/m/o/moonhawk/cgi-bin/phpicalendar-0.9.4/ sbox version 2.00 Second, typing in the following: http://cgi.stanford.edu/~moonhawk/cgi-bin/phpicalendar-0.9.4/index.php gives me the following error message: Script must be readable and executable by owner: /chroot/afs/ir.stanford.edu/users/m/o/moonhawk/cgi-bin/phpicalendar-0.9.4/index.php Third, issuing "chmod a+rx *.php" within the phpicalendar-0.9.4 directory to make the files executable and accessing the following URL: http://cgi.stanford.edu/~moonhawk/cgi-bin/phpicalendar-0.9.4/index.php results in the following error message: exec of /afs/ir.stanford.edu/users/m/o/moonhawk/cgi-bin/phpicalendar-0.9.4/index.php failed (Exec format error) The server is a SUN Solaris 8 running php 4.3.1 according to: http://www.stanford.edu/services/cgi/ Is phpicalendar only designed for Mac OS X? Or am I doing something wrong. It really looks like a great set of scripts. I would very much appreciate your help! Moonhawk Fiat Lux, Fiat Pax, Fiat Justitia Moonhawk KIM Ph.D. Candidate Dept of Political Science Stanford University Stanford, CA 94305-6044 www.stanford.edu/~moonhawk |
From: Patrick C. <pa...@iC...> - 2003-09-24 17:16:18
|
Let's just push the $search_box below the custom_goto then. That way, we can avoid any potential overlap (and remove the need for a double form tag). Simplicity is good. :) I just did this in my copy and it looks fine. I'll check it in later if you guys have no objection. Best, Patrick Crowley Creator, iCalShare iCalShare - Share Your iCalendars! http://iCalShare.com > I see Chad made the form tag modifications more elegant on sidebar.php. > The second form tag inside $display_custom_goto is necessary because > the $search_box might be echoed right before the custom goto. > $search_box uses a form that points at search.php instead of day.php. |
From: Wesley M. <we...@we...> - 2003-09-24 16:26:00
|
Hi Patrick, > Isn't the 2nd form tag (on $display_custom_goto -- line 63) > unnecessary? > Both forms are pointing to the same spot. I see Chad made the form tag modifications more elegant on sidebar.php. The second form tag inside $display_custom_goto is necessary because the $search_box might be echoed right before the custom goto. $search_box uses a form that points at search.php instead of day.php. -- Wesley Miaw, Wesley Miaw Consulting http://www.wesman.net/ |
From: Wesley M. <we...@we...> - 2003-09-24 16:11:02
|
Hi Patrick, > Isn't the 2nd form tag (on $display_custom_goto -- line 63) > unnecessary? > Both forms are pointing to the same spot. I'll check on this. I may have introduced an extra form when I was modifying the code. -- Wesley Miaw, Wesley Miaw Consulting http://www.wesman.net/ |
From: Patrick C. <pa...@iC...> - 2003-09-24 14:15:55
|
One question for both of you... Isn't the 2nd form tag (on $display_custom_goto -- line 63) unnecessary? Both forms are pointing to the same spot. Best, Patrick Crowley Creator, iCalShare iCalShare - Share Your iCalendars! http://iCalShare.com |
From: Patrick C. <pa...@iC...> - 2003-09-24 14:13:01
|
Hi TaeYoung. You can send your file to me. I'm the other admin/leader for this project. Thanks for putting together a Korean localization for us, btw. That'll be our 13th language, if I'm not mistaken. Sweet! Best, Patrick Crowley Creator, iCalShare iCalShare - Share Your iCalendars! http://iCalShare.com |
From: TaeYoung Oh <sp...@hy...> - 2003-09-24 10:42:11
|
I've just completed Korean localization for 0.9.4. Where should I submit this? I sent this to ch...@ch... as mentioned in the language file, but no response. Thanks. TaeYoung. |
From: Wesley M. <we...@we...> - 2003-09-18 17:43:30
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 1. If I add a margin attribute to the calborder style, then all vertical spacing between boxes will be equal, but this margin pixel value must be at least as large as the space inserted by the closing form tag, unless the second approach is used. 2. If I add an empty <form>...</form> pair of tags around each box, then all vertical spacing will also be equal. The two combined will ensure everything looks right everywhere, regardless of CSS support. Is that the preferred solution? I would say yes, but all those empty form tags are kind of yucky, and maybe PHP iCalendar already states CSS as a requirement, in which case only #1 is technically acceptable. On Thursday, September 18, 2003, at 01:58 AM, Chad Little wrote: > I was trying to decide where I could put that and 1) have it not cause > space and 2) be valid. Whatever meets those two things should be fine. > Im not going to have time to work on it anymore until saturday. > > On Wednesday, September 17, 2003, at 06:33 PM, Wesley Miaw wrote: > >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> In sidebar.php:59, the closing FORM tag is commented out. This >> results in illegal HTML. I know it gets rid of the extra whitespace >> that shows up in the navigation sidebar box, but it needs to be >> included. >> >> If you don't want the whitespace to show up, we can move the opening >> and closing form tags outside the enclosing table, and remove the >> spacer of height 10 from the bottom. Things will end up looking the >> same. - -- Wesley Miaw, Wesley Miaw Consulting http://www.wesman.net/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (Darwin) iD8DBQE/ae68Qv4agqRAk2kRAveeAJ9t/c0iZRCRWklKostAychQWV7YxQCfbW8L l8UU/Nzh0cOnzHvb3T8+hNQ= =P/yR -----END PGP SIGNATURE----- |
From: Chad L. <ch...@ch...> - 2003-09-18 05:59:01
|
I was trying to decide where I could put that and 1) have it not cause space and 2) be valid. Whatever meets those two things should be fine. Im not going to have time to work on it anymore until saturday. Thanks, C On Wednesday, September 17, 2003, at 06:33 PM, Wesley Miaw wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > In sidebar.php:59, the closing FORM tag is commented out. This results > in illegal HTML. I know it gets rid of the extra whitespace that shows > up in the navigation sidebar box, but it needs to be included. > > If you don't want the whitespace to show up, we can move the opening > and closing form tags outside the enclosing table, and remove the > spacer of height 10 from the bottom. Things will end up looking the > same. > - -- > Wesley Miaw, Wesley Miaw Consulting > http://www.wesman.net/ > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.0.7 (Darwin) > > iD8DBQE/aQtyQv4agqRAk2kRAsbpAJwLL68Nv2nD551P5X25SJux66dDuQCeIXrM > ZTOnL+V3bqDPOINc/iibvDE= > =UZjS > -----END PGP SIGNATURE----- > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Phpicalendar-devel mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel |
From: Wesley M. <we...@we...> - 2003-09-18 01:33:45
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 In sidebar.php:59, the closing FORM tag is commented out. This results in illegal HTML. I know it gets rid of the extra whitespace that shows up in the navigation sidebar box, but it needs to be included. If you don't want the whitespace to show up, we can move the opening and closing form tags outside the enclosing table, and remove the spacer of height 10 from the bottom. Things will end up looking the same. - -- Wesley Miaw, Wesley Miaw Consulting http://www.wesman.net/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (Darwin) iD8DBQE/aQtyQv4agqRAk2kRAsbpAJwLL68Nv2nD551P5X25SJux66dDuQCeIXrM ZTOnL+V3bqDPOINc/iibvDE= =UZjS -----END PGP SIGNATURE----- |
From: Wesley M. <we...@we...> - 2003-09-17 20:12:53
|
I've found a few problems. Checked in one fix already, but the others require me to be a little more careful, since my local copy of the code is so different from what is in CVS. One bug I found is that case YEARLY recurring events in ical_parser.php prints out the $summary and event details. On Wednesday, September 17, 2003, at 12:12 PM, Chad Little wrote: > There have been massive changes to PHP iCalendar in CVS, including > some bug fixes for DURATION and RRULE in the parser. I'd like to get > some feedback and know if I've broken anything before its released. > Please check out via cvs and run it through all your calendars. -- Wesley Miaw, Wesley Miaw Consulting http://www.wesman.net/ |
From: Chad L. <ch...@ch...> - 2003-09-17 16:12:10
|
There have been massive changes to PHP iCalendar in CVS, including some bug fixes for DURATION and RRULE in the parser. I'd like to get some feedback and know if I've broken anything before its released. Please check out via cvs and run it through all your calendars. Thanks, C |
From: Wesley M. <we...@we...> - 2003-09-15 22:58:40
|
Hi Chad, > Wesley has been submitting some good bugs and patches. I greatly > appreciate it. If you interested, I can get you CVS access to fix your > own bugs and perhaps you can explain to the list a bit more on your > username/password implementation. If you have it up that we can see it > that would be great as well. Sure. CVS access would be great. Thanks. :) I'll describe a little bit of how the username/password system works. If you want to see it, you can go to http://www.wesman.net/~wesley/ical/ I don't really have a username and password for you to try it out with, since this is my personal calendar setup. But basically when you log in the login box goes away and is replaced with a Logout <username> link below the navigation links on the sidebar. What happens is a map of username:password pairs are associated with an array of calendar names in the config.inc.php file. Then, the subroutine that normally handles the loading of a single calendar or multiview calendars checks if there is a username and password either from GET, POST, or cookie (GET and POST override cookies) for calendars the user can access. This list of accessible calendars is equal to (all calendars - blacklisted - locked + unlocked). Logging out deletes the cookies and reloads the current HTTP request with the username and password removed from the query string if it exists. The patch I submitted uses GET to login; I changed it to POST later on but after I submitted the patch. Hope that answers some questions. Ask me more questions, criticize, etc. Later, -- Wesley Miaw, Wesley Miaw Consulting http://www.wesman.net/ -- Wesley Miaw we...@cs... |
From: Chad <ch...@ch...> - 2003-09-15 22:12:53
|
A few things: I'd like to welcome Patrick Crowley as a new admin and project lead. He is the creator of http://www.icalshare.com and will help grow PHP iCalendar. I'm still staying on to fix bugs and argue with people. 0.9.4 is currently in CVS for testing. Patrick and I are doing our best to get an update out soon, mostly to clean up bugs and add new RRULE support. HTML footprint has finally been decreased (greatly I may add in some areas). Wesley has been submitting some good bugs and patches. I greatly appreciate it. If you interested, I can get you CVS access to fix your own bugs and perhaps you can explain to the list a bit more on your username/password implementation. If you have it up that we can see it that would be great as well. Thanks, Chad On Sunday, September 14, 2003, at 11:47 PM, Wesley Miaw wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi, > > There appears to be some interest in the username/password patch I > submitted, and it was suggested I might be able to contribute more on > this list. So hello. :) > - -- > Wesley Miaw, Wesley Miaw Consulting > http://www.wesman.net/ > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.0.7 (Darwin) > > iD8DBQE/ZWCUQv4agqRAk2kRArg+AJ9o2kU5tV6vjvf8EZ1TQMJzfP66mQCfX56j > Pj4EurySPJnvOD3aKjLCaQY= > =7Vse > -----END PGP SIGNATURE----- > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Phpicalendar-devel mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel |
From: Wesley M. <we...@we...> - 2003-09-15 06:47:53
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, There appears to be some interest in the username/password patch I submitted, and it was suggested I might be able to contribute more on this list. So hello. :) - -- Wesley Miaw, Wesley Miaw Consulting http://www.wesman.net/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (Darwin) iD8DBQE/ZWCUQv4agqRAk2kRArg+AJ9o2kU5tV6vjvf8EZ1TQMJzfP66mQCfX56j Pj4EurySPJnvOD3aKjLCaQY= =7Vse -----END PGP SIGNATURE----- |
From: Chad <ch...@ch...> - 2003-08-20 01:35:51
|
Thanks for the support. I'm currently working on having Patrick Crowley (icalshare.com) take over as lead. He's a great designer, very current in the iCal community, and knows the code. We'll keep you informed! Cheers, C On Monday, August 18, 2003, at 01:09 PM, Alex Johnson wrote: > Chad- > > You've done some good work. Hopefully someone will take over and help > PHPiCAL to fulfill it's destiny. > ---Alex > > On Monday, August 18, 2003, at 03:40 PM, blaine wrote: > >> I'm definitely interested. I haven't had nearly as much time as I'd >> have liked, but I see lots of room for growth. If there's anyone else >> that would like to see the project progress, I'd very much like to >> work with them. I know there are a lot of patches and improvements >> floating around out there that could be integrated. >> >> Thanks, Chad! PHPiCalendar came up out of nowhere and, in many ways I >> think, helped spawn the interest that is currently so high in >> building the Mozilla calendar, evolution cal, etc. It represents an >> important first-step at getting web calendaring to "the masses" ;-) >> >> b. >> >> On Monday, Aug 18, 2003, at 12:30 America/Vancouver, Chad Little >> wrote: >> >>> With 0.9.3, I'm pretty much done with PHP iCalendar. I've enjoyed >>> working on the project over the last year with Jared and other >>> developers but I simply do not have the time nor patience to see the >>> project any further. Anyone interested in taking over the projects >>> please contact me. Thanks again to all the developers who helped >>> code and test this nice little app. >>> >>> Thanks, >>> C > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/ > direct;at.aspnet_072303_01/01 > _______________________________________________ > Phpicalendar-devel mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel |