Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30511
Modified Files:
README config.inc.php day.php month.php week.php
Log Message:
Search box can be unconfigured.
Index: README
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/README,v
retrieving revision 1.89
retrieving revision 1.90
diff -C2 -d -r1.89 -r1.90
*** README 13 Sep 2005 21:57:28 -0000 1.89
--- README 14 Sep 2005 20:53:52 -0000 1.90
***************
*** 82,85 ****
--- 82,90 ----
Changes:
--------
+ 2.0.2
+ -Allows multiple calendar selection.
+ -Search box can be made to go away.
+ -Various bug fixes.
+
2.0.1
-Event URLs display without LOCATION.
Index: config.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v
retrieving revision 1.167
retrieving revision 1.168
diff -C2 -d -r1.167 -r1.168
*** config.inc.php 16 May 2005 18:14:41 -0000 1.167
--- config.inc.php 14 Sep 2005 20:53:53 -0000 1.168
***************
*** 33,37 ****
$this_months_events = 'yes'; // Display "This month's events" at the bottom off the month page.
$enable_rss = 'yes'; // Enable RSS access to your calendars (good thing).
! $show_search = 'yes'; // Show the search box in the sidebar.
$allow_preferences = 'yes'; // Allow visitors to change various preferences via cookies.
$printview_default = 'no'; // Set print view as the default view. day, week, and month only supported views for $default_view (listed well above).
--- 33,37 ----
$this_months_events = 'yes'; // Display "This month's events" at the bottom off the month page.
$enable_rss = 'yes'; // Enable RSS access to your calendars (good thing).
! $show_search = 'no'; // Show the search box in the sidebar.
$allow_preferences = 'yes'; // Allow visitors to change various preferences via cookies.
$printview_default = 'no'; // Set print view as the default view. day, week, and month only supported views for $default_view (listed well above).
Index: day.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/day.php,v
retrieving revision 1.124
retrieving revision 1.125
diff -C2 -d -r1.124 -r1.125
*** day.php 14 Sep 2005 20:44:55 -0000 1.124
--- day.php 14 Sep 2005 20:53:53 -0000 1.125
***************
*** 118,121 ****
--- 118,125 ----
));
}
+
+ if ($show_search != 'yes') {
+ $page->nosearch($page);
+ }
$page->draw_day($page);
Index: month.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v
retrieving revision 1.131
retrieving revision 1.132
diff -C2 -d -r1.131 -r1.132
*** month.php 14 Sep 2005 20:44:55 -0000 1.131
--- month.php 14 Sep 2005 20:53:53 -0000 1.132
***************
*** 123,126 ****
--- 123,129 ----
}
+ if ($show_search != 'yes') {
+ $page->nosearch($page);
+ }
if ($this_months_events == 'yes') {
Index: week.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v
retrieving revision 1.122
retrieving revision 1.123
diff -C2 -d -r1.122 -r1.123
*** week.php 14 Sep 2005 20:44:55 -0000 1.122
--- week.php 14 Sep 2005 20:53:53 -0000 1.123
***************
*** 121,124 ****
--- 121,128 ----
'l_logout' => $lang['l_logout']
));
+ }
+
+ if ($show_search != 'yes') {
+ $page->nosearch($page);
}
|