Changeset 258


Ignore:
Timestamp:
08/20/07 11:06:05 (17 years ago)
Author:
pinsard
Message:

correction for links in documentations. cf 62

Location:
trunk/SRC
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Calendar/julday.pro

    r242 r258  
    44; Calculate the Julian Day Number for a given month, day, and year. 
    55; This is the inverse of the library function 
    6 ; <pro>CALDAT</pro>. 
     6; <pro>caldat</pro>. 
    77; 3 calendars are available according to the value of key_caltype 
    88; (variable of the common file cm_4cal): 'greg', '360d', 'noleap' 
  • trunk/SRC/Colors/color24.pro

    r242 r258  
    66; This routine was written to be used with routines like 
    77; COLORS <!--++ COLORS is not a routine--> or 
    8 ; <pro>GETCOLOR</pro>. 
     8; <pro>getcolor</pro>. 
    99; 
    1010; @categories 
  • trunk/SRC/Documentation/xmldoc/forxxxdoc.sh

    r183 r258  
    200200# dans le cas mouse, je ne veux pas les cadres 
    201201# a voir si on integre proprement ou si on vire... 
    202 if [ $1 = mouse ] 
     202if [ ${1} = mouse ] 
    203203then 
    204204    cmd="convert -size ${capture_xsize}x${capture_ysize} ${capture}" 
  • trunk/SRC/Documentation/xmldoc/makehtml.sh

    r255 r258  
    289289esac 
    290290# 
    291 CLASSPATH=$CLASSPATH:/usr/Xalan/xalan.jar:/usr/Xalan/xml-apis.jar:\ 
     291CLASSPATH=${CLASSPATH}:/usr/Xalan/xalan.jar:/usr/Xalan/xml-apis.jar:\ 
    292292/usr/Xalan/xercesImpl.jar:/usr/docbook-xsl/extensions/xalan25.jar 
    293293export CLASSPATH 
     
    301301if [ ${status} -ne 0 ] 
    302302then 
    303  echo "eee : pb saxon sur ${1}_${$}.xml" 
     303 echo "eee : pb xalan sur ${1}_${$}.xml" 
    304304 exit 1 
    305305fi 
     
    308308   firststeps) 
    309309      # process all_plots 
    310       java com.icl.saxon.StyleSheet -o all_plots_${$}.xml ${1}_${$}.xml  \ 
    311       all_plots_docbook.xsl 
    312       java com.icl.saxon.StyleSheet -o all_plots.html all_plots_${$}.xml  \ 
    313       saxo_html.xsl \ 
    314       section.autolabel=1 html.stylesheet="style.css saxo.css" css.decoration=1 
     310      java org.apache.xalan.xslt.Process -out all_plots_${$}.xml \ 
     311      -in  ${1}_${$}.xml  \ 
     312      -xsl all_plots_docbook.xsl 
     313      java org.apache.xalan.xslt.Process -out all_plots.html \ 
     314      -in  all_plots_${$}.xml \ 
     315      -xsl saxo_html.xsl \ 
     316      -param section.autolabel 1 \ 
     317      -param html.stylesheet "style.css saxo.css" \ 
     318      -param css.decoration 1 
    315319      rm -f all_plots_${$}.xml 
    316320      ;; 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/tvplus.pro

    r236 r258  
    6262; 
    6363; @keyword _EXTRA 
    64 ; Used to pass keywords to <proidl>TV</proidl>, 
    65 ; <proidl>PLOT</proidl>, 
    66 ; <pro>COLORBAR</pro> 
     64; Used to pass keywords to <proidl>tv</proidl>, 
     65; <proidl>plot</proidl>, 
     66; <pro>colorbar</pro> 
    6767; 
    6868; @restrictions 
  • trunk/SRC/Utilities/undefine.pro

    r242 r258  
    2525;ANSWER: At the main IDL level you can use the IDL procedure <proidl>DELVAR</proidl> to 
    2626;delete an IDL variable and make it undefined. Inside of procedures 
    27 ;and functions, I use this little program named <pro>UNDEFINE</pro> that I got 
     27;and functions, I use this little program named <pro>undefine</pro> that I got 
    2828;from Andrew Cool at the DSTO High Frequency Radar Division in 
    2929;Adelaide, Australia. 
Note: See TracChangeset for help on using the changeset viewer.