Views Calendar 6.x ================== See documentation at http://drupal.org/node/262064. Version 2.0 dev ================= - #270318 Get date browser and calendar navigation working correctly when used in a block. - Don't attach any displays but the right one for a given argument. - #289981, #290328 Fixing broken handling of empty blocks that sometimes kept calendars from displaying in blocks. - Clean up logic for creating calendar fields info. - #268669 Improve logic for splitting multi-day nodes across calendar dates, patch by emok. - Add new DATE_FORMAT_DATE for date-only format that is used throughout the calendar. - Make sure week title gets translated by using date_format_date() instead of date_format(). - #289775 Day link needs a leading zero. - Make sure calendars have a min and max date even if the date argument is not the first argument. - Tweaked the jcalendar popup html and css a bit to keep title from popping out of the box in some themes. - Bring the 5.2 and 6.2 calendar themes into alignment so both use the same styles and themes, including tableless back/next navigation links and themeable headers. - #285104 Make sure calendar_colors is always an array, needed for transition to new value. - #283902 Make sure date_format() isn't used on items with no calendar dates. - #284760 Don't make weekno a link when there is no week view, eliminate some redundant date_format() calls. - #276421 Use farbtastic color picker to set calendar stripes, and start process of making stripes more customizable. - #282777 Try to make calendar creation in PHP4 more efficient to speed up creation of year calendar. - #279195 Remove deprecated calendar_week_range(). - Set min_date_date and max_date_date in the view object so calendar can be written. - #278267 Add a theme for the jcalendar popup. - #259127 Remove ajax back/next navigation on mini calendar, it's not working well enough. - #268668 Adjust comparison dates for timezone offsets to make sure multi-day events get split correctly. - The cached ical feed cannot be used to store date objects, recreate them as needed. - #234070 Fix broken ical title. - #258501 Make sure calendar.inc is included when creating ical feed. - #258515 Fix url in ical export. - #266623 Protect against foreach() errors on empty ical feeds. - PHP4 can't do comparisons of date objects, so alter calendar comparison code to compare formatted dates instead. - Remove as many dependencies as possible from install files and auto-enable necessary modules. - #272263 Make sure empty ical stream doesn't get into cache. - #272732 Fix missing php closing tag. - #261610 Prepare for a jQuery popup in the calendar by adding a unique id to the 'node' and altering the date theme to surpress all other dates if $node->date_id is set. - #243172 Theme('calendar_empty') should be theme('calendar_empty_day'), patch by JohnAlbin. - Clean up install file included files and include file paths, and auto-enable date_timezone and date_php4. - #270818 Fix datebox theme that still defined old deprecated variable 'params'. - #270078 Fix typo in calendar-year.tpl.php. - #270303 Make sure iCal part of default view only gets added in if iCal is enabled. Version 2.0 beta3 ================= - Update README.txt. - Add rrule to template. - Remove options from navigation, not really needed. - Add in functions to get iCal export working. - Get rid of calendar_clear_all() function that is not needed any more now that Views 2 has its own method for tracking settings. Also clean up related install and update code. - #269349 Correct calendar handlers to match Views commit 120575, which changed the way handlers are structured. Version 2.0 beta2 ================= - Fix handling of CCK dates in date argument. - Move option to show/hide week numbers to a style setting. - Get block view working again, remove switch calendar block because it doesn't work in this new system. - Get the generic date argument handler pulled completely out of the Calendar module and into the Date API in a way that it can be used for any Views date field in any view. - Rework the calendar handling to use the Date API argument in calendar displays and navigation. - Keep the calendar displays out of the UI and instead create a default calendar view that has everything set up correctly to reduce confusion and clutter in the UI and to make it easier to create a calendar. - Make sure month names show in year view. - #262078 Remove deprecated function calendar_info(). - Cleanup handling of dates with timezone names in the database. - Pass a variable to the templates to tell if this calendar is in a block or not, and use that to determine if the links are needed. - Get the settings working for controlling the size of the day of week names, adding an option to display the full names. - Add a separate template for the mini calendar. Version 2.0 beta ================ - #210844 Make sure empty text displays. - #234635 Add calendar_build_nodes() to calendar_ical export processing. - #243712 make sure default views are retrieved as well as db views. - #235434 Using timezone name instead of timezone object in several places. - #233513 Fix missing $selected marker. - #233975 Don't bypass theme function. - #242686 Fix spelling errors. - #240297 make sure id has a value. - Make sure new required modules get enabled during the update. - Fix To time in calendar, was incorrectly picking up a :59 value. - Make sure min and max dates are in localtime. - #225459 Fix days that span multiple days. - #220657 Revert to using the API instead of templates for drawing the calendar. - #186875 make sure navigation is always returned as an array so it doesn't break table theme. - Remove database timezone handling by rolling back to previous version that used offsets instead. Based on problems noted in #218479 and #220663, we cannot count on database timezone handling to be available in MYSQL or work consistently with the timezone names that PHP uses in POSTGRES, so trying to do timezone conversions in the database is not going to work. - #219200 Make sure views is available during install. - #218704 Fix error in setting array variable. - Getting rid of offsets!! Alter query code to cast ISO and UNIX dates to native datetimes and do timezone conversion in the database. Much faster and more accurate. The offset fields can now be dropped from the Date fields since we only need the timezone name to do the conversion. - Simplify the query a bit, but it's still very complex. We need a native datetime field so we can let the db do this the right way. - Make sure calendar works with an argument before the calendar. - The popup calendar datepicker needs a default value in the normal datetime format. - Add settings option to not display year, month, day, or week view and adjust links to hide any link to hidden displays. - Get rid of separate mini args and so mini and main calendar move together. This has been often requested and we already have too much complication in tracking various filter and non-calendar arguments in the view. - Make sure ical dates only get shown once in views with more than one date field. - Make sure 'today', 'future', and 'past' classes don't get applied to non-date cells. - #216365 make sure all needed files are included in the install files. - We can't trust the database date conversion unless we have the right offset stored in the database, so only the date-specific dates have the right values for this to work. All others must be retrieved as UTC values and converted in PHP. - Make sure functions are available during install. - #128602 add classes for 'past' and 'future' to date boxes, not using them by default, but available to css. - #211568 Add setup option to show first 1, 2, or 3 letters of day names in mini calendar. - Missing a closing div tag in the month view. - Get rid of deprecated function date_time(). - Fix date format for day view. - Wrong field name used to select date format. - Set the 'today' class before incrementing the date. - More clean up of themes to be sure both remote and local items have a reasonable display and to provide a theme to consistantly display dates. - Fix title and url of mini calendar. - Get iCal import working again in new version. - Non-calendar views should now be working, so you can switch between calendar, table, list, teasers, and nodes for the display for each time period. - Make sure $node->url is set so the link to the node works. - Move more of the code to the .inc file. - Clean up the date selector and add a new function to detect the calendar week from a date. - Add a dependency on Date Timezone. - Fix a critical typo that keeps more than one value from showing up for a day. - Clean up theme code. - Make the new date selector dependent on the Date Popup module. - Rework the calendar to pull values from a template table so we can browse and navigate by calendar week. This simplifies the code and hopefully will speed up processing the calendar since the database is doing the work of constructing the calendar template instead of using PHP computations. This method is also a more accurate way of computing calendar weeks. Requires an update to populate a template table. This works because there are only 14 possible calendar templates no matter how many years you go back or forward. - Add in the jQuery popup selector as a method to jump to different dates. - Fix theme error in day view that repeated all previous items with each new item. - Make sure blank nodes have the right values to create blank calendar pages. - Standardize on use of date_format_date() to get translations done on the formatted values of date parts. - Clean up css for month date boxes so display in Firefox and IE looks the same. - Lost the node nid in some places which kept dates from showing up. - Have to keep views handlers in calendar.module not in calendar_api.inc so they can be discovered when needed. - Updating Calendar HEAD with new version of Calendar module that works with the new 5.2 Date API in Date HEAD.