pdb: add barak_pdb_misc() instead of replicating the author information

This commit is contained in:
Michael Natterer 2010-09-14 14:38:35 +02:00
parent 309985d169
commit a885824f70
3 changed files with 7 additions and 12 deletions

View File

@ -163,10 +163,7 @@ Note: Setting the markup of a text layer using Pango's markup is not
supported for now.
HELP
$author = 'Barak Itkin <lightningismyname@gmail.com>';
$copyright = 'Barak Itkin';
$date = '2010';
$since = '2.8';
barak_pdb_misc('2010', '2.8');
@inargs = (
{ name => 'layer', type => 'layer',
@ -1162,10 +1159,7 @@ keeping it as a text layer and not converting it to a bitmap like
gimp_layer_resize() would do.
HELP
$author = 'Barak Itkin <lightningismyname@gmail.com>';
$copyright = 'Barak Itkin';
$date = '2009';
$since = '2.8';
barak_pdb_misc('2009', '2.8');
@inargs = (
{ name => 'layer', type => 'layer',

View File

@ -122,10 +122,7 @@ sub vectors_copy {
This procedure copies the specified vectors object and returns the copy.
HELP
$author = 'Barak Itkin <lightningismyname@gmail.com>';
$copyright = 'Barak Itkin';
$date = '2008';
$since = '2.6';
barak_pdb_misc('2008', '2.6');
@inargs = (
{ name => 'vectors', type => 'vectors',

View File

@ -57,6 +57,10 @@ sub austin_pdb_misc {
contrib_pdb_misc('Austin Donnelly', '', @_);
}
sub barak_pdb_misc {
contrib_pdb_misc('Barak Itkin', 'lightningismyname@gmail.com', @_);
}
sub bill_pdb_misc {
contrib_pdb_misc('Bill Skaggs', 'weskaggs@primate.ucdavis.edu', @_);
}