annotate scripts/miscellaneous/bug_report.m @ 13977:08ae07e40d4f

Only run uimenu tests if FLTK toolkit is available (Bug #34908) * graphics_toolkit.m: Correct @deftypefn to @deftypefnx for Texinfo to build * allchild.m: Eliminate unnecessary for loop. Only run test if FLTK toolkit is available. * findall.m, uimenu.m: Only run test if FLTK toolkit is available.
author Rik <octave@nomad.inbox5.com>
date Fri, 02 Dec 2011 14:48:45 -0800
parents bde2c81aa2e6
children 72c96de7a403
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11523
fd0a3ac60b0e update copyright notices
John W. Eaton <jwe@octave.org>
parents: 11015
diff changeset
1 ## Copyright (C) 1994-2011 John W. Eaton
2313
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2311
diff changeset
2 ##
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2311
diff changeset
3 ## This file is part of Octave.
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2311
diff changeset
4 ##
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2311
diff changeset
5 ## Octave is free software; you can redistribute it and/or modify it
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2311
diff changeset
6 ## under the terms of the GNU General Public License as published by
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5431
diff changeset
7 ## the Free Software Foundation; either version 3 of the License, or (at
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5431
diff changeset
8 ## your option) any later version.
2313
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2311
diff changeset
9 ##
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2311
diff changeset
10 ## Octave is distributed in the hope that it will be useful, but
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2311
diff changeset
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2311
diff changeset
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2311
diff changeset
13 ## General Public License for more details.
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2311
diff changeset
14 ##
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2311
diff changeset
15 ## You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5431
diff changeset
16 ## along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5431
diff changeset
17 ## <http://www.gnu.org/licenses/>.
796
d6965f5c411a [project @ 1994-10-13 04:43:57 by jwe]
jwe
parents:
diff changeset
18
3449
858695b3ed62 [project @ 2000-01-18 04:08:59 by jwe]
jwe
parents: 3141
diff changeset
19 ## -*- texinfo -*-
858695b3ed62 [project @ 2000-01-18 04:08:59 by jwe]
jwe
parents: 3141
diff changeset
20 ## @deftypefn {Function File} {} bug_report ()
11015
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
21 ## Display information about how to submit bug reports for Octave.
3449
858695b3ed62 [project @ 2000-01-18 04:08:59 by jwe]
jwe
parents: 3141
diff changeset
22 ## @end deftypefn
796
d6965f5c411a [project @ 1994-10-13 04:43:57 by jwe]
jwe
parents:
diff changeset
23
2314
949ab8eba8bc [project @ 1996-07-12 03:58:02 by jwe]
jwe
parents: 2313
diff changeset
24 ## Author: jwe
949ab8eba8bc [project @ 1996-07-12 03:58:02 by jwe]
jwe
parents: 2313
diff changeset
25
2311
2b5788792cad [project @ 1996-07-11 20:18:38 by jwe]
jwe
parents: 2303
diff changeset
26 function bug_report ()
796
d6965f5c411a [project @ 1994-10-13 04:43:57 by jwe]
jwe
parents:
diff changeset
27
11015
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
28 puts ("\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
29 puts (" Bug reports play an essential role in making Octave\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
30 puts (" reliable. Please use the Octave bug tracker at\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
31 puts ("\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
32 puts (" http://bugs.octave.org\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
33 puts ("\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
34 puts (" to report problems.\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
35 puts ("\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
36 puts (" Please also read the bug reporting guidelines at\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
37 puts ("\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
38 puts (" http://www.octave.org/bugs.html\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
39 puts ("\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
40 puts (" to learn how to submit useful bug reports that will\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
41 puts (" help the Octave community diagnose and fix the problem\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
42 puts (" quickly and efficiently.\n");
b4ed4fe70c2c eliminate octave-bug script/program
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
43 puts ("\n");
802
b7d68dfee8d8 [project @ 1994-10-13 17:13:55 by jwe]
jwe
parents: 800
diff changeset
44
796
d6965f5c411a [project @ 1994-10-13 04:43:57 by jwe]
jwe
parents:
diff changeset
45 endfunction
12800
bde2c81aa2e6 codesprint: dummy test for bug_report function.
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
46
bde2c81aa2e6 codesprint: dummy test for bug_report function.
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
47 ## Mark file as being tested. No real test needed for this function.
bde2c81aa2e6 codesprint: dummy test for bug_report function.
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
48 %!assert (1)