summaryrefslogtreecommitdiff
path: root/AUTHORS
Commit message (Collapse)AuthorAgeFilesLines
* added Chas. Owens to AUTHORSDavid Golden2010-06-091-0/+1
|
* Add David Caldwell to AUTHORSDavid Golden2010-05-221-0/+1
|
* Update AUTHORS/checkAUTHORSJesse Vincent2010-05-031-0/+2
|
* shift; optimizationRuslan Zakirov2010-05-031-0/+1
|
* Update Steffen Mueller's email address in AUTHORSSteffen Mueller2010-04-211-1/+1
|
* Adding Curtis Jewell to AUTHORS.Curtis Jewell2010-04-021-0/+1
|
* added Aristotle Pagaltzis to AUTHORSDavid Golden2010-03-241-0/+1
|
* Updated AUTHORS file to be current with checkAUTHORS outputJesse Vincent2010-03-141-0/+1
|
* Change my email address from work to homeSteve Hay2010-02-171-1/+1
|
* Update AUTHORS and Porting/checkAUTHORS.pl with new names and aliasesSteve Hay2010-02-141-0/+1
|
* update Mark Jason Dominus's name in AUTHORSRicardo Signes2010-01-211-1/+1
|
* update AUTHORS for new commits, spellingRicardo Signes2010-01-171-1/+3
|
* Update AUTHORS file for 5.11.3Jesse Vincent2009-12-201-0/+3
|
* Sync AUTHORS and Porting/checkAUTHORS.pl with ChangelogsH.Merijn Brand2009-11-191-17/+19
|
* Bare readdir in while loop now sets $_Brad Gilbert2009-10-221-0/+1
|
* Added four new AUTHORS who hadn't yet been acknowledgedJesse Vincent2009-10-181-0/+4
|
* Ran into Bert Dvornik at a cafe - updated his AUTHORS file addressJesse Vincent2009-10-181-1/+1
|
* Porting/checkAUTHORS.pl now runs cleanJesse Vincent2009-10-061-1/+0
|
* Adding ikegami to AUTHORSEric Brine2009-10-061-0/+1
| | | | Message-ID: <f86994700910051044p6ef5e09dpf0f058714c2d1e6@mail.gmail.com>
* AUTHORS updatedJesse Vincent2009-10-021-0/+4
|
* Change my email addressRafael Garcia-Suarez2009-09-211-1/+1
|
* needed something to changeYves Orton2009-09-071-1/+1
|
* Add Bob Wilkinson's email address to AUTHORSDavid Golden2009-08-141-1/+1
|
* Now down to 17 unknown addresses which "should" be in the authors file.Jesse Vincent2009-08-051-2/+12
| | | | | Extensive googling and other sleuthing helped resolve the names of many people previously listed as "unknown"
* The AUTHORS file is now short only about thirty 'real names'Jesse Vincent2009-08-041-3/+33
|
* Now down to 50 addresses in the git logs who aren't in the AUTHORS file,Jesse Vincent2009-08-031-1/+3
| | | | All have only one patch. Many of them are junk addresses.
* Continued work to get Porting/checkAUTHORS.pl to a point of sanityJesse Vincent2009-08-031-9/+17
|
* Further work to cut down the unattributed authors in the AUTHORS file.Jesse Vincent2009-08-031-17/+44
| | | | We're now down to about 100 unattributed authors
* Yuval Kogman's address was special cased for non-inclusion in authors for no ↵Jesse Vincent2009-08-031-1/+1
| | | | | | | reason Yuval confirmed for me that he would like his email address included in AUTHORS
* Updated AUTHORS to include all contributors with more than two patches.Jesse Vincent2009-08-031-0/+13
| | | | | | | | | Now that we have lots and lots of pre-p4 history, we know about many more porters whose identities had previously been lost in the mists of time. Patches to porting/checkAUTHORS.pl and AUTHORS to add the remaining missing porters or mappings would be most welcome.
* Updated Ingy's entry in Authors to match his legal name changeJesse Vincent2009-08-031-1/+1
|
* needed something to change to test patch mailing listYves Orton2009-07-271-1/+1
|
* patch submission(AUTHORS)Adam Russell2009-07-161-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Re-submitting this patch. Adding myself and Osvaldo Villalon. Best Regards, Adam ----- Original Message ----- From: "Jonathan Stowe" <jns@integration-house.com> To: "Adam Russell" <arussell@cs.uml.edu> Cc: <perl5-porters@perl.org> Sent: Friday, July 03, 2009 8:14 AM Subject: Re: patch submission(AUTHORS) > Hi, > that patch appears to made against a really old > version of the AUTHORS > file as it seems to be reverting some changes made > last year (my > e-mail address for instance :-) > > 2009/7/3 Adam Russell <arussell@cs.uml.edu>: >> Added myself(Adam Russell) and Osvaldo Villalon. > > > > -- > http://rabidgravy.com/ - Music > http://gellyfish.co.uk/ - Everything else > >From a3b77323290dc0da9da193cb5ac3178c1f6708db Mon Sep 17 00:00:00 2001 From: Adam Russell <arussell@cs.uml.edu> Date: Wed, 15 Jul 2009 00:59:35 -0400 Subject: [PATCH] Adding Adam Russell and Osvaldo Villalon(recent Symbian contributors).
* Update my address.Abhijit Menon-Sen2009-07-141-1/+1
|
* do/require don't treat '.\foo' or '..\foo' as "absolute paths" on Windows.Christoph Lamprecht2009-05-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Both 'do' and 'require' treat paths *explicitly* relative to the current directory (starting with './' or '../') as a special form of absolute path. That means they can be loaded directly and don't need to be resolved via @INC, so they don't rely on '.' being in @INC (unless running in taint mode). This behavior is "documented" in the P5P thread "Coderefs in @INC" from 2002. The code is missing special treatment of backslashes on Windows so that '.\\' and '..\\' are handled in the same manner. This change fixes http://rt.perl.org/rt3/Public/Bug/Display.html?id=63492 (Note that the references to taint mode in the bug report are only relevant as far as taint mode removes '.' from @INC). This change also fixes the following Scalar-List-Utils bug report: http://rt.cpan.org/Public/Bug/Display.html?id=25430 The Scalar::Util test failure in t/p_tainted.t only manifests itself under Test::Harness 3, and only outside the Perl core: * Test::Harness 2 (erroneously) puts '-I.' on the commandline in taint mode and runs something like this: `perl -I. t/p_tainted.t` so '.\t\tainted.t' can be found via '.' in @INC. * Core Perl runs something like this from the t/ directory: `..\perl.exe -I../lib ../ext/List-Util/t/p_tainted.t` so '.\..\ext\List-Util\t\tained.t' can be found via '../lib' in @INC. Signed-off-by: Jan Dubois <jand@activestate.com>
* Resurrect the Changes file as a simple guide to finding changesDavid Mitchell2009-05-121-6/+6
|
* Add David Golden (DAGOLDEN) to AUTHORSDavid Golden2009-01-071-0/+1
|
* Add Rainer Tammer and Torsten Schönfeld to AUTHORS.Nicholas Clark2008-11-251-0/+2
| | | p4raw-id: //depot/perl@34910
* Add Tom Wyant to AUTHORS.Nicholas Clark2008-11-161-0/+1
| | | p4raw-id: //depot/perl@34843
* Add BinGOs to AUTHORS, and a second e-mail address for ShlomiNicholas Clark2008-10-211-0/+1
| | | p4raw-id: //depot/perl@34553
* Update Eddy Tan's address.Nicholas Clark2008-10-061-1/+1
| | | p4raw-id: //depot/perl@34466
* Correct address.Nicholas Clark2008-10-051-1/+1
| | | p4raw-id: //depot/perl@34460
* Most of the AUTHORS file already has hard tabs, so convert theNicholas Clark2008-10-051-31/+31
| | | | | remaining lines. p4raw-id: //depot/perl@34458
* All the volunteers who contributed to Paul Fenwick's project to helpNicholas Clark2008-10-051-0/+10
| | | | | | | write perl589delta.pod, who weren't already in the AUTHORS file. Big thanks to all of them (including the 6 already in it). Still not to late to book your place in eternity - contact Paul for details. p4raw-id: //depot/perl@34457
* Update AUTHORSSteve Hay2008-09-091-2/+12
| | | p4raw-id: //depot/perl@34324
* Update gellyfish's e-mail.Nicholas Clark2008-09-081-1/+1
| | | p4raw-id: //depot/perl@34318
* Re: helping 5.8.9Steffen Mueller2008-05-101-1/+3
| | | | | | Message-ID: <20080504193835.6906.qmail@lists.develooper.com> Date: Sun, 04 May 2008 21:38:38 +0200 p4raw-id: //depot/perl@33799
* Fix embarrassing typoRafael Garcia-Suarez2007-12-201-1/+1
| | | p4raw-id: //depot/perl@32664
* Two more people in AUTHORSRafael Garcia-Suarez2007-12-181-0/+2
| | | p4raw-id: //depot/perl@32640
* Update AUTHORSRafael Garcia-Suarez2007-12-171-0/+4
| | | p4raw-id: //depot/perl@32627