/****************************************************************************
 * LICENSE
 *********/
awEventCalendar version 0.8.0

Copyright (C) 2006-2008 Artur Wiebe
wibix@gmx.de

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

*****************************************************************************
*      MODIFICATIONS TO "Artur Wiebe's" EVENT CALENDAR INFUSION v0.8.0      *
*****************************************************************************
  Date: 2009-03-07

  PHP File Changes and Visual Enhancements by:

  Terry Broullette(Grimloch)
  Web: Whisperwillow Mod Support (http://www.whisperwillow.com)
  Email: webmaster@whisperwillow.com

  * Changed calendar-side_panel and calendar-center_panel month display
  [i.e. April] ... &lt;&lt; ( this = <<) plus &gt;&gt; ( this = >>); to nice left & right arrow
  .PNG images from NEW dir 'icons/arrows/'. New arrow png images have a
  nice transparent background.
  If you'd rather not have the images simply remove the image links in the files
  'aw_ecal_panel.php' and 'calendar.php', replacing with above '&' codes.
  Previous month link would equal this: &lt;&lt;
  Next month link would equal this: &gt;&gt;

  * Included my 'calendar images display code' in the following files:
  'include/core.php'. Created a NEW dir in 'ROOT/images' dir: 
  'images/cal/' for storing the calendar images. If no image display
  is desired in event calendar simply remove code in 'include/core.php'.
  If desired change images to your own in 'images/cal/' directory observing
  script image size parameters as defined in 'include/core.php' ...

  **** All added code/changes clearly identified with 'comment' marks. i.e. //

*****************************************************************************
*    END MODIFICATIONS TO "Artur Wiebe's" EVENT CALENDAR INFUSION v0.8.0    *
*****************************************************************************



/****************************************************************************
 * INSTALLATION
 **************/
See INSTALL.txt for installation instructions.



/****************************************************************************
 * UPDATE
 ********/
+ Upload the latest PHP files to your web space.
+ Go to your PHP-Fusion's Admin|Infusions page. You should see that a database
update is available.
+ If so, click on "Start update...".



/****************************************************************************
 * LAYOUT
 ********/
If you need or want to customize the layout read below. If you feel that the
standard PHP-Fusion tables look too wide or too ugly, this is because your
theme designer didn't define ALL that is needed. Let him know he misses a few
things :)

You can define how your side-panel and calendar in calendar-views looks also.
If you need help to customize your layout have a look at my page
(http://wibix.de) or contact your theme designer.

There are 3 classes at the moment:
	+ TABLE:awec_calendar
		- TD:current: current day,
		- TD:empty: no event on this day,
		- TD:content: at least on event on this day,
		- TD:dayofweek: day of week in the table caption,
		- TD:weekend.
	+ TABLE:awec_list
		- TR:current: current day,
		- TR:odd,
		- TR:event.
	+ TABLE:awec_event
		- IMG:icon,
		- DIV:left,
		- DIV:right,
		- DIV:head,
		- DIV:body,
		- DIV:status.

This is a simple example that you can paste right into your styles.css. If
you need more, consider reading a CSS tutorial.

--begin copy--
table.awec_calendar th {		/* table head: day of the week */
	font-weight: normal;
}
table.awec_calendar td.current {	/* current day */
	border: 1px solid yellow;
}
table.awec_calendar td.content {	/* day with some events */
	background-color: red;
}
table.awec_calendar td.empty {		/* day with no events */
	background-color: gray;
}
table.awec_calendar td.weekend {	/* weekend */
	background-color: blue;
}

/* analogous for the list view except it is using rows instead of cells */
table.awec_list tr.odd {
	background-color: green;
}
table.awec_list tr.even {
	background-color: red;
}
table.awec_list tr.current {
	background-color: yellow;
}
--end-copy--



/****************************************************************************
 * THANKS
 ********/
BoxOver
v 2.1 17th June 2006
By Oliver Bryant with help of Matthew Tagg
http://boxover.swazz.org