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: Chad <ch...@ch...> - 2002-10-16 03:42:57
|
12) parse VTODO. yeah, I think we need #12 as well. ;-) Thought that was what you wanted to work on? -C On Tuesday, October 15, 2002, at 08:09 PM, Waitman C. Gobble wrote: > ok, let me see if i got it straight. > the ones with a plus sign to the left is complete. > > +1) Figure out why Oct 27th isn't parsed correctly on all systems. > 2) Email this event. - Sends a .ics file with just that event. > 3) Search - Find yo mama's birthday. > +4) Calendar coloring - Specify which style sheets to use for calendars > 1, 2, 3, 4... > +5) Year.php - I will toss this together on my trip hopefully. > +6) More themes - Will hope that some people submit a few new themes to > support #3. > > > Optional items: > > 7) Config builder for group-ware users - Builds a config.inc.php based > on drop down menus, form submit. > +8) Find an elegant solution to viewing a busy week - Decrease font > size, Truncate summary. > 9) Cookies for languages. - Pick a language, set a cookie. > +10) Change page titles - Based on date for easy bookmarking. > 11) Build a a nice homepage. - Support for downloads, rankings, > submissions, comments. Maybe look at nuke again. > 12) Bug fixes. > > > so, you need #2 and #3, right? > > thanks, > > waitman > > > On Tue, 2002-10-15 at 19:40, Chad wrote: > Since Jared and I don't have access to Moz Calendar (though I > could I > suppose) we hadn't planned support until 0.9 or so. My thoughts are > that adapting the parser would be pretty simple once we had gotten > all > the logic down. > > If I have some time tonight I'll look at putting my PC back > together. > We can make mozilla the top item for 0.8. > > In the meantime I'd prefer us stick to the roadmap for the next > release. I'd like to have it out by sunday night. Although I think > I've > lost Jared's help to homework. ;-) > > I'm sure the roadmap is somewheres in the mailing list archives. > > > -C > > > On Tuesday, October 15, 2002, at 07:29 PM, Waitman C. Gobble > wrote: > >> hello! >> >> please review the following unfolding code. according to rfc 2445, >> each >> line in the ics file must be 75 octets or less in length. each line is >> to terminated by CRLF. if the data portion causes the particular line >> to >> exceed 75 octets, then the line is to broken, with the excess placed >> on >> the following line(s) and preceded by a single space (ascii 32) or >> htab >> (ascii 9). >> >> (sheesh, i bet that made the unix and mac ppl happy, but hey look... a >> guy at microsoft co-authored the rfc... now can someone tell me why >> outlook doesn't do this right?) >> >> anyhow, i think this unfolding business is the reason that the >> existing >> phpicalendar scripts wouldn't read the mozilla files. i posted a >> quick-fix on the forum but i bet it wouldn't read multiple-multiple >> lines, ie if the particular line was long enough to exceed two lines. >> >> i tested it on a mozilla ics and an apple ics i found at apple.com >> if somebody has a really good one with lots of text in the >> descriptions, >> that would be super-cool. >> >> <?php >> >> //$ical_file="/53073H4/calenders/kristi.ics"; >> $ical_file="/53073H4/calenders/Premieres32Pacific.ics"; >> >> //need file name in $ical_file >> $errstr=""; >> >> if (!@file_exists($ical_file)) >> { >> >> $errstr="The file does not exist."; >> >> } else { >> >> //unfold file >> >> $folded=@file($ical_file); >> $unfolded = array(); >> $buffer = ""; >> for ($jj=0;$jj<count($folded);$jj++) >> { >> if (strlen($folded[$jj])>0) >> { >> if ( (ord(substr($folded[$jj],0,1))==32) || >> (ord(substr($folded[$jj],0,1))==9) ) >> { >> $buffer .= substr($folded[$jj],1,strlen($folded[$jj])-1); >> } else { >> if (strlen($buffer)>0) >> { >> $unfolded[]=$buffer; >> } >> $buffer=$folded[$jj]; >> } >> } >> } >> } >> >> //remove linefeeds and carriage returns >> >> for ($jj=0;$jj<count($unfolded);$jj++) >> { >> $unfolded[$jj] = @ereg_replace("\n","",$unfolded[$jj]); >> $unfolded[$jj] = @ereg_replace("\r","",$unfolded[$jj]); >> } >> print_r($unfolded); >> >> >> ?> >> >> >> >> thanks >> >> waitman >> >> >> >> >> >> >> >> >> ------------------------------------------------------- >> This sf.net email is sponsored by: viaVerio will pay you up to >> $1,000 for every account that you consolidate with us. >> http://ad.doubleclick.net/clk;4749864;7604308;v? >> http://www.viaverio.com/consolidator/osdn.cfm >> _______________________________________________ >> Phpicalendar-devel mailing list >> Php...@li... >> https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel > > > > ------------------------------------------------------- > This sf.net email is sponsored by: viaVerio will pay you up to > $1,000 for every account that you consolidate with us. > http://ad.doubleclick.net/clk;4749864;7604308;v? > http://www.viaverio.com/consolidator/osdn.cfm > _______________________________________________ > Phpicalendar-devel mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by: viaVerio will pay you up to > $1,000 for every account that you consolidate with us. > http://ad.doubleclick.net/clk;4749864;7604308;v? > http://www.viaverio.com/consolidator/osdn.cfm > _______________________________________________ > Phpicalendar-devel mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel |
From: Waitman C. G. <wa...@em...> - 2002-10-16 03:09:57
|
ok, let me see if i got it straight. the ones with a plus sign to the left is complete. +1) Figure out why Oct 27th isn't parsed correctly on all systems. 2) Email this event. - Sends a .ics file with just that event. 3) Search - Find yo mama's birthday. +4) Calendar coloring - Specify which style sheets to use for calendars 1, 2, 3, 4... +5) Year.php - I will toss this together on my trip hopefully. +6) More themes - Will hope that some people submit a few new themes to support #3. Optional items: 7) Config builder for group-ware users - Builds a config.inc.php based on drop down menus, form submit. +8) Find an elegant solution to viewing a busy week - Decrease font size, Truncate summary. 9) Cookies for languages. - Pick a language, set a cookie. +10) Change page titles - Based on date for easy bookmarking. 11) Build a a nice homepage. - Support for downloads, rankings, submissions, comments. Maybe look at nuke again. 12) Bug fixes. so, you need #2 and #3, right? thanks, waitman On Tue, 2002-10-15 at 19:40, Chad wrote: Since Jared and I don't have access to Moz Calendar (though I could I suppose) we hadn't planned support until 0.9 or so. My thoughts are that adapting the parser would be pretty simple once we had gotten all the logic down. If I have some time tonight I'll look at putting my PC back together. We can make mozilla the top item for 0.8. In the meantime I'd prefer us stick to the roadmap for the next release. I'd like to have it out by sunday night. Although I think I've lost Jared's help to homework. ;-) I'm sure the roadmap is somewheres in the mailing list archives. -C On Tuesday, October 15, 2002, at 07:29 PM, Waitman C. Gobble wrote: > hello! > > please review the following unfolding code. according to rfc 2445, each > line in the ics file must be 75 octets or less in length. each line is > to terminated by CRLF. if the data portion causes the particular line > to > exceed 75 octets, then the line is to broken, with the excess placed on > the following line(s) and preceded by a single space (ascii 32) or htab > (ascii 9). > > (sheesh, i bet that made the unix and mac ppl happy, but hey look... a > guy at microsoft co-authored the rfc... now can someone tell me why > outlook doesn't do this right?) > > anyhow, i think this unfolding business is the reason that the existing > phpicalendar scripts wouldn't read the mozilla files. i posted a > quick-fix on the forum but i bet it wouldn't read multiple-multiple > lines, ie if the particular line was long enough to exceed two lines. > > i tested it on a mozilla ics and an apple ics i found at apple.com > if somebody has a really good one with lots of text in the > descriptions, > that would be super-cool. > > <?php > > //$ical_file="/53073H4/calenders/kristi.ics"; > $ical_file="/53073H4/calenders/Premieres32Pacific.ics"; > > //need file name in $ical_file > $errstr=""; > > if (!@file_exists($ical_file)) > { > > $errstr="The file does not exist."; > > } else { > > //unfold file > > $folded=@file($ical_file); > $unfolded = array(); > $buffer = ""; > for ($jj=0;$jj<count($folded);$jj++) > { > if (strlen($folded[$jj])>0) > { > if ( (ord(substr($folded[$jj],0,1))==32) || > (ord(substr($folded[$jj],0,1))==9) ) > { > $buffer .= substr($folded[$jj],1,strlen($folded[$jj])-1); > } else { > if (strlen($buffer)>0) > { > $unfolded[]=$buffer; > } > $buffer=$folded[$jj]; > } > } > } > } > > //remove linefeeds and carriage returns > > for ($jj=0;$jj<count($unfolded);$jj++) > { > $unfolded[$jj] = @ereg_replace("\n","",$unfolded[$jj]); > $unfolded[$jj] = @ereg_replace("\r","",$unfolded[$jj]); > } > print_r($unfolded); > > > ?> > > > > thanks > > waitman > > > > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by: viaVerio will pay you up to > $1,000 for every account that you consolidate with us. > http://ad.doubleclick.net/clk;4749864;7604308;v? > http://www.viaverio.com/consolidator/osdn.cfm > _______________________________________________ > Phpicalendar-devel mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel ------------------------------------------------------- This sf.net email is sponsored by: viaVerio will pay you up to $1,000 for every account that you consolidate with us. http://ad.doubleclick.net/clk;4749864;7604308;v? http://www.viaverio.com/consolidator/osdn.cfm _______________________________________________ Phpicalendar-devel mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel |
From: Waitman C. G. <wa...@em...> - 2002-10-16 02:55:55
|
btw, i have mozilla calendar running on windows xp and redhat linux 8.0 for testing purposes... let me know if you need any samples or whatever... take care waitman On Tue, 2002-10-15 at 19:42, Chad wrote: In the styles > silver > default.css file. .monthon - highlight color .monthreg - white background color .monthoff - nonday of the month Date support isn't in the current release, although Time zone support in 0.7 should fix this issue. I imagine we'll have a line in the config where you specific what time zone you want your calendar displayed in. Jared? -Chad On Tuesday, October 15, 2002, at 06:55 PM, Thomas McMahon wrote: > I have two questions. > 1) where is it pulling in the date. I just need to edit it so it > subtracts one day. You see my hosting service is in Hong Kong or some > place like that so when it goes to get the day it's off by one day. I > know i can fix it i just need to know where the code is. > > 2) where can i change today's color in the Month view? I wan't to > make today have a much darker background so it sticks out. > > Great app though!! > > Thomas > > > > ------------------------------------------------------- > This sf.net email is sponsored by: viaVerio will pay you up to > $1,000 for every account that you consolidate with us. > http://ad.doubleclick.net/clk;4749864;7604308;v? > http://www.viaverio.com/consolidator/osdn.cfm > _______________________________________________ > Phpicalendar-devel mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel ------------------------------------------------------- This sf.net email is sponsored by: viaVerio will pay you up to $1,000 for every account that you consolidate with us. http://ad.doubleclick.net/clk;4749864;7604308;v? http://www.viaverio.com/consolidator/osdn.cfm _______________________________________________ Phpicalendar-devel mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel |
From: Waitman C. G. <wa...@em...> - 2002-10-16 02:46:55
|
not a problem... let me find that road map... best waitman On Tue, 2002-10-15 at 19:40, Chad wrote: Since Jared and I don't have access to Moz Calendar (though I could I suppose) we hadn't planned support until 0.9 or so. My thoughts are that adapting the parser would be pretty simple once we had gotten all the logic down. If I have some time tonight I'll look at putting my PC back together. We can make mozilla the top item for 0.8. In the meantime I'd prefer us stick to the roadmap for the next release. I'd like to have it out by sunday night. Although I think I've lost Jared's help to homework. ;-) I'm sure the roadmap is somewheres in the mailing list archives. -C On Tuesday, October 15, 2002, at 07:29 PM, Waitman C. Gobble wrote: > hello! > > please review the following unfolding code. according to rfc 2445, each > line in the ics file must be 75 octets or less in length. each line is > to terminated by CRLF. if the data portion causes the particular line > to > exceed 75 octets, then the line is to broken, with the excess placed on > the following line(s) and preceded by a single space (ascii 32) or htab > (ascii 9). > > (sheesh, i bet that made the unix and mac ppl happy, but hey look... a > guy at microsoft co-authored the rfc... now can someone tell me why > outlook doesn't do this right?) > > anyhow, i think this unfolding business is the reason that the existing > phpicalendar scripts wouldn't read the mozilla files. i posted a > quick-fix on the forum but i bet it wouldn't read multiple-multiple > lines, ie if the particular line was long enough to exceed two lines. > > i tested it on a mozilla ics and an apple ics i found at apple.com > if somebody has a really good one with lots of text in the > descriptions, > that would be super-cool. > > <?php > > //$ical_file="/53073H4/calenders/kristi.ics"; > $ical_file="/53073H4/calenders/Premieres32Pacific.ics"; > > //need file name in $ical_file > $errstr=""; > > if (!@file_exists($ical_file)) > { > > $errstr="The file does not exist."; > > } else { > > //unfold file > > $folded=@file($ical_file); > $unfolded = array(); > $buffer = ""; > for ($jj=0;$jj<count($folded);$jj++) > { > if (strlen($folded[$jj])>0) > { > if ( (ord(substr($folded[$jj],0,1))==32) || > (ord(substr($folded[$jj],0,1))==9) ) > { > $buffer .= substr($folded[$jj],1,strlen($folded[$jj])-1); > } else { > if (strlen($buffer)>0) > { > $unfolded[]=$buffer; > } > $buffer=$folded[$jj]; > } > } > } > } > > //remove linefeeds and carriage returns > > for ($jj=0;$jj<count($unfolded);$jj++) > { > $unfolded[$jj] = @ereg_replace("\n","",$unfolded[$jj]); > $unfolded[$jj] = @ereg_replace("\r","",$unfolded[$jj]); > } > print_r($unfolded); > > > ?> > > > > thanks > > waitman > > > > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by: viaVerio will pay you up to > $1,000 for every account that you consolidate with us. > http://ad.doubleclick.net/clk;4749864;7604308;v? > http://www.viaverio.com/consolidator/osdn.cfm > _______________________________________________ > Phpicalendar-devel mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel ------------------------------------------------------- This sf.net email is sponsored by: viaVerio will pay you up to $1,000 for every account that you consolidate with us. http://ad.doubleclick.net/clk;4749864;7604308;v? http://www.viaverio.com/consolidator/osdn.cfm _______________________________________________ Phpicalendar-devel mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel |
From: Chad <ch...@ch...> - 2002-10-16 02:43:05
|
In the styles > silver > default.css file. .monthon - highlight color .monthreg - white background color .monthoff - nonday of the month Date support isn't in the current release, although Time zone support in 0.7 should fix this issue. I imagine we'll have a line in the config where you specific what time zone you want your calendar displayed in. Jared? -Chad On Tuesday, October 15, 2002, at 06:55 PM, Thomas McMahon wrote: > I have two questions. > 1) where is it pulling in the date. I just need to edit it so it > subtracts one day. You see my hosting service is in Hong Kong or some > place like that so when it goes to get the day it's off by one day. I > know i can fix it i just need to know where the code is. > > 2) where can i change today's color in the Month view? I wan't to > make today have a much darker background so it sticks out. > > Great app though!! > > Thomas > > > > ------------------------------------------------------- > This sf.net email is sponsored by: viaVerio will pay you up to > $1,000 for every account that you consolidate with us. > http://ad.doubleclick.net/clk;4749864;7604308;v? > http://www.viaverio.com/consolidator/osdn.cfm > _______________________________________________ > Phpicalendar-devel mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel |
From: Chad <ch...@ch...> - 2002-10-16 02:40:53
|
Since Jared and I don't have access to Moz Calendar (though I could I suppose) we hadn't planned support until 0.9 or so. My thoughts are that adapting the parser would be pretty simple once we had gotten all the logic down. If I have some time tonight I'll look at putting my PC back together. We can make mozilla the top item for 0.8. In the meantime I'd prefer us stick to the roadmap for the next release. I'd like to have it out by sunday night. Although I think I've lost Jared's help to homework. ;-) I'm sure the roadmap is somewheres in the mailing list archives. -C On Tuesday, October 15, 2002, at 07:29 PM, Waitman C. Gobble wrote: > hello! > > please review the following unfolding code. according to rfc 2445, each > line in the ics file must be 75 octets or less in length. each line is > to terminated by CRLF. if the data portion causes the particular line > to > exceed 75 octets, then the line is to broken, with the excess placed on > the following line(s) and preceded by a single space (ascii 32) or htab > (ascii 9). > > (sheesh, i bet that made the unix and mac ppl happy, but hey look... a > guy at microsoft co-authored the rfc... now can someone tell me why > outlook doesn't do this right?) > > anyhow, i think this unfolding business is the reason that the existing > phpicalendar scripts wouldn't read the mozilla files. i posted a > quick-fix on the forum but i bet it wouldn't read multiple-multiple > lines, ie if the particular line was long enough to exceed two lines. > > i tested it on a mozilla ics and an apple ics i found at apple.com > if somebody has a really good one with lots of text in the > descriptions, > that would be super-cool. > > <?php > > //$ical_file="/53073H4/calenders/kristi.ics"; > $ical_file="/53073H4/calenders/Premieres32Pacific.ics"; > > //need file name in $ical_file > $errstr=""; > > if (!@file_exists($ical_file)) > { > > $errstr="The file does not exist."; > > } else { > > //unfold file > > $folded=@file($ical_file); > $unfolded = array(); > $buffer = ""; > for ($jj=0;$jj<count($folded);$jj++) > { > if (strlen($folded[$jj])>0) > { > if ( (ord(substr($folded[$jj],0,1))==32) || > (ord(substr($folded[$jj],0,1))==9) ) > { > $buffer .= substr($folded[$jj],1,strlen($folded[$jj])-1); > } else { > if (strlen($buffer)>0) > { > $unfolded[]=$buffer; > } > $buffer=$folded[$jj]; > } > } > } > } > > //remove linefeeds and carriage returns > > for ($jj=0;$jj<count($unfolded);$jj++) > { > $unfolded[$jj] = @ereg_replace("\n","",$unfolded[$jj]); > $unfolded[$jj] = @ereg_replace("\r","",$unfolded[$jj]); > } > print_r($unfolded); > > > ?> > > > > thanks > > waitman > > > > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by: viaVerio will pay you up to > $1,000 for every account that you consolidate with us. > http://ad.doubleclick.net/clk;4749864;7604308;v? > http://www.viaverio.com/consolidator/osdn.cfm > _______________________________________________ > Phpicalendar-devel mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel |
From: Waitman C. G. <wa...@em...> - 2002-10-16 02:29:55
|
hello! please review the following unfolding code. according to rfc 2445, each line in the ics file must be 75 octets or less in length. each line is to terminated by CRLF. if the data portion causes the particular line to exceed 75 octets, then the line is to broken, with the excess placed on the following line(s) and preceded by a single space (ascii 32) or htab (ascii 9). (sheesh, i bet that made the unix and mac ppl happy, but hey look... a guy at microsoft co-authored the rfc... now can someone tell me why outlook doesn't do this right?) anyhow, i think this unfolding business is the reason that the existing phpicalendar scripts wouldn't read the mozilla files. i posted a quick-fix on the forum but i bet it wouldn't read multiple-multiple lines, ie if the particular line was long enough to exceed two lines. i tested it on a mozilla ics and an apple ics i found at apple.com if somebody has a really good one with lots of text in the descriptions, that would be super-cool. <?php //$ical_file="/53073H4/calenders/kristi.ics"; $ical_file="/53073H4/calenders/Premieres32Pacific.ics"; //need file name in $ical_file $errstr=""; if (!@file_exists($ical_file)) { $errstr="The file does not exist."; } else { //unfold file $folded=@file($ical_file); $unfolded = array(); $buffer = ""; for ($jj=0;$jj<count($folded);$jj++) { if (strlen($folded[$jj])>0) { if ( (ord(substr($folded[$jj],0,1))==32) || (ord(substr($folded[$jj],0,1))==9) ) { $buffer .= substr($folded[$jj],1,strlen($folded[$jj])-1); } else { if (strlen($buffer)>0) { $unfolded[]=$buffer; } $buffer=$folded[$jj]; } } } } //remove linefeeds and carriage returns for ($jj=0;$jj<count($unfolded);$jj++) { $unfolded[$jj] = @ereg_replace("\n","",$unfolded[$jj]); $unfolded[$jj] = @ereg_replace("\r","",$unfolded[$jj]); } print_r($unfolded); ?> thanks waitman |
From: Thomas M. <th...@tw...> - 2002-10-16 01:52:44
|
I have two questions. 1) where is it pulling in the date. I just need to edit it so it subtracts one day. You see my hosting service is in Hong Kong or some place like that so when it goes to get the day it's off by one day. I know i can fix it i just need to know where the code is. 2) where can i change today's color in the Month view? I wan't to make today have a much darker background so it sticks out. Great app though!! Thomas |
From: Waitman C. G. <wa...@em...> - 2002-10-16 01:37:56
|
I am reviewing RFC 2445 at http://www.ietf.org/rfc/rfc2445.txt Is the current project compatible with this standard, or is it completely based on Apple's format? (or are they one in the same!) The reason I ask is that Mozilla claims to be compatible with Apple's format, and vice-versa but the phpicalendar scripts as is won't read a mozilla file. I will give you an answer with regards to VTODO here shortly after I have fully reviewed the rfc. For the future: Anyhow, the current scripts make it difficult to place the thing in a layout, in my opinion. I went through and modified the month.php file to make it easier to place in a template/layout - just to try it out on a project I am working on. If you guys are interested I would like to grab the latest CVS a little down the road and change some things around to make it a snap to stick it in a layout. Basically (to me) this means getting rid of all the echo's and print's as they currently exist, and moving them to a central location. Thanks Waitman On Tue, 2002-10-15 at 15:37, Jared wrote: I recommend that VTODO isn't it's own array completely, but rather a sub-array of the $master_array. Something like $master_array['vtodo']. This way, when we write the $master_array to the file (so it doesn't have to reparse) it will get that data too, and we don't have to special-case it. -Jared On Tuesday, October 15, 2002, at 05:33 PM, Chad wrote: > Yes, VTODO and VALARM support would be great. I have already thought > of a few ways to intergrate. VTODO should be in its own $vtodo_array > created inside the ical_parser.php. It will appear on day and week > views on the side, and will be configurable on and off from the > config.inc.php file. I imagine only some people want their todo's > published. > > Databasing has been discussed and shelved for a later release, It will > never be required, since probably 80% of our users will not have > access or need the extra speed it enables. I do see a nice install.php > being built that would let the user decide to run in standalone or > database mode for power users. Personally I'd like us to be able to > tweak the parser to be almost as fast as a database. > > Just let us know if your going to work on VTODOs, so someone else > doesn't. > > Also, year.php is now in CVS and wired. I will add navigation to it > soon. > > Cheers, > C > > > > > On Monday, October 14, 2002, at 02:52 PM, Waitman C. Gobble wrote: > >> Hello >> >> at the request of >> >> clittle >> Site Admin >> Joined: 10 Sep 2002 >> Posts: 52 >> Location: SF Bay, CA >> >> i am now a subscriber to php...@li... >> >> I am interested in reworking the functions/ical_parse.php script. I >> would like to add VTODO and VALARM support, and eventually have the >> option to send sms/email notifications of events. >> >> Anyone support moving away from the flat files and towards a database >> server? >> >> OS X ships with MySQL, it is reliable, fast, low overhead and >> cross-platform compatible so probably best choice. >> >> I picture this thing running on a cron schedule keeping the database >> in sync with the published calendars. Actually, we can get it to sync >> remote calendars too, either straight http or webdav... >> >> a little bit about me. >> >> My wife and i run an internet business, been around about 5 years. we >> create dynamic database driven sites, mostly e-commerce, in PHP, ASP >> and PERL. We host over 500 domains on several Linux, FreeBSD and >> Windows Servers. I have built all of our machines from parts, and >> have setup, configured and maintain them. >> >> Additionally I provide consulting services for Creative Resources, >> one of a dozen or so Certified Apple Training Centers in the United >> States. I help configure, install and maintain OS X servers for their >> customers, and write custom scripts and programs that run on the >> server to do things like >> >> a) track file aging, notify and archive outdated files on a >> terabyte-sized OS X file server >> b) track user file access on a file server, and generate web based >> reports for management review. >> c) watch and adjust file permissions on a file server, where files >> are accessed and modified by mac, unix and windows users over samba, >> nfs, ftp, telnet, ssh and afp >> >> I have no formal training in this industry, I went to college to be a >> Mechanical Engineer.... >> >> i am mostly e-centric and work a little too much for my own good. >> >> yahoo id is rooey2002 >> aol id is emkinternet. >> >> the yahoo thing currently has a web cam hooked into it, however i am >> thinking about dumping it and setting up a camera server (in my spare >> time ;-) >> >> family photo album online at http://thegobbles.com >> personal web site (knda dated) http://wcg2.com >> kid site 1 http://adamgobble.com >> kid site 2 http://megancrawford.com >> business site http://emkdesign.com >> >> i host a site for a friend in ireland, check it out >> http://www.phpmac.com/ >> I have written a couple of articles on that site. >> >> thanks and best, >> >> Waitman Gobble >> EMK Design >> Buena Park California >> +1.7145222528 >> http://emkdesign.com >> > > > > ------------------------------------------------------- > This sf.net email is sponsored by: viaVerio will pay you up to > $1,000 for every account that you consolidate with us. > http://ad.doubleclick.net/clk;4749864;7604308;v? > http://www.viaverio.com/consolidator/osdn.cfm > _______________________________________________ > Phpicalendar-devel mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel ------------------------------------------------------- This sf.net email is sponsored by: viaVerio will pay you up to $1,000 for every account that you consolidate with us. http://ad.doubleclick.net/clk;4749864;7604308;v? http://www.viaverio.com/consolidator/osdn.cfm _______________________________________________ Phpicalendar-devel mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel |
From: Jared <xe...@si...> - 2002-10-15 22:37:52
|
I recommend that VTODO isn't it's own array completely, but rather a=20 sub-array of the $master_array. Something like $master_array['vtodo'].=20= This way, when we write the $master_array to the file (so it doesn't=20 have to reparse) it will get that data too, and we don't have to=20 special-case it. -Jared On Tuesday, October 15, 2002, at 05:33 PM, Chad wrote: > Yes, VTODO and VALARM support would be great. I have already thought=20= > of a few ways to intergrate. VTODO should be in its own $vtodo_array=20= > created inside the ical_parser.php. It will appear on day and week=20 > views on the side, and will be configurable on and off from the=20 > config.inc.php file. I imagine only some people want their todo's=20 > published. > > Databasing has been discussed and shelved for a later release, It will=20= > never be required, since probably 80% of our users will not have=20 > access or need the extra speed it enables. I do see a nice install.php=20= > being built that would let the user decide to run in standalone or=20 > database mode for power users. Personally I'd like us to be able to=20 > tweak the parser to be almost as fast as a database. > > Just let us know if your going to work on VTODOs, so someone else=20 > doesn't. > > Also, year.php is now in CVS and wired. I will add navigation to it=20 > soon. > > Cheers, > C > > > > > On Monday, October 14, 2002, at 02:52 PM, Waitman C. Gobble wrote: > >> Hello >> >> at the request of >> >> clittle >> Site Admin >> Joined: 10 Sep 2002 >> Posts: 52 >> Location: SF Bay, CA >> >> i am now a subscriber to php...@li... >> >> I am interested in reworking the functions/ical_parse.php script. I=20= >> would like to add VTODO and VALARM support, and eventually have the=20= >> option to send sms/email notifications of events. >> >> Anyone support moving away from the flat files and towards a database=20= >> server? >> >> OS X ships with MySQL, it is reliable, fast, low overhead and=20 >> cross-platform compatible so probably best choice. >> >> I picture this thing running on a cron schedule keeping the database=20= >> in sync with the published calendars. Actually, we can get it to sync=20= >> remote calendars too, either straight http or webdav... >> >> a little bit about me. >> >> My wife and i run an internet business, been around about 5 years. we=20= >> create dynamic database driven sites, mostly e-commerce, in PHP, ASP=20= >> and PERL. We host over 500 domains on several Linux, FreeBSD and=20 >> Windows Servers. I have built all of our machines from parts, and=20 >> have setup, configured and maintain them.=A0 >> >> Additionally I provide consulting services for Creative Resources,=20 >> one of a dozen or so Certified Apple Training Centers in the United=20= >> States. I help configure, install and maintain OS X servers for their=20= >> customers, and write custom scripts and programs that run on the=20 >> server to do things like >> >> a) track file aging, notify and archive outdated files on a=20 >> terabyte-sized OS X file server >> b) track user file access on a file server, and generate web based=20 >> reports for management review. >> c) watch and adjust file permissions on a file server, where files=20 >> are accessed and modified by mac, unix and windows users over samba,=20= >> nfs, ftp, telnet, ssh and afp >> >> I have no formal training in this industry, I went to college to be a=20= >> Mechanical Engineer.... >> >> i am mostly e-centric and work a little too much for my own good. >> >> yahoo id is rooey2002 >> aol id is emkinternet. >> >> the yahoo thing currently has a web cam hooked into it, however i am=20= >> thinking about dumping it and setting up a camera server (in my spare=20= >> time ;-) >> >> family photo album online at http://thegobbles.com >> personal web site (knda dated) http://wcg2.com >> kid site 1 http://adamgobble.com >> kid site 2 http://megancrawford.com >> business site http://emkdesign.com >> >> i host a site for a friend in ireland, check it out=20 >> http://www.phpmac.com/ >> I have written a couple of articles on that site. >> >> thanks and best, >> >> Waitman Gobble >> EMK Design >> Buena Park California >> +1.7145222528 >> http://emkdesign.com >> > > > > ------------------------------------------------------- > This sf.net email is sponsored by: viaVerio will pay you up to > $1,000 for every account that you consolidate with us. > http://ad.doubleclick.net/clk;4749864;7604308;v? > http://www.viaverio.com/consolidator/osdn.cfm > _______________________________________________ > Phpicalendar-devel mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel |
From: Chad <ch...@ch...> - 2002-10-15 22:33:58
|
Yes, VTODO and VALARM support would be great. I have already thought of=20= a few ways to intergrate. VTODO should be in its own $vtodo_array=20 created inside the ical_parser.php. It will appear on day and week=20 views on the side, and will be configurable on and off from the=20 config.inc.php file. I imagine only some people want their todo's=20 published. Databasing has been discussed and shelved for a later release, It will=20= never be required, since probably 80% of our users will not have access=20= or need the extra speed it enables. I do see a nice install.php being=20 built that would let the user decide to run in standalone or database=20 mode for power users. Personally I'd like us to be able to tweak the=20 parser to be almost as fast as a database. Just let us know if your going to work on VTODOs, so someone else=20 doesn't. Also, year.php is now in CVS and wired. I will add navigation to it=20 soon. Cheers, C On Monday, October 14, 2002, at 02:52 PM, Waitman C. Gobble wrote: > Hello > > at the request of > > clittle > Site Admin > Joined: 10 Sep 2002 > Posts: 52 > Location: SF Bay, CA > > i am now a subscriber to php...@li... > > I am interested in reworking the functions/ical_parse.php script. I=20 > would like to add VTODO and VALARM support, and eventually have the=20 > option to send sms/email notifications of events. > > Anyone support moving away from the flat files and towards a database=20= > server? > > OS X ships with MySQL, it is reliable, fast, low overhead and=20 > cross-platform compatible so probably best choice. > > I picture this thing running on a cron schedule keeping the database=20= > in sync with the published calendars. Actually, we can get it to sync=20= > remote calendars too, either straight http or webdav... > > a little bit about me. > > My wife and i run an internet business, been around about 5 years. we=20= > create dynamic database driven sites, mostly e-commerce, in PHP, ASP=20= > and PERL. We host over 500 domains on several Linux, FreeBSD and=20 > Windows Servers. I have built all of our machines from parts, and have=20= > setup, configured and maintain them.=A0 > > Additionally I provide consulting services for Creative Resources, one=20= > of a dozen or so Certified Apple Training Centers in the United=20 > States. I help configure, install and maintain OS X servers for their=20= > customers, and write custom scripts and programs that run on the=20 > server to do things like > > a) track file aging, notify and archive outdated files on a=20 > terabyte-sized OS X file server > b) track user file access on a file server, and generate web based=20 > reports for management review. > c) watch and adjust file permissions on a file server, where files are=20= > accessed and modified by mac, unix and windows users over samba, nfs,=20= > ftp, telnet, ssh and afp > > I have no formal training in this industry, I went to college to be a=20= > Mechanical Engineer.... > > i am mostly e-centric and work a little too much for my own good. > > yahoo id is rooey2002 > aol id is emkinternet. > > the yahoo thing currently has a web cam hooked into it, however i am=20= > thinking about dumping it and setting up a camera server (in my spare=20= > time ;-) > > family photo album online at http://thegobbles.com > personal web site (knda dated) http://wcg2.com > kid site 1 http://adamgobble.com > kid site 2 http://megancrawford.com > business site http://emkdesign.com > > i host a site for a friend in ireland, check it out=20 > http://www.phpmac.com/ > I have written a couple of articles on that site. > > thanks and best, > > Waitman Gobble > EMK Design > Buena Park California > +1.7145222528 > http://emkdesign.com > |
From: Waitman C. G. <wa...@em...> - 2002-10-14 21:53:53
|
Hello at the request of clittle Site Admin Joined: 10 Sep 2002 Posts: 52 Location: SF Bay, CA i am now a subscriber to php...@li... I am interested in reworking the functions/ical_parse.php script. I would like to add VTODO and VALARM support, and eventually have the option to send sms/email notifications of events. Anyone support moving away from the flat files and towards a database server? OS X ships with MySQL, it is reliable, fast, low overhead and cross-platform compatible so probably best choice. I picture this thing running on a cron schedule keeping the database in sync with the published calendars. Actually, we can get it to sync remote calendars too, either straight http or webdav... a little bit about me. My wife and i run an internet business, been around about 5 years. we create dynamic database driven sites, mostly e-commerce, in PHP, ASP and PERL. We host over 500 domains on several Linux, FreeBSD and Windows Servers. I have built all of our machines from parts, and have setup, configured and maintain them. Additionally I provide consulting services for Creative Resources, one of a dozen or so Certified Apple Training Centers in the United States. I help configure, install and maintain OS X servers for their customers, and write custom scripts and programs that run on the server to do things like a) track file aging, notify and archive outdated files on a terabyte-sized OS X file server b) track user file access on a file server, and generate web based reports for management review. c) watch and adjust file permissions on a file server, where files are accessed and modified by mac, unix and windows users over samba, nfs, ftp, telnet, ssh and afp I have no formal training in this industry, I went to college to be a Mechanical Engineer.... i am mostly e-centric and work a little too much for my own good. yahoo id is rooey2002 aol id is emkinternet. the yahoo thing currently has a web cam hooked into it, however i am thinking about dumping it and setting up a camera server (in my spare time ;-) family photo album online at http://thegobbles.com personal web site (knda dated) http://wcg2.com kid site 1 http://adamgobble.com kid site 2 http://megancrawford.com business site http://emkdesign.com i host a site for a friend in ireland, check it out http://www.phpmac.com/ I have written a couple of articles on that site. thanks and best, Waitman Gobble EMK Design Buena Park California +1.7145222528 http://emkdesign.com |
From: Chad <ch...@ch...> - 2002-10-14 21:02:41
|
Just an update as to where some things are, at least what I have done. 4) - I will look at putting this in now that we have more themes. 5) - Already layed out, will wire up in the next few days. 6) - Ive done 2 more, just need green and that makes 5 for 0.7. 8) - Made some minor tweeks to fonts and used truncate function. 10) - I will do soon. Anyone else? Cheers, C On Monday, October 7, 2002, at 10:41 AM, Chad wrote: > So, lets start planning the next one. > > In list of importance by me. > > 1) Figure out why Oct 27th isn't parsed correctly on all systems. > 2) Email this event. - Sends a .ics file with just that event. > 3) Search - Find your mama's birthday. > 4) Calendar coloring - Specify which style sheets to use for calendars > 1, 2, 3, 4... > 5) Year.php - I will toss this together on my trip hopefully. > 6) More themes - Will hope that some people submit a few new themes to > support #3. > > > Optional items: > > 7) Config builder for group-ware users - Builds a config.inc.php based > on drop down menus, form submit. > 8) Find an elegant solution to viewing a busy week - Decrease font > size, Truncate summary. > 9) Cookies for languages. - Pick a language, set a cookie. > 10) Change page titles - Based on date for easy bookmarking. > 11) Build a a nice homepage. - Support for downloads, rankings, > submissions, comments. Maybe look at nuke again. > 12) Bug fixes. > > > Whew, longer list than I though :-) > > > > ------------------------------------------------------- > 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: Chad <ch...@ch...> - 2002-10-10 15:41:13
|
Oh and everything should bow before Timezone master Jared for fixing my most hated bug, the Oct 27th Timezone bug. Thanks! -Chad |
From: Chad <ch...@ch...> - 2002-10-10 15:33:39
|
We need to get ourselves a mozilla calendar to test, evidentally they are formed a bit different. Someone has posted some code to help us here: http://phpicalendar.sourceforge.net/phpBB2/viewtopic.php?t=64 Can someone check and fold it into the parser if it works, we will need to support at least iCal and Mozilla by 1.0. Also, I'll be away for 4 days, so I wont have much of a chance to work on anything. Keep plugging along on bugs and 0.7 roadmap if you guys like, I will try to put together a "printer friendly" page that will format nicely for a printer. Someone can also wire up year.php if they so feel inclined. :-) Oh and if you do year.php, we'll need a list_years.php function, I imagine it will go up and back 3 years, configurable in the config. Oh, and we need to know how far Moz calendar is, if its still alpha we may not want to fold in these changes just yet. -Chad |
From: Chad <ch...@ch...> - 2002-10-08 23:23:57
|
We need to add something in the config that people can put where their temp folder is, windows users will have a different directory. -C |
From: Chad <ch...@ch...> - 2002-10-08 17:40:12
|
hmm, yeah i could add a slight border to today today, and just keep the highlighting on the day that you are viewing. This is more a feature request, but i'll just do it. -C On Monday, October 7, 2002, at 10:15 PM, Jared wrote: > That is not a bug. It highlights what ever the currently selected day > is. By default, this is "Today." But, when you go to "next month" it > keeps the day set, meaning the 8th. That way, you know where it's > going to go when you switch to week view and day view. It will go to > the day that is highlighted. By default, when you click on a date in a > mini-calendar, it takes you to that date of the month if already in > month view. Therefore, you can switch to different days using this > method. Or, you can manually enter the date in the URL. > > However, as I said, it is made to do this. It might not be the best > solution right now. I was considering making "Today" have a wider > border so it stands out from the rest. Either that, or make the > selected one have a wider border and "Today" have the blue background. > > -Jared > > P.S. It is best to submit Bugs and/or Features requests on the Bug or > Feature tracker at our sourceforge page. See the web site for links to > those trackers. > > http://phpicalendar.sourceforge.net > > On Tuesday, October 8, 2002, at 12:08 AM, Marc Cohen wrote: > >> First off, great set of scripts, I love it! It seems, however, that >> the current day of the month is shaded in every month, not just the >> current one (month view, obviously). Today is Oct. 8, and the 8th of >> every month is shaded. Not a big deal, but an inconsistency none the >> less. >> >> Keep up the good work! >> >> Marc Cohen >> co...@ve... >> >> >> >> ------------------------------------------------------- >> 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 > > > > > ------------------------------------------------------- > 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: Jared <xe...@si...> - 2002-10-08 05:35:47
|
That is not a bug. It highlights what ever the currently selected day is. By default, this is "Today." But, when you go to "next month" it keeps the day set, meaning the 8th. That way, you know where it's going to go when you switch to week view and day view. It will go to the day that is highlighted. By default, when you click on a date in a mini-calendar, it takes you to that date of the month if already in month view. Therefore, you can switch to different days using this method. Or, you can manually enter the date in the URL. However, as I said, it is made to do this. It might not be the best solution right now. I was considering making "Today" have a wider border so it stands out from the rest. Either that, or make the selected one have a wider border and "Today" have the blue background. -Jared P.S. It is best to submit Bugs and/or Features requests on the Bug or Feature tracker at our sourceforge page. See the web site for links to those trackers. http://phpicalendar.sourceforge.net On Tuesday, October 8, 2002, at 12:08 AM, Marc Cohen wrote: > First off, great set of scripts, I love it! It seems, however, that > the current day of the month is shaded in every month, not just the > current one (month view, obviously). Today is Oct. 8, and the 8th of > every month is shaded. Not a big deal, but an inconsistency none the > less. > > Keep up the good work! > > Marc Cohen > co...@ve... > > > > ------------------------------------------------------- > 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: Marc C. <co...@ve...> - 2002-10-08 05:09:01
|
First off, great set of scripts, I love it! It seems, however, that the current day of the month is shaded in every month, not just the current one (month view, obviously). Today is Oct. 8, and the 8th of every month is shaded. Not a big deal, but an inconsistency none the less. Keep up the good work! Marc Cohen co...@ve... |
From: Chad <ch...@ch...> - 2002-10-07 21:28:05
|
Yeah, Jared pulled the old code for all day events into his code, but looks like enough testing wasn't done, recurring all-day events are broken at least annual ones. We'll have to test more to see what else might be broken in the all-day event "All-Day"?? I don't see that anywhere, it was around earlier but not in 0.6. Mike please check that you are using the latest from CVS. As for "12:00 AM" being shown, I don't see it. Did you check the version we have as the demo? Thanks for the tip on all day recurring events. I'll be sure to tease Jared. http://phpicalendar.sourceforge.net/phpicalendar-0.6/ -Chad On Monday, October 7, 2002, at 12:17 PM, Michel wrote: > Chad wrote : > >> So, lets start planning the next one. >> In list of importance by me. >> 1) Figure out why Oct 27th isn't parsed correctly on all systems. >> 2) Email this event. - Sends a .ics file with just that event. >> 3) Search - Find your mama's birthday. >> 4) Calendar coloring - Specify which style sheets to use for >> calendars 1, 2, 3, 4... >> 5) Year.php - I will toss this together on my trip hopefully. >> 6) More themes - Will hope that some people submit a few new themes >> to support #3. > > > > > Hi guys, > The 0.6 was a good release. But I saw some few things to fix to be > perfect: > - untimed events (as "Stef in town" all-over september's Home > calendar), in "This Month's Events" down the month.php page, are shown > as 12.00 AM They should be displayed without the 12.00 AM as in the > rest of the calendar > (To correct this, add $event_end = ''; in month_bottom.php, lines 363) > - I checked the differences between iCalendar 0.6's calendar parsing > and iCal.app's calendar parsing. One event disapeared with iCalendar > on Tuesday, Sept 17 "My birthday" You can see that looking for "My > birthday" in the .ics source > (we have to check again ical_parser.php because this might be very > anoying) > - untimed events are shown as "All - Day" instead using the > $all_day_lang variable in day.php and week.php This is due to the > displayed loop (lines 106-116 in day.php, lines 178-187 in week.php) > The good loop method is in month.php lines 133-168 > > Mike. > > > ------------------------------------------------------- > 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: Michel <mi...@la...> - 2002-10-07 19:17:09
|
Chad wrote : > So, lets start planning the next one. > In list of importance by me. > 1) Figure out why Oct 27th isn't parsed correctly on all systems. > 2) Email this event. - Sends a .ics file with just that event. > 3) Search - Find your mama's birthday. > 4) Calendar coloring - Specify which style sheets to use for calendars > 1, 2, 3, 4... > 5) Year.php - I will toss this together on my trip hopefully. > 6) More themes - Will hope that some people submit a few new themes to > support #3. Hi guys, The 0.6 was a good release. But I saw some few things to fix to be perfect: - untimed events (as "Stef in town" all-over september's Home calendar), in "This Month's Events" down the month.php page, are shown as 12.00 AM They should be displayed without the 12.00 AM as in the rest of the calendar (To correct this, add $event_end = ''; in month_bottom.php, lines 363) - I checked the differences between iCalendar 0.6's calendar parsing and iCal.app's calendar parsing. One event disapeared with iCalendar on Tuesday, Sept 17 "My birthday" You can see that looking for "My birthday" in the .ics source (we have to check again ical_parser.php because this might be very anoying) - untimed events are shown as "All - Day" instead using the $all_day_lang variable in day.php and week.php This is due to the displayed loop (lines 106-116 in day.php, lines 178-187 in week.php) The good loop method is in month.php lines 133-168 Mike. |
From: Chad <ch...@ch...> - 2002-10-07 17:42:28
|
So, lets start planning the next one. In list of importance by me. 1) Figure out why Oct 27th isn't parsed correctly on all systems. 2) Email this event. - Sends a .ics file with just that event. 3) Search - Find your mama's birthday. 4) Calendar coloring - Specify which style sheets to use for calendars 1, 2, 3, 4... 5) Year.php - I will toss this together on my trip hopefully. 6) More themes - Will hope that some people submit a few new themes to support #3. Optional items: 7) Config builder for group-ware users - Builds a config.inc.php based on drop down menus, form submit. 8) Find an elegant solution to viewing a busy week - Decrease font size, Truncate summary. 9) Cookies for languages. - Pick a language, set a cookie. 10) Change page titles - Based on date for easy bookmarking. 11) Build a a nice homepage. - Support for downloads, rankings, submissions, comments. Maybe look at nuke again. 12) Bug fixes. Whew, longer list than I though :-) |
From: Nick T. <ni...@wh...> - 2002-10-07 15:53:11
|
Hi guys, I'm very impressed with your efforts. However, one feature request - showing multiple calendars at once. I'd like the calendar names to have checkboxes next to them, indicating a show/hide, rather than the single-select popup menu. The reason? Well, with multiple calendars, if I want to see if I'm free at a particular date/time, I have to check through each one, rather than seeing at-a-glance. I may be missing something, and if if already does this, sorry! Cheers, Nick -- WhiteSpectre Web Design web: http://www.whitespectre.com email: ni...@wh... |
From: Chad <ch...@ch...> - 2002-10-04 18:10:47
|
Mine: AIM: cha...@ma... Yahoo: chadsdom |
From: <ev...@ly...> - 2002-10-04 17:29:33
|
phpBB doesn't use just two lines of code for supporting themes, but I=20 think I understand what you mean. They have a template.class.php file that does all the template file=20 handling. You should really take a look at Smarty (http://smarty.php.net), it is=20= more flexible, and gives better perfomance. You don't need to do any more coding with Smarty than with the phpBB's=20= template class. I would know, I have used phpBB's template class for a=20= while... - Even Andr=E9 On fredag, okt 4, 2002, at 19:01 Europe/Oslo, Matt Jarjoura wrote: > >> Ok, so I want to talk about Sessions.... how are we going to speed up >> and lighten processor load for 0.6 PHP iCalendar? :-) >> >> What i envision PHP iCalendar becoming is similar to phpBB. Themable, >> Modable, good looking, and popular! > > Themes are easy as pie, I have some code directly from phpBB that in 2=20= > lines > of code does themes. If you plan on supporting them, do it from the=20= > start > however, cuz later on you'll have to do a lot of rewriting. > > 2nd, what exactly do you want sessions to provide for you? To store=20= > the > processed calendar code? > > 3rd... Do you have AIM or IRC? > > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > Matt Jarjoura > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > | UMBC | Phi-Delta 313 | > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > > > > > ------------------------------------------------------- > 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 |