Ignore:
Timestamp:
07/05/06 17:01:30 (18 years ago)
Author:
pinsard
Message:

Add new documentations about evolution of commons (disseappeared, translated, transformed) see infoupdatecm;Add svn:keyword Id in Documentation/xmldoc/*.html, *.xml, *.sh and *.css; in savesaxo.sh modify *.html produced by idldoc to have preformated examples

File:
1 edited

Legend:

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

    • Property svn:keywords set to Id
    r100 r123  
    11#!/bin/bash 
    22# 
     3# update :  
     4# $Id$ 
     5# fplod 2006-07-05T13:18:56Z aedon.locean-ipsl.upmc.fr (Darwin) 
     6# add infoupdatecm 
     7# add sort and varname in production of infoupdatekwd 
    38# fplod 2006-06-07T13:55:07Z aedon.locean-ipsl.upmc.fr (Darwin) 
    49# add infoupdatekwd 
     
    6166   infoupdatekwd) 
    6267      grep "^  old = \[old, .* new = \[new" ../../ForOldVersion/updatekwd.pro | \ 
    63       sed -e "s/\( old = \[old, '\)\(.*\)\('\] *& new = \[new, '\)\(.*\)\('\]\)/<row><entry colname='old'>\2<\/entry> <entry colname='new'>\4<\/entry><\/row>/" > /tmp/rows.xml 
     68        sort | \ 
     69      sed -e "s/\( old = \[old, '\)\(.*\)\('\] *& new = \[new, '\)\(.*\)\('\]\)/<row><entry colname='old'><varname>\2<\/varname><\/entry> <entry colname='new'><varname>\4<\/varname><\/entry><\/row>/" > /tmp/rowskwd.xml 
     70   ;; 
     71   infoupdatecm) 
     72      grep "IF NOT key_forgetold AND n_elements(" ../../ForOldVersion/updateold.pro | \ 
     73        sort | \ 
     74      sed -e "s/\(^.* THEN \)\(.*\)\( = \)\(.*\)/<row><entry colname='old'><varname>\2<\/varname><\/entry> <entry colname='new'><varname>\4<\/varname><\/entry><\/row>/" > /tmp/rowscm.xml 
    6475   ;; 
    6576   *) 
     
    204215   ;; 
    205216   infoupdatekwd) 
    206       sed -e "/-- rows from updatekwd.pro --/r /tmp/rows.xml" \ 
    207           ${1}.xml > ${1}_${$}.xml  
    208       /bin/rm /tmp/rows.xml 
     217      sed -e "/-- rows from updatekwd.pro --/r /tmp/rowskwd.xml" \ 
     218          ${1}.xml > ${1}_${$}.xml  
     219      /bin/rm /tmp/rowskwd.xml 
     220   ;; 
     221   infoupdatecm) 
     222      sed -e "/-- rows from updateold.pro --/r /tmp/rowscm.xml" \ 
     223          ${1}.xml > ${1}_${$}.xml  
     224      /bin/rm /tmp/rowscm.xml 
    209225   ;; 
    210226   *) 
Note: See TracChangeset for help on using the changeset viewer.