line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DateTime::Event::Jewish::Sedrah; |
2
|
6
|
|
|
6
|
|
25
|
use strict; |
|
6
|
|
|
|
|
7
|
|
|
6
|
|
|
|
|
189
|
|
3
|
6
|
|
|
6
|
|
21
|
use warnings; |
|
6
|
|
|
|
|
8
|
|
|
6
|
|
|
|
|
138
|
|
4
|
6
|
|
|
6
|
|
22
|
use base qw(Exporter); |
|
6
|
|
|
|
|
7
|
|
|
6
|
|
|
|
|
383
|
|
5
|
6
|
|
|
6
|
|
27
|
use vars qw(@EXPORT_OK); |
|
6
|
|
|
|
|
7
|
|
|
6
|
|
|
|
|
902
|
|
6
|
|
|
|
|
|
|
@EXPORT_OK = qw(@sedrah); |
7
|
|
|
|
|
|
|
our $VERSION = '0.01'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
# (C) Raphael Mankin 2009 |
10
|
|
|
|
|
|
|
our @sedrah= ( |
11
|
|
|
|
|
|
|
"", # 0 |
12
|
|
|
|
|
|
|
"Bereishit", |
13
|
|
|
|
|
|
|
"Noach", |
14
|
|
|
|
|
|
|
"Lech Lecha", |
15
|
|
|
|
|
|
|
"Vayeira", |
16
|
|
|
|
|
|
|
"Chayei Sarah", |
17
|
|
|
|
|
|
|
"Toldot", |
18
|
|
|
|
|
|
|
"Vayeitzei", |
19
|
|
|
|
|
|
|
"Vayishlach", |
20
|
|
|
|
|
|
|
"Vayeishev", |
21
|
|
|
|
|
|
|
"Mikeitz", #10 |
22
|
|
|
|
|
|
|
"Vayigash", |
23
|
|
|
|
|
|
|
"Vayechi", |
24
|
|
|
|
|
|
|
"Shemot", |
25
|
|
|
|
|
|
|
"Va'eira", |
26
|
|
|
|
|
|
|
"Bo", |
27
|
|
|
|
|
|
|
"Beshalach", |
28
|
|
|
|
|
|
|
"Yitro", |
29
|
|
|
|
|
|
|
"Mishpatim", |
30
|
|
|
|
|
|
|
"Terumah", |
31
|
|
|
|
|
|
|
"Tetzaveh", # 20 |
32
|
|
|
|
|
|
|
"Ki Tisa", |
33
|
|
|
|
|
|
|
"Vayakhel", # 22 |
34
|
|
|
|
|
|
|
"Pekudei", |
35
|
|
|
|
|
|
|
"Vayikra", |
36
|
|
|
|
|
|
|
"Tzav", |
37
|
|
|
|
|
|
|
"Shemini", |
38
|
|
|
|
|
|
|
"Tazria", # 27 |
39
|
|
|
|
|
|
|
"Metzora", |
40
|
|
|
|
|
|
|
"Acharei Mot", # 29 |
41
|
|
|
|
|
|
|
"Kedoshim", # 30 |
42
|
|
|
|
|
|
|
"Emor", |
43
|
|
|
|
|
|
|
"Behar", # 32 |
44
|
|
|
|
|
|
|
"Bechukotai", |
45
|
|
|
|
|
|
|
"Bemidbar", |
46
|
|
|
|
|
|
|
"Nasso", |
47
|
|
|
|
|
|
|
"Beha'alotcha", |
48
|
|
|
|
|
|
|
"Shelach", |
49
|
|
|
|
|
|
|
"Korach", |
50
|
|
|
|
|
|
|
"Chukat", # 39 |
51
|
|
|
|
|
|
|
"Balak", # 40 |
52
|
|
|
|
|
|
|
"Pinchas", |
53
|
|
|
|
|
|
|
"Mattot", # 42 |
54
|
|
|
|
|
|
|
"Masei", |
55
|
|
|
|
|
|
|
"Devarim", |
56
|
|
|
|
|
|
|
"Va'etchanan", |
57
|
|
|
|
|
|
|
"Eikev", |
58
|
|
|
|
|
|
|
"Re'eh", |
59
|
|
|
|
|
|
|
"Shoftim", |
60
|
|
|
|
|
|
|
"Ki Teitzei", |
61
|
|
|
|
|
|
|
"Ki Tavo", # 50 |
62
|
|
|
|
|
|
|
"Nitzavim", # 51 |
63
|
|
|
|
|
|
|
"Vayeilech", |
64
|
|
|
|
|
|
|
"Haazinu", |
65
|
|
|
|
|
|
|
"Vezot HaBerachah", |
66
|
|
|
|
|
|
|
"Undefined 55", |
67
|
|
|
|
|
|
|
"Undefined 56", |
68
|
|
|
|
|
|
|
); |
69
|
|
|
|
|
|
|
1; |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head1 NAME |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
Sedrah.pm - List of sidrot for the year |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head1 SYNOPSIS |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
use DateTime::Event::Jewish::Sedrah qw(@sedrah); |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head1 DESCRIPTION |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
This module contains just a list of sidrot for the year. It is |
82
|
|
|
|
|
|
|
factored ot so that it can easily be used in other modules. |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head1 AUTHOR |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
Raphael Mankin, C<< >> |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
=head1 BUGS |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
Please report any bugs or feature requests to C, or through |
91
|
|
|
|
|
|
|
the web interface at L. I will be notified, and then you'll |
92
|
|
|
|
|
|
|
automatically be notified of progress on your bug as I make changes. |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=head1 SUPPORT |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
perldoc DateTime::Event::Jewish |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
You can also look for information at: |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
=over 4 |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
L |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
=item * AnnoCPAN: Annotated CPAN documentation |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
L |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=item * CPAN Ratings |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
L |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
=item * Search CPAN |
121
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
L |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
=back |
125
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
=head1 ACKNOWLEDGEMENTS |
128
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
Copyright 2010 Raphael Mankin. |
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
135
|
|
|
|
|
|
|
under the terms of either: the GNU General Public License as published |
136
|
|
|
|
|
|
|
by the Free Software Foundation; or the Artistic License. |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
See http://dev.perl.org/licenses/ for more information. |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
=cut |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
1; # End of DateTime::Event::Sedrah |