1.
My timezone is 348 (Europe/London).
Event module doesn't recognize this destination (function: event_is_dst() in 'event.module' file);
But there is one case for eu (but 13!=348):

	    case 13: // EU and other European countries
	

It's possible to add support for this timezone to official release?
To prevent futher problems (Returning undefined variables in event_is_dst() such as dststart, dstend and some problems with Event Repeater),
my proposition is to add default case to switch for EU.

	    case 13: // EU and other European countries
	    default:
	

2.
After going to /event/dst I got error:
Call to undefined function event_get_timezones() in C:\Users\bronek\workspace\websites\drupal5\modules\event\event.module on line 2328
(function event_is_dst() in event.module)

My version of Event is from CVS (TAG: HEAD).

Comments

killes@www.drop.org’s picture

Status: Active » Postponed (maintainer needs more info)

13 is the DST region ID, which is distinct from the timezone ID. So London is supported.

for DST region 13 I have:

start of DST (last Sunday in March 1 am GMT)

and

end of DST in Europe (last Sunday in October 1 am GMT)

If this is correct, the issue should be marked "fixed".

The other error was already fixed.

kenorb’s picture

Category: bug » support
Status: Postponed (maintainer needs more info) » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.