Ignore:
Timestamp:
06/07/06 19:12:14 (18 years ago)
Author:
pinsard
Message:

start to modify headers of Calendar and Utilities *.pro files for bet
ter idldoc output

File:
1 edited

Legend:

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

    r77 r93  
    33;------------------------------------------------------------ 
    44;+ 
    5 ; NAME:find 
    6 ; 
    7 ; PURPOSE: based on file_search, but it is possible to speficy 
     5; based on file_search, but it is possible to speficy 
    86;          a set of possibles names and a different set of 
    97;          possibles directories names. 
    108;          By defaut look for files included in !path 
    119; 
    12 ; CATEGORY:find a file 
     10; @categories find a file 
    1311; 
    14 ; CALLING SEQUENCE: found = find(filename) 
    15 ; 
    16 ; INPUTS: A scalar or array variable of string type, containing 
     12; @param filein {in}{required} A scalar or array variable of string type, containing 
    1713;     file names to match. Input names specifications may contain 
    1814;     wildcard characters, enabling them to match multiple files 
     
    2117;     completed with '.pro' 
    2218; 
    23 ; KEYWORD PARAMETERS: 
    24 ; 
    25 ;     FIRSTFOUND: activate this keyword to stop looking for the file as 
     19; @keyword FIRSTFOUND activate this keyword to stop looking for the file as 
    2620;        soon as we found one. 
    2721; 
    28 ;     IODIRECTORY: A scalar or array variable of string type, containing 
     22; @keyword IODIRECTORY A scalar or array variable of string type, containing 
    2923;        directories names where we are looking for the file. by defaut 
    3024;        we use !path. Different directories can be separated by 
     
    3428;        keyword is not taken into account. 
    3529; 
    36 ;     LOOKALLDIR:activate to look for the file with a recursive search 
     30; @keyword LOOKALLDIR activate to look for the file with a recursive search 
    3731;        in iodir, homedir, !path + the DATA:TestsData directory if it exists. 
    3832; 
    39 ;     NOPRO: activate to avoid the automatic search of filename 
     33; @keyword NOPRO activate to avoid the automatic search of filename 
    4034;        completed with '.pro' 
    4135; 
    42 ;     ONLYPRO:force to look only at file ending with .pro 
     36; @keyword ONLYPRO force to look only at file ending with .pro 
    4337; 
    44 ;     ONLYNC:force to look only at file ending with .nc 
     38; @keyword ONLYNC force to look only at file ending with .nc 
    4539; 
    46 ;     RECURSIVE: performs recursive searching of directory hierarchies. 
     40; @keyword RECURSIVE performs recursive searching of directory hierarchies. 
    4741;        In a recursive search, find looks recursively for any and all  
    4842;        subdirectories in the file hierarchy rooted at the IODIRECTORY 
    4943;        argument.  
    5044; 
    51 ;     REPERTOIRE: obsolete. keep for compatibility, use directory keyword 
     45; @keyword REPERTOIRE obsolete. keep for compatibility, use directory keyword 
    5246; 
    53 ;     UNIQUE: activate to make sure that each element of the output 
     47; @keyword UNIQUE activate to make sure that each element of the output 
    5448;        vector is unique. 
    5549; 
    56 ;     all file_search keywords 
     50; @file_comments  all file_search keywords can be used. 
    5751; 
    58 ; OUTPUTS: A scalar or array variable of string type, containing the 
     52; @returns A scalar or array variable of string type, containing the 
    5953;       name (with the full path of the matching files. If no files 
    6054;       exist with names matching the input arguments, find returns 
    6155;       the scalar string : 'NOT FOUND' 
    6256; 
    63 ; COMMON BLOCKS: none 
    64 ; 
    65 ; SIDE EFFECTS: 
    66 ; 
    67 ; RESTRICTIONS: 
    68 ; 
    69 ; EXAMPLE: 
     57; @examples  
    7058; 
    7159;   IDL> print, find('*loadct')   
     
    9482;   /usr/local/rsi/idl_6.0/lib/mesh_obj.pro 
    9583; 
    96 ; MODIFICATION HISTORY: Sebastien Masson (smasson@lodyc.jussieu.fr) 
     84; @history Sebastien Masson (smasson\@lodyc.jussieu.fr) 
    9785;                       28/4/1999 
    9886;                       6/7/1999: compatibilite mac et windows 
Note: See TracChangeset for help on using the changeset viewer.