From: <cl...@us...> - 2004-10-02 00:10:05
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5897 Modified Files: README day.php month.php week.php Log Message: Added new languages, fixed minor bugs. Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.80 retrieving revision 1.81 diff -C2 -d -r1.80 -r1.81 *** README 1 Oct 2004 22:26:25 -0000 1.80 --- README 2 Oct 2004 00:09:38 -0000 1.81 *************** *** 83,91 **** -------- 2.0 beta ! -Swedish, French, Dutch and Lithuanian translations added. -Added iCal specific publish.php. -Fixed stat bug. -PHP5 support added. -Admin page works again. -Requires PHP 4.1.0 or greater now. -Various Bug fixes. --- 83,99 ---- -------- 2.0 beta ! -Updated translations: ! -Japanese ! -Swedish ! -French ! -Dutch ! -Traditional Chinese ! -Lithuanian -Added iCal specific publish.php. -Fixed stat bug. -PHP5 support added. -Admin page works again. + -Oct. to Nov. transition more reliable. + -RSS handles files with spaces. -Requires PHP 4.1.0 or greater now. -Various Bug fixes. Index: day.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/day.php,v retrieving revision 1.121 retrieving revision 1.122 diff -C2 -d -r1.121 -r1.122 *** day.php 2 Sep 2004 18:43:32 -0000 1.121 --- day.php 2 Oct 2004 00:09:38 -0000 1.122 *************** *** 97,100 **** --- 97,106 ---- 'l_this_site_is' => $lang['l_this_site_is'] )); + + if ($allow_preferences != 'yes') { + $page->replace_tags(array( + 'allow_preferences' => '' + )); + } if ($allow_login == 'yes') { Index: month.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v retrieving revision 1.126 retrieving revision 1.127 diff -C2 -d -r1.126 -r1.127 *** month.php 1 Sep 2004 21:26:59 -0000 1.126 --- month.php 2 Oct 2004 00:09:38 -0000 1.127 *************** *** 100,103 **** --- 100,109 ---- )); + if ($allow_preferences != 'yes') { + $page->replace_tags(array( + 'allow_preferences' => '' + )); + } + if ($allow_login == 'yes') { $page->replace_tags(array( Index: week.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v retrieving revision 1.119 retrieving revision 1.120 diff -C2 -d -r1.119 -r1.120 *** week.php 1 Sep 2004 21:26:59 -0000 1.119 --- week.php 2 Oct 2004 00:09:38 -0000 1.120 *************** *** 102,105 **** --- 102,111 ---- )); + if ($allow_preferences != 'yes') { + $page->replace_tags(array( + 'allow_preferences' => '' + )); + } + if ($allow_login == 'yes') { $page->replace_tags(array( |