X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperltodo.pod;h=8626f2a9b5e43adc0d1a538a4054487c1b504e41;hb=749904bf2195f9729fc311a9dd49d33ae8ecad02;hp=a19dfd87ee31a240a555d7f0abcc1f39e6ef200a;hpb=613693f3872d8e1bdd53ae751887e7aa293ce3bd;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perltodo.pod b/pod/perltodo.pod index a19dfd8..8626f2a 100644 --- a/pod/perltodo.pod +++ b/pod/perltodo.pod @@ -4,683 +4,427 @@ perltodo - Perl TO-DO List =head1 DESCRIPTION -This is a list of wishes for Perl. Send updates to -I. If you want to work on any of these -projects, be sure to check the perl5-porters archives for past ideas, -flames, and propaganda. This will save you time and also prevent you -from implementing something that Larry has already vetoed. One set -of archives may be found at: +This is a list of wishes for Perl. The tasks we think are smaller or easier +are listed first. Anyone is welcome to work on any of these, but it's a good +idea to first contact I to avoid duplication of +effort. By all means contact a pumpking privately first if you prefer. + +Whilst patches to make the list shorter are most welcome, ideas to add to +the list are also encouraged. Check the perl5-porters archives for past +ideas, and any discussion about them. One set of archives may be found at: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/ -=head1 To do during 5.6.x +What can we offer you in return? Fame, fortune, and everlasting glory? Maybe +not, but if your patch is incorporated, then we'll add your name to the +F file, which ships in the official distribution. How many other +programming languages offer you 1 line of immortality? -=head2 Support for I/O disciplines +=head1 The roadmap to 5.10 -C provides this, but the interface could be a lot more -straightforward. +The roadmap to 5.10 envisages feature based releases, as various items in this +TODO are completed. -=head2 Autoload bytes.pm +=head2 Needed for the final 5.10.0 release -When the lexer sees, for instance, C, it should -automatically load the C pragma. +Review perlguts. Significant changes have occured since 5.8, and we can't +release a new version without making sure these are covered. -=head2 Make "\u{XXXX}" et al work +=head1 Tasks that only need Perl knowledge -Danger, Will Robinson! Discussing the semantics of C<"\x{F00}">, -C<"\xF00"> and C<"\U{F00}"> on P5P I lead to a long and boring -flamewar. +=head2 common test code for timed bail out -=head2 Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags) +Write portable self destruct code for tests to stop them burning CPU in +infinite loops. This needs to avoid using alarm, as some of the tests are +testing alarm/sleep or timers. -For displaying PVs with control characters, embedded nulls, and Unicode. -This would be useful for printing warnings, or data and regex dumping, -not_a_number(), and so on. +=head2 POD -> HTML conversion in the core still sucks -Requirements: should handle both byte and UTF8 strings. isPRINT() -characters printed as-is, character less than 256 as \xHH, Unicode -characters as \x{HHH}. Don't assume ASCII-like, either, get somebody -on EBCDIC to test the output. +Which is crazy given just how simple POD purports to be, and how simple HTML +can be. It's not actually I simple as it sounds, particularly with the +flexibility POD allows for C<=item>, but it would be good to improve the +visual appeal of the HTML generated, and to avoid it having any validation +errors. See also L, as the layout of installation tree +is needed to improve the cross-linking. -Possible options, controlled by the flags: -- whitespace (other than ' ' of isPRINT()) printed as-is -- use isPRINT_LC() instead of isPRINT() -- print control characters like this: "\cA" -- print control characters like this: "^A" -- non-PRINTables printed as '.' instead of \xHH -- use \OOO instead of \xHH -- use the C/Perl-metacharacters like \n, \t -- have a maximum length for the produced string (read it from *lenp) -- append a "..." to the produced string if the maximum length is exceeded -- really fancy: print unicode characters as \N{...} +The addition of C and its related modules may make this task +easier to complete. -NOTE: pv_display(), pv_uni_display(), sv_uni_display() are already -doing something like the above. +=head2 Parallel testing -=head2 Overloadable regex assertions +(This probably impacts much more than the core: also the Test::Harness +and TAP::* modules on CPAN.) -This may or may not be possible with the current regular expression -engine. The idea is that, for instance, C<\b> needs to be -algorithmically computed if you're dealing with Thai text. Hence, the -B<\b> assertion wants to be overloaded by a function. +The core regression test suite is getting ever more comprehensive, which has +the side effect that it takes longer to run. This isn't so good. Investigate +whether it would be feasible to give the harness script the B