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

correction for links in documentations. cf 62

Location:
trunk/SRC/Documentation/xmldoc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • 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      ;; 
Note: See TracChangeset for help on using the changeset viewer.