line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
############################################################################# |
2
|
|
|
|
|
|
|
# Pod/Checker.pm -- check pod documents for syntax errors |
3
|
|
|
|
|
|
|
# |
4
|
|
|
|
|
|
|
# Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved. |
5
|
|
|
|
|
|
|
# This is free software; you can redistribute it and/or modify it under the |
6
|
|
|
|
|
|
|
# same terms as Perl itself. |
7
|
|
|
|
|
|
|
############################################################################# |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Pod::Checker; |
10
|
4
|
|
|
4
|
|
42664
|
use strict; |
|
4
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
100
|
|
11
|
4
|
|
|
4
|
|
12
|
use warnings; |
|
4
|
|
|
|
|
3
|
|
|
4
|
|
|
|
|
375
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our $VERSION = '1.73'; ## Current version of this package |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Pod::Checker - check pod documents for syntax errors |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 SYNOPSIS |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
use Pod::Checker; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
$syntax_okay = podchecker($filepath, $outputpath, %options); |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
my $checker = Pod::Checker->new(%options); |
26
|
|
|
|
|
|
|
$checker->parse_from_file($filepath, \*STDERR); |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 OPTIONS/ARGUMENTS |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
C<$filepath> is the input POD to read and C<$outputpath> is |
31
|
|
|
|
|
|
|
where to write POD syntax error messages. Either argument may be a scalar |
32
|
|
|
|
|
|
|
indicating a file-path, or else a reference to an open filehandle. |
33
|
|
|
|
|
|
|
If unspecified, the input-file it defaults to C<\*STDIN>, and |
34
|
|
|
|
|
|
|
the output-file defaults to C<\*STDERR>. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 podchecker() |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
This function can take a hash of options: |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=over 4 |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=item B<-warnings> =E I |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Turn warnings on/off. I is usually 1 for on, but higher values |
45
|
|
|
|
|
|
|
trigger additional warnings. See L<"Warnings">. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=item B<-quiet> =E I |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
If C is true, do not print any errors/warnings. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=back |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head1 DESCRIPTION |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
B will perform syntax checking of Perl5 POD format documentation. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
Curious/ambitious users are welcome to propose additional features they wish |
58
|
|
|
|
|
|
|
to see in B and B and verify that the checks are |
59
|
|
|
|
|
|
|
consistent with L. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
The following checks are currently performed: |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=over 4 |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=item * |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
Unknown '=xxxx' commands, unknown 'XE...E' interior-sequences, |
68
|
|
|
|
|
|
|
and unterminated interior sequences. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=item * |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Check for proper balancing of C<=begin> and C<=end>. The contents of such |
73
|
|
|
|
|
|
|
a block are generally ignored, i.e. no syntax checks are performed. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=item * |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
Check for proper nesting and balancing of C<=over>, C<=item> and C<=back>. |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=item * |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
Check for same nested interior-sequences (e.g. |
82
|
|
|
|
|
|
|
C...LE...E...E>). |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=item * |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
Check for malformed or non-existing entities C...E>. |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
=item * |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
Check for correct syntax of hyperlinks C...E>. See L |
91
|
|
|
|
|
|
|
for details. |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=item * |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
Check for unresolved document-internal links. This check may also reveal |
96
|
|
|
|
|
|
|
misspelled links that seem to be internal links but should be links |
97
|
|
|
|
|
|
|
to something else. |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
=back |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
=head1 DIAGNOSTICS |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
=head2 Errors |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
=over 4 |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
=item * empty =headn |
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
A heading (C<=head1> or C<=head2>) without any text? That ain't no |
110
|
|
|
|
|
|
|
heading! |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
=item * =over on line I without closing =back |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
=item * You forgot a '=back' before '=headI' |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=item * =over is the last thing in the document?! |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
The C<=over> command does not have a corresponding C<=back> before the |
119
|
|
|
|
|
|
|
next heading (C<=head1> or C<=head2>) or the end of the file. |
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
=item * '=item' outside of any '=over' |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
=item * =back without =over |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
An C<=item> or C<=back> command has been found outside a |
126
|
|
|
|
|
|
|
C<=over>/C<=back> block. |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
=item * Can't have a 0 in =over I |
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
You need to indent a strictly positive number of spaces, not 0. |
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
=item * =over should be: '=over' or '=over positive_number' |
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
Either have an argumentless =over, or have its argument a strictly positive number. |
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
=item * =begin I without matching =end I |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
A C<=begin> command was found that has no matching =end command. |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
=item * =begin without a target? |
141
|
|
|
|
|
|
|
|
142
|
|
|
|
|
|
|
A C<=begin> command was found that is not followed by the formatter |
143
|
|
|
|
|
|
|
specification. |
144
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
=item * =end I without matching =begin. |
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
A standalone C<=end> command was found. |
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
=item * '=end' without a target? |
150
|
|
|
|
|
|
|
|
151
|
|
|
|
|
|
|
'=end' directives need to have a target, just like =begin directives. |
152
|
|
|
|
|
|
|
|
153
|
|
|
|
|
|
|
=item * '=end I' is invalid. |
154
|
|
|
|
|
|
|
|
155
|
|
|
|
|
|
|
I needs to be one word |
156
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
=item * =end I doesn't match =begin I |
158
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
I needs to match =begin's I. |
160
|
|
|
|
|
|
|
|
161
|
|
|
|
|
|
|
=item * =for without a target? |
162
|
|
|
|
|
|
|
|
163
|
|
|
|
|
|
|
There is no specification of the formatter after the C<=for> command. |
164
|
|
|
|
|
|
|
|
165
|
|
|
|
|
|
|
=item * unresolved internal link I |
166
|
|
|
|
|
|
|
|
167
|
|
|
|
|
|
|
The given link to I does not have a matching node in the current |
168
|
|
|
|
|
|
|
POD. This also happened when a single word node name is not enclosed in |
169
|
|
|
|
|
|
|
C<"">. |
170
|
|
|
|
|
|
|
|
171
|
|
|
|
|
|
|
=item * Unknown directive: I |
172
|
|
|
|
|
|
|
|
173
|
|
|
|
|
|
|
An invalid POD command has been found. Valid are C<=head1>, C<=head2>, |
174
|
|
|
|
|
|
|
C<=head3>, C<=head4>, C<=over>, C<=item>, C<=back>, C<=begin>, C<=end>, |
175
|
|
|
|
|
|
|
C<=for>, C<=pod>, C<=cut> |
176
|
|
|
|
|
|
|
|
177
|
|
|
|
|
|
|
=item * Deleting unknown formatting code I |
178
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
An invalid markup command has been encountered. Valid are: |
180
|
|
|
|
|
|
|
CE>, CE>, CE>, CE>, |
181
|
|
|
|
|
|
|
CE>, CE>, CE>, CE>, |
182
|
|
|
|
|
|
|
CE> |
183
|
|
|
|
|
|
|
|
184
|
|
|
|
|
|
|
=item * Unterminated IEE sequence |
185
|
|
|
|
|
|
|
|
186
|
|
|
|
|
|
|
An unclosed formatting code |
187
|
|
|
|
|
|
|
|
188
|
|
|
|
|
|
|
=item * An EE...E surrounding strange content |
189
|
|
|
|
|
|
|
|
190
|
|
|
|
|
|
|
The I found cannot be interpreted as a character entity. |
191
|
|
|
|
|
|
|
|
192
|
|
|
|
|
|
|
=item * An empty EEE |
193
|
|
|
|
|
|
|
|
194
|
|
|
|
|
|
|
=item * An empty C<< LEE >> |
195
|
|
|
|
|
|
|
|
196
|
|
|
|
|
|
|
=item * An empty XEE |
197
|
|
|
|
|
|
|
|
198
|
|
|
|
|
|
|
There needs to be content inside E, L, and X formatting codes. |
199
|
|
|
|
|
|
|
|
200
|
|
|
|
|
|
|
=item * A non-empty ZEE |
201
|
|
|
|
|
|
|
|
202
|
|
|
|
|
|
|
The CE> sequence is supposed to be empty. |
203
|
|
|
|
|
|
|
|
204
|
|
|
|
|
|
|
=item * Spurious text after =pod / =cut |
205
|
|
|
|
|
|
|
|
206
|
|
|
|
|
|
|
The commands C<=pod> and C<=cut> do not take any arguments. |
207
|
|
|
|
|
|
|
|
208
|
|
|
|
|
|
|
=item * =back doesn't take any parameters, but you said =back I |
209
|
|
|
|
|
|
|
|
210
|
|
|
|
|
|
|
The C<=back> command does not take any arguments. |
211
|
|
|
|
|
|
|
|
212
|
|
|
|
|
|
|
=item * =pod directives shouldn't be over one line long! Ignoring all I lines of content |
213
|
|
|
|
|
|
|
|
214
|
|
|
|
|
|
|
Self explanatory |
215
|
|
|
|
|
|
|
|
216
|
|
|
|
|
|
|
=item * =cut found outside a pod block. |
217
|
|
|
|
|
|
|
|
218
|
|
|
|
|
|
|
A '=cut' directive found in the middle of non-POD |
219
|
|
|
|
|
|
|
|
220
|
|
|
|
|
|
|
=item * Invalid =encoding syntax: I |
221
|
|
|
|
|
|
|
|
222
|
|
|
|
|
|
|
Syntax error in =encoding directive |
223
|
|
|
|
|
|
|
|
224
|
|
|
|
|
|
|
=back |
225
|
|
|
|
|
|
|
|
226
|
|
|
|
|
|
|
=head2 Warnings |
227
|
|
|
|
|
|
|
|
228
|
|
|
|
|
|
|
These may not necessarily cause trouble, but indicate mediocre style. |
229
|
|
|
|
|
|
|
|
230
|
|
|
|
|
|
|
=over 4 |
231
|
|
|
|
|
|
|
|
232
|
|
|
|
|
|
|
=item * nested commands IE...IE...E...E |
233
|
|
|
|
|
|
|
|
234
|
|
|
|
|
|
|
Two nested identical markup commands have been found. Generally this |
235
|
|
|
|
|
|
|
does not make sense. |
236
|
|
|
|
|
|
|
|
237
|
|
|
|
|
|
|
=item * multiple occurrences (I) of link target I |
238
|
|
|
|
|
|
|
|
239
|
|
|
|
|
|
|
The POD file has some C<=item> and/or C<=head> commands that have |
240
|
|
|
|
|
|
|
the same text. Potential hyperlinks to such a text cannot be unique then. |
241
|
|
|
|
|
|
|
This warning is printed only with warning level greater than one. |
242
|
|
|
|
|
|
|
|
243
|
|
|
|
|
|
|
=item * line containing nothing but whitespace in paragraph |
244
|
|
|
|
|
|
|
|
245
|
|
|
|
|
|
|
There is some whitespace on a seemingly empty line. POD is very sensitive |
246
|
|
|
|
|
|
|
to such things, so this is flagged. B users switch on the B |
247
|
|
|
|
|
|
|
option to avoid this problem. |
248
|
|
|
|
|
|
|
|
249
|
|
|
|
|
|
|
=item * =item has no contents |
250
|
|
|
|
|
|
|
|
251
|
|
|
|
|
|
|
There is a list C<=item> that has no text contents. You probably want to delete |
252
|
|
|
|
|
|
|
empty items. |
253
|
|
|
|
|
|
|
|
254
|
|
|
|
|
|
|
=item * You can't have =items (as at line I) unless the first thing after the =over is an =item |
255
|
|
|
|
|
|
|
|
256
|
|
|
|
|
|
|
A list introduced by C<=over> starts with a text or verbatim paragraph, |
257
|
|
|
|
|
|
|
but continues with C<=item>s. Move the non-item paragraph out of the |
258
|
|
|
|
|
|
|
C<=over>/C<=back> block. |
259
|
|
|
|
|
|
|
|
260
|
|
|
|
|
|
|
=item * Expected '=item I' |
261
|
|
|
|
|
|
|
|
262
|
|
|
|
|
|
|
=item * Expected '=item *' |
263
|
|
|
|
|
|
|
|
264
|
|
|
|
|
|
|
=item * Possible =item type mismatch: 'I' found leading a supposed definition =item |
265
|
|
|
|
|
|
|
|
266
|
|
|
|
|
|
|
A list started with e.g. a bullet-like C<=item> and continued with a |
267
|
|
|
|
|
|
|
numbered one. This is obviously inconsistent. For most translators the |
268
|
|
|
|
|
|
|
type of the I C<=item> determines the type of the list. |
269
|
|
|
|
|
|
|
|
270
|
|
|
|
|
|
|
=item * You have '=item x' instead of the expected '=item I' |
271
|
|
|
|
|
|
|
|
272
|
|
|
|
|
|
|
Erroneous numbering of =item numbers; they need to ascend consecutively. |
273
|
|
|
|
|
|
|
|
274
|
|
|
|
|
|
|
=item * Unknown E content in EEIE |
275
|
|
|
|
|
|
|
|
276
|
|
|
|
|
|
|
A character entity was found that does not belong to the standard |
277
|
|
|
|
|
|
|
ISO set or the POD specials C and C. I
|
278
|
|
|
|
|
|
|
only appears if a character entity was found that does not have a Unicode |
279
|
|
|
|
|
|
|
character. This should be fixed to adhere to the original warning.> |
280
|
|
|
|
|
|
|
|
281
|
|
|
|
|
|
|
=item * empty =over/=back block |
282
|
|
|
|
|
|
|
|
283
|
|
|
|
|
|
|
The list opened with C<=over> does not contain anything. |
284
|
|
|
|
|
|
|
|
285
|
|
|
|
|
|
|
=item * empty section in previous paragraph |
286
|
|
|
|
|
|
|
|
287
|
|
|
|
|
|
|
The previous section (introduced by a C<=head> command) does not contain |
288
|
|
|
|
|
|
|
any valid content. This usually indicates that something is missing. Note: A |
289
|
|
|
|
|
|
|
C<=head1> followed immediately by C<=head2> does not trigger this warning. |
290
|
|
|
|
|
|
|
|
291
|
|
|
|
|
|
|
=item * Verbatim paragraph in NAME section |
292
|
|
|
|
|
|
|
|
293
|
|
|
|
|
|
|
The NAME section (C<=head1 NAME>) should consist of a single paragraph |
294
|
|
|
|
|
|
|
with the script/module name, followed by a dash `-' and a very short |
295
|
|
|
|
|
|
|
description of what the thing is good for. |
296
|
|
|
|
|
|
|
|
297
|
|
|
|
|
|
|
=item * =headI without preceding higher level |
298
|
|
|
|
|
|
|
|
299
|
|
|
|
|
|
|
For example if there is a C<=head2> in the POD file prior to a |
300
|
|
|
|
|
|
|
C<=head1>. |
301
|
|
|
|
|
|
|
|
302
|
|
|
|
|
|
|
=back |
303
|
|
|
|
|
|
|
|
304
|
|
|
|
|
|
|
=head2 Hyperlinks |
305
|
|
|
|
|
|
|
|
306
|
|
|
|
|
|
|
There are some warnings with respect to malformed hyperlinks: |
307
|
|
|
|
|
|
|
|
308
|
|
|
|
|
|
|
=over 4 |
309
|
|
|
|
|
|
|
|
310
|
|
|
|
|
|
|
=item * ignoring leading/trailing whitespace in link |
311
|
|
|
|
|
|
|
|
312
|
|
|
|
|
|
|
There is whitespace at the beginning or the end of the contents of |
313
|
|
|
|
|
|
|
LE...E. |
314
|
|
|
|
|
|
|
|
315
|
|
|
|
|
|
|
=item * alternative text/node '%s' contains non-escaped | or / |
316
|
|
|
|
|
|
|
|
317
|
|
|
|
|
|
|
The characters C<|> and C> are special in the LE...E context. |
318
|
|
|
|
|
|
|
Although the hyperlink parser does its best to determine which "/" is |
319
|
|
|
|
|
|
|
text and which is a delimiter in case of doubt, one ought to escape |
320
|
|
|
|
|
|
|
these literal characters like this: |
321
|
|
|
|
|
|
|
|
322
|
|
|
|
|
|
|
/ E |
323
|
|
|
|
|
|
|
| E |
324
|
|
|
|
|
|
|
|
325
|
|
|
|
|
|
|
=back |
326
|
|
|
|
|
|
|
|
327
|
|
|
|
|
|
|
Note that the line number of the error/warning may refer to the line number of |
328
|
|
|
|
|
|
|
the start of the paragraph in which the error/warning exists, not the line |
329
|
|
|
|
|
|
|
number that the error/warning is on. This bug is present in errors/warnings |
330
|
|
|
|
|
|
|
related to formatting codes. I |
331
|
|
|
|
|
|
|
|
332
|
|
|
|
|
|
|
=head1 RETURN VALUE |
333
|
|
|
|
|
|
|
|
334
|
|
|
|
|
|
|
B returns the number of POD syntax errors found or -1 if |
335
|
|
|
|
|
|
|
there were no POD commands at all found in the file. |
336
|
|
|
|
|
|
|
|
337
|
|
|
|
|
|
|
=head1 EXAMPLES |
338
|
|
|
|
|
|
|
|
339
|
|
|
|
|
|
|
See L |
340
|
|
|
|
|
|
|
|
341
|
|
|
|
|
|
|
=head1 SCRIPTS |
342
|
|
|
|
|
|
|
|
343
|
|
|
|
|
|
|
The B script that comes with this distribution is a lean wrapper |
344
|
|
|
|
|
|
|
around this module. See the online manual with |
345
|
|
|
|
|
|
|
|
346
|
|
|
|
|
|
|
podchecker -help |
347
|
|
|
|
|
|
|
podchecker -man |
348
|
|
|
|
|
|
|
|
349
|
|
|
|
|
|
|
=head1 INTERFACE |
350
|
|
|
|
|
|
|
|
351
|
|
|
|
|
|
|
While checking, this module collects document properties, e.g. the nodes |
352
|
|
|
|
|
|
|
for hyperlinks (C<=headX>, C<=item>) and index entries (CE>). |
353
|
|
|
|
|
|
|
POD translators can use this feature to syntax-check and get the nodes in |
354
|
|
|
|
|
|
|
a first pass before actually starting to convert. This is expensive in terms |
355
|
|
|
|
|
|
|
of execution time, but allows for very robust conversions. |
356
|
|
|
|
|
|
|
|
357
|
|
|
|
|
|
|
Since v1.24 the B module uses only the B |
358
|
|
|
|
|
|
|
method to print errors and warnings. The summary output (e.g. |
359
|
|
|
|
|
|
|
"Pod syntax OK") has been dropped from the module and has been included in |
360
|
|
|
|
|
|
|
B (the script). This allows users of B to |
361
|
|
|
|
|
|
|
control completely the output behavior. Users of B (the script) |
362
|
|
|
|
|
|
|
get the well-known behavior. |
363
|
|
|
|
|
|
|
|
364
|
|
|
|
|
|
|
v1.45 inherits from Pod::Simple as opposed to all previous versions |
365
|
|
|
|
|
|
|
inheriting from Pod::Parser. Do B use Pod::Simple's interface when |
366
|
|
|
|
|
|
|
using Pod::Checker unless it is documented somewhere on this page. I |
367
|
|
|
|
|
|
|
repeat, DO B USE POD::SIMPLE'S INTERFACE. |
368
|
|
|
|
|
|
|
|
369
|
|
|
|
|
|
|
=cut |
370
|
|
|
|
|
|
|
|
371
|
|
|
|
|
|
|
############################################################################# |
372
|
|
|
|
|
|
|
|
373
|
|
|
|
|
|
|
#use diagnostics; |
374
|
4
|
|
|
4
|
|
17
|
use Carp qw(croak); |
|
4
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
181
|
|
375
|
4
|
|
|
4
|
|
13
|
use Exporter 'import'; |
|
4
|
|
|
|
|
5
|
|
|
4
|
|
|
|
|
90
|
|
376
|
4
|
|
|
4
|
|
12
|
use base qw/Pod::Simple::Methody/; |
|
4
|
|
|
|
|
3
|
|
|
4
|
|
|
|
|
1896
|
|
377
|
|
|
|
|
|
|
|
378
|
|
|
|
|
|
|
our @EXPORT = qw(&podchecker); |
379
|
|
|
|
|
|
|
|
380
|
|
|
|
|
|
|
##--------------------------------- |
381
|
|
|
|
|
|
|
## Function definitions begin here |
382
|
|
|
|
|
|
|
##--------------------------------- |
383
|
|
|
|
|
|
|
|
384
|
|
|
|
|
|
|
sub podchecker { |
385
|
3
|
|
|
3
|
1
|
596
|
my ($infile, $outfile, %options) = @_; |
386
|
3
|
|
|
|
|
5
|
local $_; |
387
|
|
|
|
|
|
|
|
388
|
|
|
|
|
|
|
## Set defaults |
389
|
3
|
|
50
|
|
|
12
|
$infile ||= \*STDIN; |
390
|
3
|
|
50
|
|
|
8
|
$outfile ||= \*STDERR; |
391
|
|
|
|
|
|
|
|
392
|
|
|
|
|
|
|
## Now create a pod checker |
393
|
3
|
|
|
|
|
26
|
my $checker = Pod::Checker->new(%options); |
394
|
|
|
|
|
|
|
|
395
|
|
|
|
|
|
|
## Now check the pod document for errors |
396
|
3
|
|
|
|
|
25
|
$checker->parse_from_file($infile, $outfile); |
397
|
|
|
|
|
|
|
|
398
|
|
|
|
|
|
|
## Return the number of errors found |
399
|
3
|
|
|
|
|
82
|
return $checker->num_errors(); |
400
|
|
|
|
|
|
|
} |
401
|
|
|
|
|
|
|
|
402
|
|
|
|
|
|
|
|
403
|
|
|
|
|
|
|
##--------------------------------------------------------------------------- |
404
|
|
|
|
|
|
|
|
405
|
|
|
|
|
|
|
##------------------------------- |
406
|
|
|
|
|
|
|
## Method definitions begin here |
407
|
|
|
|
|
|
|
##------------------------------- |
408
|
|
|
|
|
|
|
|
409
|
|
|
|
|
|
|
################################## |
410
|
|
|
|
|
|
|
|
411
|
|
|
|
|
|
|
=over 4 |
412
|
|
|
|
|
|
|
|
413
|
|
|
|
|
|
|
=item Cnew( %options )> |
414
|
|
|
|
|
|
|
|
415
|
|
|
|
|
|
|
Return a reference to a new Pod::Checker object that inherits from |
416
|
|
|
|
|
|
|
Pod::Simple and is used for calling the required methods later. The |
417
|
|
|
|
|
|
|
following options are recognized: |
418
|
|
|
|
|
|
|
|
419
|
|
|
|
|
|
|
C<-warnings =E num> |
420
|
|
|
|
|
|
|
Print warnings if C is true. The higher the value of C, |
421
|
|
|
|
|
|
|
the more warnings are printed. Currently there are only levels 1 and 2. |
422
|
|
|
|
|
|
|
|
423
|
|
|
|
|
|
|
C<-quiet =E num> |
424
|
|
|
|
|
|
|
If C is true, do not print any errors/warnings. This is useful |
425
|
|
|
|
|
|
|
when Pod::Checker is used to munge POD code into plain text from within |
426
|
|
|
|
|
|
|
POD formatters. |
427
|
|
|
|
|
|
|
|
428
|
|
|
|
|
|
|
=cut |
429
|
|
|
|
|
|
|
|
430
|
|
|
|
|
|
|
sub new { |
431
|
4
|
|
|
4
|
1
|
254
|
my $new = shift->SUPER::new(@_); |
432
|
4
|
|
50
|
|
|
175
|
$new->{'output_fh'} ||= *STDERR{IO}; |
433
|
|
|
|
|
|
|
|
434
|
|
|
|
|
|
|
# Set options |
435
|
4
|
|
|
|
|
9
|
my %opts = @_; |
436
|
|
|
|
|
|
|
$new->{'-warnings'} = defined $opts{'-warnings'} ? |
437
|
4
|
100
|
|
|
|
16
|
$opts{'-warnings'} : 1; # default on |
438
|
4
|
|
100
|
|
|
19
|
$new->{'-quiet'} = $opts{'-quiet'} || 0; # default off |
439
|
|
|
|
|
|
|
|
440
|
|
|
|
|
|
|
# Initialize number of errors/warnings |
441
|
4
|
|
|
|
|
8
|
$new->{'_NUM_ERRORS'} = 0; |
442
|
4
|
|
|
|
|
7
|
$new->{'_NUM_WARNINGS'} = 0; |
443
|
|
|
|
|
|
|
|
444
|
|
|
|
|
|
|
# 'current' also means 'most recent' in the follow comments |
445
|
4
|
|
|
|
|
5
|
$new->{'_thispara'} = ''; # current POD paragraph |
446
|
4
|
|
|
|
|
7
|
$new->{'_line'} = 0; # current line number |
447
|
4
|
|
|
|
|
6
|
$new->{'_head_num'} = 0; # current =head level (set to 0 to make |
448
|
|
|
|
|
|
|
# logic easier down the road) |
449
|
4
|
|
|
|
|
6
|
$new->{'_cmds_since_head'} = 0; # num of POD directives since prev. =headN |
450
|
4
|
|
|
|
|
13
|
$new->{'_nodes'} = []; # stack for =head/=item nodes |
451
|
4
|
|
|
|
|
12
|
$new->{'_fcode_stack'} = []; # stack for nested formatting codes |
452
|
4
|
|
|
|
|
8
|
$new->{'_fcode_pos'} = []; # stack for position in paragraph of fcodes |
453
|
4
|
|
|
|
|
8
|
$new->{'_begin_stack'} = []; # stack for =begins: [line #, target] |
454
|
4
|
|
|
|
|
9
|
$new->{'_links'} = []; # stack for hyperlinks to external entities |
455
|
4
|
|
|
|
|
15
|
$new->{'_internal_links'} = []; # set of linked-to internal sections |
456
|
4
|
|
|
|
|
8
|
$new->{'_index'} = []; # stack for text in X<>s |
457
|
|
|
|
|
|
|
|
458
|
4
|
|
|
|
|
27
|
$new->accept_targets('*'); # check all =begin/=for blocks |
459
|
4
|
|
|
|
|
85
|
$new->cut_handler( \&handle_pod_and_cut ); # warn if text after =cut |
460
|
4
|
|
|
|
|
45
|
$new->pod_handler( \&handle_pod_and_cut ); # warn if text after =pod |
461
|
4
|
|
|
|
|
28
|
$new->whiteline_handler( \&handle_whiteline ); # warn if whiteline |
462
|
4
|
|
|
|
|
29
|
$new->parse_empty_lists(1); # warn if they are empty |
463
|
|
|
|
|
|
|
|
464
|
4
|
|
|
|
|
19
|
return $new; |
465
|
|
|
|
|
|
|
} |
466
|
|
|
|
|
|
|
|
467
|
|
|
|
|
|
|
################################## |
468
|
|
|
|
|
|
|
|
469
|
|
|
|
|
|
|
=item C<$checker-Epoderror( @args )> |
470
|
|
|
|
|
|
|
|
471
|
|
|
|
|
|
|
=item C<$checker-Epoderror( {%opts}, @args )> |
472
|
|
|
|
|
|
|
|
473
|
|
|
|
|
|
|
Internal method for printing errors and warnings. If no options are given, |
474
|
|
|
|
|
|
|
simply prints "@_". The following options are recognized and used to form |
475
|
|
|
|
|
|
|
the output: |
476
|
|
|
|
|
|
|
|
477
|
|
|
|
|
|
|
-msg |
478
|
|
|
|
|
|
|
|
479
|
|
|
|
|
|
|
A message to print prior to C<@args>. |
480
|
|
|
|
|
|
|
|
481
|
|
|
|
|
|
|
-line |
482
|
|
|
|
|
|
|
|
483
|
|
|
|
|
|
|
The line number the error occurred in. |
484
|
|
|
|
|
|
|
|
485
|
|
|
|
|
|
|
-file |
486
|
|
|
|
|
|
|
|
487
|
|
|
|
|
|
|
The file (name) the error occurred in. Defaults to the name of the current |
488
|
|
|
|
|
|
|
file being processed. |
489
|
|
|
|
|
|
|
|
490
|
|
|
|
|
|
|
-severity |
491
|
|
|
|
|
|
|
|
492
|
|
|
|
|
|
|
The error level, should be 'WARNING' or 'ERROR'. |
493
|
|
|
|
|
|
|
|
494
|
|
|
|
|
|
|
=cut |
495
|
|
|
|
|
|
|
|
496
|
|
|
|
|
|
|
# Invoked as $self->poderror( @args ), or $self->poderror( {%opts}, @args ) |
497
|
|
|
|
|
|
|
sub poderror { |
498
|
79
|
|
|
79
|
1
|
62
|
my $self = shift; |
499
|
79
|
50
|
|
|
|
102
|
my %opts = (ref $_[0]) ? %{shift()} : (); |
|
79
|
|
|
|
|
210
|
|
500
|
|
|
|
|
|
|
|
501
|
|
|
|
|
|
|
## Retrieve options |
502
|
79
|
|
50
|
|
|
218
|
chomp( my $msg = ($opts{'-msg'} || '')."@_" ); |
503
|
79
|
50
|
|
|
|
130
|
my $line = (exists $opts{'-line'}) ? " at line $opts{'-line'}" : ''; |
504
|
|
|
|
|
|
|
my $file = ' in file ' . ((exists $opts{'-file'}) |
505
|
79
|
50
|
|
|
|
164
|
? $opts{'-file'} |
|
|
50
|
|
|
|
|
|
506
|
|
|
|
|
|
|
: ((defined $self->source_filename) |
507
|
|
|
|
|
|
|
? $self->source_filename |
508
|
|
|
|
|
|
|
: "???")); |
509
|
79
|
50
|
|
|
|
644
|
unless (exists $opts{'-severity'}) { |
510
|
|
|
|
|
|
|
## See if can find severity in message prefix |
511
|
0
|
0
|
|
|
|
0
|
$opts{'-severity'} = $1 if ( $msg =~ s/^\**\s*([A-Z]{3,}):\s+// ); |
512
|
|
|
|
|
|
|
} |
513
|
79
|
50
|
|
|
|
143
|
my $severity = (exists $opts{'-severity'}) ? "*** $opts{-severity}: " : ''; |
514
|
|
|
|
|
|
|
|
515
|
|
|
|
|
|
|
## Increment error count and print message " |
516
|
|
|
|
|
|
|
++($self->{'_NUM_ERRORS'}) |
517
|
79
|
100
|
66
|
|
|
348
|
if(!%opts || ($opts{-severity} && $opts{'-severity'} eq 'ERROR')); |
|
|
|
33
|
|
|
|
|
518
|
|
|
|
|
|
|
++($self->{'_NUM_WARNINGS'}) |
519
|
79
|
100
|
66
|
|
|
299
|
if(!%opts || ($opts{-severity} && $opts{'-severity'} eq 'WARNING')); |
|
|
|
33
|
|
|
|
|
520
|
79
|
50
|
|
|
|
117
|
unless($self->{'-quiet'}) { |
521
|
79
|
|
50
|
|
|
107
|
my $out_fh = $self->{'output_fh'} || \*STDERR; |
522
|
|
|
|
|
|
|
print $out_fh ($severity, $msg, $line, $file, "\n") |
523
|
79
|
50
|
33
|
|
|
327
|
if($self->{'-warnings'} || !%opts || $opts{'-severity'} ne 'WARNING'); |
|
|
|
33
|
|
|
|
|
524
|
|
|
|
|
|
|
} |
525
|
|
|
|
|
|
|
} |
526
|
|
|
|
|
|
|
|
527
|
|
|
|
|
|
|
################################## |
528
|
|
|
|
|
|
|
|
529
|
|
|
|
|
|
|
=item C<$checker-Enum_errors()> |
530
|
|
|
|
|
|
|
|
531
|
|
|
|
|
|
|
Set (if argument specified) and retrieve the number of errors found. |
532
|
|
|
|
|
|
|
|
533
|
|
|
|
|
|
|
=cut |
534
|
|
|
|
|
|
|
|
535
|
|
|
|
|
|
|
sub num_errors { |
536
|
4
|
50
|
|
4
|
1
|
206
|
return (@_ > 1) ? ($_[0]->{'_NUM_ERRORS'} = $_[1]) : $_[0]->{'_NUM_ERRORS'}; |
537
|
|
|
|
|
|
|
} |
538
|
|
|
|
|
|
|
|
539
|
|
|
|
|
|
|
################################## |
540
|
|
|
|
|
|
|
|
541
|
|
|
|
|
|
|
=item C<$checker-Enum_warnings()> |
542
|
|
|
|
|
|
|
|
543
|
|
|
|
|
|
|
Set (if argument specified) and retrieve the number of warnings found. |
544
|
|
|
|
|
|
|
|
545
|
|
|
|
|
|
|
=cut |
546
|
|
|
|
|
|
|
|
547
|
|
|
|
|
|
|
sub num_warnings { |
548
|
|
|
|
|
|
|
return (@_ > 1) ? ($_[0]->{'_NUM_WARNINGS'} = $_[1]) : |
549
|
1
|
50
|
|
1
|
1
|
22
|
$_[0]->{'_NUM_WARNINGS'}; |
550
|
|
|
|
|
|
|
} |
551
|
|
|
|
|
|
|
|
552
|
|
|
|
|
|
|
################################## |
553
|
|
|
|
|
|
|
|
554
|
|
|
|
|
|
|
=item C<$checker-Ename()> |
555
|
|
|
|
|
|
|
|
556
|
|
|
|
|
|
|
Set (if argument specified) and retrieve the canonical name of POD as |
557
|
|
|
|
|
|
|
found in the C<=head1 NAME> section. |
558
|
|
|
|
|
|
|
|
559
|
|
|
|
|
|
|
=cut |
560
|
|
|
|
|
|
|
|
561
|
|
|
|
|
|
|
sub name { |
562
|
|
|
|
|
|
|
return (@_ > 1 && $_[1]) ? |
563
|
0
|
0
|
0
|
0
|
1
|
0
|
($_[0]->{'_pod_name'} = $_[1]) : $_[0]->{'_pod_name'}; |
564
|
|
|
|
|
|
|
} |
565
|
|
|
|
|
|
|
|
566
|
|
|
|
|
|
|
################################## |
567
|
|
|
|
|
|
|
|
568
|
|
|
|
|
|
|
=item C<$checker-Enode()> |
569
|
|
|
|
|
|
|
|
570
|
|
|
|
|
|
|
Add (if argument specified) and retrieve the nodes (as defined by C<=headX> |
571
|
|
|
|
|
|
|
and C<=item>) of the current POD. The nodes are returned in the order of |
572
|
|
|
|
|
|
|
their occurrence. They consist of plain text, each piece of whitespace is |
573
|
|
|
|
|
|
|
collapsed to a single blank. |
574
|
|
|
|
|
|
|
|
575
|
|
|
|
|
|
|
=cut |
576
|
|
|
|
|
|
|
|
577
|
|
|
|
|
|
|
sub node { |
578
|
132
|
|
|
132
|
1
|
128
|
my ($self,$text) = @_; |
579
|
132
|
100
|
|
|
|
203
|
if(defined $text) { |
580
|
128
|
|
|
|
|
251
|
$text =~ s/\s+$//s; # strip trailing whitespace |
581
|
128
|
|
|
|
|
305
|
$text =~ s/\s+/ /gs; # collapse whitespace |
582
|
|
|
|
|
|
|
# add node, order important! |
583
|
128
|
|
|
|
|
119
|
push(@{$self->{'_nodes'}}, $text); |
|
128
|
|
|
|
|
185
|
|
584
|
|
|
|
|
|
|
# keep also a uniqueness counter |
585
|
128
|
100
|
|
|
|
430
|
$self->{'_unique_nodes'}->{$text}++ if($text !~ /^\s*$/s); |
586
|
128
|
|
|
|
|
182
|
return $text; |
587
|
|
|
|
|
|
|
} |
588
|
4
|
|
|
|
|
5
|
@{$self->{'_nodes'}}; |
|
4
|
|
|
|
|
24
|
|
589
|
|
|
|
|
|
|
} |
590
|
|
|
|
|
|
|
|
591
|
|
|
|
|
|
|
################################## |
592
|
|
|
|
|
|
|
|
593
|
|
|
|
|
|
|
=item C<$checker-Eidx()> |
594
|
|
|
|
|
|
|
|
595
|
|
|
|
|
|
|
Add (if argument specified) and retrieve the index entries (as defined by |
596
|
|
|
|
|
|
|
CE>) of the current POD. They consist of plain text, each piece |
597
|
|
|
|
|
|
|
of whitespace is collapsed to a single blank. |
598
|
|
|
|
|
|
|
|
599
|
|
|
|
|
|
|
=cut |
600
|
|
|
|
|
|
|
|
601
|
|
|
|
|
|
|
# set/return index entries of current POD |
602
|
|
|
|
|
|
|
sub idx { |
603
|
10
|
|
|
10
|
1
|
12
|
my ($self,$text) = @_; |
604
|
10
|
100
|
|
|
|
18
|
if(defined $text) { |
605
|
6
|
|
|
|
|
13
|
$text =~ s/\s+$//s; # strip trailing whitespace |
606
|
6
|
|
|
|
|
9
|
$text =~ s/\s+/ /gs; # collapse whitespace |
607
|
|
|
|
|
|
|
# add node, order important! |
608
|
6
|
|
|
|
|
7
|
push(@{$self->{'_index'}}, $text); |
|
6
|
|
|
|
|
8
|
|
609
|
|
|
|
|
|
|
# keep also a uniqueness counter |
610
|
6
|
100
|
|
|
|
25
|
$self->{'_unique_nodes'}->{$text}++ if($text !~ /^\s*$/s); |
611
|
6
|
|
|
|
|
6
|
return $text; |
612
|
|
|
|
|
|
|
} |
613
|
4
|
|
|
|
|
9
|
@{$self->{'_index'}}; |
|
4
|
|
|
|
|
18
|
|
614
|
|
|
|
|
|
|
} |
615
|
|
|
|
|
|
|
|
616
|
|
|
|
|
|
|
################################## |
617
|
|
|
|
|
|
|
|
618
|
|
|
|
|
|
|
# add a hyperlink to the list of those of the current POD; returns current |
619
|
|
|
|
|
|
|
# list after the addition has been done |
620
|
|
|
|
|
|
|
sub hyperlink { |
621
|
42
|
|
|
42
|
0
|
30
|
my $self = shift; |
622
|
42
|
|
|
|
|
29
|
push(@{$self->{'_links'}}, $_[0]); |
|
42
|
|
|
|
|
58
|
|
623
|
42
|
|
|
|
|
73
|
return $_[0]; |
624
|
|
|
|
|
|
|
} |
625
|
|
|
|
|
|
|
|
626
|
|
|
|
|
|
|
=item C<$checker-Ehyperlinks()> |
627
|
|
|
|
|
|
|
|
628
|
|
|
|
|
|
|
Retrieve an array containing the hyperlinks to things outside |
629
|
|
|
|
|
|
|
the current POD (as defined by CE>). |
630
|
|
|
|
|
|
|
|
631
|
|
|
|
|
|
|
Each is an instance of a class with the following methods: |
632
|
|
|
|
|
|
|
|
633
|
|
|
|
|
|
|
=cut |
634
|
|
|
|
|
|
|
|
635
|
|
|
|
|
|
|
sub hyperlinks { |
636
|
1
|
|
|
1
|
1
|
1
|
@{shift->{'_links'}}; |
|
1
|
|
|
|
|
6
|
|
637
|
|
|
|
|
|
|
} |
638
|
|
|
|
|
|
|
|
639
|
|
|
|
|
|
|
################################## |
640
|
|
|
|
|
|
|
|
641
|
|
|
|
|
|
|
# override Pod::Simple's whine() and scream() to use poderror() |
642
|
|
|
|
|
|
|
|
643
|
|
|
|
|
|
|
# Note: |
644
|
|
|
|
|
|
|
# Ignore $self->{'no_whining'} b/c $self->{'quiet'} takes care of it in poderror |
645
|
|
|
|
|
|
|
# Don't bother incrementing $self->{'errors_seen'} -- it's not used |
646
|
|
|
|
|
|
|
# Don't bother pushing to $self->{'errata'} b/c poderror() outputs immediately |
647
|
|
|
|
|
|
|
# We don't need to set $self->no_errata_section(1) b/c of these overrides |
648
|
|
|
|
|
|
|
|
649
|
|
|
|
|
|
|
|
650
|
|
|
|
|
|
|
sub whine { |
651
|
44
|
|
|
44
|
1
|
14895
|
my ($self, $line, $complaint) = @_; |
652
|
|
|
|
|
|
|
|
653
|
44
|
|
|
|
|
37
|
my $severity = 'ERROR'; |
654
|
|
|
|
|
|
|
|
655
|
44
|
|
|
|
|
27
|
if (0) { |
656
|
|
|
|
|
|
|
# XXX: Let's standardize what's a warning and what's an error. Let's not |
657
|
|
|
|
|
|
|
# move stuff up and down the severity tree. -- rjbs, 2013-04-12 |
658
|
|
|
|
|
|
|
# Convert errors in Pod::Simple that are warnings in Pod::Checker |
659
|
|
|
|
|
|
|
# XXX Do differently so the $complaint can be reworded without this breaking |
660
|
|
|
|
|
|
|
$severity = 'WARNING' if |
661
|
|
|
|
|
|
|
$complaint =~ /^Expected '=item .+?'$/ || |
662
|
|
|
|
|
|
|
$complaint =~ /^You can't have =items \(as at line .+?\) unless the first thing after the =over is an =item$/ || |
663
|
|
|
|
|
|
|
$complaint =~ /^You have '=item .+?' instead of the expected '=item .+?'$/; |
664
|
|
|
|
|
|
|
} |
665
|
|
|
|
|
|
|
|
666
|
44
|
|
|
|
|
121
|
$self->poderror({ -line => $line, |
667
|
|
|
|
|
|
|
-severity => $severity, |
668
|
|
|
|
|
|
|
-msg => $complaint }); |
669
|
|
|
|
|
|
|
|
670
|
44
|
|
|
|
|
81
|
return 1; # assume everything is peachy keen |
671
|
|
|
|
|
|
|
} |
672
|
|
|
|
|
|
|
|
673
|
|
|
|
|
|
|
sub scream { |
674
|
0
|
|
|
0
|
1
|
0
|
my ($self, $line, $complaint) = @_; |
675
|
|
|
|
|
|
|
|
676
|
0
|
|
|
|
|
0
|
$self->poderror({ -line => $line, |
677
|
|
|
|
|
|
|
-severity => 'ERROR', # consider making severity 'FATAL' |
678
|
|
|
|
|
|
|
-msg => $complaint }); |
679
|
|
|
|
|
|
|
|
680
|
0
|
|
|
|
|
0
|
return 1; |
681
|
|
|
|
|
|
|
} |
682
|
|
|
|
|
|
|
|
683
|
|
|
|
|
|
|
|
684
|
|
|
|
|
|
|
################################## |
685
|
|
|
|
|
|
|
|
686
|
|
|
|
|
|
|
# Some helper subroutines |
687
|
|
|
|
|
|
|
|
688
|
|
|
|
|
|
|
sub _init_event { # assignments done at the start of most events |
689
|
322
|
|
|
322
|
|
355
|
$_[0]{'_thispara'} = ''; |
690
|
322
|
|
|
|
|
285
|
$_[0]{'_line'} = $_[1]{'start_line'}; |
691
|
322
|
|
|
|
|
419
|
$_[0]{'_cmds_since_head'}++; |
692
|
|
|
|
|
|
|
} |
693
|
|
|
|
|
|
|
|
694
|
|
|
|
|
|
|
sub _check_fcode { |
695
|
249
|
|
|
249
|
|
220
|
my ($self, $inner, $outers) = @_; |
696
|
|
|
|
|
|
|
# Check for an fcode inside another of the same fcode |
697
|
|
|
|
|
|
|
# XXX line number is the line of the start of the paragraph that the warning |
698
|
|
|
|
|
|
|
# is in, not the line that the warning is on. Fix this |
699
|
|
|
|
|
|
|
|
700
|
|
|
|
|
|
|
# Later versions of Pod::Simple forbid nested L<>'s |
701
|
249
|
50
|
66
|
|
|
524
|
return if $inner eq 'L' && $Pod::Simple::VERSION ge '3.33'; |
702
|
|
|
|
|
|
|
|
703
|
249
|
100
|
|
|
|
501
|
if (grep { $_ eq $inner } @$outers) { |
|
76
|
|
|
|
|
86
|
|
704
|
7
|
|
|
|
|
24
|
$self->poderror({ -line => $self->{'_line'}, |
705
|
|
|
|
|
|
|
-severity => 'WARNING', |
706
|
|
|
|
|
|
|
-msg => "nested commands $inner<...$inner<...>...>"}); |
707
|
|
|
|
|
|
|
} |
708
|
|
|
|
|
|
|
} |
709
|
|
|
|
|
|
|
|
710
|
|
|
|
|
|
|
################################## |
711
|
|
|
|
|
|
|
|
712
|
669
|
|
|
669
|
0
|
4775
|
sub handle_text { $_[0]{'_thispara'} .= $_[1] } |
713
|
|
|
|
|
|
|
|
714
|
|
|
|
|
|
|
# whiteline is a seemingly blank line that matches /[^\S\r\n]/ |
715
|
|
|
|
|
|
|
sub handle_whiteline { |
716
|
2
|
|
|
2
|
0
|
113
|
my ($line, $line_n, $self) = @_; |
717
|
2
|
|
|
|
|
9
|
$self->poderror({ |
718
|
|
|
|
|
|
|
-line => $line_n, |
719
|
|
|
|
|
|
|
-severity => 'WARNING', |
720
|
|
|
|
|
|
|
-msg => 'line containing nothing but whitespace in paragraph'}); |
721
|
|
|
|
|
|
|
} |
722
|
|
|
|
|
|
|
|
723
|
|
|
|
|
|
|
######## Directives |
724
|
|
|
|
|
|
|
sub handle_pod_and_cut { |
725
|
20
|
|
|
20
|
0
|
252
|
my ($line, $line_n, $self) = @_; |
726
|
20
|
|
|
|
|
19
|
$self->{'_cmds_since_head'}++; |
727
|
20
|
100
|
|
|
|
60
|
if ($line =~ /=(pod|cut)\s+\S/) { |
728
|
2
|
|
|
|
|
9
|
$self->poderror({ -line => $line_n, |
729
|
|
|
|
|
|
|
-severity => 'ERROR', |
730
|
|
|
|
|
|
|
-msg => "Spurious text after =$1"}); |
731
|
|
|
|
|
|
|
} |
732
|
|
|
|
|
|
|
} |
733
|
|
|
|
|
|
|
|
734
|
160
|
|
|
160
|
0
|
38200
|
sub start_Para { shift->_init_event(@_); } |
735
|
|
|
|
|
|
|
sub end_Para { |
736
|
160
|
|
|
160
|
0
|
807
|
my $self = shift; |
737
|
|
|
|
|
|
|
# Get the NAME of the pod document |
738
|
160
|
100
|
100
|
|
|
498
|
if ($self->{'_head_num'} == 1 && $self->{'_head_text'} eq 'NAME') { |
739
|
11
|
100
|
|
|
|
48
|
if ($self->{'_thispara'} =~ /^\s*(\S+?)\s*[,-]/) { |
740
|
4
|
100
|
|
|
|
16
|
$self->{'_pod_name'} = $1 unless defined $self->{'_pod_name'}; |
741
|
|
|
|
|
|
|
} |
742
|
|
|
|
|
|
|
} |
743
|
|
|
|
|
|
|
} |
744
|
|
|
|
|
|
|
|
745
|
|
|
|
|
|
|
sub start_Verbatim { |
746
|
10
|
|
|
10
|
0
|
1393
|
my $self = shift; |
747
|
10
|
|
|
|
|
23
|
$self->_init_event(@_); |
748
|
|
|
|
|
|
|
|
749
|
10
|
100
|
100
|
|
|
44
|
if ($self->{'_head_num'} == 1 && $self->{'_head_text'} eq 'NAME') { |
750
|
1
|
|
|
|
|
6
|
$self->poderror({ -line => $self->{'_line'}, |
751
|
|
|
|
|
|
|
-severity => 'WARNING', |
752
|
|
|
|
|
|
|
-msg => 'Verbatim paragraph in NAME section' }); |
753
|
|
|
|
|
|
|
} |
754
|
|
|
|
|
|
|
} |
755
|
|
|
|
|
|
|
# Don't need an end_Verbatim |
756
|
|
|
|
|
|
|
|
757
|
|
|
|
|
|
|
# Do I need to do anything else with this? |
758
|
1
|
|
|
1
|
0
|
74
|
sub start_Data { shift->_init_event() } |
759
|
|
|
|
|
|
|
|
760
|
18
|
|
|
18
|
0
|
3078
|
sub start_head1 { shift->start_head(1, @_) } |
761
|
22
|
|
|
22
|
0
|
3405
|
sub start_head2 { shift->start_head(2, @_) } |
762
|
2
|
|
|
2
|
0
|
340
|
sub start_head3 { shift->start_head(3, @_) } |
763
|
1
|
|
|
1
|
0
|
92
|
sub start_head4 { shift->start_head(4, @_) } |
764
|
|
|
|
|
|
|
sub start_head { |
765
|
43
|
|
|
43
|
0
|
43
|
my $self = shift; |
766
|
43
|
|
|
|
|
29
|
my $h = shift; |
767
|
43
|
|
|
|
|
67
|
$self->_init_event(@_); |
768
|
43
|
|
|
|
|
38
|
my $prev_h = $self->{'_head_num'}; |
769
|
43
|
|
|
|
|
40
|
$self->{'_head_num'} = $h; |
770
|
43
|
|
|
|
|
65
|
$self->{"_count_head$h"}++; |
771
|
|
|
|
|
|
|
|
772
|
43
|
100
|
100
|
|
|
188
|
if ($h > 1 && !$self->{'_count_head'.($h-1)}) { |
773
|
1
|
|
|
|
|
13
|
$self->poderror({ -line => $self->{'_line'}, |
774
|
|
|
|
|
|
|
-severity => 'WARNING', |
775
|
|
|
|
|
|
|
-msg => "=head$h without preceding higher level"}); |
776
|
|
|
|
|
|
|
} |
777
|
|
|
|
|
|
|
|
778
|
|
|
|
|
|
|
# If this is the first =head of the doc, $prev_h is 0, thus less than $h |
779
|
43
|
100
|
100
|
|
|
143
|
if ($self->{'_cmds_since_head'} == 1 && $prev_h >= $h) { |
780
|
5
|
|
|
|
|
18
|
$self->poderror({ -line => $self->{'_line'}, |
781
|
|
|
|
|
|
|
-severity => 'WARNING', |
782
|
|
|
|
|
|
|
-msg => 'empty section in previous paragraph'}); |
783
|
|
|
|
|
|
|
} |
784
|
|
|
|
|
|
|
} |
785
|
|
|
|
|
|
|
|
786
|
18
|
|
|
18
|
0
|
127
|
sub end_head1 { shift->end_head(@_) } |
787
|
22
|
|
|
22
|
0
|
135
|
sub end_head2 { shift->end_head(@_) } |
788
|
2
|
|
|
2
|
0
|
16
|
sub end_head3 { shift->end_head(@_) } |
789
|
1
|
|
|
1
|
0
|
8
|
sub end_head4 { shift->end_head(@_) } |
790
|
|
|
|
|
|
|
sub end_head { |
791
|
43
|
|
|
43
|
0
|
37
|
my $self = shift; |
792
|
43
|
|
|
|
|
48
|
my $arg = $self->{'_thispara'}; |
793
|
43
|
|
|
|
|
99
|
$arg =~ s/\s+$//; |
794
|
43
|
|
|
|
|
40
|
$self->{'_head_text'} = $arg; |
795
|
43
|
|
|
|
|
36
|
$self->{'_cmds_since_head'} = 0; |
796
|
43
|
|
|
|
|
40
|
my $h = $self->{'_head_num'}; |
797
|
43
|
|
|
|
|
58
|
$self->node($arg); # remember this node |
798
|
43
|
100
|
|
|
|
91
|
if ($arg eq '') { |
799
|
1
|
|
|
|
|
6
|
$self->poderror({ -line => $self->{'_line'}, |
800
|
|
|
|
|
|
|
-severity => 'ERROR', |
801
|
|
|
|
|
|
|
-msg => "empty =head$h" }); |
802
|
|
|
|
|
|
|
} |
803
|
|
|
|
|
|
|
} |
804
|
|
|
|
|
|
|
|
805
|
6
|
|
|
6
|
0
|
772
|
sub start_over_bullet { shift->start_over(@_, 'bullet') } |
806
|
1
|
|
|
1
|
0
|
117
|
sub start_over_number { shift->start_over(@_, 'number') } |
807
|
7
|
|
|
7
|
0
|
1468
|
sub start_over_text { shift->start_over(@_, 'definition') } |
808
|
4
|
|
|
4
|
0
|
235
|
sub start_over_block { shift->start_over(@_, 'block') } |
809
|
|
|
|
|
|
|
sub start_over_empty { |
810
|
1
|
|
|
1
|
0
|
57
|
my $self = shift; |
811
|
1
|
|
|
|
|
4
|
$self->start_over(@_, 'empty'); |
812
|
1
|
|
|
|
|
5
|
$self->poderror({ -line => $self->{'_line'}, |
813
|
|
|
|
|
|
|
-severity => 'WARNING', |
814
|
|
|
|
|
|
|
-msg => 'empty =over/=back block' }); |
815
|
|
|
|
|
|
|
} |
816
|
|
|
|
|
|
|
sub start_over { |
817
|
19
|
|
|
19
|
0
|
21
|
my $self = shift; |
818
|
19
|
|
|
|
|
22
|
my $type = pop; |
819
|
19
|
|
|
|
|
31
|
$self->_init_event(@_); |
820
|
|
|
|
|
|
|
} |
821
|
|
|
|
|
|
|
|
822
|
58
|
|
|
58
|
0
|
14010
|
sub start_item_bullet { shift->_init_event(@_) } |
823
|
4
|
|
|
4
|
0
|
287
|
sub start_item_number { shift->_init_event(@_) } |
824
|
23
|
|
|
23
|
0
|
11803
|
sub start_item_text { shift->_init_event(@_) } |
825
|
58
|
|
|
58
|
0
|
320
|
sub end_item_bullet { shift->end_item('bullet') } |
826
|
4
|
|
|
4
|
0
|
23
|
sub end_item_number { shift->end_item('number') } |
827
|
23
|
|
|
23
|
0
|
162
|
sub end_item_text { shift->end_item('definition') } |
828
|
|
|
|
|
|
|
sub end_item { |
829
|
85
|
|
|
85
|
0
|
76
|
my $self = shift; |
830
|
85
|
|
|
|
|
65
|
my $type = shift; |
831
|
|
|
|
|
|
|
# If there is verbatim text in this item, it will show up as part of |
832
|
|
|
|
|
|
|
# 'paras', and not part of '_thispara'. If the first para after this is a |
833
|
|
|
|
|
|
|
# verbatim one, it actually will be (part of) the contents for this item. |
834
|
85
|
100
|
33
|
|
|
156
|
if ( $self->{'_thispara'} eq '' |
|
|
|
66
|
|
|
|
|
835
|
|
|
|
|
|
|
&& ( ! @{$self->{'paras'}} |
836
|
|
|
|
|
|
|
|| $self->{'paras'}[0][0] !~ /Verbatim/i)) |
837
|
|
|
|
|
|
|
{ |
838
|
1
|
|
|
|
|
5
|
$self->poderror({ -line => $self->{'_line'}, |
839
|
|
|
|
|
|
|
-severity => 'WARNING', |
840
|
|
|
|
|
|
|
-msg => '=item has no contents' }); |
841
|
|
|
|
|
|
|
} |
842
|
|
|
|
|
|
|
|
843
|
85
|
|
|
|
|
116
|
$self->node($self->{'_thispara'}); # remember this node |
844
|
|
|
|
|
|
|
} |
845
|
|
|
|
|
|
|
|
846
|
|
|
|
|
|
|
sub start_for { # =for and =begin directives |
847
|
4
|
|
|
4
|
0
|
374
|
my ($self, $flags) = @_; |
848
|
4
|
|
|
|
|
6
|
$self->_init_event($flags); |
849
|
4
|
|
|
|
|
4
|
push @{$self->{'_begin_stack'}}, [$self->{'_line'}, $flags->{'target'}]; |
|
4
|
|
|
|
|
10
|
|
850
|
|
|
|
|
|
|
} |
851
|
|
|
|
|
|
|
|
852
|
|
|
|
|
|
|
sub end_for { |
853
|
4
|
|
|
4
|
0
|
199
|
my ($self, $flags) = @_; |
854
|
4
|
|
|
|
|
3
|
my ($line, $target) = @{pop @{$self->{'_begin_stack'}}}; |
|
4
|
|
|
|
|
3
|
|
|
4
|
|
|
|
|
7
|
|
855
|
4
|
100
|
|
|
|
12
|
if ($flags->{'fake-closer'}) { # meaning Pod::Simple generated this =end |
856
|
2
|
|
|
|
|
10
|
$self->poderror({ -line => $line, |
857
|
|
|
|
|
|
|
-severity => 'ERROR', |
858
|
|
|
|
|
|
|
-msg => "=begin $target without matching =end $target" |
859
|
|
|
|
|
|
|
}); |
860
|
|
|
|
|
|
|
} |
861
|
|
|
|
|
|
|
} |
862
|
|
|
|
|
|
|
|
863
|
|
|
|
|
|
|
sub end_Document { |
864
|
|
|
|
|
|
|
# Some final error checks |
865
|
4
|
|
|
4
|
0
|
205
|
my $self = shift; |
866
|
|
|
|
|
|
|
|
867
|
|
|
|
|
|
|
# no POD found here |
868
|
4
|
50
|
0
|
|
|
21
|
$self->num_errors(-1) && return unless $self->content_seen; |
869
|
|
|
|
|
|
|
|
870
|
4
|
|
|
|
|
38
|
my %nodes; |
871
|
4
|
|
|
|
|
10
|
for ($self->node()) { |
872
|
128
|
|
|
|
|
162
|
$nodes{$_} = 1; |
873
|
128
|
100
|
|
|
|
258
|
if(/^(\S+)\s+\S/) { |
874
|
|
|
|
|
|
|
# we have more than one word. Use the first as a node, too. |
875
|
|
|
|
|
|
|
# This is used heavily in perlfunc.pod |
876
|
87
|
|
100
|
|
|
221
|
$nodes{$1} ||= 2; # derived node |
877
|
|
|
|
|
|
|
} |
878
|
|
|
|
|
|
|
} |
879
|
4
|
|
|
|
|
26
|
for ($self->idx()) { |
880
|
6
|
|
|
|
|
6
|
$nodes{$_} = 3; # index node |
881
|
|
|
|
|
|
|
} |
882
|
|
|
|
|
|
|
|
883
|
|
|
|
|
|
|
# XXX update unresolved internal link POD -- single word not enclosed in ""? |
884
|
|
|
|
|
|
|
# I don't know what I was thinking when I made the above TODO, and I don't |
885
|
|
|
|
|
|
|
# know what it means... |
886
|
|
|
|
|
|
|
|
887
|
4
|
|
|
|
|
6
|
for my $link (@{ $self->{'_internal_links'} }) { |
|
4
|
|
|
|
|
13
|
|
888
|
20
|
|
|
|
|
26
|
my ($name, $line) = @$link; |
889
|
20
|
100
|
|
|
|
32
|
unless ( $nodes{$name} ) { |
890
|
8
|
|
|
|
|
21
|
$self->poderror({ -line => $line, |
891
|
|
|
|
|
|
|
-severity => 'ERROR', |
892
|
|
|
|
|
|
|
-msg => "unresolved internal link '$name'"}); |
893
|
|
|
|
|
|
|
} |
894
|
|
|
|
|
|
|
} |
895
|
|
|
|
|
|
|
|
896
|
|
|
|
|
|
|
# check the internal nodes for uniqueness. This pertains to |
897
|
|
|
|
|
|
|
# =headX, =item and X<...> |
898
|
4
|
100
|
|
|
|
15
|
if ($self->{'-warnings'} > 1 ) { |
899
|
3
|
|
|
|
|
5
|
for my $node (sort keys %{ $self->{'_unique_nodes'} }) { |
|
3
|
|
|
|
|
52
|
|
900
|
122
|
|
|
|
|
77
|
my $count = $self->{'_unique_nodes'}{$node}; |
901
|
122
|
100
|
|
|
|
143
|
if ($count > 1) { # not unique |
902
|
3
|
|
|
|
|
13
|
$self->poderror({ |
903
|
|
|
|
|
|
|
-line => '-', |
904
|
|
|
|
|
|
|
-severity => 'WARNING', |
905
|
|
|
|
|
|
|
-msg => "multiple occurrences ($count) of link target ". |
906
|
|
|
|
|
|
|
"'$node'"}); |
907
|
|
|
|
|
|
|
} |
908
|
|
|
|
|
|
|
} |
909
|
|
|
|
|
|
|
} |
910
|
|
|
|
|
|
|
} |
911
|
|
|
|
|
|
|
|
912
|
|
|
|
|
|
|
######## Formatting codes |
913
|
|
|
|
|
|
|
|
914
|
21
|
|
|
21
|
0
|
168
|
sub start_B { shift->start_fcode('B') } |
915
|
109
|
|
|
109
|
0
|
820
|
sub start_C { shift->start_fcode('C') } |
916
|
2
|
|
|
2
|
0
|
17
|
sub start_F { shift->start_fcode('F') } |
917
|
47
|
|
|
47
|
0
|
391
|
sub start_I { shift->start_fcode('I') } |
918
|
2
|
|
|
2
|
0
|
21
|
sub start_S { shift->start_fcode('S') } |
919
|
|
|
|
|
|
|
sub start_fcode { |
920
|
249
|
|
|
249
|
0
|
204
|
my ($self, $fcode) = @_; |
921
|
249
|
|
|
|
|
171
|
unshift @{$self->{'_fcode_stack'}}, $fcode; |
|
249
|
|
|
|
|
433
|
|
922
|
|
|
|
|
|
|
} |
923
|
|
|
|
|
|
|
|
924
|
21
|
|
|
21
|
0
|
112
|
sub end_B { shift->end_fcode() } |
925
|
109
|
|
|
109
|
0
|
564
|
sub end_C { shift->end_fcode() } |
926
|
2
|
|
|
2
|
0
|
13
|
sub end_F { shift->end_fcode() } |
927
|
47
|
|
|
47
|
0
|
255
|
sub end_I { shift->end_fcode() } |
928
|
2
|
|
|
2
|
0
|
17
|
sub end_S { shift->end_fcode() } |
929
|
|
|
|
|
|
|
sub end_fcode { |
930
|
249
|
|
|
249
|
0
|
181
|
my $self = shift; |
931
|
249
|
|
|
|
|
354
|
$self->_check_fcode(shift @{$self->{'_fcode_stack'}}, # current fcode removed |
932
|
249
|
|
|
|
|
174
|
$self->{'_fcode_stack'}); # previous fcodes |
933
|
|
|
|
|
|
|
} |
934
|
|
|
|
|
|
|
|
935
|
|
|
|
|
|
|
sub start_L { |
936
|
62
|
|
|
62
|
0
|
465
|
my ($self, $flags) = @_; |
937
|
62
|
|
|
|
|
81
|
$self->start_fcode('L'); |
938
|
|
|
|
|
|
|
|
939
|
62
|
|
|
|
|
111
|
my $link = Pod::Checker::Hyperlink->new($flags, $self); |
940
|
62
|
50
|
|
|
|
98
|
if ($link) { |
941
|
62
|
100
|
100
|
|
|
78
|
if ( $link->type eq 'pod' |
|
|
|
66
|
|
|
|
|
|
|
|
66
|
|
|
|
|
942
|
|
|
|
|
|
|
&& $link->node |
943
|
|
|
|
|
|
|
# It's an internal-to-this-page link if no page is given, or |
944
|
|
|
|
|
|
|
# if the given one is to our NAME. |
945
|
|
|
|
|
|
|
&& (! $link->page || ( $self->{'_pod_name'} |
946
|
|
|
|
|
|
|
&& $link->page eq $self->{'_pod_name'}))) |
947
|
|
|
|
|
|
|
{ |
948
|
20
|
|
|
|
|
17
|
push @{ $self->{'_internal_links'} }, [ $link->{'-raw_node'}, $link->line ]; |
|
20
|
|
|
|
|
38
|
|
949
|
|
|
|
|
|
|
} |
950
|
|
|
|
|
|
|
else { |
951
|
42
|
|
|
|
|
61
|
$self->hyperlink($link); |
952
|
|
|
|
|
|
|
} |
953
|
|
|
|
|
|
|
} |
954
|
|
|
|
|
|
|
} |
955
|
|
|
|
|
|
|
|
956
|
|
|
|
|
|
|
sub end_L { |
957
|
62
|
|
|
62
|
0
|
323
|
my $self = shift; |
958
|
62
|
|
|
|
|
70
|
$self->end_fcode(); |
959
|
|
|
|
|
|
|
} |
960
|
|
|
|
|
|
|
|
961
|
|
|
|
|
|
|
sub start_X { |
962
|
6
|
|
|
6
|
0
|
45
|
my $self = shift; |
963
|
6
|
|
|
|
|
13
|
$self->start_fcode('X'); |
964
|
|
|
|
|
|
|
# keep track of where X<> starts in the paragraph |
965
|
|
|
|
|
|
|
# (this is a stack so nested X<>s are handled correctly) |
966
|
6
|
|
|
|
|
5
|
push @{$self->{'_fcode_pos'}}, length $self->{'_thispara'}; |
|
6
|
|
|
|
|
16
|
|
967
|
|
|
|
|
|
|
} |
968
|
|
|
|
|
|
|
sub end_X { |
969
|
6
|
|
|
6
|
0
|
37
|
my $self = shift; |
970
|
|
|
|
|
|
|
# extract contents of X<> and replace with '' |
971
|
6
|
|
|
|
|
4
|
my $start = pop @{$self->{'_fcode_pos'}}; # start at the beginning of X<> |
|
6
|
|
|
|
|
9
|
|
972
|
6
|
|
|
|
|
9
|
my $end = length($self->{'_thispara'}) - $start; # end at end of X<> |
973
|
6
|
|
|
|
|
11
|
my $x = substr($self->{'_thispara'}, $start, $end, ''); |
974
|
6
|
100
|
|
|
|
13
|
if ($x eq "") { |
975
|
1
|
|
|
|
|
5
|
$self->poderror({ -line => $self->{'_line'}, |
976
|
|
|
|
|
|
|
-severity => 'ERROR', |
977
|
|
|
|
|
|
|
-msg => "An empty X<>" }); |
978
|
|
|
|
|
|
|
} |
979
|
6
|
|
|
|
|
10
|
$self->idx($x); # remember this node |
980
|
6
|
|
|
|
|
9
|
$self->end_fcode(); |
981
|
|
|
|
|
|
|
} |
982
|
|
|
|
|
|
|
|
983
|
|
|
|
|
|
|
package Pod::Checker::Hyperlink; |
984
|
|
|
|
|
|
|
|
985
|
|
|
|
|
|
|
# This class is used to represent L<> link structures, so that the individual |
986
|
|
|
|
|
|
|
# elements are easily accessible. It is based on code in Pod::Hyperlink |
987
|
|
|
|
|
|
|
|
988
|
|
|
|
|
|
|
sub new { |
989
|
62
|
|
|
62
|
|
61
|
my ($class, |
990
|
|
|
|
|
|
|
$simple_link, # The link structure returned by Pod::Simple |
991
|
|
|
|
|
|
|
$caller # The caller class |
992
|
|
|
|
|
|
|
) = @_; |
993
|
|
|
|
|
|
|
|
994
|
62
|
|
|
|
|
56
|
my $self = +{}; |
995
|
62
|
|
|
|
|
51
|
bless $self, $class; |
996
|
|
|
|
|
|
|
|
997
|
62
|
|
33
|
|
|
214
|
$self->{'-line'} ||= $caller->{'_line'}; |
998
|
62
|
|
33
|
|
|
162
|
$self->{'-type'} ||= $simple_link->{'type'}; |
999
|
|
|
|
|
|
|
|
1000
|
|
|
|
|
|
|
# Force stringification of page and node. (This expands any E<>.) |
1001
|
62
|
100
|
|
|
|
130
|
$self->{'-page'} = exists $simple_link->{'to'} ? "$simple_link->{'to'}" : ""; |
1002
|
62
|
100
|
|
|
|
462
|
$self->{'-node'} = exists $simple_link->{'section'} ? "$simple_link->{'section'}" : ""; |
1003
|
|
|
|
|
|
|
|
1004
|
|
|
|
|
|
|
# Save the unmodified node text, as the .t files are expecting the message |
1005
|
|
|
|
|
|
|
# for internal link failures to include it (hence this preserves backward |
1006
|
|
|
|
|
|
|
# compatibility). |
1007
|
62
|
|
|
|
|
412
|
$self->{'-raw_node'} = $self->{'-node'}; |
1008
|
|
|
|
|
|
|
|
1009
|
|
|
|
|
|
|
# Remove leading/trailing white space. Pod::Simple already warns about |
1010
|
|
|
|
|
|
|
# these, so if the only error is this, and the link is otherwise correct, |
1011
|
|
|
|
|
|
|
# only the Pod::Simple warning will be output, avoiding unnecessary |
1012
|
|
|
|
|
|
|
# confusion. |
1013
|
62
|
|
|
|
|
92
|
$self->{'-page'} =~ s/ ^ \s+ //x; |
1014
|
62
|
|
|
|
|
78
|
$self->{'-page'} =~ s/ \s+ $ //x; |
1015
|
|
|
|
|
|
|
|
1016
|
62
|
|
|
|
|
66
|
$self->{'-node'} =~ s/ ^ \s+ //x; |
1017
|
62
|
|
|
|
|
76
|
$self->{'-node'} =~ s/ \s+ $ //x; |
1018
|
|
|
|
|
|
|
|
1019
|
|
|
|
|
|
|
# Pod::Simple warns about L<> and L< >, but not L> |
1020
|
62
|
50
|
66
|
|
|
155
|
if ($self->{'-page'} eq "" && $self->{'-node'} eq "") { |
1021
|
0
|
|
|
|
|
0
|
$caller->poderror({ -line => $caller->{'_line'}, |
1022
|
|
|
|
|
|
|
-severity => 'WARNING', |
1023
|
|
|
|
|
|
|
-msg => 'empty link'}); |
1024
|
0
|
|
|
|
|
0
|
return; |
1025
|
|
|
|
|
|
|
} |
1026
|
|
|
|
|
|
|
|
1027
|
62
|
|
|
|
|
70
|
return $self; |
1028
|
|
|
|
|
|
|
} |
1029
|
|
|
|
|
|
|
|
1030
|
|
|
|
|
|
|
=item line() |
1031
|
|
|
|
|
|
|
|
1032
|
|
|
|
|
|
|
Returns the approximate line number in which the link was encountered |
1033
|
|
|
|
|
|
|
|
1034
|
|
|
|
|
|
|
=cut |
1035
|
|
|
|
|
|
|
|
1036
|
|
|
|
|
|
|
sub line { |
1037
|
46
|
|
|
46
|
|
6111
|
return $_[0]->{-line}; |
1038
|
|
|
|
|
|
|
} |
1039
|
|
|
|
|
|
|
|
1040
|
|
|
|
|
|
|
=item type() |
1041
|
|
|
|
|
|
|
|
1042
|
|
|
|
|
|
|
Returns the type of the link; one of: |
1043
|
|
|
|
|
|
|
C<"url"> for things like |
1044
|
|
|
|
|
|
|
C, C<"man"> for man pages, or C<"pod">. |
1045
|
|
|
|
|
|
|
|
1046
|
|
|
|
|
|
|
=cut |
1047
|
|
|
|
|
|
|
|
1048
|
|
|
|
|
|
|
sub type { |
1049
|
88
|
|
|
88
|
|
303
|
return $_[0]->{-type}; |
1050
|
|
|
|
|
|
|
} |
1051
|
|
|
|
|
|
|
|
1052
|
|
|
|
|
|
|
=item page() |
1053
|
|
|
|
|
|
|
|
1054
|
|
|
|
|
|
|
Returns the linked-to page or url. |
1055
|
|
|
|
|
|
|
|
1056
|
|
|
|
|
|
|
=cut |
1057
|
|
|
|
|
|
|
|
1058
|
|
|
|
|
|
|
sub page { |
1059
|
87
|
|
|
87
|
|
324
|
return $_[0]->{-page}; |
1060
|
|
|
|
|
|
|
} |
1061
|
|
|
|
|
|
|
|
1062
|
|
|
|
|
|
|
=item node() |
1063
|
|
|
|
|
|
|
|
1064
|
|
|
|
|
|
|
Returns the anchor or node within the linked-to page, or an empty string |
1065
|
|
|
|
|
|
|
(C<"">) if none appears in the link. |
1066
|
|
|
|
|
|
|
|
1067
|
|
|
|
|
|
|
=back |
1068
|
|
|
|
|
|
|
|
1069
|
|
|
|
|
|
|
=cut |
1070
|
|
|
|
|
|
|
|
1071
|
|
|
|
|
|
|
sub node { |
1072
|
80
|
|
|
80
|
|
304
|
return $_[0]->{-node}; |
1073
|
|
|
|
|
|
|
} |
1074
|
|
|
|
|
|
|
|
1075
|
|
|
|
|
|
|
=head1 AUTHOR |
1076
|
|
|
|
|
|
|
|
1077
|
|
|
|
|
|
|
Please report bugs using L. |
1078
|
|
|
|
|
|
|
|
1079
|
|
|
|
|
|
|
Brad Appleton Ebradapp@enteract.comE (initial version), |
1080
|
|
|
|
|
|
|
Marek Rouchal Emarekr@cpan.orgE, |
1081
|
|
|
|
|
|
|
Marc Green Emarcgreen@cpan.orgE (port to Pod::Simple) |
1082
|
|
|
|
|
|
|
Ricardo Signes Erjbs@cpan.orgE (more porting to Pod::Simple) |
1083
|
|
|
|
|
|
|
Karl Williamson Ekhw@cpan.orgE (more porting to Pod::Simple) |
1084
|
|
|
|
|
|
|
|
1085
|
|
|
|
|
|
|
Based on code for B written by |
1086
|
|
|
|
|
|
|
Tom Christiansen Etchrist@mox.perl.comE |
1087
|
|
|
|
|
|
|
|
1088
|
|
|
|
|
|
|
=cut |
1089
|
|
|
|
|
|
|
|
1090
|
|
|
|
|
|
|
1 |