changeset 7668:7ae60e7eb6f8

info.m added
author Julian Schnidder <j.schnidder@gmx.de>
date Fri, 28 Mar 2008 14:47:24 -0400
parents fb3a6c53c2b2
children d2b040bf0b80
files doc/interpreter/contributors.in scripts/ChangeLog scripts/miscellaneous/Makefile.in scripts/miscellaneous/info.m
diffstat 4 files changed, 52 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/contributors.in	Fri Mar 28 18:26:29 2008 +0100
+++ b/doc/interpreter/contributors.in	Fri Mar 28 14:47:24 2008 -0400
@@ -170,6 +170,7 @@
 Ben Sapp
 Alois Schloegl
 Michel D. Schmid
+Julian Schnidder
 Nicol N. Schraudolph
 Sebastian Schubert
 Ludwig Schwardt
--- a/scripts/ChangeLog	Fri Mar 28 18:26:29 2008 +0100
+++ b/scripts/ChangeLog	Fri Mar 28 14:47:24 2008 -0400
@@ -1,3 +1,8 @@
+2008-03-28  Julian Schnidder  <j.schnidder@gmx.de>
+
+	* miscellaneous/info.m: New function.
+	* miscellaneous/Makefile.in (SOURCES): Add it to the list.
+
 2008-03-27  Soren Hauberg  <hauberg@gmail.com>
 
 	* plot/xlim.m, plot/ylim.m, plot/zlim.m, strings/strtrim.m:
--- a/scripts/miscellaneous/Makefile.in	Fri Mar 28 18:26:29 2008 +0100
+++ b/scripts/miscellaneous/Makefile.in	Fri Mar 28 14:47:24 2008 -0400
@@ -36,8 +36,8 @@
 SOURCES = ans.m bincoeff.m bug_report.m bunzip2.m cast.m comma.m \
   compare_versions.m computer.m copyfile.m \
   delete.m dir.m doc.m dos.m dump_prefs.m edit.m \
-  fileattrib.m fileparts.m flops.m fullfile.m getfield.m gunzip.m \
-  gzip.m inputname.m ismac.m ispc.m isunix.m license.m list_primes.m ls.m \
+  fileattrib.m fileparts.m flops.m fullfile.m getfield.m gunzip.m gzip.m \
+  info.m inputname.m ismac.m ispc.m isunix.m license.m list_primes.m ls.m \
   ls_command.m menu.m mex.m mexext.m mkoctfile.m movefile.m \
   namelengthmax.m news.m orderfields.m pack.m paren.m parseparams.m \
   run.m semicolon.m setfield.m single.m substruct.m swapbytes.m tar.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/miscellaneous/info.m	Fri Mar 28 14:47:24 2008 -0400
@@ -0,0 +1,44 @@
+## Copyright (C) 2008 Julian Schnidder
+##
+## This file is part of Octave.
+##
+## Octave is free software; you can redistribute it and/or modify it
+## under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 3 of the License, or (at
+## your option) any later version.
+##
+## Octave is distributed in the hope that it will be useful, but
+## WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+## General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with Octave; see the file COPYING.  If not, see
+## <http://www.gnu.org/licenses/>.
+
+## -*- texinfo -*-
+## @deftypefn {Function File} {} info ()
+## Display contact information for the GNU Octave community.
+## @end deftypefn
+
+function info ()
+
+  printf ("\n\
+  Additional information about GNU Octave is available at\n\
+  http://www.octave.org\n\
+\n\
+  Descriptions of mailing lists devoted to Octave are available at\n\
+  http://www.octave.org/archive.html\n\
+\n\
+  You may also find some information in the Octave Wiki at\n\
+  http://wiki.octave.org\n\
+\n\
+  Additional functionality can be enabled by using packages from\n\
+  the Octave Forge project, which may be found at\n\
+  http://octave.sourceforge.net\n\
+\n\
+  Report bugs to <bug@octave.org> (but first, please read\n\
+  http://www.octave.org/bugs.html to learn how to write a helpful report)\n\
+\n");
+
+endfunction