From: <prn...@us...> - 2010-03-04 21:02:31
|
Revision: 6988 http://octave.svn.sourceforge.net/octave/?rev=6988&view=rev Author: prnienhuis Date: 2010-03-04 21:02:24 +0000 (Thu, 04 Mar 2010) Log Message: ----------- Bumped reqd. java version to 1.2.6 & explicitly mention odfdom v. 0.7.5 Modified Paths: -------------- trunk/octave-forge/main/io/inst/odsopen.m trunk/octave-forge/main/io/inst/odsread.m Modified: trunk/octave-forge/main/io/inst/odsopen.m =================================================================== --- trunk/octave-forge/main/io/inst/odsopen.m 2010-03-04 19:37:36 UTC (rev 6987) +++ trunk/octave-forge/main/io/inst/odsopen.m 2010-03-04 21:02:24 UTC (rev 6988) @@ -23,8 +23,8 @@ ## ## Calling odsopen without specifying a return argument is fairly useless! ## -## To make this function work at all, you need the Java package > 1.2.5 plus -## either ODFtoolkit > 0.7.5 & xercesImpl, or jOpenDocument installed on your +## To make this function work at all, you need the Java package > 1.2.6 plus +## either ODFtoolkit version 0.7.5 & xercesImpl, or jOpenDocument installed on your ## computer + proper javaclasspath set. These interfaces are referred to as ## OTK and JOD, resp., and are preferred in that order by default (depending ## on their presence). @@ -61,6 +61,7 @@ ## 2010-01-17 Make sure proper dimensions are checked in parsed javaclasspath ## 2010-01-24 Added warning when trying to create a new spreadsheet using jOpenDocument ## 2010-03-01 Removed check for rt.jar in javaclasspath +## 2010-03-04 Slight texinfo adaptation (reqd. odfdom version = 0.7.5) function [ ods ] = odsopen (filename, rw=0, reqinterface=[]) Modified: trunk/octave-forge/main/io/inst/odsread.m =================================================================== --- trunk/octave-forge/main/io/inst/odsread.m 2010-03-04 19:37:36 UTC (rev 6987) +++ trunk/octave-forge/main/io/inst/odsread.m 2010-03-04 21:02:24 UTC (rev 6988) @@ -23,8 +23,8 @@ ## Read data contained in range @var{range} from worksheet @var{wsh} ## 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 +## You need the octave-forge java package (> 1.2.6) and one or both of +## jopendocument.jar or preferrably: (odfdom.jar 0.7.5 & xercesImpl.jar) in ## your javaclasspath. ## ## Return argument @var{numarr} contains the numeric data, optional @@ -104,7 +104,9 @@ ## Author: Philip Nienhuis <prnienhuis at users.sf.net> ## Created: 2009-12-12 -## Last update: 2010-01-05 +## Updates: +## 2010-01-05 (....) +## 2010-03-04 Slight adaptations in texinfo function [ numarr, txtarr, rawarr, lim ] = odsread (filename, wsh=1, datrange=[], reqintf=[]) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |