changeset 10878:c318b70bf437

unimplemented.m: Format output for easier on-screen reading.
author Rik <octave@nomad.inbox5.com>
date Mon, 09 Aug 2010 20:10:10 -0700
parents dc7e0fbca6f0
children 5af852c93af3
files scripts/ChangeLog scripts/miscellaneous/unimplemented.m
diffstat 2 files changed, 22 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Mon Aug 09 17:51:56 2010 -0700
+++ b/scripts/ChangeLog	Mon Aug 09 20:10:10 2010 -0700
@@ -1,3 +1,9 @@
+2010-08-08  Rik <octave@nomad.inbox5.com>
+
+	* miscellaneous/unimplemented.m: Add newlines to format output for
+	easier reading.  Format all lines < 80 characters.  Remove 
+	'whitebg' function from unimplemented list.
+
 2010-08-08  Rik <octave@nomad.inbox5.com>
 
 	* @ftp/PKG_ADD: Remove temporary build file from hg version control.
--- a/scripts/miscellaneous/unimplemented.m	Mon Aug 09 17:51:56 2010 -0700
+++ b/scripts/miscellaneous/unimplemented.m	Mon Aug 09 20:10:10 2010 -0700
@@ -26,21 +26,27 @@
 
   ## Some smarter cases, add more as needed.
   switch (fcn)
-  case "textscan"
-    txt = ["textscan is not implemented. Consider using textread or sscanf."];
+
+  case "quad2d"
+    txt = ["quad2d is not implemented.  Consider using dblquad."];
 
   case "gsvd"
-    txt = ["gsvd is currently not part of Octave. See the linear-algebra package at ",...
-    "@url{http://octave.sf.net/linear-algebra/}."];
+    txt = ["gsvd is not currently part of Octave.  See the linear-algebra",... 
+    "package at @url{http://octave.sf.net/linear-algebra/}."];
 
   case "linprog"
-    txt = ["Octave does not currently provide linprog. Linear programming problems may be solved ",...
-    "using @code{glpk}. Try @code{help glpk} for more info."];
+    txt = ["Octave does not currently provide linprog.  ",...
+    "Linear programming problems may be solved using @code{glpk}.  ",...
+    "Try @code{help glpk} for more info."];
 
   case {"ode113", "ode15i", "ode15s", "ode23", "ode23s", "ode23t", "ode45", "odeget", "odeset"}
-    txt = ["Octave provides lsode for solving differential equations. For more information, ",...
-    "try @code{help lsode}.\n Matlab-compatible ODE functions are provided by the odepkg package. ",...
+    txt = ["Octave provides lsode for solving differential equations.  ",...
+    "For more information try @code{help lsode}.  ",...
+    "Matlab-compatible ODE functions are provided by the odepkg package.  ",...
     "See @url{http://octave.sf.net/odepkg/}."];
+  
+  case "textscan"
+    txt = ["textscan is not implemented.  Consider using textread or sscanf."];
 
   otherwise
     if (ismember (fcn, missing_functions ()))
@@ -54,7 +60,8 @@
     endif
   endswitch
 
-  txt = [txt, "\nPlease read @url{http://www.octave.org/missing.html} ",...
+  txt = [txt, "\n\n@noindent\nPlease read ",...
+  "@url{http://www.octave.org/missing.html} ",...
   "to find out how you can help with contributing missing functionality."];
 
   warning ("Octave:missing-function",["\n", __makeinfo__(txt)]);
@@ -424,7 +431,6 @@
   "wavrecord", 
   "web", 
   "whatsnew", 
-  "whitebg", 
   "wk1finfo", 
   "wk1read", 
   "wk1write",