File: pod-issues.patch

package info (click to toggle)
libhttp-dav-perl 0.48-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 744 kB
  • ctags: 424
  • sloc: perl: 3,951; xml: 90; sh: 20; makefile: 6
file content (78 lines) | stat: -rw-r--r-- 2,376 bytes parent folder | download
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
Description: fix a number of pod issues that lintian warns about
Author: Florian Schlichting <fsfs@debian.org>
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=119878

--- a/lib/HTTP/DAV.pm
+++ b/lib/HTTP/DAV.pm
@@ -1773,7 +1773,7 @@
 
 See L<get()> for a description of what the optional callback parameter does.
 
-You can also pass a C<-headers> argument. That allows to specify custom HTTP headers. It can be either a hashref with header names and values, or a L<HTTP::Headers> object.
+You can also pass a C<-headers> argument. That allows one to specify custom HTTP headers. It can be either a hashref with header names and values, or a L<HTTP::Headers> object.
 
 B<put examples:>
 
@@ -2045,7 +2045,7 @@
 
 You'll want to also read:
 
-=over *
+=over
 
 =item C<HTTP::DAV::Response>
 
@@ -2057,7 +2057,7 @@
 
 and maybe if you're more inquisitive:
 
-=over *
+=over
 
 =item C<LWP::UserAgent>
 
--- a/lib/HTTP/DAV/Lock.pm
+++ b/lib/HTTP/DAV/Lock.pm
@@ -34,7 +34,12 @@
 }
 
 ###########################################################################
-# ACCESSOR METHODS
+
+=head1 ACCESSOR METHODS
+
+=over
+
+=cut
 
 # GET
 sub get_owner { $_[0]->{_owner}; }
--- a/lib/HTTP/DAV/Resource.pm
+++ b/lib/HTTP/DAV/Resource.pm
@@ -1925,5 +1925,7 @@
 
 Sets the parent resource list (ask the question, which collection am I a member of?). See L<HTTP::DAV::ResourceList>.
 
+=back
+
 =cut
 
--- a/lib/HTTP/DAV/Response.pm
+++ b/lib/HTTP/DAV/Response.pm
@@ -189,7 +189,7 @@
 
 HTTP::DAV::Response was created to handle two extra functions that normal HTTP Responses don't require:
 
- - WebDAV reponses have 6 extra error codes: 102, 207, 422, 423, 424 and 507. Older versions of the LWP's C<HTTP::Status> class did not have these extra codes. These were added.
+ - WebDAV responses have 6 extra error codes: 102, 207, 422, 423, 424 and 507. Older versions of the LWP's C<HTTP::Status> class did not have these extra codes. These were added.
 
  - WebDAV responses can actually contain more than one response (and often DO contain more than one) in the form of a "Multistatus". These multistatus responses come in the form of an XML document. HTTP::DAV::Response can accurately parse these XML responses and emulate the normal of the C<HTTP::Response>.
 
@@ -313,5 +313,7 @@
 
 This routine is a variant on the standard C<HTTP::Response> C<message()>. 
 
+=back
+
 =cut