Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11065 Modified Files: README day.php error.php month.php preferences.php print.php search.php week.php year.php Log Message: encode version number in init.inc.php Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.101 retrieving revision 1.102 diff -C2 -d -r1.101 -r1.102 *** README 5 Apr 2006 04:48:01 -0000 1.101 --- README 10 Apr 2006 02:21:07 -0000 1.102 *************** *** 83,87 **** -------- cvs ! 2.22rc3 change popup to not require reparsing cal files differentiate cookie names for different installs on the same host --- 83,89 ---- -------- cvs ! 2.22 ! template.php will look in templates/default if a file is missing from templates/$template ! add support for WKST and BYPOS tags change popup to not require reparsing cal files differentiate cookie names for different installs on the same host Index: day.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/day.php,v retrieving revision 1.130 retrieving revision 1.131 diff -C2 -d -r1.130 -r1.131 *** day.php 10 Apr 2006 00:52:24 -0000 1.130 --- day.php 10 Apr 2006 02:21:07 -0000 1.131 *************** *** 54,57 **** --- 54,58 ---- $page->replace_tags(array( + 'version' => $phpicalendar_version, 'charset' => $charset, 'default_path' => '', Index: error.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/error.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** error.php 10 Apr 2006 00:42:34 -0000 1.3 --- error.php 10 Apr 2006 02:21:07 -0000 1.4 *************** *** 36,39 **** --- 36,40 ---- $page->replace_tags(array( + 'version' => $phpicalendar_version, 'default_path' => $default_path.'/', 'template' => $template, Index: month.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v retrieving revision 1.136 retrieving revision 1.137 diff -C2 -d -r1.136 -r1.137 *** month.php 16 Mar 2006 06:15:10 -0000 1.136 --- month.php 10 Apr 2006 02:21:07 -0000 1.137 *************** *** 62,65 **** --- 62,66 ---- $page->replace_tags(array( + 'version' => $phpicalendar_version, 'charset' => $charset, 'template' => $template, Index: preferences.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/preferences.php,v retrieving revision 1.59 retrieving revision 1.60 diff -C2 -d -r1.59 -r1.60 *** preferences.php 10 Apr 2006 01:10:39 -0000 1.59 --- preferences.php 10 Apr 2006 02:21:07 -0000 1.60 *************** *** 155,158 **** --- 155,159 ---- $page->replace_tags(array( + 'version' => $phpicalendar_version, 'charset' => $charset, 'template' => $template, Index: print.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/print.php,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** print.php 21 Mar 2006 09:52:29 -0000 1.38 --- print.php 10 Apr 2006 02:21:07 -0000 1.39 *************** *** 8,12 **** $end_week_time = $start_week_time + (6 * 25 * 60 * 60); $parse_month = date ("Ym", strtotime($getdate)); - $cal_displayname = str_replace("32", " ", $cal); $events_week = 0; $unix_time = strtotime($getdate); --- 8,11 ---- *************** *** 56,59 **** --- 55,59 ---- $page->replace_tags(array( + 'version' => $phpicalendar_version, 'event_js' => '', 'charset' => $charset, Index: search.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/search.php,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** search.php 18 Mar 2006 07:14:31 -0000 1.39 --- search.php 10 Apr 2006 02:21:07 -0000 1.40 *************** *** 292,295 **** --- 292,296 ---- $page->replace_tags(array( + 'version' => $phpicalendar_version, 'formatted_search' => $formatted_search, 'l_results' => $lang['l_results'], Index: week.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v retrieving revision 1.129 retrieving revision 1.130 diff -C2 -d -r1.129 -r1.130 *** week.php 10 Apr 2006 01:12:30 -0000 1.129 --- week.php 10 Apr 2006 02:21:07 -0000 1.130 *************** *** 56,59 **** --- 56,60 ---- $page->replace_tags(array( + 'version' => $phpicalendar_version, 'charset' => $charset, 'default_path' => '', Index: year.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/year.php,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** year.php 10 Apr 2006 01:12:30 -0000 1.43 --- year.php 10 Apr 2006 02:21:07 -0000 1.44 *************** *** 54,57 **** --- 54,58 ---- $page->replace_tags(array( + 'version' => $phpicalendar_version, 'event_js' => '', 'current_view' => $current_view, |