Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | change warn.t to use test.pl | Father Chrysostomos | 2010-09-16 | 1 | -11/+13 |
| | |||||
* | Add info regarding AIX 7.1 | Rainer Tammer | 2010-09-16 | 1 | -32/+34 |
| | |||||
* | add hv_copy_hints_hv and save_hints to the API | Zefram | 2010-09-16 | 12 | -14/+114 |
| | |||||
* | 'make regen' really shouldn't be special | Jim Cromie | 2010-09-16 | 1 | -11/+0 |
| | | | | | Revert 'make regen' special case advice of 94e892a68016a417b1b324213d39309b8b744d0e, leave the minor whitespace cleanup. | ||||
* | Fix a pod link I broke | Florian Ragwitz | 2010-09-16 | 1 | -2/+3 |
| | | | | Oooops! | ||||
* | if.pm is upstream blead | Florian Ragwitz | 2010-09-16 | 4 | -4/+4 |
| | |||||
* | CPAN is UPSTREAM for Digest and Digest-MD5 | Gisle Aas | 2010-09-15 | 1 | -2/+2 |
| | |||||
* | Add Rob to AUTHORS | Florian Ragwitz | 2010-09-15 | 1 | -0/+1 |
| | |||||
* | Update AUTOLOAD section in perlsub | Rob Hoelz | 2010-09-15 | 1 | -1/+5 |
| | | | | | AUTOLOAD documentation didn't mention that if AUTOLOAD is implemented as an XSUB, $AUTOLOAD is not populated. | ||||
* | perlunicode.pod: Clarify user-defined casing. | Karl Williamson | 2010-09-15 | 1 | -30/+45 |
| | | | | | | I ran some experiments and found out that the user-defined casing worked in ways that were surprises to me. And thus, this brutally lays out its shortcomings. | ||||
* | PATCH: regex longjmp flaws | Karl Williamson | 2010-09-15 | 2 | -2/+6 |
| | | | | | | | | The netbsd - 5.0.2 compiler pointed out that the recent changes to add longjmps to speed up some regex compilations can result in clobbering a few values. These depend on the compiled code, and so didn't show up in other compiler's warnings. This patch reinitializes them after a longjmp. | ||||
* | Add new_ok() to create and test objects. From Test::More. | Michael G. Schwern | 2010-09-15 | 1 | -0/+27 |
| | |||||
* | Add note() to put informational notes into the TAP (from Test::More) | Michael G. Schwern | 2010-09-15 | 1 | -4/+14 |
| | |||||
* | Add done_testing from Test::More | Michael G. Schwern | 2010-09-15 | 1 | -0/+11 |
| | |||||
* | Shut up "used only once" warnings. | Michael G. Schwern | 2010-09-15 | 1 | -2/+6 |
| | | | | Not very elegant, but it avoids using $^W or warnings.pm. | ||||
* | Merge branch 'briandfoy/perlfaq' of ssh://perl5.git.perl.org/perl into ↵ | brian d foy | 2010-09-15 | 0 | -0/+0 |
|\ | | | | | | | briandfoy/perlfaq | ||||
| * | Merge branch 'briandfoy/perlfaq' of ssh://perl5.git.perl.org/perl into ↵ | brian d foy | 2010-09-14 | 0 | -0/+0 |
| |\ | | | | | | | | | | briandfoy/perlfaq | ||||
| | * | * Add multilevel hash exists() to perlfaq4 | brian d foy | 2010-09-14 | 2 | -15/+90 |
| | | | | | | | | | | | | | | | | | | | | | How can I check if a keys exists in a multilevel hash? How is it we got this far without ever answering this FAQ? :) | ||||
| | * | * Added a smart match example to perlfaq6 | brian d foy | 2010-09-14 | 1 | -30/+36 |
| | | | | | | | | | | | | | | | | | | | | | How do I efficiently match many regular expressions at once? It's almost trivial with smart matching. Barely worth asking anymore. | ||||
| | * | More whitespace cleanups | brian d foy | 2010-09-12 | 1 | -30/+30 |
| | | | |||||
| | * | Whitespace cleanups | brian d foy | 2010-09-12 | 1 | -27/+27 |
| | | | |||||
| | * | perlfaq4: fix a minor grammar problem in the Y2K answer | brian d foy | 2010-09-01 | 1 | -1/+1 |
| | | | |||||
| | * | * Correct Higher Order Perl to Higher-Order Perl | brian d foy | 2010-08-22 | 2 | -13/+6 |
| | | | |||||
| | * | Fix trailing whitespace | brian d foy | 2010-08-21 | 4 | -19/+19 |
| | | | |||||
| | * | * Update Effective Perl Programming reference | brian d foy | 2010-08-21 | 1 | -3/+3 |
| | | | |||||
| | * | * How can I read in an entire file all at once? | brian d foy | 2010-08-21 | 1 | -8/+14 |
| | | | | | | | | | | | | + Incorporate a few suggestions from Uri | ||||
| | * | * How can I read in an entire file all at once? | brian d foy | 2010-08-21 | 1 | -2/+2 |
| | | | | | | | | | | | | * Modulate my assertions about File::Map | ||||
| | * | * How come when I open a file read-write it wipes it out? | brian d foy | 2010-08-21 | 1 | -21/+21 |
| | | | | | | | | | | | | | | | + adjust some code lines to come in under 80 columns + other minor formatting issues. | ||||
| | * | * How do I handle linked lists? | brian d foy | 2010-08-21 | 1 | -46/+16 |
| | | | | | | | | | | | | | | | + Steve Lembark makes interesting cases for perly linked lists, depending on the task. | ||||
| | * | * How can I write() into a string? | brian d foy | 2010-08-21 | 1 | -1/+48 |
| | | | | | | | | | | | | | | | | | | + Actually answer the question, now that we have filehandles to strings. + The swrite in perlform is no good anyway. | ||||
| | * | How do I make sure users can't enter values into a form that cause my CGI ↵ | brian d foy | 2010-08-21 | 1 | -2/+13 |
| | | | | | | | | | | | | | | | | | | | | | script to do bad things? + The CGI Meta FAQ is gone, so this needs a new answer | ||||
| | * | * My CGI script runs from the command line but not the browser. | brian d foy | 2010-08-21 | 1 | -18/+6 |
| | | | | | | | | | | | | | | | | | | + Tom's troubleshooting guide has disappeared in the perl.com move (I think). + The CGI Meta FAQ is not such a fresh resource | ||||
| | * | * How do I fetch/put an FTP file? | brian d foy | 2010-08-21 | 1 | -3/+14 |
| | | | | | | | | | | | | | | | + Net::FTP has been in core a long time l Please enter the commit message for your changes. Lines starting | ||||
* | | | Move book info to perlbook from perlfaq2 | brian d foy | 2010-09-15 | 2 | -224/+327 |
| | | | | | | | | | | | | | | | | | | | | | * Updated all the book info * Added some missing books * Don't call the Camel 'definitive' anymore, until we update it :) * There's more to do, but this is enough to now | ||||
* | | | Upgrade Math::BigRat from version 0.25 to 0.26 | Florian Ragwitz | 2010-09-15 | 15 | -403/+212 |
| | | | | | | | | | | | | | | | Lots of unnecessary test boilerplate has been removed, allowing us to remove the dist from both %abs and %temp_no_core in t/TEST. | ||||
* | | | We now include Safe version 2.28 | Florian Ragwitz | 2010-09-15 | 1 | -1/+1 |
| | | | |||||
* | | | Synchronize Module-CoreList's META.yml | Florian Ragwitz | 2010-09-15 | 1 | -10/+18 |
| | | | | | | | | | | | | I wish it would just be deleted. Apparently no one ever uses the one in blead. | ||||
* | | | Upgrade bignum from version 0.24 to 0.25 | Florian Ragwitz | 2010-09-15 | 5 | -5/+5 |
| | | | |||||
* | | | Bump $open::VERSION | Florian Ragwitz | 2010-09-15 | 2 | -1/+5 |
| | | | |||||
* | | | Upgrade Math::BigRat from version 0.24 to 0.25 | Florian Ragwitz | 2010-09-14 | 3 | -2/+6 |
| | | | |||||
* | | | Pod fix for perldelta | Florian Ragwitz | 2010-09-14 | 1 | -4/+0 |
| | | | |||||
* | | | perldelta up to a1bbdff | Florian Ragwitz | 2010-09-14 | 1 | -1/+42 |
|/ / | |||||
* | | * Add multilevel hash exists() to perlfaq4 | brian d foy | 2010-09-14 | 2 | -15/+90 |
| | | | | | | | | | | | | | | How can I check if a keys exists in a multilevel hash? How is it we got this far without ever answering this FAQ? :) | ||||
* | | * Added a smart match example to perlfaq6 | brian d foy | 2010-09-14 | 1 | -30/+36 |
| | | | | | | | | | | | | | | How do I efficiently match many regular expressions at once? It's almost trivial with smart matching. Barely worth asking anymore. | ||||
* | | More whitespace cleanups | brian d foy | 2010-09-14 | 1 | -30/+30 |
| | | |||||
* | | Whitespace cleanups | brian d foy | 2010-09-14 | 1 | -27/+27 |
| | | |||||
* | | perlfaq4: fix a minor grammar problem in the Y2K answer | brian d foy | 2010-09-14 | 1 | -1/+1 |
| | | |||||
* | | * Correct Higher Order Perl to Higher-Order Perl | brian d foy | 2010-09-14 | 2 | -13/+6 |
| | | |||||
* | | Fix trailing whitespace | brian d foy | 2010-09-14 | 4 | -19/+19 |
| | | |||||
* | | * Update Effective Perl Programming reference | brian d foy | 2010-09-14 | 1 | -3/+3 |
| | |