Ignore:
Timestamp:
07/12/06 11:52:09 (18 years ago)
Author:
smasson
Message:

update documentation and .idlwave_catalog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Documentation/idldoc_html_output/Utilities/isafile.html

    r121 r138  
    328328table.variables td.image { width: 64px; } 
    329329 
    330 div#file_comments {  
     330div#file_comments { white-space: pre;  
    331331  margin: 2em; 
    332332  font-size: 80%; 
     
    681681<div id="secondary_navbar"> 
    682682 
    683 <a href="isadirectory.html?format=raw">&lt;&lt;prev file</a> | <a href="protype.html?format=raw">next file &gt;&gt;</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="isafile.html?format=raw" target="_TOP">view single page</a> | <a href="./../index.html?format=raw" target="_TOP">view frames</a>&nbsp;&nbsp;&nbsp;&nbsp;summary: fields | routine&nbsp;&nbsp;&nbsp;&nbsp;details: <a href="#routine_details">routine</a> 
     683<a href="isadirectory.html?format=raw">&lt;&lt;prev file</a> | <a href="linearequation.html?format=raw">next file &gt;&gt;</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="isafile.html?format=raw" target="_TOP">view single page</a> | <a href="./../index.html?format=raw" target="_TOP">view frames</a>&nbsp;&nbsp;&nbsp;&nbsp;summary: fields | routine&nbsp;&nbsp;&nbsp;&nbsp;details: <a href="#routine_details">routine</a> 
    684684 
    685685</div> 
     
    696696      </div> 
    697697 
    698       <div id="file_comments"> same as find.pro except that as long as the file is 'NOT FOUND', 
    699           isafile calls dialog_pickfile, to ask the user to select a file. 
    700  
     698      <div id="file_comments"> 
     699 same as find.pro except that as long as the file is 'NOT FOUND', 
     700 isafile calls dialog_pickfile, to ask the user to select a file. 
     701 
     702  
    701703 all find, file_search and dialog_pickfile keywords (like title) can be used 
    702704</div> 
     
    716718 
    717719          <h2><a class="top" href="#container">top</a>isafile <span class="categories"> io 
    718  
    719  </span></h2> 
     720</span></h2> 
    720721         
    721722          <p class="header"> 
     
    724725          <div class="comments"></div> 
    725726 
    726           <h3>Return value</h3><div class="value"> the filename with its path 
     727          <h3>Return value</h3><div class="preformat">  
     728 the filename with its path 
    727729</div> 
    728730 
     
    742744            </h4> 
    743745         
    744           <div class="comments"> a proposed name. If neither filein 
    745         input parameter of filename keyword are defined, 
    746        the ask the user to choose a file. 
     746          <div class="comments">  
     747 a proposed name. If neither filein input parameter of filename keyword are  
     748 defined, the ask the user to choose a file. 
    747749</div> 
    748750             
     
    765767            </h4> 
    766768         
    767             <div class="comments"> a proposed filename. 
     769            <div class="comments">  
     770 a proposed filename. 
    768771</div> 
    769772             
     
    779782            </h4> 
    780783         
    781             <div class="comments"> a directory where we look for the file. this 
    782            keyword is taken into account only if the dirname 
    783            of filein or filename is '.' 
     784            <div class="comments">  
     785 a directory where we look for the file. this 
     786 keyword is taken into account only if the dirname 
     787 of filein or filename is '.' 
    784788</div> 
    785789             
     
    795799            </h4> 
    796800         
    797             <div class="comments"> to specify that filename is a new file and that 
    798         we should check only its path 
     801            <div class="comments">  
     802 to specify that filename is a new file and that we should check only its  
     803 path 
    799804</div> 
    800805             
     
    810815            </h4> 
    811816         
    812             <div class="comments"> performs recursive searching of directory hierarchies. 
    813         In a recursive search, find looks recursively for any and all  
    814         subdirectories in the file hierarchy rooted at the IODIRECTORY 
    815         argument.  
     817            <div class="comments">  
     818 performs recursive searching of directory hierarchies. 
     819 In a recursive search, find looks recursively for any and all 
     820 subdirectories in the file hierarchy rooted at the IODIRECTORY argument. 
    816821</div> 
    817822             
     
    827832            </h4> 
    828833         
    829             <div class="comments"> force to look only at file ending with .pro 
     834            <div class="comments">  
     835 force to look only at file ending with .pro 
    830836</div> 
    831837             
     
    841847            </h4> 
    842848         
    843             <div class="comments"> force to look only at file ending with .nc 
     849            <div class="comments">  
     850 force to look only at file ending with .nc 
    844851</div> 
    845852             
     
    855862            </h4> 
    856863         
    857             <div class="comments"> used to pass your keywords 
     864            <div class="comments">  
     865 used to pass your keywords 
    858866</div> 
    859867             
    860868           
    861869 
    862           <h3>Examples</h3><div class="value">  
    863  
    864   IDL> print, isafile('/Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro') 
     870          <h3>Examples</h3><div class="preformat"> 
     871 
     872 IDL> print, isafile('/Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro') 
    865873  /Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro 
    866   IDL> print, isafile('cm_4mesh.pro', iodir = '/Users/sebastie/SAXO_RD/Commons') 
     874 IDL> print, isafile('cm_4mesh.pro', iodir = '/Users/sebastie/SAXO_RD/Commons') 
    867875  /Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro 
    868   IDL> print, isafile('cm_4mesh.pro', iodir = !path) 
     876 IDL> print, isafile('cm_4mesh.pro', iodir = !path) 
    869877  /Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro 
    870   IDL> print, isafile('cm_4mesh.pro', iodir = '/Users/sebastie/SAXO_RD', /recursive) 
     878 IDL> print, isafile('cm_4mesh.pro', iodir = '/Users/sebastie/SAXO_RD', /recursive) 
    871879  /Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro 
    872   IDL> print, isafile('cm_4mesh.pro', iodir = getenv('HOME'), /recursive) 
     880 IDL> print, isafile('cm_4mesh.pro', iodir = getenv('HOME'), /recursive) 
    873881  /Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro 
    874   IDL> print, isafile('fake_file.pro') 
     882 IDL> print, isafile('fake_file.pro') 
    875883</div> 
    876884          <h3>Version history</h3> 
    877885           
    878           <h4>Version</h4><div class="value"> $Id: isafile.pro 118 2006-06-27 15:47:06Z pinsard $</div> 
    879           <h4>History</h4><div class="value"> Sebastien Masson (smasson@lodyc.jussieu.fr) 
     886          <h4>Version</h4><div class="preformat"> $Id: isafile.pro 136 2006-07-10 15:20:19Z pinsard $</div> 
     887          <h4>History</h4><div class="preformat"> Sebastien Masson (smasson@lodyc.jussieu.fr) 
    880888                      11/2/2000 
    881889 June 2005: Sebastien Masson: cleaning, use for file_* functions 
Note: See TracChangeset for help on using the changeset viewer.