Skip to content

Commit 29c6c80

Browse files
kozachkovxenu
authored andcommitted
Replaced pod/ rt.perl.org links to github.com
1 parent 97f7d7e commit 29c6c80

30 files changed

+709
-710
lines changed

pod/perl5121delta.pod

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Filetests don't always expect an op on the stack, so we now use
195195
TOPs only if we're sure that we're not stat'ing the _ filehandle.
196196
This is indicated by OPf_KIDS (as checked in ck_ftst).
197197

198-
See also: L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=74542>
198+
See also: L<https://github.com/Perl/perl5/issues/10335>
199199

200200
=item *
201201

@@ -219,7 +219,7 @@ utf8::is_utf8 now respects GMAGIC (e.g. $1)
219219
XS code using C<fputc()> or C<fputs()>: on Windows could cause an error
220220
due to their arguments being swapped.
221221

222-
See also: L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=72704>
222+
See also: L<https://github.com/Perl/perl5/issues/10156>
223223

224224
=item *
225225

@@ -228,36 +228,36 @@ in an obscure situation. It happened when stuffing was performed on the
228228
last line of a file and the line ended with a statement that lacked a
229229
terminating semicolon.
230230

231-
See also: L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=74006>
231+
See also: L<https://github.com/Perl/perl5/issues/10273>
232232

233233
=item *
234234

235235
We fixed a bug that could cause \N{} constructs followed by a single . to
236236
be parsed incorrectly.
237237

238-
See also: L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=74978>
238+
See also: L<https://github.com/Perl/perl5/issues/10367>
239239

240240
=item *
241241

242242

243243
We fixed a bug that caused when(scalar) without an argument not to be
244244
treated as a syntax error.
245245

246-
See also: L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=74114>
246+
See also: L<https://github.com/Perl/perl5/issues/10287>
247247

248248
=item *
249249

250250
We fixed a regression in the handling of labels immediately before string
251251
evals that was introduced in Perl 5.12.0.
252252

253-
See also: L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=74290>
253+
See also: L<https://github.com/Perl/perl5/issues/10301>
254254

255255
=item *
256256

257257
We fixed a regression in case-insensitive matching of folded characters
258258
in regular expressions introduced in Perl 5.10.1.
259259

260-
See also: L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=72998>
260+
See also: L<https://github.com/Perl/perl5/issues/10193>
261261

262262
=back
263263

@@ -342,7 +342,7 @@ take a block as their first argument, like
342342

343343
foo { ... $_ ...} list
344344

345-
See also: L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=67694>
345+
See also: L<https://github.com/Perl/perl5/issues/9798>
346346

347347
=item *
348348

