/* Sample Events file - used in Browser mode and first time when run in Gadget mode */ dates = [ [29,2,"Leap day",,"cyan","solid"], [26,4,"John Does Birthday",1970], // Events on specific week day [-20,5,"Mothers day ",1910,"lime"], [-51,5,"Memorial Day",1971,"lime",,0], [-30,6,"Fathers day",1910,"lime",,0], [-11,9,"Labor Day",1894,"lime",,0], [-44,11,"Thanksgiving",1863,"lime",,0], ["-05",13,"Friday the thirteenth",,"lime",,0], // Events in the Islamic Calendar [1,-9,"The month of Ramadan starts",,"lime",,0], [30,-9,"The month of Ramadan ends",,"lime",,0], [1,-10,"Eid al-Fitr",,"lime",,0], // Events in the Hebrew Calendar [15,"+1","Pesach starts",,"lime",,0], [21,"+1","Pesach ends",,"lime",,0], [10,"+7","Yom Kippur",,"lime",,0], [25,"+9","Hanukkah starts",,"lime",,0], [2,"+10","Hanukkah ends",,"lime",,0], // Events calculated from Easter Sunday [0,-47,"Shrove Tuesday",,"lime",,0], [0,-46,"Ash Wednesday - 1st day of Lent",,"lime",,0], [0,-7,"Palm Sunday",,"lime",,0], [0,-3,"Maundy Thursday",,"lime",,0], [0,-2,"Good Friday",,"lime",,0], [0,-1,"Holy Saturday",,"lime",,0], [0,0,"Easter Sunday - WikiPedia",,"lime",,0], [0,1,"Easter Monday",,"lime",,0], [0,39,"Ascension Day",,"lime",,0], [0,49,"Pentecost",,"lime",,0], [0,50,"Whit Monday",,"lime",,0], [1,1,"New Years Day",,"lime",,0], [14,2,"Valentine's Day",,"lime",,0], [17,3,"St. Patrick's Day",,"lime",,0], [4,7,"Independence Day",1776,"lime",,0], [31,10,"Halloween",,"lime",,0], [11,11,"Veterans Day",1918,"lime",,0], [25,12,"Christmas Day",,"lime",,0] ]; /* ---------------------------------------------------------------------------- Syntax: [Day,Month,"Message",Year,"BorderColor","BorderStyle",Notification], or: [-WeekDay,Month,"Message",Year,"BorderColor","BorderStyle",Notification], or: [0,Offset,"Message",Year,"BorderColor","BorderStyle",Notification], or: [Day,-Month,"Message",Year,"BorderColor","BorderStyle",Notification], or: [Day,"+Month","Message",Year,"BorderColor","BorderStyle",Notification], Day, Month/-WeekDay/Offset and "Message" are mandatory. Year, "BorderColor", "BorderStyle" and Notification can be omitted. -WeekDay: 1st digit: 1 - 4 the number of the week in the selected month, 5 = last week in the selected month, 6 = all weeks in the selected month, 7 = odd weeks in the selected month, 8 = even weeks in the selected month, 9 = week number in the selected year, 0 = date in any month. 2nd digit: 0 - 6 = weekday (0 = Sunday). If 1st digit is 9 or 0, then week number/date is shown in the Month field. If 1st digit is 0 then quotation marks has to be used -> "-WeekDay". Offset: number of days before (-) or after Easter Sunday (-81 to 250). -Month: month in Islamic calendar. "+Month": month in Hebrew calendar. "Message": cannot contain " - replace " with ' or \" . Year: first year of the event. If Year < 0 then the event will only be shown for the stated year. If Year = 0 the event will only be shown for the current year. Events are not shown when the calendar is displaying a year that is prior to the stated Year of the event. "BorderColor": a valid html color name. "BorderStyle": "dotted", "dashed" or "solid". Notification: 0 = none, 1 = visual, 2 = audio-visual. The items does not have to be written in date order. Remember comma at the end of each line in the list - except for the last line. Html codes can be used in the Message, for example text for italic font, text for yellow text or text for links. Commentary lines can be inserted by starting the line with // ---------------------------------------------------------------------------- */