changeset 6689:6381dfad5aa7 octave-forge

Changed "OpenOffice.org" to "OpenOffice_org" in the first help sentence in the function files to cope with imperfect get_first_help_sentence.m; that script truncates the first help sentence on dots.
author prnienhuis
date Fri, 12 Feb 2010 20:40:23 +0000
parents 66cac59a24a4
children c8ed5091ab20
files main/io/inst/oct2ods.m main/io/inst/ods2oct.m main/io/inst/odsclose.m main/io/inst/odsfinfo.m main/io/inst/odsopen.m main/io/inst/odsread.m main/io/inst/odswrite.m
diffstat 7 files changed, 8 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/main/io/inst/oct2ods.m	Fri Feb 12 19:20:21 2010 +0000
+++ b/main/io/inst/oct2ods.m	Fri Feb 12 20:40:23 2010 +0000
@@ -20,7 +20,7 @@
 ## @deftypefnx {Function File} [ @var{ods}, @var{rstatus} ] = oct2ods (@var{arr}, @var{ods}, @var{wsh}, @var{range})
 ##
 ## Add data in 1D/2D array @var{arr} into a cell range @var{range} in
-## sheet @var{wsh} in an OpenOffice.org Calc spreadsheet file pointed to in
+## sheet @var{wsh} in an OpenOffice_org Calc spreadsheet file pointed to in
 ## structure @var{ods}. @var{ods} must have been made earlier by odsopen().
 ## Return argument @var{ods} equals supplied argument @var{ods} and is
 ## updated by oct2ods.
--- a/main/io/inst/ods2oct.m	Fri Feb 12 19:20:21 2010 +0000
+++ b/main/io/inst/ods2oct.m	Fri Feb 12 20:40:23 2010 +0000
@@ -20,7 +20,7 @@
 ## @deftypefnx {Function File} [ @var{rawarr}, @var{ods}, @var{rstatus} ] = ods2oct (@var{ods}, @var{wsh}, @var{range})
 ##
 ## Read data contained within range @var{range} from worksheet @var{wsh}
-## in an OpenOffice.org spreadsheet file pointed to in struct @var{ods}.
+## in an OpenOffice_org spreadsheet file pointed to in struct @var{ods}.
 ##
 ## ods2oct is a mere wrapper for interface-dependent scripts (e.g.,
 ## ods2jotk2oct and ods2jod2oct) that do the actual reading.
--- a/main/io/inst/odsclose.m	Fri Feb 12 19:20:21 2010 +0000
+++ b/main/io/inst/odsclose.m	Fri Feb 12 20:40:23 2010 +0000
@@ -14,7 +14,8 @@
 ## along with Octave; see the file COPYING.  If not, see
 ## <http://www.gnu.org/licenses/>.
 
-## odsclose - close an ods spreadsheet file
+## odsclose - close an ods (OpenOffice_org) spreadsheet file
+
 ## usage: ods = odsclose (ods)
 
 ## Author: Philip Nienhuis
--- a/main/io/inst/odsfinfo.m	Fri Feb 12 19:20:21 2010 +0000
+++ b/main/io/inst/odsfinfo.m	Fri Feb 12 20:40:23 2010 +0000
@@ -17,7 +17,7 @@
 ## -*- texinfo -*-
 ## @deftypefn {Function File} [@var{filetype}] = odsfinfo (@var{filename} [, @var{reqintf}])
 ## @deftypefnx {Function File} [@var{filetype}, @var{sh_names}] = odsfinfo (@var{filename} [, @var{reqintf}])
-## Query an OpenOffice.org spreadsheet file @var{filename} (with .ods
+## Query an OpenOffice_org spreadsheet file @var{filename} (with .ods
 ## suffix) for some info about its contents (viz. sheet names).
 ##
 ## If @var{filename} is a recognizable OpenOffice.org spreadsheet file,
--- a/main/io/inst/odsopen.m	Fri Feb 12 19:20:21 2010 +0000
+++ b/main/io/inst/odsopen.m	Fri Feb 12 20:40:23 2010 +0000
@@ -18,7 +18,7 @@
 ## @deftypefn {Function File} @var{ods} = odsopen (@var{filename})
 ## @deftypefnx {Function File} @var{ods} = odsopen (@var{filename}, @var{readwrite})
 ## @deftypefnx {Function File} @var{ods} = odsopen (@var{filename}, @var{readwrite}, @var{reqintf})
-## Get a pointer to an OpenOffice.org spreadsheet in the form of return
+## Get a pointer to an OpenOffice_org spreadsheet in the form of return
 ## argument @var{ods}.
 ##
 ## Calling odsopen without specifying a return argument is fairly useless!
--- a/main/io/inst/odsread.m	Fri Feb 12 19:20:21 2010 +0000
+++ b/main/io/inst/odsread.m	Fri Feb 12 20:40:23 2010 +0000
@@ -21,7 +21,7 @@
 ## @deftypefnx {Function File} [@var{numarr}, @var{txtarr}, @var{rawarr}, @var{limits}] = odsread (@var{filename}, @var{wsh}, @var{range}, @var{reqintf})
 ##
 ## Read data contained in range @var{range} from worksheet @var{wsh}
-## in OpenOffice.org Calc spreadsheet file @var{filename}.
+## in OpenOffice_org Calc spreadsheet file @var{filename}.
 ##
 ## You need the octave-forge java package (> 1.2.5) and one or both of
 ## jopendocument.jar or preferrably: (odfdom.jar & xercesImpl.jar) in
--- a/main/io/inst/odswrite.m	Fri Feb 12 19:20:21 2010 +0000
+++ b/main/io/inst/odswrite.m	Fri Feb 12 20:40:23 2010 +0000
@@ -20,7 +20,7 @@
 ## @deftypefnx {Function File} @var{rstatus} = odswrite (@var{filename}, @var{arr}, @var{wsh}, @var{range})
 ## @deftypefnx {Function File} @var{rstatus} = odswrite (@var{filename}, @var{arr}, @var{wsh}, @var{range}, @var{reqintf})
 ## Add data in 1D/2D array @var{arr} to sheet @var{wsh} in
-## OpenOffice.org Calc spreadsheet file @var{filename} in range @var{range}.
+## OpenOffice_org Calc spreadsheet file @var{filename} in range @var{range}.
 ##
 ## @var{rstatus} returns 1 if write succeeded, 0 otherwise.
 ##