From acadf51efef7039d90949babeeff567ecc5e3676 Mon Sep 17 00:00:00 2001 From: Ricky Elrod Date: Thu, 3 Jan 2013 05:44:17 -0800 Subject: [PATCH] Increment year. Summary: - Change copyright year. - Remove 2012 Calendar entries. - Add 2016 Calendar entries. Test Plan: Not majorly applicable here. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4335 --- NOTICE | 2 +- scripts/calendar/import_us_holidays.php | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NOTICE b/NOTICE index 300edd6056..db629a5dfa 100644 --- a/NOTICE +++ b/NOTICE @@ -1,5 +1,5 @@ Phabricator -Copyright 2012 Facebook, Inc. +Copyright 2013 Facebook, Inc. This product includes software developed at Facebook, Inc. (http://www.facebook.com/facebook). diff --git a/scripts/calendar/import_us_holidays.php b/scripts/calendar/import_us_holidays.php index 71cfb56a70..76a78a299e 100755 --- a/scripts/calendar/import_us_holidays.php +++ b/scripts/calendar/import_us_holidays.php @@ -6,16 +6,6 @@ require_once $root.'/scripts/__init_script__.php'; // http://www.opm.gov/operating_status_schedules/fedhol/ $holidays = array( - '2012-01-02' => "New Year's Day", - '2012-01-16' => "Birthday of Martin Luther King, Jr.", - '2012-02-20' => "Washington's Birthday", - '2012-05-28' => "Memorial Day", - '2012-07-04' => "Independence Day", - '2012-09-03' => "Labor Day", - '2012-10-08' => "Columbus Day", - '2012-11-12' => "Veterans Day", - '2012-11-22' => "Thanksgiving Day", - '2012-12-25' => "Christmas Day", '2013-01-01' => "New Year's Day", '2013-01-21' => "Birthday of Martin Luther King, Jr.", '2013-02-18' => "Washington's Birthday", @@ -46,6 +36,16 @@ $holidays = array( '2015-11-11' => "Veterans Day", '2015-11-26' => "Thanksgiving Day", '2015-12-25' => "Christmas Day", + '2016-01-01' => "New Year's Day", + '2016-01-18' => "Birthday of Martin Luther King, Jr.", + '2016-02-15' => "Washington's Birthday", + '2016-05-30' => "Memorial Day", + '2016-07-04' => "Independence Day", + '2016-09-05' => "Labor Day", + '2016-10-10' => "Columbus Day", + '2016-11-11' => "Veterans Day", + '2016-11-24' => "Thanksgiving Day", + '2016-12-26' => "Christmas Day", ); $table = new PhabricatorCalendarHoliday();