app: s/sprintf/g_snprintf/ in xcf_save_image()
[gimp.git] / pdb / stddefs.pdb
blob9c7a7ac49d5e08333a1c947e511253385a9ae06f
1 # GIMP - The GNU Image Manipulation Program
2 # Copyright (C) 1998-2003 Manish Singh <yosh@gimp.org>
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
17 # Boilerplate PDB stuff
19 sub std_pdb_misc {
20     $author = $copyright = 'Spencer Kimball & Peter Mattis';
21     $date   = '1995-1996';
24 sub contrib_pdb_misc {
25     my $a = shift;
26     my $e = shift;
27     my $d = shift;
28     my $s = shift;
30     if ($e eq '') {
31         $author = "$a";
32     } else {
33         $author = "$a <$e>";
34     }
36     $copyright = "$a";
37     $date = "$d";
39     if ($s) {
40         $since = "$s";
41     }
44 sub adam_pdb_misc {
45     contrib_pdb_misc('Adam D. Moss', '', @_);
48 sub adrian_pdb_misc {
49     contrib_pdb_misc('Adrian Likins', 'adrian@gimp.org', @_);
52 sub adeath_pdb_misc {
53     contrib_pdb_misc('Alexia Death', '', @_);
56 sub andy_pdb_misc {
57     contrib_pdb_misc('Andy Thomas', '', @_);
60 sub austin_pdb_misc {
61     contrib_pdb_misc('Austin Donnelly', '', @_);
64 sub barak_pdb_misc {
65     contrib_pdb_misc('Barak Itkin', 'lightningismyname@gmail.com', @_);
68 sub bill_pdb_misc {
69     contrib_pdb_misc('Bill Skaggs', 'weskaggs@primate.ucdavis.edu', @_);
72 sub david_pdb_misc {
73     contrib_pdb_misc('David Gowers', '', @_);
76 sub ejs_pdb_misc {
77     contrib_pdb_misc('Ed Swartz', '', @_);
80 sub ell_pdb_misc {
81     contrib_pdb_misc('Ell', '', @_);
84 sub federico_pdb_misc {
85     contrib_pdb_misc('Federico Mena Quintero', '', @_);
88 sub jay_pdb_misc {
89     contrib_pdb_misc('Jay Cox', '', @_);
92 sub jehan_pdb_misc {
93     contrib_pdb_misc('Jehan', '', @_);
96 sub joao_pdb_misc {
97     contrib_pdb_misc('Jo\xc3\xa3o S. O. Bueno', '', @_);
100 sub josh_pdb_misc {
101     contrib_pdb_misc('Josh MacDonald', '', @_);
104 sub kevins_pdb_misc {
105     contrib_pdb_misc('Kevin Sookocheff', '', @_);
108 sub larry_pdb_misc {
109     contrib_pdb_misc('Larry Ewing', '', @_);
112 sub marc_pdb_misc {
113     contrib_pdb_misc('Marc Lehmann', '', @_);
116 sub marcus_pdb_misc {
117     contrib_pdb_misc('Marcus Heese', 'heese@cip.ifi.lmu.de', @_);
120 sub martin_pdb_misc {
121     contrib_pdb_misc('Martin Nordholts', '', @_);
124 sub mitch_pdb_misc {
125     contrib_pdb_misc('Michael Natterer', 'mitch@gimp.org', @_);
128 sub neo_pdb_misc {
129     contrib_pdb_misc('Sven Neumann', 'sven@gimp.org', @_);
132 sub nick_pdb_misc {
133     contrib_pdb_misc('Nick Lamb', '', @_);
136 sub raphael_pdb_misc {
137     contrib_pdb_misc('Rapha\xc3\xabl Quinet', 'raphael@gimp.org', @_);
140 sub rock_pdb_misc {
141     contrib_pdb_misc('Nathan Summers', 'rock@gimp.org', @_);
144 sub seth_pdb_misc {
145     contrib_pdb_misc('Seth Burgess', '', @_);
148 sub shlomi_pdb_misc {
149     contrib_pdb_misc('Shlomi Fish', 'shlomif@iglu.org.il', @_);
152 sub simon_pdb_misc {
153     contrib_pdb_misc('Simon Budig', '', @_);
156 sub sylvain_pdb_misc {
157     contrib_pdb_misc('Sylvain Foret', '', @_);
160 sub wolfgang_pdb_misc {
161     contrib_pdb_misc('Wolfgang Hofer', '', @_);
164 sub yosh_pdb_misc {
165     contrib_pdb_misc('Manish Singh', '', @_);
168 sub std_pdb_deprecated {
169     if (@_) {
170         $blurb = $help = '';
171         $deprecated = "@_";
172     } else {
173         $blurb = $help = '';
174         $deprecated = "NONE";
175     }
176     $author = $copyright = $date = '';
179 sub std_pdb_compat {
180     $author = $copyright = "Compatibility procedure. Please see '@_' for credits.";
183 sub std_pdb_debug {
184     $help .= <<'HELP';
187 This is a debug utility procedure. It is subject to change at any point,
188 and should not be used in production.
189 HELP