From: <ai...@us...> - 2010-11-04 21:07:03
|
Revision: 11305 http://plplot.svn.sourceforge.net/plplot/?rev=11305&view=rev Author: airwin Date: 2010-11-04 21:06:57 +0000 (Thu, 04 Nov 2010) Log Message: ----------- Remove obsolete __pl_pltext.m which does not work in its present form, is not documented, is not used in any example, and which is superseded by the functionality in all the new unicode-aware device drivers. Modified Paths: -------------- trunk/bindings/octave/PLplot/support/CMakeLists.txt Removed Paths: ------------- trunk/bindings/octave/PLplot/support/__pl_pltext.m Modified: trunk/bindings/octave/PLplot/support/CMakeLists.txt =================================================================== --- trunk/bindings/octave/PLplot/support/CMakeLists.txt 2010-11-03 06:36:26 UTC (rev 11304) +++ trunk/bindings/octave/PLplot/support/CMakeLists.txt 2010-11-04 21:06:57 UTC (rev 11305) @@ -35,7 +35,6 @@ __pl_plenv.m __pl_plot3.m __pl_plotit.m -__pl_pltext.m __pl_polargrid.m __pl_store.m __plr1__.m Deleted: trunk/bindings/octave/PLplot/support/__pl_pltext.m =================================================================== --- trunk/bindings/octave/PLplot/support/__pl_pltext.m 2010-11-03 06:36:26 UTC (rev 11304) +++ trunk/bindings/octave/PLplot/support/__pl_pltext.m 2010-11-04 21:06:57 UTC (rev 11305) @@ -1,50 +0,0 @@ -## Copyright (C) 1998-2003 Joao Cardoso. -## -## 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 the -## Free Software Foundation; either version 2 of the License, or (at your -## option) any later version. -## -## This program 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. -## -## This file is part of plplot_octave. - -function out =__pl_pltext(str) - -### str =__pl_pltext(str) -### convert (almost) an iso-8859-1 string `str' to a plplot accentuated string -### PRELIMINARY - - in = "\xC0\xC1\xC2\xC3\xC8\xC9\xCA\xCC\xCD\xD2\xD3\xF4\xD5\xD9\xDA\xDB\xE0\xE1\xE2\xE3\xE8\xE9\xEA\xEC\xED\xF2\xF3\xF4\xF5\xF9\xFA\xFB\xE7\xC7"; - tr = ["#u`#d#bA"; "#u'#d#bA"; "A#b#u^#d"; "A#b#u~#d"; - "#u`#d#bE"; "#u'#d#bE"; "E#b#u^#d"; - "I#b#u`#d"; "I#b#u'#d"; - "#u`#d#bO"; "#u'#d#bO"; "#u^#d#bO"; "#u~#d#bO"; - "#u`#d#bU"; "#u'#d#bU"; "#u^#d#bU"; - "#u`#d#ba"; "#u'#d#ba"; "#u^#d#ba"; "a#b#u~#d"; - "#u`#d#be"; "#u'#d#be"; "#u^#d#be"; - "#u`#d#bi"; "#u'#d#bi"; - "#u`#d#bo"; "#u'#d#bo"; "#u^#d#bo"; "#u~#d#bo"; - "#u`#d#bu"; "#u'#d#bu"; "#u^#d#bu"; - "#d,#u#bc"; "#d,#u#bC"]; - - - out = ""; - for k=1:rows(str); - t = ""; - for i=1:length(str(k,:)) - ix = find(str(k,i) == in); - if (isempty(ix)) - t = [t, str(k,i)]; - else - t = [t, tr(ix,:)] - endif - endfor - out = [out; t]; - endfor - - -endfunction This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |