The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Date::Holidays::CZ - determine Czech Republic bank holidays

VERSION

Version 0.07

SYNOPSIS

   use Date::Holidays::CZ qw(is_cz_holiday cz_holidays);
   my ($year, $month, $day) = (localtime)[ 5, 4, 3 ];
       
   $year  += 1900;
   $month += 1;
   print "Woohoo" if is_holiday( $year, $month, $day );

   my $hashref;
   $hashref = cz_holidays(2014);        # full listing for 2014
   $hashref = cz_holidays(2014, 4);     # just for April, 2014
   $hashref = cz_holidays(2014, 4, 8);  # just for April 8, 2014

DESCRIPTION

In its current, primitive form, this module provides a simple way to get information on Czech Republic bank holidays. The information it provides was current at the time the module was written (c. 2013).

Someday, it would nice to develop the module into conformity with the Date::Holidays paradigm -- i.e. into an "OOP Adapter". First, though, I will have to figure out what an "OOP Adapter" is!

DEPENDENCIES

Date::Holidays::CZ depends on the following two modules:

  • Date::Simple

  • Date::Easter

CZECH REPUBLIC BANK HOLIDAYS

Fixed and variable

With one exception, the dates of all Czech Republic bank holidays are fixed. The exception is Easter Monday.

Listings

English translation

The dates and names (in English translation) of all Czech Republic bank holidays as of the time of this writing are as follows:

Jan 01 -- Restoration Day of the Independent Czech State
Apr XY -- Easter Monday
May 01 -- Labor Day
May 08 -- Liberation Day
Jul 05 -- Saints Cyril and Methodius Day
Jul 06 -- Jan Hus Day
Sep 28 -- Feast of St. Wenceslas (Czech Statehood Day)
Oct 28 -- Independent Czechoslovak State Day
Nov 17 -- Struggle for Freedom and Democracy Day
Dec 24 -- Christmas Eve
Dec 25 -- Christmas Day
Dec 26 -- Feast of St. Stephen

Czech original

The dates and names (in the original Czech) of all Czech Republic bank holidays as of the time of this writing are as follows:

Jan 01 -- Den obnovy samostatného českého státu
Apr XY -- Velikonoční pondělí
May 01 -- Svátek práce
May 08 -- Den vítězství
Jul 05 -- Den slovanských věrozvěstů Cyrila a Metoděje
Jul 06 -- Den upálení mistra Jana Husa
Sep 28 -- Den české státnosti
Oct 28 -- Den vzniku samostatného československého státu
Nov 17 -- Den boje za svobodu a demokracii
Dec 24 -- Štědrý den
Dec 25 -- 1. svátek vánoční
Dec 26 -- 2. svátek vánoční

EXPORT

This module contains two functions that can be exported:

  • is_cz_holiday

  • cz_holidays

CONSTANTS

The Czech holiday names are stored within the Date::Holidays::CZ module source code in private variables. Since these variables are never changed, they can be thought of as constants.

SUBROUTINES/METHODS

is_cz_holiday

Takes three named arguments:

  • year, four-digit number

  • month, 1-12, two-digit number

  • day, 1-31, two-digit number

cz_holidays

Takes one to three arguments: year (four-digit number), month (1-12, two-digit number), and day (1-31, two-digit number). Returns a reference to a hash in which the keys are 'MMDD' (month and day, concatenated) and the values are the names of all the various bank holidays that fall within the year, month, or day indicated by the arguments.

AUTHOR

Nathan Cutler, <presnypreklad at gmail.com>

BUGS

Please report any bugs or feature requests to bug-date-holidays-cz at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Date-Holidays-CZ. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

Inspired by Date::Holidays::DK

LICENSE AND COPYRIGHT

Copyright 2013-2014 SUSE LLC

Author: Nathan Cutler

This program is free software; you can redistribute it and/or modify it under the terms of the the Artistic License (2.0). You may obtain a copy of the full license at:

http://www.perlfoundation.org/artistic_license_2_0

Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license.

If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license.

This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder.

This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed.

Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.