From: <aba...@us...> - 2012-01-06 12:33:48
|
Revision: 9498 http://octave.svn.sourceforge.net/octave/?rev=9498&view=rev Author: abarth93 Date: 2012-01-06 12:33:41 +0000 (Fri, 06 Jan 2012) Log Message: ----------- remove dispatch Modified Paths: -------------- trunk/octave-forge/main/octcdf/DESCRIPTION trunk/octave-forge/main/octcdf/PKG_ADD Added Paths: ----------- trunk/octave-forge/main/octcdf/inst/@ncatt/ trunk/octave-forge/main/octcdf/inst/@ncatt/datatype.m trunk/octave-forge/main/octcdf/inst/@ncatt/name.m trunk/octave-forge/main/octcdf/inst/@ncdim/ trunk/octave-forge/main/octcdf/inst/@ncdim/isrecord.m trunk/octave-forge/main/octcdf/inst/@ncdim/name.m trunk/octave-forge/main/octcdf/inst/@ncfile/ trunk/octave-forge/main/octcdf/inst/@ncfile/att.m trunk/octave-forge/main/octcdf/inst/@ncfile/close.m trunk/octave-forge/main/octcdf/inst/@ncfile/dim.m trunk/octave-forge/main/octcdf/inst/@ncfile/endef.m trunk/octave-forge/main/octcdf/inst/@ncfile/name.m trunk/octave-forge/main/octcdf/inst/@ncfile/redef.m trunk/octave-forge/main/octcdf/inst/@ncfile/sync.m trunk/octave-forge/main/octcdf/inst/@ncfile/var.m trunk/octave-forge/main/octcdf/inst/@ncvar/ trunk/octave-forge/main/octcdf/inst/@ncvar/att.m trunk/octave-forge/main/octcdf/inst/@ncvar/autonan.m trunk/octave-forge/main/octcdf/inst/@ncvar/autoscale.m trunk/octave-forge/main/octcdf/inst/@ncvar/datatype.m trunk/octave-forge/main/octcdf/inst/@ncvar/dim.m trunk/octave-forge/main/octcdf/inst/@ncvar/fillval.m trunk/octave-forge/main/octcdf/inst/@ncvar/name.m Modified: trunk/octave-forge/main/octcdf/DESCRIPTION =================================================================== --- trunk/octave-forge/main/octcdf/DESCRIPTION 2012-01-06 10:12:47 UTC (rev 9497) +++ trunk/octave-forge/main/octcdf/DESCRIPTION 2012-01-06 12:33:41 UTC (rev 9498) @@ -1,6 +1,6 @@ Name: octcdf -Version: 1.1.1 -Date: 2010-11-17 +Version: 1.1.2 +Date: 2012-01-06 Author: Alexander Barth <bar...@gm...> Maintainer: Alexander Barth <bar...@gm...> Title: octcdf Modified: trunk/octave-forge/main/octcdf/PKG_ADD =================================================================== --- trunk/octave-forge/main/octcdf/PKG_ADD 2012-01-06 10:12:47 UTC (rev 9497) +++ trunk/octave-forge/main/octcdf/PKG_ADD 2012-01-06 12:33:41 UTC (rev 9498) @@ -1,32 +1,3 @@ - -dispatch('close','ncclose','ncfile'); -dispatch('redef','ncredef','ncfile'); -dispatch('endef','endef','ncfile'); -dispatch('sync','ncsync','ncfile'); - -dispatch('var','ncvar','ncfile'); - -dispatch('att','ncatt','ncfile'); -dispatch('att','ncatt','ncvar'); - -dispatch('dim','ncdim','ncfile'); -dispatch('dim','ncdim','ncvar'); - -dispatch('name','ncname','ncfile'); -dispatch('name','ncname','ncvar'); -dispatch('name','ncname','ncatt'); -dispatch('name','ncname','ncdim'); - -dispatch('datatype','ncdatatype','ncvar'); -dispatch('datatype','ncdatatype','ncatt'); - -dispatch('autoscale','ncautoscale','ncvar'); -dispatch('autonan','ncautonan','ncvar'); -dispatch('fillval','ncfillval','ncvar'); - -dispatch('isrecord','ncisrecord','ncdim'); - - autoload ("ncclose", fullfile (fileparts (mfilename ("fullpath")), "netcdf.oct")); autoload ("ncredef", fullfile (fileparts (mfilename ("fullpath")), "netcdf.oct")); autoload ("ncenddef", fullfile (fileparts (mfilename ("fullpath")), "netcdf.oct")); Added: trunk/octave-forge/main/octcdf/inst/@ncatt/datatype.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncatt/datatype.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncatt/datatype.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function datatype(self) + ncdatatype(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncatt/name.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncatt/name.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncatt/name.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function name(self) + ncname(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncdim/isrecord.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncdim/isrecord.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncdim/isrecord.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function isrecord(self) + ncisrecord(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncdim/name.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncdim/name.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncdim/name.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function name(self) + ncname(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncfile/att.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncfile/att.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncfile/att.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function att(self) + ncatt(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncfile/close.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncfile/close.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncfile/close.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function close (self) + ncclose (self) +end \ No newline at end of file Added: trunk/octave-forge/main/octcdf/inst/@ncfile/dim.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncfile/dim.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncfile/dim.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function dim(self) + ncdim(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncfile/endef.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncfile/endef.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncfile/endef.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function endef(self) + ncendef(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncfile/name.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncfile/name.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncfile/name.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function name(self) + ncname(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncfile/redef.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncfile/redef.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncfile/redef.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function redef(self) + ncredef(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncfile/sync.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncfile/sync.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncfile/sync.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function sync(self) + ncsync(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncfile/var.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncfile/var.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncfile/var.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function var(self) + ncvar(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncvar/att.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncvar/att.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncvar/att.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function att(self) + ncatt(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncvar/autonan.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncvar/autonan.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncvar/autonan.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function autonan(self) + ncautonan(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncvar/autoscale.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncvar/autoscale.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncvar/autoscale.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function autoscale(self) + ncautoscale(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncvar/datatype.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncvar/datatype.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncvar/datatype.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function datatype(self) + ncdatatype(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncvar/dim.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncvar/dim.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncvar/dim.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function dim(self) + ncdim(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncvar/fillval.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncvar/fillval.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncvar/fillval.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function fillval(self) + ncfillval(self) +end Added: trunk/octave-forge/main/octcdf/inst/@ncvar/name.m =================================================================== --- trunk/octave-forge/main/octcdf/inst/@ncvar/name.m (rev 0) +++ trunk/octave-forge/main/octcdf/inst/@ncvar/name.m 2012-01-06 12:33:41 UTC (rev 9498) @@ -0,0 +1,3 @@ +function name(self) + ncname(self) +end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |