annotate scripts/miscellaneous/isdeployed.m @ 29358:0a5b15007766 stable

update Octave Project Developers copyright for the new year In files that have the "Octave Project Developers" copyright notice, update for 2021.
author John W. Eaton <jwe@octave.org>
date Wed, 10 Feb 2021 09:52:15 -0500
parents bd51beb6205e
children 83aeaba707d8 796f54d4ddbf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
1 ########################################################################
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
2 ##
29358
0a5b15007766 update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
3 ## Copyright (C) 2012-2021 The Octave Project Developers
27918
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents: 26376
diff changeset
4 ##
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
5 ## See the file COPYRIGHT.md in the top-level directory of this
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
6 ## distribution or <https://octave.org/copyright/>.
11559
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 ##
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 ## This file is part of Octave.
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 ##
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
10 ## Octave is free software: you can redistribute it and/or modify it
11559
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 ## under the terms of the GNU General Public License as published by
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
12 ## the Free Software Foundation, either version 3 of the License, or
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
13 ## (at your option) any later version.
11559
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 ##
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 ## Octave is distributed in the hope that it will be useful, but
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 ## WITHOUT ANY WARRANTY; without even the implied warranty of
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
17 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
18 ## GNU General Public License for more details.
11559
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 ##
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 ## You should have received a copy of the GNU General Public License
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 ## along with Octave; see the file COPYING. If not, see
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
22 ## <https://www.gnu.org/licenses/>.
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
23 ##
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
24 ########################################################################
11559
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 ## -*- texinfo -*-
20852
516bb87ea72e 2015 Code Sprint: remove class of function from docstring for all m-files.
Rik <rik@octave.org>
parents: 19697
diff changeset
27 ## @deftypefn {} {} isdeployed ()
11559
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 ## Return true if the current program has been compiled and is running
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 ## separately from the Octave interpreter and false if it is running in
19192
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 17744
diff changeset
30 ## the Octave interpreter.
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 17744
diff changeset
31 ##
8a8a7bc2a09d Improve docstrings and mark documentation m-files as tested in miscellaneous/ dir.
Rik <rik@octave.org>
parents: 17744
diff changeset
32 ## Currently, this function always returns false in Octave.
11559
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 ## @end deftypefn
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35 function retval = isdeployed ()
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 retval = false;
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37 endfunction
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38
14363
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
39
11559
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 %!assert (isdeployed (), false)