pod/perl5122delta.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ fixing a potential crash. C<split()> would crash because the third item
207207
on the stack wasn't the regular expression it expected. C<unpack("%2H",
208208
...)> would return both the unpacked result and the checksum on the stack,
209209
as would C<unpack("%2u", ...)>.
210-
L<[perl #73814]|http://rt.perl.org/rt3/Ticket/Display.html?id=73814>
210+
L<[GH #10257]|https://github.com/Perl/perl5/issues/10257>
211211

212212
=item *
213213

@@ -233,7 +233,7 @@ stack for their return values in cases where no argument was passed in.
233233

234234
When matching unicode strings under some conditions inappropriate backtracking would
235235
result in a C<Malformed UTF-8 character (fatal)> error. This should no longer occur.
236-
See L<[perl #75680]|http://rt.perl.org/rt3/Public/Bug/Display.html?id=75680>
236+
See L<[GH #10434]|https://github.com/Perl/perl5/issues/10434>
237237

238238
=back
239239

pod/perl5140delta.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ The C<*$glob> on the second line returns a new immutable glob. That new
723723
glob is made an alias to C<*bar>. Then it is discarded. So the second
724724
assignment has no effect.
725725

726-
See L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=77810> for
726+
See L<https://github.com/Perl/perl5/issues/10625> for
727727
more detail.
728728

729729
=head3 Magic variables outside the main package
@@ -4441,7 +4441,7 @@ take a block as their first argument, like
44414441

44424442
foo { ... $_ ...} list
44434443

4444-
See also: L<http://rt.perl.org/rt3/Public/Bug/Display.html?id=67694>
4444+
See also: L<https://github.com/Perl/perl5/issues/9798>
44454445

44464446
=item *
44474447

pod/perl5160delta.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ VM/ESA
654654
Swapping of $< and $>
655655

656656
For more information about this future deprecation, see L<the relevant RT
657-
ticket|https://rt.perl.org/rt3/Ticket/Display.html?id=96212>.
657+
ticket|https://github.com/Perl/perl5/issues/11547>.
658658

659659
=item *
660660

pod/perl5184delta.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ filehandle information is properly reset after a pager is run. [perl #121456]
4545
=item *
4646

4747
Introduced by
48-
L<perl #113536|https://rt.perl.org/Public/Bug/Display.html?id=113536>, a memory
48+
L<[GH #12161]|https://github.com/Perl/perl5/issues/12161>, a memory
4949
leak on every call to C<system> and backticks (C< `` >), on most Win32 Perls
5050
starting from 5.18.0 has been fixed. The memory leak only occurred if you
5151
enabled pseudo-fork in your build of Win32 Perl, and were running that build on
5252
Server 2003 R2 or newer OS. The leak does not appear on WinXP SP3.
53-
[L<perl #121676|https://rt.perl.org/Public/Bug/Display.html?id=121676>]
53+
L<[GH #13741]|https://github.com/Perl/perl5/issues/13741>
5454

5555
=back
5656

pod/perl5200delta.pod

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1854,7 +1854,7 @@ F<perlbug> now has a C<-p> option for attaching patches with a bug report.
18541854

18551855
L<perlbug> has been modified to supply the report template with CRLF line
18561856
endings on Windows.
1857-
[L<perl #121277|https://rt.perl.org/Public/Bug/Display.html?id=121277>]
1857+
L<[GH #13612]|https://github.com/Perl/perl5/issues/13612>
18581858

18591859
=item *
18601860

@@ -1976,7 +1976,7 @@ too, but B<-fwrapv> was broken before 4.3, and the optimizations probably won't
19761976
go away), F<Configure> now adds B<-fwrapv> unless the user requests
19771977
B<-fno-wrapv>, which disables B<-fwrapv>, or B<-fsanitize=undefined>, which
19781978
turns the overflows B<-fwrapv> ignores into runtime errors.
1979-
[L<perl #121505|https://rt.perl.org/Public/Bug/Display.html?id=121505>]
1979+
L<[GH #13690]|https://github.com/Perl/perl5/issues/13690>
19801980

19811981
=back
19821982

@@ -2190,15 +2190,15 @@ The time taken to build perl on Windows has been reduced quite significantly
21902190
(time savings in the region of 30-40% are typically seen) by reducing the
21912191
number of, usually failing, I/O calls for each L<C<require()>|perlfunc/require>
21922192
(for B<miniperl.exe> only).
2193-
[L<perl #121119|https://rt.perl.org/Public/Bug/Display.html?id=121119>]
2193+
L<[GH #13566]|https://github.com/Perl/perl5/issues/13566>
21942194

21952195
=item *
21962196

21972197
About 15 minutes of idle sleeping was removed from running C<make test> due to
21982198
a bug in which the timeout monitor used for tests could not be cancelled once
21992199
the test completes, and the full timeout period elapsed before running the next
22002200
test file.
2201-
[L<perl #121395|https://rt.perl.org/Public/Bug/Display.html?id=121395>]
2201+
L<[GH #13647]|https://github.com/Perl/perl5/issues/13647>
22022202

22032203
=item *
22042204

@@ -2209,15 +2209,15 @@ C<kill()> killed 1 process tree PID then it returned 0 instead of 1, and if
22092209
C<kill()> was passed 2 invalid PIDs then it returned 2 instead of 0. This has
22102210
probably been the case since the process tree kill feature was implemented on
22112211
Win32. It has now been corrected to follow the documented behaviour.
2212-
[L<perl #121230|https://rt.perl.org/Public/Bug/Display.html?id=121230>]
2212+
L<[GH #13595]|https://github.com/Perl/perl5/issues/13595>
22132213

22142214
=item *
22152215

22162216
When building a 64-bit perl, an uninitialized memory read in B<miniperl.exe>,
22172217
used during the build process, could lead to a 4GB B<wperl.exe> being created.
22182218
This has now been fixed. (Note that B<perl.exe> itself was unaffected, but
22192219
obviously B<wperl.exe> would have been completely broken.)
2220-
[L<perl #121471|https://rt.perl.org/Public/Bug/Display.html?id=121471>]
2220+
L<[GH #13677]|https://github.com/Perl/perl5/issues/13677>
22212221

22222222
=item *
22232223

@@ -2226,30 +2226,30 @@ This was previously broken due to an incorrect definition of DllMain() in one
22262226
of perl's source files. Earlier B<gcc> versions were also affected when using
22272227
version 4 of the w32api package. Versions of B<gcc> available from
22282228
L<http://mingw-w64.sourceforge.net/> were not affected.
2229-
[L<perl #121643|https://rt.perl.org/Public/Bug/Display.html?id=121643>]
2229+
L<[GH #13733]|https://github.com/Perl/perl5/issues/13733>
22302230

22312231
=item *
22322232

22332233
The test harness now has no failures when perl is built on a FAT drive with the
22342234
Windows OS on an NTFS drive.
2235-
[L<perl #21442|https://rt.perl.org/Public/Bug/Display.html?id=21442>]
2235+
L<[GH #6348]|https://github.com/Perl/perl5/issues/6348>
22362236

22372237
=item *
22382238

22392239
When cloning the context stack in fork() emulation, Perl_cx_dup()
22402240
would crash accessing parameter information for context stack entries
22412241
that included no parameters, as with C<&foo;>.
2242-
[L<perl #121721|https://rt.perl.org/Public/Bug/Display.html?id=121721>]
2242+
L<[GH #13763]|https://github.com/Perl/perl5/issues/13763>
22432243

22442244
=item *
22452245

22462246
Introduced by
2247-
L<perl #113536|https://rt.perl.org/Public/Bug/Display.html?id=113536>, a memory
2247+
L<[GH #12161]|https://github.com/Perl/perl5/issues/12161>, a memory
22482248
leak on every call to C<system> and backticks (C< `` >), on most Win32 Perls
22492249
starting from 5.18.0 has been fixed. The memory leak only occurred if you
22502250
enabled pseudo-fork in your build of Win32 Perl, and were running that build on
22512251
Server 2003 R2 or newer OS. The leak does not appear on WinXP SP3.
2252-
[L<perl #121676|https://rt.perl.org/Public/Bug/Display.html?id=121676>]
2252+
L<[GH #13741]|https://github.com/Perl/perl5/issues/13741>
22532253

22542254
=back
22552255

@@ -3591,7 +3591,7 @@ Fixed a crash when destroying a self-referencing GLOB. [perl #121242]
35913591
=item *
35923592

35933593
L<IO::Socket> is known to fail tests on AIX 5.3. There is
3594-
L<a patch|https://rt.perl.org/Ticket/Display.html?id=120835> in the request
3594+
L<a patch|https://github.com/Perl/perl5/issues/13484> in the request
35953595
tracker, #120835, which may be applied to future releases.
35963596

35973597
=item *

pod/perl5201delta.pod

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ below.
2727
An optimization to avoid problems with COW and deliberately overallocated PVs
2828
has been disabled because it interfered with another, more important,
2929
optimization, causing a slowdown on some platforms.
30-
L<[perl #121975]|https://rt.perl.org/Ticket/Display.html?id=121975>
30+
L<[GH #13878]|https://github.com/Perl/perl5/issues/13878>
3131

3232
=item *
3333

3434
Returning a string from a lexical variable could be slow in some cases. This
3535
has now been fixed.
36-
L<[perl #121977]|https://rt.perl.org/Ticket/Display.html?id=121977>
36+
L<[GH #13880]|https://github.com/Perl/perl5/issues/13880>
3737

3838
=back
3939

@@ -80,7 +80,7 @@ The PathTools module collection has been upgraded from version 3.47 to 3.48.
8080

8181
Fallbacks are now in place when cross-compiling for Android and
8282
C<$Config::Config{sh}> is not yet defined.
83-
L<[perl #121963]|https://rt.perl.org/Ticket/Display.html?id=121963>
83+
L<[GH #13872]|https://github.com/Perl/perl5/issues/13872>
8484

8585
=item *
8686

@@ -108,7 +108,7 @@ External libraries and Perl may have different ideas of what the locale is.
108108
This is problematic when parsing version strings if the locale's numeric
109109
separator has been changed. Version parsing has been patched to ensure it
110110
handles the locales correctly.
111-
L<[perl #121930]|https://rt.perl.org/Ticket/Display.html?id=121930>
111+
L<[GH #13863]|https://github.com/Perl/perl5/issues/13863>
112112

113113
=back
114114

@@ -124,7 +124,7 @@ L<[perl #121930]|https://rt.perl.org/Ticket/Display.html?id=121930>
124124

125125
C<av_len> - Emphasize that this returns the highest index in the array, not the
126126
size of the array.
127-
L<[perl #120386]|https://rt.perl.org/Ticket/Display.html?id=120386>
127+
L<[GH #13377]|https://github.com/Perl/perl5/issues/13377>
128128

129129
=item *
130130

@@ -134,7 +134,7 @@ Note that C<SvSetSV> doesn't do set magic.
134134

135135
C<sv_usepvn_flags> - Fix documentation to mention the use of C<NewX> instead of
136136
C<malloc>.
137-
L<[perl #121869]|https://rt.perl.org/Ticket/Display.html?id=121869>
137+
L<[GH #13835]|https://github.com/Perl/perl5/issues/13835>
138138

139139
=item *
140140

@@ -154,25 +154,25 @@ Clarify the meaning of C<-B> and C<-T>.
154154

155155
C<-l> now notes that it will return false if symlinks aren't supported by the
156156
file system.
157-
L<[perl #121523]|https://rt.perl.org/Ticket/Display.html?id=121523>
157+
L<[GH #13695]|https://github.com/Perl/perl5/issues/13695>
158158

159159
=item *
160160

161161
Note that C<each>, C<keys> and C<values> may produce different orderings for
162162
tied hashes compared to other perl hashes.
163-
L<[perl #121404]|https://rt.perl.org/Ticket/Display.html?id=121404>
163+
L<[GH #13650]|https://github.com/Perl/perl5/issues/13650>
164164

165165
=item *
166166

167167
Note that C<exec LIST> and C<system LIST> may fall back to the shell on Win32.
168168
Only C<exec PROGRAM LIST> and C<system PROGRAM LIST> indirect object syntax
169169
will reliably avoid using the shell. This has also been noted in L<perlport>.
170-
L<[perl #122046]|https://rt.perl.org/Ticket/Display.html?id=122046>
170+
L<[GH #13907]|https://github.com/Perl/perl5/issues/13907>
171171

172172
=item *
173173

174174
Clarify the meaning of C<our>.
175-
L<[perl #122132]|https://rt.perl.org/Ticket/Display.html?id=122132>
175+
L<[GH #13938]|https://github.com/Perl/perl5/issues/13938>
176176

177177
=back
178178

@@ -183,7 +183,7 @@ L<[perl #122132]|https://rt.perl.org/Ticket/Display.html?id=122132>
183183
=item *
184184

185185
Explain various ways of modifying an existing SV's buffer.
186-
L<[perl #116925]|https://rt.perl.org/Ticket/Display.html?id=116925>
186+
L<[GH #12813]|https://github.com/Perl/perl5/issues/12813>
187187

188188
=back
189189

@@ -256,7 +256,7 @@ Information about Unicode behaviour has been added.
256256

257257
Building Perl no longer writes to the source tree when configured with
258258
F<Configure>'s B<-Dmksymlinks> option.
259-
L<[perl #121585]|https://rt.perl.org/Ticket/Display.html?id=121585>
259+
L<[GH #13712]|https://github.com/Perl/perl5/issues/13712>
260260

261261
=back
262262

@@ -314,13 +314,13 @@ to do so, before returning to Perl.
314314

315315
A bug has been fixed where zero-length assertions and code blocks inside of a
316316
regex could cause C<pos> to see an incorrect value.
317-
L<[perl #122460]|https://rt.perl.org/Ticket/Display.html?id=122460>
317+
L<[GH #14016]|https://github.com/Perl/perl5/issues/14016>
318318

319319
=item *
320320

321321
Using C<s///e> on tainted utf8 strings could issue bogus "Malformed UTF-8
322322
character (unexpected end of string)" warnings. This has now been fixed.
323-
L<[perl #122148]|https://rt.perl.org/Ticket/Display.html?id=122148>
323+
L<[GH #13948]|https://github.com/Perl/perl5/issues/13948>
324324

325325
=item *
326326

0 commit comments

Comments
 (0)