Changeset 19

Show
Ignore:
Timestamp:
09/14/05 11:50:49 (3 years ago)
Author:
ludovic.rousseau
Message:

use -nv instead of --non-verbose since wget 1.10 now uses --no-verbose
instead. Grr!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/doc/export-wiki.sh

    r6 r19  
    2323rm -rf "$SRCDIR"/*.html "$SRCDIR"/*.css 
    2424 
    25 wget --non-verbose $SERVER/$WIKI/TitleIndex -O "$SRCDIR"/TitleIndex.tmp 
     25wget -nv $SERVER/$WIKI/TitleIndex -O "$SRCDIR"/TitleIndex.tmp 
    2626 
    2727grep "\"/$WIKI/[^\"]*\"" "$SRCDIR"/TitleIndex.tmp \ 
     
    3434do 
    3535        F=`echo $A|sed -e 's/\//_/g'` 
    36         wget --non-verbose $SERVER/$WIKI/$A  -O "$SRCDIR"/$F.tmp 
     36        wget -nv $SERVER/$WIKI/$A  -O "$SRCDIR"/$F.tmp 
    3737        xsltproc --output "$SRCDIR"/$F.html "$SRCDIR"/$XSL "$SRCDIR"/$F.tmp 
    3838        sed -e "s#<a href=\"/$WIKI/\([^\"]*\)\"#<a href=\"\1.html\"#g" \ 
     
    4242mv "$SRCDIR"/WikiStart.html "$SRCDIR"/index.html 
    4343 
    44 wget --non-verbose http://www.opensc.org/trac/css/trac.css \ 
     44wget -nv http://www.opensc.org/trac/css/trac.css \ 
    4545        -O "$SRCDIR"/trac.css 
    4646