X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperltodo.pod;h=2ab61f30521231de933ea77bc5c2cc7d104cd57c;hb=002b9267a385cf8ff0e7534241cdf3798da8636c;hp=0f4ea6353dfc906ea3b5f013dad86f5dc9da8448;hpb=3298bd4d0902a683adad1b8abafe8009c3a99cd9;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perltodo.pod b/pod/perltodo.pod index 0f4ea63..2ab61f3 100644 --- a/pod/perltodo.pod +++ b/pod/perltodo.pod @@ -4,810 +4,674 @@ 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. - http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/ - -=head1 To do during 5.6.x - -=head2 Support for I/O disciplines - -C provides this, but the interface could be a lot more -straightforward. - -=head2 Autoload bytes.pm - -When the lexer sees, for instance, C, it should -automatically load the C pragma. - -=head2 Make "\u{XXXX}" et al work - -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 Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags) - -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. - -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. - -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{...} - -=head2 Overloadable regex assertions +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: -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. + http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/ -=head2 Unicode case mappings +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? - Case Mappings? http://www.unicode.org/unicode/reports/tr21/ +=head1 The roadmap to 5.10 -=head2 Unicode regular expression character classes +The roadmap to 5.10 envisages feature based releases, as various items in this +TODO are completed. -They have some tricks Perl doesn't yet implement like character -class subtraction. +=head2 Needed for a 5.9.3 release - http://www.unicode.org/unicode/reports/tr18/ +=over -=head2 use Thread for iThreads +=item * +Implement L -Artur Bergman's C module is a start on this, but needs to -be more mature. +=back -=head2 make perl_clone optionally clone ops +=head2 Needed for a 5.9.4 release -So that pseudoforking, mod_perl, iThreads and nvi will work properly -(but not as efficiently) until the regex engine is fixed to be threadsafe. +=over -=head2 Work out exit/die semantics for threads +=item * +Review assertions. Review syntax to combine assertions. Can assertions take +advantage of the lexical pragams work? L -=head2 Typed lexicals for compiler +=back -=head2 Compiler workarounds for Win32 +=head2 Needed for a 5.9.5 release -=head2 AUTOLOADing in the compiler +=over -=head2 Fixing comppadlist when compiling +=item * +Implement L -=head2 Cleaning up exported namespace +=item * +Implement L -=head2 Complete signal handling +=back -Add C to opcodes which loop; replace C with -C; check C for signal safety. +=head2 Needed for a 5.9.6 release -=head2 Out-of-source builds +Stabilisation. If all goes well, this will be the equivalent of a 5.10-beta. -This was done for 5.6.0, but needs reworking for 5.7.x +=head1 Tasks that only need Perl knowledge -=head2 POSIX realtime support +=head2 common test code for timed bail out -POSIX 1003.1 1996 Edition support--realtime stuff: POSIX semaphores, -message queues, shared memory, realtime clocks, timers, signals (the -metaconfig units mostly already exist for these) +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. -=head2 UNIX98 support +=head2 POD -> HTML conversion in the core still sucks -Reader-writer locks, realtime/asynchronous IO +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. -=head2 IPv6 Support +The addition of C and its related modules may make this task +easier to complete. -There are non-core modules, such as C, but these will need -integrating when IPv6 actually starts to really happen. See RFC 2292 -and RFC 2553. +=head2 Parallel testing -=head2 Long double conversion +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