TDF Holidays
// month names: <keyword> <tab> MONTHNAME
m1	January
m2	February
m3	March
m4	April
m5	May
m6	June
m7	July
m8	August
m9	September
m10	October
m11	November
m12	December
// lines like this one beginning with double slashes are comments
// the basic form of each tab delimted data entry line is:
// YEAR <tab> MONTH <tab> DAY <tab> MODIFIER <tab> CLOSED <tab> NAME <tab> COMMENT <cr>
//
// if YEAR=0 then the holiday occurs on this date every year
// if MODIFIER=0 then MONTH & DAY represent an absolute date
// if MODIFIER<>0 then DAY encodes the nth WEEKDAY of MONTH and MODIFIER=WEEKDAY
// where WEEKDAY = (Sunday=1,Monday=2,...,Saturday=7)
// e.g. 0	11	4	5	1	represents the 4th thursday in Nov every year
// if CLOSED=0 this holiday is disabled
// if CLOSED=1 the RadOnc dept is closed for patient treatments
// if CLOSED=2 the RadOnc dept is open for patient treatments
//
// some USA examples
// 0	7	4	0	1	Independence Day	(always July 4th, we are closed)
// 0	11	4	5	1	Thanksgiving	(4th thursday in Nov, we are closed)
// 0	10	2	2	2	Colombus Day	(2nd monday in Oct, we will be open to treat patients)
// data begins here:
// same date every year
0	1	1	0	1	New Years Day
0	5	1	0	1	Labour Day
0	6	19	0	1	Revolutionary Readjustment
0	7	5	0	1	Independence Day
0	11	1	0	1	Anniversary of Revolution
// year specific absolute dates
2007	1	20	0	1	Islamic New Year
2007	1	29	0	1	Ashoura
2007	3	31	0	1	Mouloud
2007	10	13	0	1	Eid Ul Fitr	(exact date varies)
2007	12	20	0	1	Eid al-Adha
//
2008	1	10	0	1	Islamic New Year
2008	1	19	0	1	Ashoura
2008	3	20	0	1	Mouloud
2008	10	2	0	1	Eid Ul Fitr	(exact date varies)
2008	12	9	0	1	Eid al-Adha
2008	12	29	0	1	Islamic New Year
//
// insert 2009 here
2009	9	21	0	2	Eid Ul Fitr	(exact date varies)
//
// insert 2010 here
2010	9	10	0	2	Eid Ul Fitr	(exact date varies)
//
// insert 2011 here
2011	8	31	0	2	Eid Ul Fitr	(exact date varies)
//
// etc
//EOF