X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=maint%2Fgen_pod_authors;h=5745b2bcef3b06c6f7221d4128f372c0b4b4921f;hb=f06eb015d1f5a43c9fc6c44e6d0b2f73a5aca1e0;hp=0bfa32c7233e193cb04ababb9ac1b8a9f6f5aff8;hpb=3440100bc0455cf0e7ccbba03754a29ad26ec6d1;p=dbsrgits%2FDBIx-Class.git diff --git a/maint/gen_pod_authors b/maint/gen_pod_authors index 0bfa32c..5745b2b 100755 --- a/maint/gen_pod_authors +++ b/maint/gen_pod_authors @@ -10,6 +10,9 @@ my @known_authors = do { map { chomp; ( ( ! $_ or $_ =~ /^\s*\#/ ) ? () : $_ ) } <$fh>; } or die "Known AUTHORS file seems empty... can't happen..."; +$_ =~ s!^ ( [^\:]+ ) : \s !B<$1>:!x + for @known_authors; + $_ =~ s!( \b https? :// [^\s\>]+ )!L<$1|$1>!x for @known_authors;