Ignore:
Timestamp:
06/27/06 17:47:06 (18 years ago)
Author:
pinsard
Message:

add $ in Calendar, Grid, Interpolation, Obsolete and Postscript *.pro files, add svn:keywords Id to all these files, some improvements in header

Location:
trunk/SRC/Documentation/idldoc_html_output/Utilities
Files:
8 edited

Legend:

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

    r111 r118  
    716716         
    717717          <p class="header"> 
    718             <span class="result">result = </span>createfunc(<span class="result"><a href="#_createfunc_param_command">command</a></span>, <a href="#_createfunc_keyword_FILENAMEIN">FILENAMEIN</a>=<span class="result">FILENAMEIN</span>, <a href="#_createfunc_keyword_KWDLIST">KWDLIST</a>=<span class="result">KWDLIST</span>, <a href="#_createfunc_keyword__extra">_extra</a>=<span class="result">_extra</span>)</p> 
     718            <span class="result">result = </span>createfunc(<span class="result"><a href="#_createfunc_param_command">command</a></span>, <a href="#_createfunc_keyword_FILENAMEIN">FILENAMEIN</a>=<span class="result">FILENAMEIN</span>, <a href="#_createfunc_keyword_KWDLIST">KWDLIST</a>=<span class="result">KWDLIST</span>, <a href="#_createfunc_keyword__EXTRA">_EXTRA</a>=<span class="result">_EXTRA</span>)</p> 
    719719         
    720720          <div class="comments"></div> 
     
    737737            </h4> 
    738738         
    739           <div class="comments"> a scalar string defining the result to be byven back by the function. (see examples) 
     739          <div class="comments"> a scalar string defining the result to be  
     740 given back by the function. (see examples) 
    740741</div> 
    741742             
     
    759760         
    760761            <div class="comments"> name of the funccedure to be created. 
    761       'for_createfunc.pro' by default</div> 
     762      'for_createfunc.pro' by default 
     763</div> 
    762764             
    763765            <h4 id="_createfunc_keyword_KWDLIST">KWDLIST&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
     
    777779</div> 
    778780             
    779             <h4 id="_createfunc_keyword__extra">_extra&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
     781            <h4 id="_createfunc_keyword__EXTRA">_EXTRA&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    780782               
    781783               
     
    789791         
    790792            <div class="comments"> used to pass your keywords to the created function. 
    791  
    792  SIDE EFFECTS: ends the function name with '.pro' if needed 
    793793</div> 
    794794             
    795795           
    796796 
    797           <h3>Examples</h3><div class="value">  
     797          <h3>Examples</h3><div class="value"> 
    798798      IDL> print, createfunc('3*2', filename='test') 
    799799      IDL> print, createfunc('3*two', filename = 'test' $ 
     
    802802          <h3>Version history</h3> 
    803803           
    804            
     804          <h4>Version</h4><div class="value"> $Id$ 
     805</div> 
    805806          <h4>History</h4><div class="value"> Sebastien Masson (smasson@lodyc.jussieu.fr) 
    806                       May 2005</div> 
     807                      May 2005 
     808</div> 
    807809           
    808810           
     
    811813           
    812814           
    813           <h4>Restrictions</h4><div class="value"> arguments can be given only through keywords 
     815          <h4>Restrictions</h4><div class="value">  
     816 - arguments can be given only through keywords; 
     817 - ends the function name with '.pro' if needed. 
    814818</div> 
    815819         
  • trunk/SRC/Documentation/idldoc_html_output/Utilities/createpro.html

    r111 r118  
    736736            </h4> 
    737737         
    738           <div class="comments"> a string array defining the procedure to be created. each element will be a line of the created procedure.  
     738          <div class="comments"> a string array defining the procedure to be created. each element will be a line of the created procedure. 
    739739</div> 
    740740             
     
    747747             
    748748            <h4 id="_createpro_keyword_FILENAMEIN">FILENAMEIN&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    749                
     749              <span class="attr">in</span> 
    750750               
    751751               
     
    762762             
    763763            <h4 id="_createpro_keyword_KWDLIST">KWDLIST&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    764                
     764              <span class="attr">in</span> 
    765765               
    766766               
     
    788788            </h4> 
    789789         
    790             <div class="comments"></div> 
     790            <div class="comments"> obsolote, please pass directly your keywords through _extra 
     791</div> 
    791792             
    792793            <h4 id="_createpro_keyword__extra">_extra&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
     
    802803         
    803804            <div class="comments"> used to pass your keywords to the created procedure. 
    804  
    805  SIDE EFFECTS: ends the procedure name with '.pro' if needed 
    806805</div> 
    807806             
    808807           
    809808 
    810           <h3>Examples</h3><div class="value">  
     809          <h3>Examples</h3><div class="value"> 
    811810      IDL> createpro, ['print,''OK'''], filename='test' 
    812811      IDL> createpro, ['if keyword_set(ok) then print,''OK'' else print, ''No'''] $ 
    813       IDL>   , filename = 'test', kwdlist =', ok = ok'  
     812      IDL>   , filename = 'test', kwdlist =', ok = ok' 
    814813      IDL> createpro, ['if keyword_set(ok) then print,''OK'' else print, ''No'''] $ 
    815       IDL>   , filename = 'test', kwdlist = ', ok = ok', /ok  
     814      IDL>   , filename = 'test', kwdlist = ', ok = ok', /ok 
    816815 
    817816</div> 
    818817          <h3>Version history</h3> 
    819818           
    820            
     819          <h4>Version</h4><div class="value"> $Id$</div> 
    821820          <h4>History</h4><div class="value"> Sebastien Masson (smasson@lodyc.jussieu.fr) 
    822821 cleaning + new keywords: October 2005 
    823  Feb. 2006: supress keyword "kwdused" and use call_procedure instead of execute</div> 
     822 Feb. 2006: supress keyword "kwdused" and use call_procedure instead of execute 
     823</div> 
    824824           
    825825           
     
    828828           
    829829           
    830           <h4>Restrictions</h4><div class="value"> is not working with functions, use createfunc instead. 
    831               arguments can be given only through keywords 
     830          <h4>Restrictions</h4><div class="value"> 
     831 - is not working with functions, use createfunc instead. 
     832 - arguments can be given only through keywords. 
     833 - ends the procedure name with '.pro' if needed. 
    832834</div> 
    833835         
  • trunk/SRC/Documentation/idldoc_html_output/Utilities/def_myuniquetmpdir.html

    r111 r118  
    732732          <h3>Version history</h3> 
    733733           
    734            
     734          <h4>Version</h4><div class="value"> $Id$ 
     735</div> 
    735736          <h4>History</h4><div class="value"> Sebastien Masson (smasson@lodyc.jussieu.fr) 
    736737                      June 2005 
  • trunk/SRC/Documentation/idldoc_html_output/Utilities/demomode_compatibility.html

    r111 r118  
    725725 
    726726           
    727            
    728            
    729            
     727          <h3>Version history</h3> 
     728           
     729          <h4>Version</h4><div class="value"> $Id$</div> 
    730730           
    731731           
  • trunk/SRC/Documentation/idldoc_html_output/Utilities/find.html

    r111 r118  
    911911            </h4> 
    912912         
    913             <div class="comments"></div> 
     913            <div class="comments"> used to pass your keywords 
     914</div> 
    914915             
    915916           
     
    944945          <h3>Version history</h3> 
    945946           
    946            
     947          <h4>Version</h4><div class="value"> $Id$</div> 
    947948          <h4>History</h4><div class="value"> Sebastien Masson (smasson@lodyc.jussieu.fr) 
    948949                       28/4/1999 
    949950                       6/7/1999: compatibilite mac et windows 
    950  June 2005: Sebastien Masson: cleaning, use for file_* functions</div> 
     951 June 2005: Sebastien Masson: cleaning, use for file_* functions 
     952</div> 
    951953           
    952954           
  • trunk/SRC/Documentation/idldoc_html_output/Utilities/isadirectory.html

    r111 r118  
    792792            </h4> 
    793793         
    794             <div class="comments"></div> 
     794            <div class="comments"> used to pass your keywords 
     795</div> 
    795796             
    796797           
     
    806807          <h3>Version history</h3> 
    807808           
    808            
     809          <h4>Version</h4><div class="value"> $Id$</div> 
    809810          <h4>History</h4><div class="value"> Sebastien Masson (smasson@lodyc.jussieu.fr) 
    810811                      June 28, 2000 
    811  June 2005: Sebastien Masson: cleaning, use for file_* functions</div> 
     812 June 2005: Sebastien Masson: cleaning, use for file_* functions 
     813</div> 
    812814           
    813815           
  • trunk/SRC/Documentation/idldoc_html_output/Utilities/isafile.html

    r111 r118  
    855855            </h4> 
    856856         
    857             <div class="comments"></div> 
     857            <div class="comments"> used to pass your keywords 
     858</div> 
    858859             
    859860           
     
    875876          <h3>Version history</h3> 
    876877           
    877            
     878          <h4>Version</h4><div class="value"> $Id$</div> 
    878879          <h4>History</h4><div class="value"> Sebastien Masson (smasson@lodyc.jussieu.fr) 
    879880                      11/2/2000 
    880  June 2005: Sebastien Masson: cleaning, use for file_* functions</div> 
     881 June 2005: Sebastien Masson: cleaning, use for file_* functions 
     882</div> 
    881883           
    882884           
  • trunk/SRC/Documentation/idldoc_html_output/Utilities/protype.html

    r111 r118  
    762762          <h3>Version history</h3> 
    763763           
    764            
     764          <h4>Version</h4><div class="value"> $Id$</div> 
    765765          <h4>History</h4><div class="value"> Sebastien Masson (smasson@lodyc.jussieu.fr) 
    766                        Feb 2006</div> 
     766                       Feb 2006 
     767</div> 
    767768           
    768769           
Note: See TracChangeset for help on using the changeset viewer.