Changeset 121 for trunk/SRC/Utilities


Ignore:
Timestamp:
06/29/06 16:59:33 (18 years ago)
Author:
pinsard
Message:

correction of some *.pro using aspell list; introduction of default idldoc syntax

Location:
trunk/SRC/Utilities
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Utilities/createfunc.pro

    r118 r121  
    99; given back by the function. (see examples) 
    1010; 
    11 ; @keyword FILENAMEIN {in} name of the funccedure to be created. 
    12 ;      'for_createfunc.pro' by default 
     11; @keyword FILENAMEIN {in} {default=for_createfunc.pro}  
     12; name of the function to be created. 
    1313; 
    1414; @keyword KWDLIST {in} a vector string. to specify a list of keywords that 
  • trunk/SRC/Utilities/createpro.pro

    r118 r121  
    77; @param command {in}{required} a string array defining the procedure to be created. each element will be a line of the created procedure. 
    88; 
    9 ; @keyword FILENAMEIN {in} name of the procedure to be created. 
    10     'for_createpro.pro' by default 
     9; @keyword FILENAMEIN {in} {default=for_createpro.pro} 
     10name of the procedure to be created. 
    1111; 
    1212; @keyword KWDLIST {in} a vector string. to specify a list of keywords that 
     
    1414;      must start with a ',' for example: KWDLIST = ', TOTO = toto' 
    1515; 
    16 ; @keyword KWDUSED obsolote, please pass directly your keywords through _extra 
     16; @keyword KWDUSED obsolote, please pass directly your keywords through _EXTRA 
    1717; 
    1818; @keyword _EXTRA used to pass your keywords to the created procedure. 
     
    4141;------------------------------------------------------------ 
    4242PRO createpro, command, FILENAMEIN = filenamein $ 
    43                , KWDLIST = kwdlist, KWDUSED = kwdused, _extra = ex 
     43               , KWDLIST = kwdlist, KWDUSED = kwdused, _EXTRA = ex 
    4444; 
    4545  compile_opt idl2, hidden, strictarrsubs 
  • trunk/SRC/Utilities/find.pro

    r118 r121  
    33;------------------------------------------------------------ 
    44;+ 
    5 ; @file_comments based on file_search, but it is possible to speficy 
     5; @file_comments based on file_search, but it is possible to specify 
    66;          a set of possibles names and a different set of 
    77;          possibles directories names. 
    8 ;          By defaut look for files included in !path 
     8;          By default look for files included in !path 
    99; 
    1010; @categories find a file 
     
    1313;     file names to match. Input names specifications may contain 
    1414;     wildcard characters, enabling them to match multiple files 
    15 ;     (see file_search for more informations). By defaut and if 
     15;     (see file_search for more informations). By default and if 
    1616;     necessary, find is looking for filename and also for filename 
    1717;     completed with '.pro' 
     
    2020;        soon as we found one. 
    2121; 
    22 ; @keyword IODIRECTORY A scalar or array variable of string type, containing 
    23 ;        directories names where we are looking for the file. by defaut 
    24 ;        we use !path. Different directories can be separated by 
     22; @keyword IODIRECTORY {default=!path} A scalar or array variable of string type, containing 
     23;        directories names where we are looking for the file.   
     24;        Different directories can be separated by 
    2525;        path_sep(/search_path) (':' on unix type machine) as it is done 
    2626;        to define !path. 
     
    8686; @history Sebastien Masson (smasson\@lodyc.jussieu.fr) 
    8787;                       28/4/1999 
    88 ;                       6/7/1999: compatibilite mac et windows 
     88;                       6/7/1999: compatibility mac and windows 
    8989; June 2005: Sebastien Masson: cleaning, use for file_* functions 
    9090; 
  • trunk/SRC/Utilities/isafile.pro

    r118 r121  
    1616; 
    1717; @keyword IODIRECTORY a directory where we look for the file. this 
    18 ;           keyword is taken into account only if the dirmame 
     18;           keyword is taken into account only if the dirname 
    1919;           of filein or filename is '.' 
    2020; 
    21 ; @keyword /NEW to specify that filename is a new file and that 
     21; @keyword NEW to specify that filename is a new file and that 
    2222;        we should check only its path 
    2323; 
Note: See TracChangeset for help on using the changeset viewer.