Changeset 62bb5e in git


Ignore:
Timestamp:
Jan 12, 2000, 1:53:44 PM (23 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
60d8f15617731f116619ccdb3e16a78f2483fe89
Parents:
4da7f5fdc06b69ca7c96356ff3ede2331ce09aec
Message:
*hannes: surf.lib: URL updated, return code check added


git-svn-id: file:///usr/local/Singular/svn/trunk@4075 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/surf.lib

    r4da7f5f r62bb5e  
    1 // $Id: surf.lib,v 1.7 1999-12-10 16:43:34 obachman Exp $
     1// $Id: surf.lib,v 1.8 2000-01-12 12:53:44 Singular Exp $
    22//
    33// author : Hans Schoenemann
    44//
    55///////////////////////////////////////////////////////////////////////////////
    6 version="$Id: surf.lib,v 1.7 1999-12-10 16:43:34 obachman Exp $";
     6version="$Id: surf.lib,v 1.8 2000-01-12 12:53:44 Singular Exp $";
    77info="
    88LIBRARY: surf.lib    PROCEDURES FOR GRAPHICS WITH SURF
     
    1010AUTHOR: surf is written by Stefan Endrass
    1111
    12 NOTE: 
    13 @texinfo 
    14 To use this library requires the program @code{surf} to be installed. 
     12NOTE:
     13@texinfo
     14To use this library requires the program @code{surf} to be installed.
    1515@code{surf} is only available for Linux PCs and Sun workstations.
    16 You can download @code{surf} either from 
    17  @uref{http://www.mathematik.uni-mainz.de/AlgebraischeGeometrie/surf/surf.shtml}
    18  or from @uref{ftp://www.mathematik.uni-kl.de/pub/Math/Singular/utils/}. 
     16You can download @code{surf} either from
     17 @uref{http://enriques.mathematik.uni-mainz.de/kon/surf/surf.shtml}
     18 or from @uref{ftp://www.mathematik.uni-kl.de/pub/Math/Singular/utils/}.
    1919@end texinfo
    2020
     
    104104//  "calling surf (by Stephan Endrass) for drawing";
    105105  i=system("sh","surf "+l+" >/dev/null 2>&1");
     106  if (i!=0)
     107  {
     108    "calling `surf` failed. (the shell return the error code",i,").";
     109    "probably the executable `surf` is not found.";
     110  }
    106111  i=system("sh","/bin/rm "+l);
    107112}
Note: See TracChangeset for help on using the changeset viewer.