home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / scripts / miscellaneous / bug_report.m next >
Text File  |  1996-09-28  |  2KB  |  65 lines

  1. # Copyright (C) 1994, 1995 John W. Eaton
  2. # This file is part of Octave.
  3. # Octave is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU General Public License as published by the
  5. # Free Software Foundation; either version 2, or (at your option) any
  6. # later version.
  7. # Octave is distributed in the hope that it will be useful, but WITHOUT
  8. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  10. # for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with Octave; see the file COPYING.  If not, write to the Free
  13. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  
  15. function bug_report ()
  16.  
  17. # usage: bug_report
  18. #
  19. # Have Octave create a bug report template file, invoke your favorite
  20. # editor, and submit the report to the bug-octave mailing list when
  21. # you are finished editing.
  22.  
  23.   if (nargin != 0)
  24.     warning ("bug_report: ignoring extra arguments");
  25.   endif
  26.  
  27.   printf ("Please enter a one-line description of your bug report.\n\n");
  28.   fflush (stdout);
  29.  
  30.   subject = "";
  31.   subject = input ("Subject: ", "s");
  32.  
  33. # XXX FIXME XXX -- really need a better system command, one that will
  34. # automatically send output from the command to stdout...
  35.  
  36.   prefs = octave_tmp_file_name ();
  37.  
  38.   if (! isempty (prefs))
  39.     fopen (prefs, "w");
  40.     dump_prefs (prefs);
  41.     fclose (prefs);
  42.   endif
  43.  
  44.   cmd = "octave-bug";
  45.  
  46.   if (length (subject) > 0)
  47.     cmd = sprintf ("%s -s \"%s\"", cmd, subject);
  48.   endif
  49.  
  50.   if (! isempty (prefs))
  51.     cmd = sprintf ("%s %s", cmd, prefs);
  52.   endif
  53.  
  54.   system (sprintf ("%s > /dev/tty", cmd));
  55.  
  56.   if (! isempty (prefs))
  57.     system (sprintf ("rm -f %s", prefs));
  58.   endif
  59.  
  60. endfunction
  61.