1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000
|
###############################################################################
## ##
## Copyright (c) 2000 - 2009 by Steffen Beyer. ##
## All rights reserved. ##
## ##
## This package is free software; you can redistribute it ##
## and/or modify it under the same terms as Perl itself. ##
## ##
###############################################################################
package Date::Pcalendar::Profiles;
BEGIN { eval { require bytes; }; }
use strict;
use vars qw( @ISA @EXPORT @EXPORT_OK $VERSION $Profiles );
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw();
@EXPORT_OK = qw(
$Profiles
&Previous_Friday
&Next_Monday
&Next_Monday_or_Tuesday
&Nearest_Workday
&Sunday_to_Monday
&Advent1
&Advent2
&Advent3
&Advent4
&Advent
);
$VERSION = '6.1';
use Date::Pcalc qw(:all);
use Carp::Clan qw(^Date::);
##########################################################################
# #
# Moving ("variable") holidays depending on the date of Easter Sunday: #
# #
# Weiberfastnacht, Fettdonnerstag = -52 days #
# Carnival Monday / Rosenmontag / Veille du Mardi Gras = -48 days #
# Mardi Gras / Karnevalsdienstag / Mardi Gras = -47 days #
# Ash Wednesday / Aschermittwoch / Mercredi des Cendres = -46 days #
# Palm Sunday / Palmsonntag / Dimanche des Rameaux = -7 days #
# Maundy Thursday / Gruendonnerstag / Jeudi avant Paques = -3 days #
# Good Friday / Karfreitag / Vendredi Saint = -2 days #
# Easter Saturday / Ostersamstag / Samedi de Paques = -1 day #
# Easter Sunday / Ostersonntag / Dimanche de Paques = +0 days #
# Easter Monday / Ostermontag / Lundi de Paques = +1 day #
# Prayer Day / Bettag / Jour de la Priere (Denmark) = +26 days #
# Ascension of Christ / Christi Himmelfahrt / Ascension = +39 days #
# Whitsunday / Pfingstsonntag / Dimanche de Pentecote = +49 days #
# Whitmonday / Pfingstmontag / Lundi de Pentecote = +50 days #
# Feast of Corpus Christi / Fronleichnam / Fete-Dieu = +60 days #
# #
##########################################################################
###############################################
# #
# Rules to enhance readability: #
# #
# 1) First level constants in single quotes, #
# second level constants in double quotes. #
# 2) Use leading zeros for fixed length. #
# #
###############################################
#####################
# Global variables: #
#####################
$Profiles = { };
###############################
# Global utility subroutines: #
###############################
sub Previous_Friday
{
my($yy) = shift;
my($mm) = shift;
my($dd) = shift;
my($dow);
# If holiday falls on Saturday or Sunday, use previous Friday instead:
$dow = Day_of_Week($yy,$mm,$dd);
if ($dow == 6) { ($yy,$mm,$dd) = Add_Delta_Days($yy,$mm,$dd,-1); }
elsif ($dow == 7) { ($yy,$mm,$dd) = Add_Delta_Days($yy,$mm,$dd,-2); }
return($yy,$mm,$dd,@_);
}
sub Next_Monday
{
my($yy) = shift;
my($mm) = shift;
my($dd) = shift;
my($dow);
# If holiday falls on Saturday, use following Monday instead;
# if holiday falls on Sunday, use day thereafter (Monday) instead:
$dow = Day_of_Week($yy,$mm,$dd);
if ($dow == 6) { ($yy,$mm,$dd) = Add_Delta_Days($yy,$mm,$dd,+2); }
elsif ($dow == 7) { ($yy,$mm,$dd) = Add_Delta_Days($yy,$mm,$dd,+1); }
return($yy,$mm,$dd,@_);
}
sub Next_Monday_or_Tuesday # For second holiday of two adjacent ones!
{
my($yy) = shift;
my($mm) = shift;
my($dd) = shift;
my($dow);
# If holiday falls on Saturday, use following Monday instead;
# if holiday falls on Sunday or Monday, use next Tuesday instead
# (because Monday is already taken by adjacent holiday on the day before):
$dow = Day_of_Week($yy,$mm,$dd);
if ($dow == 6 or $dow == 7) { ($yy,$mm,$dd) = Add_Delta_Days($yy,$mm,$dd,+2); }
elsif ($dow == 1) { ($yy,$mm,$dd) = Add_Delta_Days($yy,$mm,$dd,+1); }
return($yy,$mm,$dd,@_);
}
sub Nearest_Workday
{
my($yy) = shift;
my($mm) = shift;
my($dd) = shift;
my($dow);
# If holiday falls on Saturday, use day before (Friday) instead;
# if holiday falls on Sunday, use day thereafter (Monday) instead:
$dow = Day_of_Week($yy,$mm,$dd);
if ($dow == 6) { ($yy,$mm,$dd) = Add_Delta_Days($yy,$mm,$dd,-1); }
elsif ($dow == 7) { ($yy,$mm,$dd) = Add_Delta_Days($yy,$mm,$dd,+1); }
return($yy,$mm,$dd,@_);
}
sub Sunday_to_Monday
{
my($yy) = shift;
my($mm) = shift;
my($dd) = shift;
my($dow);
# If holiday falls on Sunday, use day thereafter (Monday) instead:
$dow = Day_of_Week($yy,$mm,$dd);
if ($dow == 7) { ($yy,$mm,$dd) = Add_Delta_Days($yy,$mm,$dd,+1); }
return($yy,$mm,$dd,@_);
}
######################################
# Global utility callback functions: #
######################################
sub Advent1
{
my($year,$label) = @_;
return( Add_Delta_Days($year,12,25,
-(Day_of_Week($year,12,25)+21)), '#' );
}
sub Advent2
{
my($year,$label) = @_;
return( Add_Delta_Days($year,12,25,
-(Day_of_Week($year,12,25)+14)), '#' );
}
sub Advent3
{
my($year,$label) = @_;
return( Add_Delta_Days($year,12,25,
-(Day_of_Week($year,12,25)+7)), '#' );
}
sub Advent4
{
my($year,$label) = @_;
return( Add_Delta_Days($year,12,25,
-Day_of_Week($year,12,25)), '#' );
}
sub Advent
{
my($year,$label) = @_;
my($offset);
$offset = (4 - substr($label,0,1)) * 7;
return( Add_Delta_Days($year,12,25,
-(Day_of_Week($year,12,25)+$offset)), '#' );
}
###################
# Local profiles: #
###################
$Profiles->{'DE'} = # Deutschland
{
# For labeling only (defaults, may be overridden):
"Dreiknigstag" => "#06.01.",
"Valentinstag" => "#14.02.",
"Weltfrauentag" => "#08.03.",
"Josephstag" => "#19.03.",
"Frhlingsanfang" => "#20.03.",
"Sommeranfang" => "#21.06.",
"Herbstanfang" => "#23.09.",
"Winteranfang" => "#21.12.",
"Beginn d. Sommerzeit" => "#5/Sun/Mar",
"Fettdonnerstag" => "#-52",
"Weiberfastnacht" => "#-52",
"Rosenmontag" => "#-48",
"Karnevalsdienstag" => "#-47",
"Aschermittwoch" => "#-46",
"Palmsonntag" => "#-7",
"Grndonnerstag" => "#-3",
"Karfreitag" => "#-2",
"Karsamstag" => "#-1",
"Muttertag" => "#2/Sun/May",
"Vatertag" => "#2/Sun/Aug",
"Peter und Paul" => "#29.06.",
"Fronleichnam" => "#+60",
"Mari Himmelfahrt" => "#15.08.",
"Erntedankfest" => "#1/Sun/Oct",
"Ende d. Sommerzeit" => "#5/Sun/Oct",
"Reformationstag" => "#31.10.",
"Allerheiligen" => "#01.11.",
"Allerseelen" => "#02.11.",
"Martinstag" => "#11.11.",
"Mari Empfngnis" => "#08.12.",
"Bu- und Bettag" => \&DE_Buss_und_Bettag2,
"Volkstrauertag" => \&DE_Volkstrauertag,
"Totensonntag" => \&DE_Totensonntag,
"1. Advent" => \&Advent,
"2. Advent" => \&Advent,
"3. Advent" => \&Advent,
"4. Advent" => \&Advent,
"Nikolaus" => "#06.12.",
"Heiligabend" => "#24.12.",
"Sylvester" => "#31.12.",
# Common legal holidays (in all federal states):
"Neujahr" => "01.01.",
"Karfreitag" => "-2",
"Ostersonntag" => "+0",
"Ostermontag" => "+1",
"Tag der Arbeit" => "01.05.",
"Christi Himmelfahrt" => "+39",
"Pfingstsonntag" => "+49",
"Pfingstmontag" => "+50",
"Tag der deutschen Einheit" => "03.10.",
"1. Weihnachtsfeiertag" => "25.12.",
"2. Weihnachtsfeiertag" => "26.12."
};
$Profiles->{'DE-BW'} = # Baden-Wrttemberg
{
%{$Profiles->{'DE'}},
"Dreiknigstag" => "06.01.",
"Fronleichnam" => "+60",
"Allerheiligen" => "01.11."
};
$Profiles->{'DE-BY'} = # Bayern
{
%{$Profiles->{'DE'}},
"Dreiknigstag" => "06.01.",
"Fronleichnam" => "+60",
"Mari Himmelfahrt" => "15.08.",
"Allerheiligen" => "01.11."
};
$Profiles->{'DE-BE'} = # Berlin
{
%{$Profiles->{'DE'}}
};
$Profiles->{'DE-BB'} = # Brandenburg
{
%{$Profiles->{'DE'}},
"Reformationstag" => "31.10."
};
$Profiles->{'DE-HB'} = # Bremen
{
%{$Profiles->{'DE'}}
};
$Profiles->{'DE-HH'} = # Hamburg
{
%{$Profiles->{'DE'}}
};
$Profiles->{'DE-HE'} = # Hessen
{
%{$Profiles->{'DE'}},
"Fronleichnam" => "+60"
};
$Profiles->{'DE-MV'} = # Mecklenburg-Vorpommern
{
%{$Profiles->{'DE'}},
"Reformationstag" => "31.10."
};
$Profiles->{'DE-NI'} = # Niedersachsen
{
%{$Profiles->{'DE'}}
};
$Profiles->{'DE-NW'} = # Nordrhein-Westfalen
{
%{$Profiles->{'DE'}},
"Fronleichnam" => "+60",
"Allerheiligen" => "01.11."
};
$Profiles->{'DE-RP'} = # Rheinland-Pfalz
{
%{$Profiles->{'DE'}},
"Fronleichnam" => "+60",
"Allerheiligen" => "01.11."
};
$Profiles->{'DE-SL'} = # Saarland
{
%{$Profiles->{'DE'}},
"Fronleichnam" => "+60",
"Mari Himmelfahrt" => "15.08.",
"Allerheiligen" => "01.11."
};
$Profiles->{'DE-SN'} = # Sachsen
{
%{$Profiles->{'DE'}},
"Reformationstag" => "31.10.",
"Bu- und Bettag" => \&DE_Buss_und_Bettag
};
$Profiles->{'DE-ST'} = # Sachsen-Anhalt
{
%{$Profiles->{'DE'}},
"Dreiknigstag" => "06.01.",
"Reformationstag" => "31.10."
};
$Profiles->{'DE-SH'} = # Schleswig-Holstein
{
%{$Profiles->{'DE'}}
};
$Profiles->{'DE-TH'} = # Thringen
{
%{$Profiles->{'DE'}},
"Reformationstag" => "31.10."
};
# Alternative:
# Buss- und Bettag = 1. Advent - 11 Tage
# 1. Advent = 4. Advent - 21 Tage (3 Wochen)
# 4. Advent = letzter Sonntag vor dem 25.12.
# (Beide Alternativen sind auf dem Definitionsbereich
# [1583..2299] aequivalent!)
#sub DE_Buss_und_Bettag
#{
# my($year,$label) = @_;
# return( Add_Delta_Days($year,12,25,
# -(Day_of_Week($year,12,25)+32)) );
#}
sub DE_Buss_und_Bettag # Dritter Werktags-Mittwoch im November
{
my($year,$label) = @_;
if (Day_of_Week($year,11,1) == 3)
{ return( Nth_Weekday_of_Month_Year($year,11,3,4) ); }
else
{ return( Nth_Weekday_of_Month_Year($year,11,3,3) ); }
}
sub DE_Buss_und_Bettag2
{
return( &DE_Buss_und_Bettag(@_), '#' );
}
sub DE_Volkstrauertag
{
my($year,$label) = @_;
return( Add_Delta_Days($year,12,25,
-(Day_of_Week($year,12,25)+35)), '#' );
}
sub DE_Totensonntag
{
my($year,$label) = @_;
return( Add_Delta_Days($year,12,25,
-(Day_of_Week($year,12,25)+28)), '#' );
}
# Thanks to:
# David Cassell <cassell@mercury.cor.epa.gov>
# Larry Rosler <lr@hpl.hp.com>
# Anthony Argyriou <anthony@alphageo.com>
# Philip Newton <pne@writeme.com>
# Joe Rice <riceja@water-melon.net>
# Sridhar Gopal <sridhar.gopal@bankofamerica.com>
$Profiles->{'US'} = # United States of America
{
# For labeling only (defaults, may be overridden):
"Valentine's Day" => "#Feb/14",
"Maundy Thursday" => "#-3",
"Good Friday" => "#-2",
"Election Day" => \&US_Election,
# Common legal holidays (in all federal states):
"New Year's Day" => \&US_New_Year,
"Martin Luther King's Birthday" => "3/Mon/Jan",
"Civil Rights Day" => "#3/Mon/Jan", # Thanks to Michael G. Schwern <mschwern@cpan.org>
"Human Rights Day" => "#3/Mon/Jan", # and http://en.wikipedia.org/wiki/Martin_Luther_King_Day
"President's Day" => "3/Mon/Feb",
"Washington's Birthday" => "#3/Mon/Feb", # Thanks to Michael G. Schwern <mschwern@cpan.org>
"Memorial Day" => "5/Mon/May",
"Independence Day" => \&US_Independence,
"Labor Day" => "1/Mon/Sep",
"Columbus Day" => "2/Mon/Oct",
"Halloween" => "#Oct/31",
"All Saints Day" => "#Nov/1",
"All Souls Day" => "#Nov/2",
"Veterans' Day" => \&US_Veteran,
"Thanksgiving Day" => "4/Thu/Nov",
"Christmas Day" => \&US_Christmas,
# Federal observances (thanks to http://en.wikipedia.org/wiki/US_holidays):
"Inauguration Day" => "#Jan/20",
"Super Bowl Sunday" => "#1/Sun/Feb",
"Groundhog Day" => "#Feb/2",
"St. Patrick's Day" => "#Mar/17",
"Earth Day" => "#Apr/22",
"Cinco de Mayo" => "#May/5",
"Mother's Day" => "#2/Sun/May",
"Father's Day" => "#3/Sun/Jun",
"Pearl Harbor Remembrance Day" => "#Dec/7",
"Winter Solstice" => "#Dec/21",
"Christmas Eve" => "#Dec/24",
"New Year's Eve" => "#Dec/31"
};
sub US_New_Year # First of January
{
my($year,$label) = @_;
return( &Next_Monday($year,1,1) );
}
sub US_Independence # Fourth of July
{
my($year,$label) = @_;
return( &Nearest_Workday($year,7,4) );
}
sub US_Labor # First Monday after the first Sunday in September
{
my($year,$label) = @_;
return( Add_Delta_Days(
Nth_Weekday_of_Month_Year($year,9,7,1), +1) );
}
sub US_Election # First Tuesday after the first Monday in November
{
my($year,$label) = @_;
return( Add_Delta_Days(
Nth_Weekday_of_Month_Year($year,11,1,1), +1), '#' );
}
sub US_Veteran # 11th of November
{
my($year,$label) = @_;
return( &Nearest_Workday($year,11,11) );
}
sub US_Christmas # 25th of December
{
my($year,$label) = @_;
return( &Next_Monday($year,12,25) );
}
$Profiles->{'US-AK'} = # Alaska
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-AL'} = # Alabama
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-AR'} = # Arkansas
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-AS'} = # American Samoa
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-AZ'} = # Arizona
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-CA'} = # California
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-CO'} = # Colorado
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-CT'} = # Connecticut
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-DC'} = # District of Columbia
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-DE'} = # Delaware
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-FL'} = # Florida
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-FM'} = # Federated States of Micronesia
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-GA'} = # Georgia
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-GU'} = # Guam
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-HI'} = # Hawaii
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-IA'} = # Iowa
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-ID'} = # Idaho
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-IL'} = # Illinois
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-IN'} = # Indiana
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-KS'} = # Kansas
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-KY'} = # Kentucky
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-LA'} = # Louisiana
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-MA'} = # Massachusetts
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-MD'} = # Maryland
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-ME'} = # Maine
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-MH'} = # Marshall Islands
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-MI'} = # Michigan
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-MN'} = # Minnesota
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-MO'} = # Missouri
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-MP'} = # Northern Mariana Islands
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-MS'} = # Mississippi
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-MT'} = # Montana
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-NC'} = # North Carolina
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-ND'} = # North Dakota
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-NE'} = # Nebraska
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-NH'} = # New Hampshire
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-NJ'} = # New Jersey
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-NM'} = # New Mexico
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-NV'} = # Nevada
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-NY'} = # New York
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-OH'} = # Ohio
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-OK'} = # Oklahoma
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-OR'} = # Oregon
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-PA'} = # Pennsylvania
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-PR'} = # Puerto Rico
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-PW'} = # Palau
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-RI'} = # Rhode Island
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-SC'} = # South Carolina
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-SD'} = # South Dakota
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-TN'} = # Tennessee
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-TX'} = # Texas
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-UT'} = # Utah
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-VA'} = # Virginia
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-VI'} = # Virgin Islands
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-VT'} = # Vermont
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-WA'} = # Washington
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-WI'} = # Wisconsin
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-WV'} = # West Virginia
{
%{$Profiles->{'US'}}
};
$Profiles->{'US-WY'} = # Wyoming
{
%{$Profiles->{'US'}}
};
# Thanks to:
# M Lyons <lyonsm@bob.globalmediacorp.com>
# Larry Rosler <lr@hpl.hp.com>
# Geoff Baskwill <glb@nortel.ca>
# Simon Perreault <nomis80@linuxquebec.com>
$Profiles->{'CA'} = # Canada
{
"New Year's Day" => "Jan/01",
"Good Friday" => "-2",
"Labour Day" => "1/Mon/Sep",
"Christmas Day" => "Dec/25"
};
sub CA_QC_Dollard # First Monday before May 25
{
my($year,$label) = @_;
my($dow) = Day_of_Week($year, 5, 25);
return( Add_Delta_Days($year, 5, 25, 1-$dow) );
}
$Profiles->{'CA-AB'} = # Alberta
{
%{$Profiles->{'CA'}},
"Family Day" => "3/Mon/Feb",
"Victoria Day" => "May/22",
"Canada Day" => "Jul/01",
"Thanksgiving Day" => "2/Mon/Oct",
"Remembrance Day" => "Nov/11"
};
$Profiles->{'CA-BC'} = # British Columbia
{
%{$Profiles->{'CA'}},
"Victoria Day" => "May/22",
"Canada Day" => "Jul/01",
"British Columbia Day" => "1/Mon/Aug",
"Thanksgiving Day" => "2/Mon/Oct",
"Remembrance Day" => "Nov/11"
};
$Profiles->{'CA-MB'} = # Manitoba
{
%{$Profiles->{'CA'}},
"Victoria Day" => "May/22",
"Canada Day" => "Jul/01",
"Thanksgiving Day" => "2/Mon/Oct"
};
$Profiles->{'CA-NB'} = # New Brunswick
{
%{$Profiles->{'CA'}},
"Canada Day" => "Jul/01",
"New Brunswick Day" => "1/Mon/Aug"
};
$Profiles->{'CA-NF'} = # Newfoundland
{
%{$Profiles->{'CA'}},
"Memorial Day" => "Jul/01"
};
$Profiles->{'CA-NS'} = # Nova Scotia
{
%{$Profiles->{'CA'}},
"Canada Day" => "Jul/01"
};
$Profiles->{'CA-NT'} = # Northwest Territories and Nunavut
{
%{$Profiles->{'CA'}},
"Victoria Day" => "May/22",
"Canada Day" => "Jul/01",
"Thanksgiving Day" => "2/Mon/Oct",
"Remembrance Day" => "Nov/11"
};
$Profiles->{'CA-ON'} = # Ontario
{
%{$Profiles->{'CA'}},
"Victoria Day" => "May/22",
"Canada Day" => "Jul/01",
"Family Day" => "3/Mon/Feb", # Thanks to
"Civic Holiday" => "1/Mon/Aug", # Iain Dwyer <dermanus@gmail.com>
"Thanksgiving Day" => "2/Mon/Oct",
"Boxing Day" => "Dec/26"
};
$Profiles->{'CA-PE'} = # Prince Edward Island
{
%{$Profiles->{'CA'}},
"Canada Day" => "Jul/01"
};
$Profiles->{'CA-QC'} = # Qubec
{
"Jour de l'an" => "Jan/01",
"Vendredi Saint" => "-2",
"Pques" => "+0",
"Lundi de Pques" => "+1",
"Fte de Dollard" => \&CA_QC_Dollard,
"Fte du Qubec" => "Jun/24",
"Fte du Canada" => "Jul/01",
"Fte du Travail" => "1/Mon/Sep",
"Action de Grce" => "2/Mon/Oct",
"Nol" => "Dec/25"
};
$Profiles->{'CA-SK'} = # Saskatchewan
{
%{$Profiles->{'CA'}},
"Victoria Day" => "May/22",
"Canada Day" => "Jul/01",
"Saskatchewan Day" => "1/Mon/Aug",
"Thanksgiving Day" => "2/Mon/Oct",
"Remembrance Day" => "Nov/11"
};
$Profiles->{'CA-YK'} = # Yukon Territory
{
%{$Profiles->{'CA'}},
"Victoria Day" => "May/22",
"Canada Day" => "Jul/01",
"Discovery Day" => "3/Mon/Aug",
"Thanksgiving Day" => "2/Mon/Oct",
"Remembrance Day" => "Nov/11"
};
# Thanks to:
# Nora Elia Castillo <nec@leia.sunmexico.Sun.COM>
$Profiles->{'MX'} = # Mexico
{
"Ao Nuevo" => "01-01",
"Da de la Constitucin" => "05-02",
"Natalicio de Benito Juarez" => "21-03",
"Da del Trabajo" => "01-05",
"Da de la Independencia" => "16-09",
"Revolucin Mexicana" => "20-11",
"Navidad" => "25-12"
};
# Thanks to:
# Slawek Szmyd <slawek@msstudio.com.pl>
# Marcin Wlazlowski <marcin@msstudio.com.pl>
$Profiles->{'PL'} = # Polska
{
"Nowy Rok" => "01.01.",
"Trzech Kroli" => "#06.01.",
"Dzien Babci" => "#21.01.",
"Dzien Dziadka" => "#22.01.",
"Walentynki" => "#14.02.",
"Dzien Kobiet" => "#08.03.",
"Tlusty Czwartek" => "#-52",
"Ostatki" => "#-47",
"Sroda Popielcowa" => "#-46",
"Niedziela Palmowa" => "#-7",
"Wielkanoc" => "+0",
"Poniedzialek Wielkanocny" => "+1",
"Zielone Swiatki" => "#+49",
"Boze Cialo" => "+60",
"Prima Aprilis" => "#01.04.",
"Swieto Pracy" => "01.05.",
"Swieto Narodowe 3 Maja" => "03.05.",
"Dzien Matki" => "#26.05.",
"Dzien Dziecka" => "#01.06.",
"Dzien Ojca" => "#23.06.",
"Wniebowziecie NMP" => "15.08.",
"Dzien Nauczyciela" => "#14.10.",
"Halloween" => "#Oct/31",
"Wszystkich Swietych" => "01.11.",
"Dzien Zaduszny" => "#02.11",
"Narodowe Swieto Niepodleglosci" => "11.11.",
"Andrzejki" => "#30.11.",
"Mikolajki" => "#06.12.",
"Wigilia" => "#24.12.",
"Boze Narodzenie pierwszy dzien Swiat" => "25.12.",
"Boze Narodzenie drugi dzien Swiat" => "26.12.",
"Sylwester" => "#31.12."
};
$Profiles->{'PL-SW'} = # kalendarz z wieksza iloscia Swiat
{
%{$Profiles->{'PL'}},
"Wielki Czwartek" => "#-3",
"Wielki Piatek" => "#-2",
"Poczatek Adwentu" => \&Advent1,
"Swieto Dziekczynienia" => "#4/Thu/Nov"
};
## ISO-Latin-2:
#
## Thanks to:
## Sawek Szmyd <slawek@msstudio.com.pl>
## Marcin Wlazowski <marcin@msstudio.com.pl>
#
#$Profiles->{'PL'} = # Polska
#{
# "Nowy Rok" => "01.01.",
# "Trzech Krli" => "#06.01.",
# "Dzie Babci" => "#21.01.",
# "Dzie Dziadka" => "#22.01.",
# "Walentynki" => "#14.02.",
# "Dzie Kobiet" => "#08.03.",
#
# "Tusty Czwartek" => "#-52",
# "Ostatki" => "#-47",
# "roda Polpielcowa" => "#-46",
# "Niedziela Palmowa" => "#-7",
# "Wielkanoc" => "+0",
# "Poniedziaek Wielkanocny" => "+1",
# "Zielone witki" => "#+49",
# "Boe Ciao" => "+60",
#
# "Prima Aprilis" => "#01.04.",
# "wito Pracy" => "01.05.",
# "wito Narodowe 3 Maja" => "03.05.",
# "Dzie Matki" => "#26.05.",
# "Dzie Dziecka" => "#01.06.",
# "Dzie Ojca" => "#23.06.",
# "Wniebowzicie NMP" => "15.08.",
# "Dzie Nauczyciela" => "#14.10.",
# "Halloween" => "#Oct/31",
# "Wszystkich witych" => "01.11.",
# "Dzie Zaduszny" => "#02.11",
# "Narodowe wito Niepodlegoci" => "11.11.",
# "Andrzejki" => "#30.11.",
# "Mikoajki" => "#06.12.",
# "Wigilia" => "#24.12.",
# "Boe Narodzenie pierwszy dzie wit" => "25.12.",
# "Boe Narodzenie drugi dzie wit" => "26.12.",
# "Sylwester" => "#31.12."
#};
#
#$Profiles->{'PL-SW'} = # kalendarz z wieksza iloscia Swiat
#{
# %{$Profiles->{'PL'}},
# "Wielki Czwartek" => "#-3",
# "Wielki Pitek" => "#-2",
# "Pocztek Adwentu" => \&Advent1,
# "wito Dzikczynienia" => "#4/Thu/Nov"
#};
$Profiles->{'AT'} = # sterreich
{
"Neujahr" => "01.01.",
"Dreiknigstag" => "06.01.",
"Karfreitag" => "#-2", # regional unterschiedlich
"Ostersonntag" => "+0",
"Ostermontag" => "+1",
"Staatsfeiertag" => "01.05.",
"Christi Himmelfahrt" => "+39",
"Pfingstsonntag" => "+49",
"Pfingstmontag" => "+50",
"Fronleichnam" => "+60",
"Mari Himmelfahrt" => "15.08.",
"Nationalfeiertag" => "26.10.",
"Allerheiligen" => "01.11.",
"Mari Empfngnis" => "08.12.",
"Christtag" => "25.12.",
"Stephanitag" => "26.12."
};
# Thanks to:
# Herbert Liechti <herbert.liechti@thinx.ch>
# Marco Hunn <m_hunn@blue-design.ch>
# Aldo Calpini <dada@perl.it>
$Profiles->{'CH-DE'} = # Schweiz - Deutsch
{
"Neujahr" => "01.01.",
"Dreiknigstag" => "06.01.",
"Karfreitag" => "#-2",
"Ostersonntag" => "+0",
"Ostermontag" => "+1",
"Auffahrt" => "+39",
"Pfingstsonntag" => "+49",
"Pfingstmontag" => "+50",
"Fronleichnam" => "#+60",
"Bundesfeiertag" => "01.08.",
"Mari Himmelfahrt" => "#15.08.",
"Allerheiligen" => "#01.11.",
"Weihnachten" => "25.12.",
"Stefanstag" => "26.12."
};
$Profiles->{'CH-FR'} = # Suisse - Franais
{
"Nouvel An" => "01.01.",
"piphanie" => "06.01.",
"Vendredi Saint" => "#-2",
"Pques" => "+0",
"Lundi de Pques" => "+1",
"L'Ascension" => "+39",
"La Pentecte" => "+49",
"Lundi de Pentecte" => "+50",
"Fte Dieu" => "#+60",
"Fte fdrale" => "01.08.",
"Assomption" => "#15.08.",
"Toussaint" => "#01.11.",
"Nel" => "25.12.",
"St. Etienne" => "26.12."
};
$Profiles->{'CH-IT'} = # Switzerland - Italian
{
"Capo d'Anno" => "01.01.",
"Epifania" => "06.01.",
"Venerd Santo" => "#-2",
"Pasqua" => "+0",
"Luned di Pasqua" => "+1",
"Ascensione" => "+39",
"Pentecoste" => "+49",
"Luned di Pentecoste" => "+50",
"Corpus Domini" => "#+60",
"Festa federale" => "01.08.",
"Assunzione di M.V." => "#15.08.",
"Ognissanti" => "#01.11.",
"S. Natale" => "25.12.",
"S. Stefano" => "26.12."
};
$Profiles->{'CH-RM'} = # Swizra rumantscha (Switzerland - Rhaeto-Romance)
{
"Bman" => "01.01.",
"Di da la Babania" => "#06.01.",
"Venderdi sonch" => "-2",
"Dumengia da Pasqua" => "+0",
"Fir da Pasqua" => "+1",
"Ascensiun" => "+39",
"Dumengia da Tschinquaisma" => "+49",
"Fir da Tschinquaisma" => "+50",
"Sonch sang" => "#+60",
"Festa federala" => "01.08.",
"Assunziun da Maria" => "#15.08.",
"Festa da tuot ils sonchs" => "#01.11.",
"Festa da Nadal" => "25.12.",
"Stefan sonch" => "26.12."
};
# Thanks to:
# Franois Desarmenien <francois@fdesar.net>
# Arnaud Calvo <arnaud@calvo-france.com>
# Jean Forget <ponder.stibbons@wanadoo.fr>
# Cedric Bouvier <Cedric.Bouvier@ctp.com>
# Julien Quint <julien.quint@imag.fr>
$Profiles->{'FR'} = # France
{
"Jour de l'An" => "01.01.",
"piphanie" => "#06.01.",
"Chandeleur" => "#02.02.",
"Mardi-Gras" => "#-47",
"Mercredi des Cendres" => "#-46",
"Dimanche des Rameaux" => "-7",
"Pques" => "+0",
"Lundi de Pques" => "+1",
"Fin de Guerre d'Algrie" => "#19.03.", # Contrat d'Evian 19.03.1962
"Fte du Travail" => "01.05.",
"Victoire 1945" => "08.05.",
"Saint Jean" => "#24.06.",
"Ascension" => "+39",
"Pentecte" => "+49",
"Lundi de Pentecte" => "+50",
"Fte Nationale" => "14.07.",
"Assomption" => "15.08.",
"Toussaint" => "01.11.",
"Jour des Dfunts" => "#02.11.",
"Saint Martin" => "#11.11",
"Armistice 1918" => "11.11.",
"Avent" => \&Advent1,
"Nol" => "25.12.",
"Saint Sylvestre" => "#31.12."
};
$Profiles->{'BE-DE'} = # Belgien
{
"Neujahr" => "01.01.",
"Dreiknigstag" => "#06.01.",
"Lichtmesse" => "#02.02.",
"Karnevalsdienstag" => "#-47",
"Aschermittwoch" => "#-46",
"Palmsonntag" => "-7",
"Ostersonntag" => "+0",
"Ostermontag" => "+1",
"Tag der Arbeit" => "01.05.",
"Christi Himmelfahrt" => "+39",
"Pfingstsonntag" => "+49",
"Pfingstmontag" => "+50",
"Nationalfeiertag" => "21.07.",
"Mari Himmelfahrt" => "15.08.",
"Allerheiligen" => "01.11.",
"Allerseelen" => "#02.11.",
"Waffenstillstand 1918" => "11.11.",
"Weihnachten" => "25.12.",
"2. Weihnachtsfeiertag" => "#26.12.",
"Sylvester" => "#31.12."
};
# Thanks to:
# Hendrik Van Belleghem <beatnik@quickndirty.org>
# Stefaan Colson <stefaan.colson@sitel.com>
$Profiles->{'BE-NL'} = # Belgi
{
"Nieuwjaar" => "01.01.",
"Driekoningen" => "#06.01.",
"Lichtmis" => "#02.02.",
"Vastenavond" => "#-47",
"Aswoensdag" => "#-46",
"Palmzondag" => "-7",
"Pasen" => "+0",
"Paasmaandag" => "+1",
"Dag van de arbeid" => "01.05.",
"Hemelvaartsdag" => "+39", # Onze Lieve Heer Hemelvaart
"Pinksteren" => "+49",
"Pinkstermaandag" => "+50",
"Feest van de Vlaamse Gemeenschap" => "#11.07",
"Nationale feestdag" => "21.07.",
"OLV Hemelvaart" => "15.08.", # Onze Lieve Vrouw Hemelvaart
"Allerheiligen" => "01.11.",
"Allerzielen" => "#02.11.",
"Wapenstilstand 1918" => "11.11.",
"Kerstmis" => "25.12.",
"Tweede kerstdag" => "#26.12."
};
# Thanks to:
# Stefaan Colson <stefaan.colson@sitel.com>
# Stephane Rondal <rondal@usa.net>
$Profiles->{'BE-FR'} = # Belgique
{
"Nouvel An" => "01.01.",
"piphanie" => "#06.01.",
"Chandeleur" => "#02.02.",
"Mardi-Gras" => "#-47",
"Mercredi des Cendres" => "#-46",
"Dimanche des Rameaux" => "-7",
"Pques" => "+0",
"Lundi de Pques" => "+1",
"Fte du Travail" => "01.05.",
"Ascension" => "+39",
"Pentecte" => "+49",
"Lundi de Pentecte" => "+50",
"Fte Nationale" => "21.07.",
"Assomption" => "15.08.",
"Fte de la Communaut Franaise" => "#27.09.",
"Toussaint" => "01.11.",
"Jour des Dfunts" => "#02.11.",
"Armistice 1918" => "11.11.",
"Nol" => "25.12.",
"2ime Jour de Nol" => "#26.12.",
"Saint Sylvestre" => "#31.12."
};
$Profiles->{'LU-DE'} = # Groherzogtum Luxemburg
{
"Neujahr" => "01.01.",
"Fastnachtsmontag" => "#-48", # regional unterschiedlich
"Ostersonntag" => "+0",
"Ostermontag" => "+1",
"Tag der Arbeit" => "01.05.",
"Christi Himmelfahrt" => "+39",
"Pfingstsonntag" => "+49",
"Pfingstmontag" => "+50",
"Nationalfeiertag" => "23.06.",
"Mari Himmelfahrt" => "15.08.",
"Allerheiligen" => "01.11.",
"Allerseelen" => "#02.11.", # regional unterschiedlich
"Weihnachten" => "25.12.",
"2. Weihnachtsfeiertag" => "26.12."
};
$Profiles->{'LU-FR'} = # Grand Duch du Luxembourg
{
"Nouvel An" => "01.01.",
"Veille du Mardi Gras" => "#-48", # varie selon la rgion
"Pques" => "+0",
"Lundi de Pques" => "+1",
"Fte du Travail" => "01.05.",
"Ascension" => "+39",
"Pentecte" => "+49",
"Lundi de Pentecte" => "+50",
"Jour National" => "23.06.",
"Assomption" => "15.08.",
"Toussaint" => "01.11.",
"Jour des Dfunts" => "#02.11.", # varie selon la rgion
"Nol" => "25.12.",
"2ime Jour de Nol" => "#26.12.",
"Saint Sylvestre" => "#31.12."
};
$Profiles->{'PT'} = # Portugal
{
"Ano Novo" => "01.01.",
"Tera-Feira de Carnaval" => "-47",
"Paixo de Cristo" => "-2",
"Domingo de Pscoa" => "+0",
"Dia da Liberdade" => "25.04.",
"Dia do Trabalho" => "01.05.",
"Ascenso de Cristo" => "+39",
"Domingo de Pentecostes" => "+49",
"Dia Nacional" => "10.06.",
"Corpus Christi" => "#+60", # varia segundo a regio
"Assuno de Maria" => "15.08.",
"Dia da Repblica" => "05.10.",
"Todos os Santos" => "01.11.",
"Dia da Independncia" => "01.12.",
"Conceio de Maria" => "08.12.",
"Natal" => "25.12."
};
# Thanks to:
# Arturo Valdes <arturovaldes@usa.net>
$Profiles->{'ES'} = # Espaa
{
"Ao Nuevo" => "01.01.",
"Epifana del Seor" => "06.01.",
"Da de Santo Jos" => "#19.03.",
"Jueves Santo" => "#-3",
"Viernes Santo" => "-2",
"Domingo de Pscuas" => "+0",
"Lunes de Pscuas" => "#+1", # vara segundo la region
"Da del Trabajo" => "01.05.",
"Domingo de Pentecostes" => "+49",
"Santiago Apstol" => "#25.07.",
"Ascensin de la Virgen" => "15.08.", # Ascensin de Mara
"Fiesta Nacional de Espaa" => "12.10.",
"Todos los Santos" => "01.11.",
"Da de la Constitucin" => "06.12.",
"Inmaculada Concepcin" => "08.12.", # Da de la Concepcin
"Natividad del Seor" => "25.12."
};
# Thanks to:
# Michele Beltrame <mb@io.com>
# Aldo Calpini <dada@perl.it>
# Alessio Bragadini <alessio@sevenseas.org>
$Profiles->{'IT'} = # Italia
{
"Capodanno" => "01.01.",
"Epifania" => "06.01.",
"San Valentino" => "#14.02.",
"Festa della Donna" => "#08.03.",
"Festa della Mamma" => "1/Sun/May",
"Marted Grasso" => "#-47",
"Pasqua" => "+0",
"Luned dell'Angelo" => "+1",
"Liberazione d'Italia 1945" => "25.04.",
"Festa del Lavoro" => "01.05.",
"Fondazione della Repubblica 1946" => \&IT_Fondazione,
"Pentecoste" => "+49",
"Ferragosto" => "15.08.",
"Tutti i Santi" => "01.11.",
"Celebrazione dei Defunti" => "#02.11.",
"Giorno dell'Unit Nazionale" => "#04.11.",
"Fine della 1a Guerra Mondiale" => "#04.11.",
"Giorno delle Forze Armate" => "#04.11.",
"Immacolata Concezione" => "08.12.",
"Natale" => "25.12.",
"S. Stefano" => "26.12."
};
# Fixed thanks to:
# Michele Valzelli <spleen.leveller@gmail.com>
sub IT_Fondazione
{
my($year,$label) = @_;
if ($year >= 1947)
{
if (($year <= 1977) or ($year >= 2000)) { return($year,6,2); }
else { return($year,6,2,'#'); } # only commemorative
}
return(); # didn't exist before 1947
}
# Thanks to:
# Georg Mavridis <GM@mavridis.net>
$Profiles->{'GR'} = # Greece
{
"Prwtohronia" => "01.01.", # New Year
"Theofaneia" => "06.01.", # Epifania
"Katharh devtera" => "-48", # Carnival Monday
# "???" => "???", # Annunciation of Maria
"Ethniki giorth 1" => "25.03.", # National Day #1
"Megalh paraskevh" => "-2", # Good Friday
"Kyriakh toy pasha" => "+0", # Easter Sunday
"Devtera toy pasha" => "+1", # Easter Monday
"Analypsews" => "#+39", # Ascension of Christ
"Kyriakh toy agiou pnevmatos" => "+49", # Whitsunday
"Agiou pnevmatos" => "+50", # Whitmonday
"Hmera ths ergasias" => "01.05.", # Labour Day (also commonly called "Prwtomagia")
"Koimhsews theotokoy" => "15.08.", # Ascension of Maria
"Timioy stavrou" => "#14.09.", # Feast of the Elevation of the Cross
"Ethniki giorth 2" => "28.10.", # National Day #2
"Hristougenna" => "25.12.", # Christmas (1st Day)
"Devterh mera hristougennwn" => "26.12.", # Christmas (2nd Day)
};
# Thanks to:
# Flemming Mahler Larsen <mahler@dk.net>
$Profiles->{'DK'} = # Denmark
{
"Nytrsdag" => "01.01.",
"Hellig tre Konger" => "1/Sun/Jan", # (H3K) - First Sunday of the year
"Fastelavn" => "-49", # 7th Sunday before Easter
"Palme sndag" => "-7", # Sunday before Easter
"Skrtorsdag" => "-3",
"Langfredag" => "-2",
"Pskedag" => "+0",
"2. Pskedag" => "+1",
"Store bededag" => "+26", # 4th Friday after Easter
"Grundlovsdag" => "05.06.",
"Skt. Hans aften" => "23.06.",
"Kristi himmelfart" => "+39",
"Pinsedag" => "+49",
"2. Pinsedag" => "+50",
"Mortensdag" => "11.10.",
"Allehelgen" => "1/Sun/Nov", # Halloween
"1. Advent" => \&Advent,
"2. Advent" => \&Advent,
"3. Advent" => \&Advent,
"4. Advent" => \&Advent,
"Juleaftensdag" => "24.12.",
"1. Juledag" => "25.12.",
"2. Juledag" => "26.12."
};
# Thanks to:
# H. Merijn Brand <h.m.brand@xs4all.nl>
# Johan Vromans <JVromans@squirrel.nl>
# Abigail <abigail@foad.org>
# Elizabeth Mattijsen <liz@dijkmat.nl>
# Abe Timmerman <abe@ztreet.demon.nl>
# Jigal van Hemert <jigal.van.hemert@iquip.nl>
# Wim Verhaegen <wim.verhaegen@esat.kuleuven.ac.be>
# Cas Tuyn <cas.tuyn@asml.nl>
# Remco B. Brink <remco@solbors.no>
# Can Bican <can@ripe.net>
# Ziya Suzen <ziya@ripe.net>
# Henk Uijterwaal <henk@ripe.net>
# Eric Veldhuyzen <ericv@xs4all.net>
$Profiles->{'NL'} = # Nederland
{
"Nieuwjaar" => "01-01",
"Driekoningen" => "#06-01",
"Valentijnsdag" => "#14-02",
"Biddag voor het gewas" => "#2/Wed/Mar",
"Carnaval" => "#-48",
"Vastenavond" => "#-47",
"Aswoensdag" => "#-46",
"Een April" => "#01-04",
"Palmpasen" => "-7",
"Witte Donderdag" => "#-3",
"Goede Vrijdag" => "#-2",
"Stille Zaterdag" => "#-1",
"Pasen" => "+0",
"Paasmaandag" => "+1",
"Moederdag" => "2/Sun/May",
"Vaderdag" => "3/Sun/Jun",
"Koninginnedag" => \&NL_Koninginnedag,
"Dodenherdenking" => "#04-05",
"Bevrijdingsdag" => \&NL_Bevrijdingsdag,
"Hemelvaart" => "+39",
"Pinksteren" => "+49",
"Pinkstermaandag" => "+50",
"Trinitatis" => "+56",
"Prinsjesdag" => "#3/Tue/Sep",
"Dierendag" => "#04-10",
"Dankdag voor het gewas" => "#1/Wed/Nov",
"Sint Maarten" => "#11-11",
"Sinterklaasavond" => "#05-12",
"Sinterklaas" => "#06-12",
"Koninkrijksdag" => "#15-12",
"Kerstmis" => "25-12",
"2e Kerstdag" => "26-12"
};
sub NL_Koninginnedag
{
my($year,$label) = @_;
my(@date);
@date = ($year,4,30);
if (Day_of_Week(@date) == 7) { @date = Add_Delta_Days(@date,-1); }
return(@date);
}
# Bevrijdingsdag:
#
# 1945 : Liberation from German occupation in World War II
# 1946,1947: Official holiday
# 1948,1949: Afternoon off for government personnel, some local celebrations
# 1950-1957: No official celebrations
# 1958-1981: Commemorative, holiday for government personnel, schools etc.
# 1982-1990: Official holiday for everybody
# 1990-... : Official holiday every 5th year for everybody
#
# See also
# http://www.herdenkenenvieren.nl/utility/print.jsp?detail=2197&contentid=2197&siteid=hev&nofooter=true
# As far as I know, 'bevrijdingsdag' is an official national celebration
# day for everybody, but this does NOT mean that you do not have to go to
# work. This depends on your employer. In general, for everybody it is
# just a normal work day, except for people working for the government.
#
# See also
# http://home.szw.nl/faq/dsp_faq.cfm?view=3Ddetail&link_id=3D41264
# http://www.abvakabo.net/faq/index.php?page=3Dindex_v2&id=3D333&c=3D91
sub NL_Bevrijdingsdag
{
my($year,$label) = @_;
if ($year >= 1945)
{
if ( ($year <= 1947) or
(($year >= 1982) and ($year <= 1990)) or
(($year > 1990) and (($year % 5) == 0)))
{
return($year,5,5); # true holiday
}
elsif (($year == 1948) or ($year == 1949))
{
return($year,5,5,':'); # half day off
}
else
{
return($year,5,5,'#'); # only commemorative
}
}
return(); # didn't exist before 1945
}
# Thanks to:
# Erland Sommarskog <sommar@algonet.se>
# Magnus Bodin <magnus@bodin.org>
# Olle E. Johansson <oej@edvina.net>
$Profiles->{'SV'} = # Sverige
{
"Nyrsdagen" => "01.01.",
"Trettondedagsafton" => "#05.01.", # 12 days after Dec 24th
"Trettondedag jul" => "06.01.", # 13 days after Dec 24th
"Tjugondedag Knut" => "#13.01.", # 20 days after Dec 24th according to Olle E. Johansson
"Kyndelsmssodagen" => "#02.02",
"Marie bebdelsedag" => "#25.03",
"Skrtorsdag" => "#-3",
"Lngfredagen" => "-2",
"Pskafton" => "#-1", # like a Saturday
"Pskdagen" => "+0",
"Annandag psk" => "+1",
"Valborgsmssoafton" => "#30.04.",
"Frsta maj" => "01.05.",
"Syttende maj" => "#17.05.", # not a swedish but a norwegian holiday according to Olle E. Johansson
"Mors dag" => "5/Sun/May", # Last Sun in May
"Fars dag" => "2/Sun/Nov", # 2nd Sun in Nov
"Sveriges nationaldag" => "#06.06.",
"Johannes Dparens dag" => "#24.06.",
"Kristi himmelsfrds dag" => "+39",
"Pingstafton" => "#+48", # like a Saturday
"Pingstdagen" => "+49",
"Annandag pingst" => "+50",
"Midsommarafton" => \&SV_Midsommarafton, # like a Saturday
"Midsommardagen" => \&SV_Midsommardagen,
"Alla helgons dag" => \&SV_Alla_Helgons_Dag,
"Allhelgonadagen" => "#01.11.",
"FN-dagen" => "#24.10.",
"Gustav Adolfs-dagen" => "#06.11.",
"Nobeldagen" => "#10.12.",
"Julafton" => "#24.12.", # like a Saturday
"Juldagen" => "25.12.",
"Annandag jul" => "26.12.",
"Nyrsafton" => "#31.12." # like a Saturday
};
sub SV_Midsommarafton # Friday that falls on June 19th to 25th
{
my($year,$label) = @_;
return( Add_Delta_Days($year,6,28,
-(Day_of_Week($year,6,28)+2)), '#' );
}
sub SV_Midsommardagen # Saturday that falls on June 20th to 26th
{
my($year,$label) = @_;
return( Add_Delta_Days($year,6,28,
-(Day_of_Week($year,6,28)+1)) );
}
sub SV_Alla_Helgons_Dag # Saturday that falls on Oct 31st to Nov 6th
{
my($year,$label) = @_;
return( Add_Delta_Days($year,11,8,
-(Day_of_Week($year,11,8)+1)) );
}
# Thanks to:
# Gisle Aas <gisle@aas.no>
# Remco B. Brink <remco@solbors.no>
# Lars Ole <ma-karl2@online.no>
# Vetle Roeim <vetler@opera.com>
$Profiles->{'NO'} = # Norway
{
"Nyttrsdag" => "01/01",
"Onsdag fr Skjrtorsdag" => "#-4", # sometimes half a day off
"Skjrtorsdag" => "-3",
"Langfredag" => "-2",
"Pskedag" => "+0",
"2. Pskedag" => "+1",
"1. mai" => "05/01",
"Grunnlovsdag" => "05/17",
"Kristi himmelfartsdag" => "+39",
"Pinsedag" => "+49",
"2. Pinsedag" => "+50",
"Julaften" => "#12/24", # sometimes half a day off
"Juledag" => "12/25",
"2. Juledag" => "12/26",
"Nyttrsaften" => "#31.12" # sometimes half a day off
};
## Thanks to:
## Sercan Uslu <sercanuslu@su.sabanciuniv.edu>
#
#$Profiles->{'TR'} = # Trkiye
#{
## National Public Holidays (fixed):
#
# "New Year's Day" => "01-01",
# "National Sovereignty Day" => "23-04",
# "Children's Day" => "23-04",
# "Atatrk Commemoration" => "19-05",
# "Youth and Sports Day" => "19-05",
# "Victory Day" => "30-08",
# "Republic Day" => "29-10",
#
## Religious Public Holidays (moving):
#
# "Kurban Bayram (Eid al Adha) 1" => "22-02", # only valid in 2002
# "Kurban Bayram (Eid al Adha) 2" => "23-02", # only valid in 2002
# "Kurban Bayram (Eid al Adha) 3" => "24-02", # only valid in 2002
# "Kurban Bayram (Eid al Adha) 4" => "25-02", # only valid in 2002
#
# "Ramazan / Seker Bayram (Eid al Fitr) 1" => "05-12", # only valid in 2002
# "Ramazan / Seker Bayram (Eid al Fitr) 2" => "06-12", # only valid in 2002
# "Ramazan / Seker Bayram (Eid al Fitr) 3" => "07-12" # only valid in 2002
#};
# Thanks to:
# Jonathan Stowe <gellyfish@gellyfish.com>
$Profiles->{'GB'} = # Great Britain
{
"New Year's Day" => \&GB_New_Year,
"Good Friday" => "-2",
"Easter Sunday" => "+0",
"Easter Monday" => "+1",
"Early May Bank Holiday" => \&GB_Early_May,
"Late May Bank Holiday" => "5/Mon/May", # Last Monday
#
# Jonathan Stowe <gellyfish@gellyfish.com> told me that spring
# bank holiday is the first Monday after Whitsun, but my pocket
# calendar suggests otherwise. I decided to follow my pocket
# guide and an educated guess ;-), but please correct me if
# I'm wrong!
#
"Summer Bank Holiday" => "5/Mon/Aug", # Last Monday
"Christmas Day" => \&GB_Christmas,
"Boxing Day" => \&GB_Boxing
};
sub GB_New_Year
{
my($year,$label) = @_;
return( &Next_Monday($year,1,1) );
}
#
# The following formula (also from Jonathan Stowe <gellyfish@gellyfish.com>)
# also contradicts my pocket calendar, but for lack of a better guess I
# left it as it is. Please tell me the correct formula in case this one
# is wrong! Thank you!
#
sub GB_Early_May # May bank holiday is the first Monday after May 1st
{
my($year,$label) = @_;
if (Day_of_Week($year,5,1) == 1)
{ return( Nth_Weekday_of_Month_Year($year,5,1,2) ); }
else
{ return( Nth_Weekday_of_Month_Year($year,5,1,1) ); }
}
sub GB_Christmas
{
my($year,$label) = @_;
return( &Next_Monday($year,12,25) );
}
sub GB_Boxing
{
my($year,$label) = @_;
return( &Next_Monday_or_Tuesday($year,12,26) );
}
# Thanks to:
# Bianca Taylor <bianca@unisolve.com.au>
# Andie Posey <andie@posey.org>
# Don Simonetta <don.simonetta@tequinox.com>
# Paul Fenwick <pjf@cpan.org>
# Brian Graham <brian.graham@nec.com.au>
# Pat Waters <pat.waters@dir.qld.gov.au>
# Stephen Riehm <Stephen.Riehm@gmx.net>
# http://www.holidayfestival.com/Australia.html
# http://www.earthcalendar.net/countries/2001/australia.html
# Sven Geisler <sgeisler@aeccom.com>
# Canberra (ACT):
# http://www.workcover.act.gov.au/labourreg/publicholidays.html
# New South Wales (NSW):
# http://www.dir.nsw.gov.au/holidays/index.html
# Northern Territory (NT):
# http://www.nt.gov.au/ocpe/documents/public-holidays/
# Queensland (QLD):
# http://www.wageline.qld.gov.au/publicholidays/list_pubhols.html
# South Australia (SA):
# http://www.sacentral.sa.gov.au/information/pubhols.htm
# Tasmania (TAS):
# http://www.workcover.tas.gov.au/WSTPublish/node/wststatutory.htm
# Victoria (VIC):
# http://www.info.vic.gov.au/resources/publichols.htm
# Western Australia (WA):
# http://www.doplar.wa.gov.au/wages/pub_hol1.htm
$Profiles->{'AU'} = # Australia
{
"Australia Day" => \&AU_Australia,
"St. Valentine's Day" => "#14.02.",
"Good Friday" => "-2",
"Easter Sunday" => "+0",
"Easter Monday" => "+1",
"Anzac Day" => "25.04.",
"Christmas Day" => \&AU_Christmas,
"Boxing Day" => \&AU_Boxing
};
sub AU_Australia
{
my($year,$label) = @_;
return( &Next_Monday($year,1,26) );
}
sub AU_Christmas
{
my($year,$label) = @_;
return( &Next_Monday($year,12,25) );
}
sub AU_Boxing
{
my($year,$label) = @_;
return( &Next_Monday_or_Tuesday($year,12,26) );
}
sub AU_New_Year
{
my($year,$label) = @_;
return( &Next_Monday($year,1,1) );
}
sub AU_Lauceston
{
my($year,$label) = @_;
if (Nth_Weekday_of_Month_Year($year,2,3,5))
{ return( Nth_Weekday_of_Month_Year($year,2,3,4) ); }
else
{ return( Nth_Weekday_of_Month_Year($year,2,3,3) ); }
}
sub AU_May
{
my($year,$label) = @_;
return( &Next_Monday($year,5,1) );
}
sub AU_QLD_Anzac
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,4,25) );
}
sub AU_QLD_Brisbane
{
my($year,$label) = @_;
if (Nth_Weekday_of_Month_Year($year,8,3,5))
{ return( Nth_Weekday_of_Month_Year($year,8,3,3), '#' ); }
else
{ return( Nth_Weekday_of_Month_Year($year,8,3,2), '#' ); }
}
sub AU_VIC_New_Year
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,1,1) );
}
sub AU_VIC_Boxing
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,12,26) );
}
$Profiles->{'AU-QLD'} = # Queensland
{
%{$Profiles->{'AU'}},
"New Year's Day" => "01.01.",
"Anzac Day" => \&AU_QLD_Anzac,
"Easter Saturday" => "-1",
"Labour Day" => "1/Mon/May",
"Queen's Birthday" => "2/Mon/Jun",
"Royal Show (Brisbane)" => \&AU_QLD_Brisbane
};
$Profiles->{'AU-TAS'} = # Tasmania
{
%{$Profiles->{'AU'}},
"New Year's Day" => "01.01.",
"Regatta Day" => "2/Tue/Feb",
"Lauceston Cup Day" => \&AU_Lauceston,
"King Island Show Day" => "1/Tue/Mar", # uncertain! (maybe Tuesday after 1/Sun/Mar?)
"Eight Hour Day" => "2/Mon/Mar", # dubious, formula probably wrong!
"Easter Saturday" => "-1",
"Queen's Birthday" => "2/Mon/Jun",
"Recreation Day" => "1/Mon/Nov" # only North Tasmania - date not confirmed!
};
$Profiles->{'AU-SA'} = # South Australia
{
%{$Profiles->{'AU'}},
"New Year's Day" => "01.01.",
"Easter Saturday" => "-1",
"Adelaide Cup Day" => "3/Mon/May", # uncertain! (maybe Monday after 3/Sun/May?)
"Queen's Birthday" => "2/Mon/Jun",
"Labour Day" => "1/Mon/Oct",
"Proclamation Day" => "#26.12."
};
$Profiles->{'AU-WA'} = # Western Australia
{
%{$Profiles->{'AU'}},
"New Year's Day" => "01.01.",
"Labour Day" => "1/Mon/Mar",
"Foundation Day" => "1/Mon/Jun",
"Queen's Birthday" => "1/Mon/Oct"
};
$Profiles->{'AU-ACT'} = # Australian Capital Territory
{
%{$Profiles->{'AU'}},
"New Year's Day" => "01.01.",
"Canberra Day" => "2/Mon/Mar", # dubious, formula probably wrong!
"Easter Saturday" => "-1",
"Queen's Birthday" => "2/Mon/Jun",
"Labour Day" => "1/Mon/Oct"
};
$Profiles->{'AU-NSW'} = # New South Wales
{
%{$Profiles->{'AU'}},
"New Year's Day" => \&AU_New_Year,
"Easter Saturday" => "-1",
"Queen's Birthday" => "2/Mon/Jun",
"Labour Day" => "1/Mon/Oct"
};
$Profiles->{'AU-NT'} = # Northern Territory
{
%{$Profiles->{'AU'}},
"New Year's Day" => "01.01.",
"Easter Saturday" => "-1",
"May Day" => \&AU_May,
"Queen's Birthday" => "2/Mon/Jun",
"Picnic Day" => "1/Mon/Aug"
};
$Profiles->{'AU-VIC'} = # Victoria
{
%{$Profiles->{'AU'}},
"New Year's Day" => \&AU_VIC_New_Year,
"Australia Day" => "26.01.",
"Labour Day" => "2/Mon/Mar",
"Queen's Birthday" => "2/Mon/Jun",
"Melbourne Cup Day" => "#1/Tue/Nov", # only in metropolitian municipal districts
"Christmas Day" => "25.12.",
"Boxing Day" => \&AU_VIC_Boxing
};
# Thanks to:
# John Bolland <jbolland@mainzeal.co.nz>
# Andie Posey <andie@posey.org>
$Profiles->{'NZ'} = # New Zealand
{
"New Year's Day" => \&NZ_New_Year,
"Day after New Year's Day" => \&NZ_After_New_Year,
"Waitangi Day" => "06.02.",
"St. Valentine's Day" => "#14.02.",
"St. David's Day" => "#01.03.",
"St. Patrick's Day" => "#17.03.",
"St. George's Day" => "#23.04.",
"St. Andrew's Day" => "#30.11.",
"Good Friday" => "-2",
"Easter Sunday" => "+0",
"Easter Monday" => "+1",
"Anzac Day" => "25.04.",
"Queen's Birthday" => "1/Mon/Jun",
"Labour Day" => \&NZ_Labour,
"Christmas Day" => \&NZ_Christmas,
"Boxing Day" => \&NZ_Boxing,
"Southland" => \&NZ_Southland,
"Wellington" => \&NZ_Wellington,
"Auckland" => \&NZ_Auckland,
"Taranaki" => \&NZ_Taranaki,
"Otago" => \&NZ_Otago,
"South Canterbury" => \&NZ_South_Canterbury,
"Hawkes Bay" => \&NZ_Hawkes_Bay,
"Marlborough" => \&NZ_Marlborough,
"North Canterbury" => \&NZ_North_Central_Canterbury,
"Central Canterbury" => \&NZ_North_Central_Canterbury,
"Chatham Islands" => \&NZ_Chatham_Islands,
"Westland" => \&NZ_Westland,
"Christchurch Show Day" => \&NZ_Christchurch
};
sub NZ_New_Year
{
my($year,$label) = @_;
return( &Next_Monday($year,1,1) );
}
sub NZ_After_New_Year
{
my($year,$label) = @_;
return( &Next_Monday_or_Tuesday($year,1,2) );
}
sub NZ_Labour
{
my($year,$label) = @_;
return( &Next_Monday($year,10,22) );
}
sub NZ_Christmas
{
my($year,$label) = @_;
return( &Next_Monday($year,12,25) );
}
sub NZ_Boxing
{
my($year,$label) = @_;
return( &Next_Monday_or_Tuesday($year,12,26) );
}
sub NZ_Southland
{
my($year,$label) = @_;
return( &Next_Monday($year,1,15), '#' );
}
sub NZ_Wellington
{
my($year,$label) = @_;
return( &Next_Monday($year,1,22), '#' );
}
sub NZ_Auckland
{
my($year,$label) = @_;
return( &Next_Monday($year,1,29), '#' );
}
sub NZ_Taranaki
{
my($year,$label) = @_;
return( &Next_Monday($year,3,12), '#' );
}
sub NZ_Otago
{
my($year,$label) = @_;
return( &Next_Monday($year,3,26), '#' );
}
sub NZ_South_Canterbury
{
my($year,$label) = @_;
return( &Next_Monday($year,9,24), '#' );
}
sub NZ_Hawkes_Bay
{
my($year,$label) = @_;
return( &Previous_Friday($year,10,19), '#' );
}
sub NZ_Marlborough
{
my($year,$label) = @_;
return( &Next_Monday($year,10,29), '#' );
}
sub NZ_North_Central_Canterbury
{
my($year,$label) = @_;
return( &Previous_Friday($year,11,16), '#' );
}
sub NZ_Chatham_Islands
{
my($year,$label) = @_;
return( &Next_Monday($year,12,3), '#' );
}
sub NZ_Westland
{
my($year,$label) = @_;
return( &Next_Monday($year,12,3), '#' );
}
sub NZ_Christchurch
{
my($year,$label) = @_;
return( &Previous_Friday($year,11,9), '#' );
}
# Thanks to:
# Ana Maria Lopes Monteiro <anamaria_l@hotmail.com>
# Pe. Amncio <catedral@lkn.com.br>
# Inz Hiltrop <inez@hiltrop.de>
# http://www.imagensbahia.com.br/calend.htm
# http://www.hotelonline.com.br/menu/datas.htm
# http://www.mec.gov.br/acs/relpublc/datas.shtm
$Profiles->{'BR'} = # Brasil
{
# Feriados oficiais variaveis:
"Carnaval" => "-47",
"Paixo de Cristo" => "-2",
"Corpus Christi" => "+60",
# Feriados oficiais fixos:
"Ano Novo" => "01-01",
"Tiradentes (Patrono Cvico da Nao Brasileira)" => "21-04",
"Dia (Mundial) do Trabalho" => "01-05",
"Dia da Independncia do Brasil (1822)" => "07-09",
"N. Sra. Aparecida (Padroeira do Brasil)" => "12-10",
"Finados" => "02-11",
"Proclamao da Repblica dos Estados Unidos do Brasil (1889)" => "15-11",
"Natal" => "25-12",
# Dias comemorativos variaveis:
"Segunda-Feira de Carnaval" => "#-48",
"Cinzas" => "#-46",
"Aleluia" => "#-1",
"Pscoa" => "#+0",
"Ascenso do Senhor" => "#+39",
"Pentecostes" => "#+49",
"Dia Mundial da Orao" => "#1/Fri/Mar",
"Dia das Mes" => "#2/Sun/May",
"Dia dos Pais" => "#2/Sun/Aug",
"Dia da Bblia" => "#5/Sun/Sep",
"Dia Universal da Criana" => "#1/Mon/Oct",
"Dia do Securitrio" => "#3/Mon/Oct",
# Sinonimos:
# "Dia da Ressaca" => "#-46", # >;-)
"Sexta-Feira Santa" => "#-2",
"Dia Mundial da Paz" => "#01-01",
"Confraternizao Universal" => "#01-01",
# "Fraternidade Universal" => "#01-01",
"Santos Reis" => "#06-01",
"Inconfidncia Mineira" => "#21-04",
"Todas as Almas" => "#02-11",
"Natividade de Jesus" => "#25-12",
# "Natividade do Senhor" => "#25-12",
# Datas especiais:
"Eleies" => "#03-10",
"Incio do Outono" => "#21-03",
"Incio do Inverno" => "#21-06",
"Incio da Primavera" => "#23-09",
"Incio do Vero" => "#22-12",
# "Comeo do Horrio de Vero" => "#??-??",
# "Fim do Horrio de Vero" => "#??-??",
# Dias comemorativos (datas contraditorias ou duvidosas):
"Incio da Semana Nacional contra o Alcoolismo" => "#18-02", # (1) = 3/Sun/Feb ?
"Incio da Semana da Educao (1 Semana)" => "#02-07", # (1) = 1/Sun/Jul ?
"Incio da Semana do Exrcito" => "#18-08", # (1) = 3/Sun/Aug ?
"Incio da Semana do Livro Escolar" => "#19-08", # (1) = 3/Sun/Aug ?
"Incio da Semana do Portador de Sndrome de Down" => "#21-08", # (1) = 4/Sun/Aug ?
"Incio da Semana da Ptria" => "#01-09", # (2) = 1/Sun/Sep ?
"Incio da Semana do Trnsito" => "#19-09", # (1) = 3/Sun/Sep ?
"Dia do Trnsito" => "#25-09", # (2)
"Incio da Semana da Asa" => "#17-10", # (1) = 3/Sun/Oct ?
"Dia do Agricultor" => "#28-07", # (2)
"Dia do Engenheiro Agrnomo" => "#12-10", # (1)
"Dia do Agrnomo" => "#11-12", # (1)
"Dia Nacional da Alfabetizao" => "#08-09", # (2)
# "Dia da Alfabetizao" => "#08-09", # (2)
# "Dia Nacional da Alfabetizao" => "#14-11", # (1)
# "Dia Nacional da Alfabetizao" => "#15-11", # (1)
# "Dia da Amizade" => "#23-06", # (1)
"Dia Internacional da Amizade" => "#20-07", # (1)
"Dia Mundial da Amizade" => "#20-07", # (2)
"Dia da Amizade" => "#20-07", # (1)
"Dia do Amigo" => "#20-07", # (1)
"Dia dos Aposentados" => "#24-01", # (1)
"Dia do Professor Aposentado" => "#15-05", # (1)
"Dia do Funcionrio Pblico Aposentado" => "#17-06", # (2)
"Dia do Aposentado" => "#08-11", # (1)
"Dia do Idoso" => "#27-02", # (1)
"Dia dos Idosos" => "#07-10", # (1)
"Dia do Artista" => "#23-08", # (1)
"Dia dos Artistas" => "#24-08", # (1)
# "Dia do Atleta" => "#10-02", # (1)
"Dia do Atletismo" => "#12-10", # (1)
"Dia do Atleta Profissional" => "#19-12", # (1)
"Dia do Atleta" => "#21-12", # (2)
"Dia das Bandeiras" => "#30-05", # (1)
"Dia dos Smbolos Nacionais" => "#18-09", # (1)
"Dia da Bandeira" => "#19-11", # (4)
"Dia dos Bandeirantes" => "#08-08", # (1)
"Dia do Bandeirante" => "#14-11", # (1)
"Dia do Barbeiro" => "#06-09", # (1)
"Dia do Barbeiro" => "#03-11", # (1)
"Dia do Bombeiro" => "#01-07", # (1)
"Dia dos Bombeiros Brasileiros" => "#02-07", # (1)
"Dia do Industrial do Caf" => "#12-03", # (1)
"Dia Pan-Americano do Caf" => "#14-04", # (1)
"Dia do Caf" => "#14-04", # (1)
# "Dia do Caf" => "#24-05", # (1)
"Dia do Carteiro" => "#25-01", # (2)
# "Dia do Carteiro" => "#05-08", # (1)
"Criao dos Correios no Brasil" => "#25-01", # (1)
"Dia do Correio" => "#08-04", # (1)
"Dia do Correio Areo Nacional" => "#12-06", # (1)
"Dia Postal Mundial" => "#09-10", # (1)
# "Dia Universal da Criana" => "#1/Mon/Oct",
"Dia da Criana" => "#12-10",
"Dia do Enfermo" => "#14-01", # (1)
"Dia Mundial do Enfermo" => "#11-02", # (1)
# "Dia da Escola" => "#15-03", # (1)
"Dia da Escola" => "#19-03", # (3)
"Dia do Escritor Paulista" => "#29-06", # (1)
# "Dia do Escritor" => "#25-07", # (2)
"Dia do Escritor" => "#13-10", # (3)
"Dia do Estudante (Feriado Escolar)" => "#11-08", # (4)
"Dia Internacional do Estudante" => "#17-11", # (1)
# "Dia do Folclore" => "#19-08", # (1)
"Dia do Folclore" => "#22-08", # (4)
"Dia Mundial Sem Fumar" => "#07-04", # (1)
"Dia Mundial do Combate ao Fumo" => "#31-05", # (1)
"Dia Mundial Sem Tabaco" => "#31-05", # (1)
"Dia Nacional de Combate ao Fumo" => "#29-08", # (1)
"Dia do Fumar" => "#16-11", # (1)
"Dia da Sade e Nutrio" => "#31-03", # (1)
"Dia Mundial da Sade" => "#07-04", # (4)
"Dia Nacional da Sade" => "#05-08", # (4)
"Dia da Sade Dentria" => "#25-10", # (1)
"Dia Pan-Americano da Sade" => "#02-12", # (1)
"Dia do Hino Nacional" => "#13-04", # (1)
"Dia do Hino Nacional" => "#06-09", # (1)
"Dia do Hoteleiro" => "#11-08", # (1)
"Dia do Hoteleiro" => "#09-11", # (1)
"Festa de Iemanj" => "#02-02", # (2)
# "Festa de Iemanj" => "#08-12", # (1)
"Festa de Iemanj em So Paulo e Paraba" => "#08-12", # (1)
"Fundao da Associao Brasileira de Imprensa (ABI)" => "#07-04", # (1)
"Dia Nacional da Imprensa" => "#01-06", # (1)
"Dia da Liberdade de Imprensa" => "#07-06", # (2)
"Dia Internacional da Liberdade de Imprensa" => "#10-06", # (1)
"Dia da Imprensa" => "#10-09", # (4)
"Dia da Infncia" => "#20-08", # (3)
"Dia da Infncia" => "#24-08", # (1)
"Dia do Jornalista" => "#29-01", # (1)
"Dia do Jornalismo" => "#07-04", # (2)
"Dia Nacional do Jornaleiro" => "#30-09", # (1)
"Dia dos Jovens" => "#13-04", # (2)
"Dia Internacional do Jovem Trabalhador" => "#24-04", # (4)
"Dia da Juventude Operria Catlica" => "#29-04", # (1)
"Dia da Juventude Constitucionalista" => "#23-05", # (1)
"Dia Nacional da Juventude" => "#22-09", # (2)
"Dia Mundial da Juventude" => "#04-10", # (1)
"Dia Mundial do Leonino" => "#08-10", # (1)
"Dia Mundial do Lions Clube" => "#10-10", # (1)
"Dia do Livro" => "#19-03", # (2)
# "Dia do Livro" => "#18-04", # (1)
"Dia Nacional do Livro" => "#29-10", # (2)
# "Dia do Livro" => "#23-11", # (1)
"Dia Internacional do Livro" => "#23-11", # (1)
"Dia Internacional do Livro Infantil" => "#02-04", # (3)
# "Dia Internacional do Livro Infantil" => "#02-09", # (2)
"Dia Nacional do Livro Infantil" => "#18-04", # (3)
"Dia Oficial da Msica" => "#21-11", # (1)
"Dia do Msico" => "#22-11", # (1)
"Dia Mundial da gua (ONU)" => "#22-03", # (2)
"Dia da Organizao das Naes Unidas (ONU)" => "#25-04", # (1)
"Dia das Naes Unidas (ONU) (1945)" => "#24-10", # (4)
"N. Sra. Rainha da Paz" => "#09-07", # (1)
"N. Sra. Rainha da Paz" => "#22-08", # (1)
"N. Sra. da Penha (Feriado Escolar)" => "#24-04", # (1)
# "N. Sra. da Penha" => "#24-04", # (2)
# "N. Sra. da Penha" => "#08-09", # (1)
"Dia da Liberdade de Pensamento" => "#14-07", # (2)
"Dia do Pensamento" => "#13-08", # (1)
"Dia do Petrleo" => "#29-09", # (1)
"Dia do Petrleo Brasileiro" => "#03-10", # (2)
"Dia do Profissional de Marketing" => "#08-04", # (1)
"Dia do Profissional de Marketing" => "#08-05", # (1)
"Dia do Publicitrio" => "#01-02", # (1)
"Dia do Publicitrio" => "#04-12", # (1)
"Dia do Reprter" => "#16-02", # (2)
# "Dia do Reprter" => "#17-02", # (1)
"Dia do Reprter Fotogrfico" => "#02-09", # (1)
# "Dia da Televiso" => "#11-08", # (2)
"Santa Clara de Assis (Padroeira da Televiso)" => "#11-08", # (1)
# "Dia da Padroeira da Televiso (Santa Clara de Assis)" => "#12-08", # (1)
"Santa Isabel" => "#04-07", # (1)
"Santa Isabel" => "#05-11", # (1)
"Santa Terezinha (Tereza do Menino Jesus)" => "#01-10", # (2)
# "Santa Tereza" => "#15-10", # (1)
"Dia Mundial das Vocaes Sacerdotais" => "#25-04", # (1)
"Dia Mundial das Vocaes" => "#26-04", # (1)
"Dia Mundial das Vocaes" => "#02-05", # (1)
"Dia do Comissrio de Bordo" => "#31-05", # (1)
"Dia Internacional do Controlador de Vo" => "#18-10", # (1)
"Dia Mundial do Comissrio de Vo" => "#31-10", # (1)
# Dias comemorativos fixos (sem garantias!):
"Dia dos Municpios" => "#01-01",
"Maria Santssima Me de Deus" => "#01-01",
"Dia Nacional da Abreugrafia" => "#03-01",
"Dia da Criao do Estado de Rondnia-RO" => "#04-01",
"Criao da Primeira Tipografia no Brasil" => "#05-01",
"Reis Magos" => "#06-01",
"Dia da Gratido" => "#06-01",
"Dia da Liberdade de Cultos" => "#07-01",
"Dia do Leitor" => "#07-01",
"Batismo do Senhor" => "#08-01",
"Dia do Fotgrafo" => "#08-01",
"Dia do Fico" => "#09-01",
"Dia do Empresrio de Contabilidade" => "#12-01",
"Criao do Museu Nacional de Belas Artes (1937)" => "#13-01",
"Dia Mundial do Compositor" => "#15-01",
"Dia do Museu de Arte Moderna do Rio de Janeiro" => "#15-01",
"Dia dos Tribunais de Contas" => "#17-01",
"Dia Nacional do Fusca" => "#20-01",
"Dia de Oxal" => "#20-01",
"Dia do Farmacutico" => "#20-01",
"So Sebastio (Padroeiro da Cidade do Rio de Janeiro)" => "#20-01",
"Dia Mundial da Religio" => "#21-01",
"Santa Ins" => "#21-01",
"So Vicente" => "#22-01",
"Dia da Previdncia Social" => "#24-01",
"Instituio do Casamento Cvil no Brasil" => "#24-01",
"Promulgao da Constituio (1967)" => "#24-01",
"Fundao da Cidade de So Paulo (1554)" => "#25-01",
"Elevao do Brasil a Vice-Reinado (1763)" => "#27-01",
"Santa ngela de Mdici" => "#27-01",
"Abertura dos Pontos no Brasil (1808)" => "#28-01",
"Dia Nacional das Histrias em Quadrinhos" => "#30-01",
"Dia da Saudade" => "#30-01",
"Dia do Porturio (Porturia)" => "#30-01",
"Dia Mundial do Mgico" => "#31-01",
"So Joo Bosco" => "#31-01",
"Dia da Solidariedade" => "#31-01",
"Dia do Agente Fiscal" => "#02-02",
"N. Sra. dos Navegantes" => "#02-02",
"So Brs" => "#03-02",
"Dia da Papiloscopia" => "#05-02",
"Dia do Datiloscopista (Datiloscopia)" => "#05-02",
"Dia do Grfico" => "#07-02",
"Santa Apolnia (Dentistas)" => "#09-02",
"Criao da Casa da Moeda" => "#10-02",
"Santa Escolstica" => "#10-02",
"Dia do Zelador" => "#11-02",
"N. Sra. de Lourdes" => "#11-02",
"Dia Estadual do Ministrio Pblico (SP)" => "#12-02",
"1 Transmisso da TV em Cores (1972)" => "#16-02",
"Dia do Esportista" => "#19-02",
"Data Festiva do Exrcito" => "#21-02",
"Dia Nacional do Rotary (Dia do Rotariano)" => "#23-02",
"Promulgao da Primeira Constituio Republicana (1891)" => "#24-02",
"Criao do Ministrio das Comunicaes" => "#25-02",
"Dia Nacional do Livro Didtico" => "#27-02",
"Dia do Agente Fiscal da Receita Federal" => "#27-02",
"Dia da Vindima" => "#01-03",
"Fundao da Cidade do Rio de Janeiro (1565)" => "#01-03",
"Dia Nacional do Turismo" => "#02-03",
"Dia do Meteorologista" => "#03-03",
"Dia do Filatelista Brasileiro" => "#05-03",
"Dia dos Fuzileiros Navais" => "#07-03",
"Dia Internacional da Mulher" => "#08-03",
"Dia do Telefone" => "#10-03",
"So Domingos Svio" => "#10-03",
"Dia do Bibliotecrio" => "#12-03",
"Fundao da Cidade de Recife (1537)" => "#12-03",
"Semana Nacional da Biblioteca" => "#12-03",
"Dia Nacional da Poesia" => "#14-03",
"Dia do Agente Autnomo de Investimentos" => "#14-03",
"Dia do Conservador" => "#14-03",
"Dia do Vendedor de Livros" => "#14-03",
"Dia Mundial do Consumidor" => "#15-03",
"Dia da Constituio" => "#15-03",
"Dia do Carpinteiro" => "#19-03",
"Dia do Consertador" => "#19-03",
"Dia do Marceneiro" => "#19-03",
"So Jos (Padroeiro da Igreja Universal)" => "#19-03",
"Dia Internacional para a Eliminao da Discriminao Racial" => "#21-03",
"Dia Universal do Teatro" => "#21-03",
"Dia Internacional da Floresta" => "#21-03",
"Dia Mundial do Meteorolgico" => "#23-03",
"Dia do Cacau" => "#26-03",
"Dia do Circo" => "#27-03",
"Dia do Diagramador" => "#28-03",
"Dia do Revisor" => "#28-03",
"Aniversrio do Golpe Militar (1964)" => "#31-03",
"Dia da Integrao Nacional" => "#31-03",
"Dia da Mentira" => "#01-04",
"Dia do Humanismo" => "#01-04",
"Dia do Propagandista" => "#02-04",
"So Francisco de Paula" => "#02-04",
"Dia Nacional do Parkinsoniano" => "#04-04",
"Dia do Corretor" => "#07-04",
"Dia do Mdico Legista" => "#07-04",
"Dia Mundial do Combate ao Cncer" => "#08-04",
"Dia da Natao" => "#08-04",
"Dia Nacional do Ao" => "#09-04",
"Endoenas" => "#09-04",
"Dia da Engenharia do Exrcito Brasileiro" => "#10-04",
"Fundao do Exrcito da Salvao" => "#10-04",
"Aniversrio da Organizao Internacional do Trabalho" => "#11-04",
"Dia da Intendncia do Exrcito Brasileiro" => "#12-04",
"Dia do Obstetra / da Obstetriz" => "#12-04",
"Aniversario da Loteria Esportiva (1970)" => "#13-04",
"Dia do Office-Boy" => "#13-04",
"Dia Pan-Americano" => "#14-04",
"Dia da Amrica" => "#14-04",
"Dia Mundial do Desenhista" => "#15-04",
"Dia da Conservao do Solo" => "#15-04",
"Dia da Conveno do Solo" => "#15-04",
"Dia do Desarmamento Infantil" => "#15-04",
"Nascimento de Monteiro Lobato (Taubat-SP)" => "#18-04",
"Dia do ndio" => "#19-04",
"Santo Expedito" => "#19-04",
"Dia do Diplomata" => "#20-04",
"Dia da Latinidade" => "#21-04",
"Dia da Polcia Civil" => "#21-04",
"Dia Internacional da Terra" => "#21-04",
"Dia do Metalrgico" => "#21-04",
"Fundao da Cidade de Braslia-DF (1960)" => "#21-04",
"Morre Tancredo de Almeida Neves (1985)" => "#21-04",
"Descobrimento do Brasil (1500)" => "#22-04",
"Dia Mundial da Terra" => "#22-04",
"Dia da Aviao de Caa" => "#22-04",
"Dia da Comunidade Luso-Brasileira" => "#22-04",
"Dia da Fora Area Brasileira" => "#22-04",
"Dia do Planeta Terra" => "#22-04",
"Dia Mundial do Escoteiro (Baden Powell Day)" => "#23-04",
"Dia Mundial do Livro e do Direito Autoral" => "#23-04",
"So Jorge" => "#23-04",
"Dia do Agente de Viagem" => "#24-04",
"Dia do Contabilista" => "#25-04",
"So Marcos" => "#25-04",
"Celebrao da Primeira Missa no Brasil" => "#26-04",
"Dia do Goleiro" => "#26-04",
"Dia Nacional da Empregada Domstica" => "#27-04",
"Dia do Sacerdote" => "#27-04",
"Santa Zita" => "#27-04",
"Dia da Educao" => "#28-04",
"Dia da Sogra" => "#28-04",
"Dia Nacional da Mulher" => "#30-04",
"Dia da OEA (Organizao dos Estados Americanos)" => "#30-04",
"Dia do Ferrovirio" => "#30-04",
"Inaugurao da Primeira Estrada de Ferro no Brasil" => "#30-04",
"Dia da Literatura Brasileira" => "#01-05",
"So Jos Operrio" => "#01-05",
"Dia Nacional do Ex-Combatente" => "#02-05",
"Dia do Sertanejo" => "#03-05",
"Dia do Taquigrafo" => "#03-05",
"So Tiago" => "#03-05",
"Dia Nacional das Comunicaes" => "#05-05",
"Dia Nacional do Expedicionrio" => "#05-05",
"Dia da Comunidade" => "#05-05",
"Dia das Comunicaes" => "#05-05",
"Dia de Rondon" => "#05-05",
"Dia do Pintor" => "#05-05",
"Dia do Trabalhador Preso" => "#05-05",
"Dia do Cartgrafo" => "#06-05",
"Dia do Oftalmologista" => "#07-05",
"Dia do Silncio" => "#07-05",
"Dia Internacional da Cruz Vermelha" => "#08-05",
"Dia da Vitria (1945)" => "#08-05",
"Dia do Artista Plstico" => "#08-05",
"So Vitor" => "#08-05",
"Trmino da II Guerra Mundial (1945)" => "#08-05",
"Dia da Cavalaria" => "#10-05",
"Dia do Campo" => "#10-05",
"Dia do Guia de Turismo" => "#10-05",
"Dia da Integrao do Telgrafo no Brasil" => "#11-05",
"Dia Mundial da Enfermeira" => "#12-05",
"So Pancrcio" => "#12-05",
"Abolio da Escravatura, Lei urea (1888)" => "#13-05",
"Criao da Biblioteca Nacional, Rio de Janeiro-RJ (1811)" => "#13-05",
"Dia da Estrada de Rodagem" => "#13-05",
"Dia da Fraternidade Brasileira" => "#13-05",
"Dia do Automvel" => "#13-05",
"N. Sra. de Ftima" => "#13-05",
"Dia Continental do Seguro" => "#14-05",
"So Matias" => "#14-05",
"Dia do Assistente Social" => "#15-05",
"Dia do Gerente Bancrio" => "#15-05",
"Dia do Gari" => "#16-05",
"Dia Internacional da Comunicao e Telecomunicao" => "#17-05",
"Dia Internacional da Comunicao Social" => "#18-05",
"Dia Internacional dos Museus" => "#18-05",
"Dia dos Vidreiros" => "#18-05",
"Dia do Comissrio de Menores" => "#20-05",
"Dia da Lngua Nacional" => "#21-05",
"Dia do Apicultor" => "#22-05",
"Santa Rita" => "#22-05",
"Dia da Infantaria" => "#24-05",
"Dia do Datilgrafo" => "#24-05",
"Dia do Detento" => "#24-05",
"Dia do Telegrafista" => "#24-05",
"Dia do Vestibulando" => "#24-05",
"N. Sra. Auxiliadora" => "#24-05",
"Dia da Indstria" => "#25-05",
"Dia do Industrial" => "#25-05",
"Dia do Massagista" => "#25-05",
"Dia do Trabalhador Rural" => "#25-05",
"Dia Nacional da Mata Atlntica" => "#27-05",
"Dia do Profissional Liberal" => "#27-05",
"Dia do Estatstico" => "#29-05",
"Dia do Gegrafo" => "#29-05",
"Dia do Gelogo" => "#30-05",
"Santa Joana d'Arc" => "#30-05",
"Dia Mundial das Comunicaes Sociais" => "#31-05",
"Dia do Esprito Santo" => "#31-05",
"Primeira Transmisso de TV no Brasil (1950)" => "#01-06",
"Dia do Duque de Caxias" => "#01-06",
"Dia Mundial do Administrador de Pessoal" => "#03-06",
"Dia Mundial do Meio Ambiente" => "#05-06",
"Dia da Ecologia" => "#05-06",
"Dia do Citricultor" => "#08-06",
"Dia Nacional da Imunizao" => "#09-06",
"Dia Nacional do Pe. Anchieta" => "#09-06",
"Dia do Porteiro" => "#09-06",
"Dia do Tnis e do Tenista" => "#09-06",
"Dia da Artilharia" => "#10-06",
"Dia da Lngua Portuguesa" => "#10-06",
"Dia da Raa" => "#10-06",
"Batalha Naval do Riachuelo" => "#11-06",
"Dia da Marinha Brasileira" => "#11-06",
"Dia do Educador Sanitrio" => "#11-06",
"Dia dos Namorados" => "#12-06",
"Criado o Jardim Botnico do Rio de Janeiro por D. Joo VI" => "#13-06",
"Dia do Turista" => "#13-06",
"Santo Antnio" => "#13-06",
"Dia Universal de Deus" => "#14-06",
"Dia do Solista" => "#14-06",
"So Vito" => "#15-06",
"Dia da Unidade Nacional" => "#16-06",
"Dia da Imigrao Japonesa" => "#18-06",
"Dia do Qumico" => "#18-06",
"Dia do Revendedor" => "#20-06",
"Dia Nacional do Luto" => "#21-06",
"Dia Universal Olmpico" => "#21-06",
"Dia da Mdia" => "#21-06",
"Dia do Mel" => "#21-06",
"Dia do Migrante" => "#21-06",
"Nascimento de Machado de Assis, Rio de Janeiro-RJ (1839)" => "#21-06",
"Sagrado Corao de Jesus" => "#22-06",
"Imaculado Corao de Maria" => "#23-06",
"Dia Internacional do Leite" => "#24-06",
"Dia da Comunidade Britnica" => "#24-06",
"Dia das Empresas Grficas" => "#24-06",
"Dia do Caboclo" => "#24-06",
"Festa Junina (Feriado Escolar)" => "#24-06",
"So Joo Batista" => "#24-06",
"Dia do Quilo" => "#25-06",
"Dia Nacional de Combate s Drogas" => "#26-06",
"Dia Nacional do Progresso" => "#27-06",
"Dia da Revoluo Espiritual" => "#27-06",
"Dia dos Artistas Lricos" => "#27-06",
"Dia da Renovao Espiritual" => "#28-06",
"Dia Internacional do Orgulho Gay" => "#29-06",
"Dia da Telefonista" => "#29-06",
"Dia do Papa" => "#29-06",
"Dia do Pescador" => "#29-06",
"So Pedro e So Paulo" => "#29-06",
"Dia do Economirio" => "#30-06",
"Dia da Vacina BCG" => "#01-07",
"Instituio do Real como Unidade Monetria (1994)" => "#01-07",
"Dia do Hospital" => "#02-07",
"So Tom" => "#03-07",
"Dia Internacional do Cooperativismo" => "#04-07",
"Criao do IBGE (Instituto Brasileiro de Geografia e Estatstica)" => "#06-07",
"Santa Maria Goretti" => "#06-07",
"Dia do Panificador" => "#08-07",
"Dia do Soldado Constitucionalista" => "#09-07",
"N. Sra. Mediugrie" => "#09-07",
"Promulgao da Constituio Republicana (1932)" => "#09-07",
"Dia da Pizza em So Paulo" => "#10-07",
"Dia do Rondonista" => "#11-07",
"So Bento" => "#11-07",
"Dia do Engenheiro Florestal" => "#12-07",
"Dia Mundial do Rock" => "#13-07",
"Dia do Engenheiro de Saneamento" => "#13-07",
"Dia dos Cantores e Compositores Sertanejos" => "#13-07",
"Dia do Propagandista de Laboratrio" => "#14-07",
"So Camilo de Llis" => "#14-07",
"Dia Nacional dos Clubes" => "#15-07",
"Dia do Comerciante" => "#16-07",
"N. Sra. do Carmo" => "#16-07",
"Dia do Protetor de Florestas" => "#17-07",
"Dia da Coroao de D. Pedro" => "#18-07",
"Dia Nacional do Futebol" => "#19-07",
"Dia da Caridade" => "#19-07",
"Dia da Junta Comercial" => "#19-07",
"Dia Pan-Americano do Engenheiro" => "#20-07",
"Dia do Revendedor (de Gasolina)" => "#20-07",
"1 Vez Que o Homem Pisou na Lua (1969)" => "#21-07",
"Santa Madalena" => "#22-07",
"Dia da Declarao da Maioridade de D. Pedro II (1840)" => "#23-07",
"Dia do Guarda Rodovirio" => "#23-07",
"Dia do Colono" => "#25-07",
"Dia do Motorista" => "#25-07",
"So Cristvo" => "#25-07",
"Dia da Vov" => "#26-07",
"Santa Ana" => "#26-07",
"So Joaquim" => "#26-07",
"Dia Nacional de Preveno de Acidentes de Trabalho" => "#27-07",
"Dia do Motociclista" => "#27-07",
"Santa Marta" => "#29-07",
"So Incio de Loyola" => "#31-07",
"Dia Nacional do Slo" => "#01-08",
"Dia do Tintureiro" => "#03-08",
"So Joo Maria Vianei" => "#04-08",
"N. Sra. das Neves" => "#05-08",
"Bom Jesus" => "#06-08",
"So Caetano" => "#07-08",
"Dia do Padre" => "#08-08",
"So Loureno" => "#10-08",
"Dia Internacional da Logosofia" => "#11-08",
"Dia da Conscincia Nacional" => "#11-08",
"Dia da Pintura" => "#11-08",
"Dia do Advogado" => "#11-08",
"Dia do Direito" => "#11-08",
"Dia do Garom" => "#11-08",
"Dia do Magistrado" => "#11-08",
"Dia Nacional das Artes" => "#12-08",
"N. Sra. das Cabeas" => "#12-08",
"Dia do Economista" => "#13-08",
"Dia do Encarcerado" => "#13-08",
"Dia da Unidade Humana" => "#14-08",
"Assuno de Nossa Senhora" => "#15-08",
"Dia da Informtica" => "#15-08",
"Dia dos Solteiros" => "#15-08",
"N. Sra. da Glria" => "#15-08",
"So Roque" => "#16-08",
"Criao do Instituto Histrico e Geogrfico, Rio de Janeiro-RJ (1838)" => "#18-08",
"Santa Helena" => "#18-08",
"Dia Mundial da Fotografia" => "#19-08",
"Dia do Artista de Teatro" => "#19-08",
"Dia do Maom" => "#20-08",
"Dia do Excepcional" => "#22-08",
"Dia Internacional em Memria da Escravido e da Abolio" => "#23-08",
"Dia da Injustia" => "#23-08",
"Santa Rosa de Lima" => "#23-08",
"So Bartolomeu" => "#24-08",
"Dia do Exrcito Brasileiro" => "#25-08",
"Dia do Feirante" => "#25-08",
"Dia do Soldado" => "#25-08",
"Dia Nacional do Psiclogo" => "#27-08",
"Dia do Corretor de Imveis" => "#27-08",
"Santa Mnica" => "#27-08",
"Dia Nacional dos Bancrios" => "#28-08",
"Dia da Avicultura" => "#28-08",
"Santo Agostinho" => "#28-08",
"Dia do Nutricionista" => "#31-08",
"So Raimundo Nonato" => "#31-08",
"Dia do Bilogo" => "#03-09",
"Dia da Amaznia" => "#05-09",
"Dia do Oficial de Farmcia" => "#05-09",
"Dia do Alfaiate" => "#06-09",
"Natividade de Nossa Senhora" => "#08-09",
"Dia do Administrador" => "#09-09",
"Dia do Veterinrio" => "#09-09",
"Dia da Cruz" => "#14-09",
"Dia do Frevo" => "#14-09",
"N. Sra. das Dores" => "#15-09",
"So Cipriano" => "#16-09",
"Dia da Compreenso Mundial" => "#17-09",
"Promulgao da Constituio do Brasil (1946)" => "#18-09",
"Dia do Teatro" => "#19-09",
"So Genaro" => "#19-09",
"Dia do Funcionrio Municipal" => "#20-09",
"Dia do Gacho" => "#20-09",
"Dia do Policial Civil" => "#20-09",
"Dia Nacional da Radiodifuso" => "#21-09",
"Dia da rvore" => "#21-09",
"Dia do Fazendeiro" => "#21-09",
"Dia do Radialista" => "#21-09",
"Dia do Radio" => "#21-09",
"Santa Efignia" => "#21-09",
"So Mateus" => "#21-09",
"Dia do Soldador" => "#23-09",
"Dia Interamericano/Internacional de Relaes Pblicas" => "#26-09",
"Dia Mundial do Turismo" => "#27-09",
"Dia do Ancio" => "#27-09",
"Dia do Encanador" => "#27-09",
"So Cosme e Damio" => "#27-09",
"So Vicente de Paulo" => "#27-09",
"Dia da Lei do Sexagenrio" => "#28-09",
"Dia da Me Preta" => "#28-09",
"Lei do Ventre Livre Sancionada pela Princesa Isabel (1871)" => "#28-09",
"Dia do Anunciante" => "#29-09",
"Dia do Professor de Educao Fsica" => "#29-09",
"Santos Arcanjos" => "#29-09",
"So Gabriel" => "#29-09",
"So Miguel" => "#29-09",
"Dia Internacional da Navegao" => "#30-09",
"Dia Mundial do Tradutor" => "#30-09",
"Dia da Secretria" => "#30-09",
"So Jernimo" => "#30-09",
"Dia Nacional do Vereador" => "#01-10",
"Dia Pan-Americano do Vendedor" => "#01-10",
"Dia do Representante Comercial" => "#01-10",
"Dia da Esquadra" => "#01-10",
"Dia do Anjo da Guarda" => "#02-10",
"Dia das Abelhas" => "#03-10",
"Dia Mundial do Dentista" => "#03-10",
"Dia do Latino-Americano" => "#03-10",
"Dia Internacioanl dos Animais" => "#03-10",
"Dia da Ave" => "#04-10",
"Dia da Natureza" => "#04-10",
"Dia do Barman" => "#04-10",
"Dia do Co" => "#04-10",
"Dia do Poeta" => "#04-10",
"Dia do Radio Interamericano" => "#04-10",
"So Francisco de Assis" => "#04-10",
"Dia Internacional da Ecologia" => "#04-10",
"Dia Mundial dos Animais" => "#05-10",
"Dia das Aves" => "#05-10",
"Promulgao da Nova Constituio do Brasil (1988)" => "#05-10",
"So Benedito" => "#05-10",
"Dia do Compositor" => "#07-10",
"N. Sra. do Rosrio" => "#07-10",
"Dia do Nordestino" => "#08-10",
"N. Sra. de Nazar" => "#10-10",
"Dia do Deficiente Fsico" => "#11-10",
"Dia do Teatro Municipal" => "#11-10",
"Descobrimento da Amrica (1492)" => "#12-10",
"Dia da Aclamao de D. Pedro I" => "#12-10",
"Dia da Cirurgia Infantil" => "#12-10",
"Dia do Mar" => "#12-10",
"Inaugurao do Cristo Redentor Rio de Janeiro-RJ" => "#12-10",
"Dia da Terapia Ocupacional" => "#13-10",
"Dia do Fisioterapeuta" => "#13-10",
"Dia Nacional da Pecuria" => "#14-10",
"Dia da Normalista" => "#15-10",
"Dia do Professor" => "#15-10",
"Dia Mundial da Alimentao" => "#16-10",
"Santa Edwirges (Endividados)" => "#16-10",
"Dia da Industria Aeronutica Brasileira" => "#17-10",
"Dia do Eletricista" => "#17-10",
"Dia do Estivador" => "#18-10",
"Dia do Mdico" => "#18-10",
"Dia do Pintor (de Parede, de Carro)" => "#18-10",
"So Lucas (Mdicos)" => "#18-10",
"Dia do Contato" => "#21-10",
"Dia do MacKenzie" => "#21-10",
"Comemorao do 1 Vo de Santos Dumont pilotando o 14 Bis (1906)" => "#23-10",
"Dia da Aviao e do Aviador" => "#23-10",
"Dia Mundial do Desenvolvimento" => "#24-10",
"Dia da Democracia" => "#25-10",
"Dia das Misses" => "#25-10",
"Dia do Dentista Brasileiro" => "#25-10",
"Dia do Sapateiro" => "#25-10",
"Dia da Universidade Catlica" => "#28-10",
"Dia do Funcionrio Pblico" => "#28-10",
"So Judas Tadeu (Causas Impossveis)" => "#28-10",
"Dia da Decorao" => "#30-10",
"Dia do Balconista" => "#30-10",
"Dia do Comercirio" => "#30-10",
"So Geraldo" => "#30-10",
"Dia Mundial da Poupana" => "#31-10",
"Todos os Santos" => "#01-11",
"So Lzaro" => "#02-11",
"Dia do Cabeleireiro" => "#03-11",
"Dia do Inventor" => "#04-11",
"Dia Nacional da Cultura" => "#05-11",
"Dia da Cincia" => "#05-11",
"Dia do Cinema Brasileiro" => "#05-11",
"Dia do Radio-Amador" => "#05-11",
"Dia do Tcnico em Eletrnica" => "#05-11",
"Ao Catlica" => "#07-11",
"Dia Nacional dos Tribunais de Conta" => "#07-11",
"Dia Mundial do Urbanismo" => "#08-11",
"Dia do Municpio" => "#09-11",
"Dia do Trigo" => "#10-11",
"Dia do Soldado Desconhecido" => "#11-11",
"Dia do Supermercado" => "#12-11",
"Aniversrio do Ministrio da Educao" => "#14-11",
"Dia Nacional da Alfabetizao" => "#14-11",
"Dia do Esporte Amador" => "#15-11",
"Santos Roque Gonzalez e Companheiros" => "#19-11",
"Dia Nacional da Conscincia Negra" => "#20-11",
"Dia do Datiloscopista Brasileiro" => "#20-11",
"Dia da Homeopatia" => "#21-11",
"Dia das Saudaes" => "#21-11",
"Dia da Solidariedade com o Povo Libans" => "#22-11",
"Santa Ceclia" => "#22-11",
"Dia Nacional do Doador de Sangue" => "#25-11",
"Dia da Baiana do Acaraj" => "#25-11",
"Santa Catarina" => "#26-11",
"N. Sra. das Graas" => "#27-11",
"Dia Mundial de Ao de Graas" => "#28-11",
"Santo Andr (Apstolo)" => "#30-11",
"Dia Mundial de Preveno contra AIDS" => "#01-12",
"Dia do Imigrante" => "#01-12",
"Dia do Numismata" => "#01-12",
"Dia Nacional da Astronomia" => "#02-12",
"Dia Nacional das Relaes Pblicas" => "#02-12",
"Dia Nacional do Samba" => "#02-12",
"So Francisco Xavier" => "#03-12",
"Dia Mundial da Propaganda" => "#04-12",
"Dia Nacional do Ministrio Pblico" => "#04-12",
"Dia do Orientador Educacional" => "#04-12",
"Dia do Podlogo" => "#04-12",
"Dia do Trabalhador em Minas de Carvo" => "#04-12",
"Santa Brbara" => "#04-12",
"Dia da Fundao da Associao Comercial de So Paulo (1894)" => "#07-12",
"UNESCO Declara Braslia Patrimnio Cultural da Humanidade (1987)" => "#07-12",
"Aniversrio da Avenida Paulista So Paulo-SP (1891)" => "#08-12",
"Dia Nacional da Famlia" => "#08-12",
"Imaculada Conceio" => "#08-12",
"Dia da Justia" => "#08-12",
"Dia do Cronista Esportivo" => "#08-12",
"Dia da Criana Defeituosa" => "#09-12",
"Dia do Alcolatra Recuperado" => "#09-12",
"Dia do Fonoudiologo" => "#09-12",
"Declarao Universal dos Direitos Humanos" => "#10-12",
"Dia do Palhao" => "#10-12",
"Dia do Arquiteto" => "#11-12",
"Dia do Engenheiro" => "#11-12",
"Dia do Tango" => "#11-12",
"N. Sra. de Guadalupe" => "#12-12",
"Dia do Avaliador" => "#13-12",
"Dia do Cego" => "#13-12",
"Dia do Marinheiro" => "#13-12",
"Dia do tico" => "#13-12",
"Santa Luzia" => "#13-12",
"Dia do Reservista" => "#16-12",
"Dia do Mecnico" => "#20-12",
"Dia do Vizinho" => "#23-12",
"Dia do rfo" => "#24-12",
"Dia da Lembrana" => "#26-12",
"Santo Estevo" => "#26-12",
"Festa da Sagrada Famlia" => "#27-12",
"Dia do Salva-Vidas" => "#28-12",
"So Silvestre (Reveillon)" => "#31-12"
};
$Profiles->{'BR-AC'} = # Acre
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-AL'} = # Alagoas
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-AP'} = # Amap
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-AM'} = # Amazonas
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-BA'} = # Bahia
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-CE'} = # Cear
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-DF'} = # Distrito Federal
{
%{$Profiles->{'BR'}},
"Fundao da Cidade de Braslia-DF (1960)" => "#21-04" # feriado em Braslia ?
};
$Profiles->{'BR-ES'} = # Esprito Santo
{
%{$Profiles->{'BR'}},
"N. Sra. da Penha" => "#24-04", # feriado em Vitria e Vila Velha
"Dia da Cidade de Vitria" => "#08-09", # feriado s em Vitria
"Dia da Colonizao do Solo Espritosantense" => "#23-05" # feriado s em Vila Velha
};
$Profiles->{'BR-GO'} = # Gois
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-MA'} = # Maranho
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-MT'} = # Mato Grosso
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-MS'} = # Mato Grosso do Sul
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-MG'} = # Minas Gerais
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-PR'} = # Paran
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-PB'} = # Paraba
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-PA'} = # Par
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-PE'} = # Pernambuco
{
%{$Profiles->{'BR'}},
"Fundao da Cidade de Recife (1537)" => "#12-03" # feriado em Recife ?
};
$Profiles->{'BR-PI'} = # Piau
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-RN'} = # Rio Grande do Norte
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-RS'} = # Rio Grande do Sul
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-RJ'} = # Rio de Janeiro
{
%{$Profiles->{'BR'}},
"So Sebastio (Padroeiro da Cidade do Rio de Janeiro)" => "#20-01", # feriado no Rio de Janeiro
"Fundao da Cidade do Rio de Janeiro (1565)" => "#01-03" # feriado no Rio de Janeiro
};
$Profiles->{'BR-RO'} = # Rondnia
{
%{$Profiles->{'BR'}},
"Dia da Criao do Estado de Rondnia-RO" => "#04-01", # feriado ?
"Dia de Rondon" => "#05-05", # feriado ?
"Dia do Rondonista" => "#11-07" # feriado ?
};
$Profiles->{'BR-RR'} = # Roraima
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-SC'} = # Santa Catarina
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-SE'} = # Sergipe
{
%{$Profiles->{'BR'}}
};
$Profiles->{'BR-SP'} = # So Paulo
{
%{$Profiles->{'BR'}},
"Fundao da Cidade de So Paulo (1554)" => "#25-01", # feriado em So Paulo
};
$Profiles->{'BR-TO'} = # Tocantins
{
%{$Profiles->{'BR'}}
};
# Thanks to:
# Daniel Crown <daniel@mailgratis.com.ar>
$Profiles->{'AR'} = # Argentina
{
"Ao Nuevo" => "01-01",
"Da de los Reyes (Epifana)" => "06-01",
"Da de Malvinas" => "02-04",
"Jueves Santo" => "-3",
"Viernes Santo" => "-2",
"Domingo de Pscuas" => "+0",
"Lunes de Pscuas" => "+1",
"Da del Trabajo" => "01-05",
"Revolucin de Mayo" => "25-05",
"Soberana de las Islas Malvinas" => "10-06",
"Da del Padre" => "3/Sun/Jun",
"Da de la Bandera" => "20-06",
"Da del Nio" => "03-07",
"Da de la Independencia" => "09-07",
"Da de Eva Peron" => "26-07",
"La Asuncin" => "15-08",
"Da de San Martin" => "17-08",
"Muerte de San Martin" => "18-08",
"Da de la Raza" => "12-10",
"Da de la Madre" => "3/Sun/Oct",
"Da de Todos los Santos" => "01-11",
"Inmaculada Concepcin" => "08-12",
"Navidad" => "25-12"
};
# Thanks to:
# Jabu Virginia Duma, Giant's Castle Lodge,
# Drakensberg, 3310 Estcourt, KwaZulu-Natal
# Dirk Swart <dirk@clickshare.com> <dirk@tristar.co.za>
# http://www.gov.za/sa_overview/holidays.htm
# http://www.gov.za/events/previous/y2kholidays.htm
# Hilda de Jager <Hildadj@gcis.pwv.gov.za>
# Hennie Meyer <Henniem@dbs1.pwv.gov.za>
$Profiles->{'ZA'} = # South Africa
{
"Special Y2K Holiday #1" => \&ZA_Y2K_1,
"Special Y2K Holiday #2" => \&ZA_Y2K_2,
"Special Y2K Holiday #3" => \&ZA_Y2K_3,
"New Year's Day" => \&ZA_New_Year,
"Human Rights Day" => \&ZA_Human_Rights,
"Good Friday" => "-2",
"Easter Sunday" => "+0",
"Family Day" => "+1",
"Freedom Day" => \&ZA_Freedom,
"Workers Day" => \&ZA_Workers,
"Youth Day (Soweto Day)" => \&ZA_Youth,
"National Women's Day" => \&ZA_Women,
"Heritage Day" => \&ZA_Heritage,
"Day of Reconciliation" => \&ZA_Reconciliation,
"Christmas" => \&ZA_Christmas,
"Day of Goodwill" => \&ZA_Goodwill
};
sub ZA_Y2K_1
{
my($year,$label) = @_;
if ($year == 1999) { return(1999,12,31); }
else { return(); }
}
sub ZA_Y2K_2
{
my($year,$label) = @_;
if ($year == 2000) { return(2000,1,2); }
else { return(); }
}
sub ZA_Y2K_3
{
my($year,$label) = @_;
if ($year == 2000) { return(2000,1,3); }
else { return(); }
}
sub ZA_New_Year
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,1,1) );
}
sub ZA_Human_Rights
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,3,21) );
}
sub ZA_Freedom
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,4,27) );
}
sub ZA_Workers
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,5,1) );
}
sub ZA_Youth
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,6,16) );
}
sub ZA_Women
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,8,9) );
}
sub ZA_Heritage
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,9,24) );
}
sub ZA_Reconciliation
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,12,16) );
}
sub ZA_Christmas
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,12,25) );
}
sub ZA_Goodwill
{
my($year,$label) = @_;
return( &Sunday_to_Monday($year,12,26) );
}
$Profiles->{'ZA-WC'} = # Western Cape
{
%{$Profiles->{'ZA'}}
};
$Profiles->{'ZA-EC'} = # Eastern Cape
{
%{$Profiles->{'ZA'}}
};
$Profiles->{'ZA-NC'} = # Northern Cape
{
%{$Profiles->{'ZA'}}
};
$Profiles->{'ZA-FS'} = # Free State
{
%{$Profiles->{'ZA'}}
};
$Profiles->{'ZA-NW'} = # North West
{
%{$Profiles->{'ZA'}}
};
$Profiles->{'ZA-GA'} = # Gauteng
{
%{$Profiles->{'ZA'}}
};
$Profiles->{'ZA-NP'} = # Northern Province
{
%{$Profiles->{'ZA'}}
};
$Profiles->{'ZA-MP'} = # Mpumalanga
{
%{$Profiles->{'ZA'}}
};
$Profiles->{'ZA-KZN'} = # KwaZulu-Natal
{
%{$Profiles->{'ZA'}}
};
$Profiles->{'sdm'} = # software design & management AG
{
"Heiligabend" => ":24.12.",
"Sylvester" => ":31.12."
};
$Profiles->{'sdm-MUC'} = { %{$Profiles->{'DE-BY'}}, %{$Profiles->{'sdm'}} };
$Profiles->{'sdm-STG'} = { %{$Profiles->{'DE-BW'}}, %{$Profiles->{'sdm'}} };
$Profiles->{'sdm-FFM'} = { %{$Profiles->{'DE-HE'}}, %{$Profiles->{'sdm'}} };
$Profiles->{'sdm-BON'} = { %{$Profiles->{'DE-NW'}}, %{$Profiles->{'sdm'}} };
$Profiles->{'sdm-CGN'} = { %{$Profiles->{'DE-NW'}}, %{$Profiles->{'sdm'}} };
$Profiles->{'sdm-RAT'} = { %{$Profiles->{'DE-NW'}}, %{$Profiles->{'sdm'}} };
$Profiles->{'sdm-HAN'} = { %{$Profiles->{'DE-NI'}}, %{$Profiles->{'sdm'}} };
$Profiles->{'sdm-HH'} = { %{$Profiles->{'DE-HH'}}, %{$Profiles->{'sdm'}} };
$Profiles->{'sdm-BLN'} = { %{$Profiles->{'DE-BE'}}, %{$Profiles->{'sdm'}} };
$Profiles->{'sdm-DET'} = { %{$Profiles->{'US-MI'}}, %{$Profiles->{'sdm'}} };
$Profiles->{'sdm-ZRH'} = { %{$Profiles->{'CH-DE'}}, %{$Profiles->{'sdm'}} };
1;
__END__
|