From: <prn...@us...> - 2011-03-04 16:34:09
|
Revision: 8149 http://octave.svn.sourceforge.net/octave/?rev=8149&view=rev Author: prnienhuis Date: 2011-03-04 16:34:02 +0000 (Fri, 04 Mar 2011) Log Message: ----------- Minor textual changes in header Modified Paths: -------------- trunk/octave-forge/main/io/inst/calccelladdress.m trunk/octave-forge/main/io/inst/getusedrange.m trunk/octave-forge/main/io/inst/odsfinfo.m Modified: trunk/octave-forge/main/io/inst/calccelladdress.m =================================================================== --- trunk/octave-forge/main/io/inst/calccelladdress.m 2011-03-04 15:45:38 UTC (rev 8148) +++ trunk/octave-forge/main/io/inst/calccelladdress.m 2011-03-04 16:34:02 UTC (rev 8149) @@ -1,4 +1,4 @@ -## Copyright (C) 2009,2010 Philip +## Copyright (C) 2009,2010,2011 Philip Nienhuis ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -14,7 +14,7 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -## Compute spreadsheet style cell address from row & column index (both 1-based). +## Compute spreadsheet style cell address from 1-based row & column index. ## ## Max column index: 18278 (max ODS: 1024, OOXML: 16384). ## Max row index 1048576 (max ODS 1.2: 65536; OOXML / ODS 1.2-extended: 1048576). @@ -26,7 +26,7 @@ ## 2010-03-17 Simplified argument list, only row + column needed ## 2010-09-27 Made error message more comprehensible ## 2010-10-11 Added check for row range -## 2011-03-01 Textual fixes in header +## 2011-03-04 Textual fixes in header function [ celladdress ] = calccelladdress (row, column) Modified: trunk/octave-forge/main/io/inst/getusedrange.m =================================================================== --- trunk/octave-forge/main/io/inst/getusedrange.m 2011-03-04 15:45:38 UTC (rev 8148) +++ trunk/octave-forge/main/io/inst/getusedrange.m 2011-03-04 16:34:02 UTC (rev 8149) @@ -16,9 +16,8 @@ ## -*- texinfo -*- ## @deftypefn {Function File} [ @var{toprow#}, @var{bottomrow#}, @var{leftcol#}, @var{rightcol#} ] = getusedrange (@var{spptr}, @var{shindex#}) -## Find occupied data range in worksheet @var{shindex#} in a spreadsheet -## pointed to in struct @var{spptr} (either MS-Excel or -## OpenOffice Calc). +## Find occupied data range in a specific worksheet in a spreadsheet +## (either MS-Excel or OOo Calc). ## ## @var{shindex#} must be numeric and is 1-based. @var{spptr} can either ## refer to an MS-Excel spreadsheet (spptr returned by xlsopen) or an @@ -61,6 +60,7 @@ ## 2010-08-27 Added checks for input arguments ## " Indentation changed from tab to doublespace ## 2010-10-07 Added COM support (at last!) +## 2010-03-04 Textual adaptations in header ## ## Last subfunc update: 2010-12-01 (COM) Modified: trunk/octave-forge/main/io/inst/odsfinfo.m =================================================================== --- trunk/octave-forge/main/io/inst/odsfinfo.m 2011-03-04 15:45:38 UTC (rev 8148) +++ trunk/octave-forge/main/io/inst/odsfinfo.m 2011-03-04 16:34:02 UTC (rev 8149) @@ -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 Calc spreadsheet file @var{filename} (with ods ## suffix) for some info about its contents. ## ## If @var{filename} is a recognizable OpenOffice.org spreadsheet file, @@ -70,6 +70,7 @@ ## 2010-03-20 "Beautified" output (for OTK ), used range now in more tabular form ## 2010-05-23 Updated jOpenDocument support (can also get occupied data range now) ## 2010-05-31 Added remark about delays when determining occupied data range +## 2011-03-04 Minor textual header change (deleted a ".") function [ filetype, sheetnames ] = odsfinfo (filename, reqintf=[]) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |