File: pod.patch

package info (click to toggle)
libapache-asp-perl 2.63-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 4,120 kB
  • sloc: perl: 6,044; php: 409; sh: 62; lisp: 22; makefile: 10
file content (293 lines) | stat: -rw-r--r-- 5,605 bytes parent folder | download | duplicates (2)
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
Description: fix POD errors (=item needs =over and =back)
Origin: vendor
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=69642
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2018-04-01

--- a/ASP.pm
+++ b/ASP.pm
@@ -2331,6 +2331,8 @@
 
 =head2 Core
 
+=over
+
 =item Global
 
 Global is the nerve center of an Apache::ASP application, in which
@@ -2427,8 +2429,12 @@
 
   PerlSetVar NoCache 0
 
+=back
+
 =head2 State Management
 
+=over
+
 =item NoState
 
 default 0, if true, neither the $Application nor $Session objects will
@@ -2546,8 +2552,12 @@
 
   PerlSetVar StateSerializer Data::Dumper
 
+=back
+
 =head2 Sessions
 
+=over
+
 =item CookiePath
 
 URL root that client responds to by sending the session cookie.
@@ -2648,8 +2658,12 @@
 
   PerlSetVar SessionCount 1
 
+=back
+
 =head2 Cookieless Sessions
 
+=over
+
 =item SessionQueryParse
 
 default 0, if true, will automatically parse the $Session
@@ -2722,8 +2736,12 @@
 
   PerlSetVar SessionQueryForce 1
 
+=back
+
 =head2 Developer Environment
 
+=over
+
 =item UseStrict
 
 default 0, if set to 1, will compile all scripts, global.asa
@@ -2824,8 +2842,12 @@
 
 which you would do if you _really_ needed the speed.
 
+=back
+
 =head2 XML / XSLT
 
+=over
+
 =item XMLSubsMatch
 
 default not defined, set to some regexp pattern
@@ -2928,6 +2950,8 @@
 
 as of version 2.11, this config is no longer supported.
 
+=back
+
 =head2 Caching
 
 The output caching layer is a file dbm based output cache that runs
@@ -2959,6 +2983,8 @@
 This said, output caching will not work in raw CGI mode,
 just running under mod_perl.
 
+=over
+
 =item CacheDB
 
 Like StateDB, sets dbm format for caching.  Since SDBM_File
@@ -3033,8 +3059,12 @@
 for caching output from includes with special syntax.
 See $Response->Include() for more info on the Response cache.
 
+=back
+
 =head2 Miscellaneous
 
+=over
+
 =item AuthServerVariables
 
 default 0. If you are using basic auth and would like 
@@ -3266,6 +3296,8 @@
 also get this time in the Apache error log with the 
 other system messages.
 
+=back
+
 =head2 Mail Administration
 
 Apache::ASP has some powerful administrative email
@@ -3275,6 +3307,8 @@
 it was also easy to provide the $Server->Mail(\%mail) API 
 extension which you can read up about in the OBJECTS section.
 
+=over
+
 =item MailHost
 
 The mail host is the smtp server that the below Mail* config directives
@@ -3338,8 +3372,12 @@
 
   PerlSetVar MailAlertPeriod 20
 
+=back
+
 =head2 File Uploads
 
+=over
+
 =item FileUploadMax
 
 default 0, if set will limit file uploads to this
@@ -3368,6 +3406,8 @@
 
   PerlSetVar FileUploadTemp 0
 
+=back
+
 =head1 SYNTAX
 
 =head2 General
@@ -5541,6 +5581,8 @@
 
 =head2 Installation
 
+=over
+
 =item Examples don't work, I see the ASP script in the browser?
 
 This is most likely that Apache is not configured to execute
@@ -5637,8 +5679,12 @@
 of Data::Dumper and MLDBM, which are the modules used to write the 
 state files.
 
+=back
+
 =head2 Sessions
 
+=over
+
 =item How can I use $Session to store complex data structures.
 
 Very carefully.  Please read the $Session documentation in 
@@ -5705,8 +5751,12 @@
 database connections on a per process basis, and will
 work for most cases.
 
+=back
+
 =head2 Development
 
+=over
+
 =item VBScript or JScript supported?
 
 Only Perl scripting is supported with this module.
@@ -5768,8 +5818,12 @@
 are free COM ports to the UNIX world.  At this time, there is no ActiveX
 for the UNIX world.
 
+=back
+
 =head2 Support and Production
 
+=over
+
 =item How do I get things I want done?!
 
 If you find a problem with the module, or would like a feature added,
@@ -5784,6 +5838,8 @@
 and MKS PScript.  If you can suggest any changes to facilitate these
 goals, your comments are welcome.
 
+=back
+
 =head1 TUNING
 
 A little tuning can go a long way, and can make the difference between
@@ -6067,6 +6123,8 @@
 
 =head2 COMMUNITY
 
+=over
+
 =item Mailing List Archives
 
 Try the Apache::ASP mailing list archive first when working
@@ -6105,6 +6163,8 @@
 and perhaps most importantly to simply support others in learning
 the ins and outs of the software.
 
+=back
+
 =head2 COMMERCIAL
 
 If you would like commercial support for Apache::ASP, please
@@ -6112,6 +6172,8 @@
 this is not an endorsement, and if you would like your company
 listed here, please email asp[at]perl.apache.org with your information.
 
+=over
+
 =item AlterCom
 
 We use, host and support mod_perl. We would love to be able to help 
@@ -6142,6 +6204,8 @@
 
   http://www.tuxit.de
 
+=back
+
 =head1 SITES USING
 
 What follows is a list of public sites that are using 
@@ -6254,6 +6318,8 @@
 
 For a list of sites using Apache::ASP, please see the SITES USING section.
 
+=over
+
 =item Red Hat
 
 =begin html
@@ -6413,6 +6479,8 @@
 None of this would ever be possible without Apache::ASP (I do not ever want to write ``print "<HTML>\n";''
 again).
 
+=back
+
 =head1 RESOURCES
 
 Here are some important resources listed related to 
@@ -6491,6 +6559,8 @@
 
  + = improvement   - = bug fix    (d) = documentations
 
+=over
+
 =item $VERSION = 2.63; $DATE="03/14/2018"
 
  + Added section ``raw'' to MailErrors.inc to debug POSTs without
@@ -8916,6 +8986,8 @@
  exist.  Should stop hackers, since there is no wire speed guessing
  cookies.
 
+=back
+
 =head1 LICENSE
 
 Copyright (c) 1998-2018, Josh Chamas
--- a/lib/Apache/ASP/CGI/Table.pm
+++ b/lib/Apache/ASP/CGI/Table.pm
@@ -7,7 +7,7 @@
 
 =head1 NAME
 
-  Apache::ASP::CGI::Table
+  Apache::ASP::CGI::Table - Layer for compatibility with Apache::Table objects
 
 =head1 DESCRIPTION