Ignore:
Timestamp:
09/18/06 15:49:14 (18 years ago)
Author:
pinsard
Message:

Modif for html documentations : hellip entity instead of ..., path relative to xmldoc in url attribute, spell chekcking, enlight mousse button, status checking of xml processing in shell scripts (1/2)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Documentation/xmldoc/makehtml.sh

    r170 r183  
    88# released on 1 September 2005) doesn't handle carriage returns 
    99# 
     10# fplod 2006-09-18T12:53:07Z aedon.locean-ipsl.upmc.fr (Darwin) 
     11# add status checking 
    1012# fplod 2006-09-07T08:10:23Z aedon.locean-ipsl.upmc.fr (Darwin) 
    1113# main is rename to websaxo.html 
     
    5658case "${1}" in 
    5759   getsaxo) 
    58       # size of SRCand DATA with .svn 
     60      # size of SRC and DATA with .svn 
    5961      szallsvn=$( du -sh ../../.. | awk '{print $1}' ) 
    6062      szallsvn=${szallsvn%*M} 
     
    217219${titlepagexsl} \ 
    218220titlepage.saxo.xml 
     221status=${?} 
     222if [ ${status} -ne 0 ] 
     223then 
     224 echo "eee : pb xsltproc sur titlepage.saxo.xml" 
     225 exit 1 
     226fi 
    219227# 
    220228case "${1}" in 
     
    264272      xmllint --xinclude \ 
    265273              --output ${1}_${$}.xml ${1}.xml 
     274      status=${?} 
     275      if [ ${status} -ne 0 ] 
     276      then 
     277       echo "eee : pb xmllint sur ${1}.xml" 
     278       exit 1 
     279      fi 
    266280   ;; 
    267281   *) 
     
    284298use.extensions=1 \ 
    285299callouts.extension=1 
     300status=${?} 
     301if [ ${status} -ne 0 ] 
     302then 
     303 echo "eee : pb saxon sur ${1}_${$}.xml" 
     304 exit 1 
     305fi 
    286306# 
    287307case "${1}" in 
Note: See TracChangeset for help on using the changeset viewer.