diff options
author | Motonobu Takahashi <monyo@samba.org> | 2001-09-25 17:40:12 +0000 |
---|---|---|
committer | Motonobu Takahashi <monyo@samba.org> | 2001-09-25 17:40:12 +0000 |
commit | 1817c231c7e67bf836fc1b08fda9b1d8f322f6b8 (patch) | |
tree | ebaadc67063945e51865a5b93c7aec3127470402 /source3/script | |
parent | 00842ae2530a67129c9885e4e9bec914c9743a93 (diff) | |
download | samba-1817c231c7e67bf836fc1b08fda9b1d8f322f6b8.tar.gz samba-1817c231c7e67bf836fc1b08fda9b1d8f322f6b8.tar.bz2 samba-1817c231c7e67bf836fc1b08fda9b1d8f322f6b8.zip |
now --with-i18n-swat works to install some international files
used by SWAT into $swatdir/$ln/{help,images,include}
we have still points which needs to discuss, that is how to archive
and install lots of HTML help files and Using Samba files.
-- monyo
(This used to be commit 9ec2d5e96ebb907e66250772057bf5e2601f8ec9)
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/installswat.sh | 34 |
1 files changed, 26 insertions, 8 deletions
diff --git a/source3/script/installswat.sh b/source3/script/installswat.sh index 8868d4cbb1..fce4406b83 100755 --- a/source3/script/installswat.sh +++ b/source3/script/installswat.sh @@ -4,13 +4,26 @@ SWATDIR=$1 SRCDIR=$2/ BOOKDIR=$SWATDIR/using_samba +IS_I18N=$3 echo Installing SWAT in $SWATDIR echo Installing the Samba Web Administration Tool -for d in $SWATDIR $SWATDIR/help $SWATDIR/images $SWATDIR/include; do +if [ X$IS_I18N = Xyes ]; then + LANGS=". `cd $SRCDIR../swat/; /bin/echo lang/??`" + echo Installing langs are `cd $SRCDIR../swat/lang/; /bin/echo ??` +else + LANGS=. +fi + +for ln in $LANGS; do + +SWATLANGDIR=$SWATDIR/$ln + +for d in $SWATLANGDIR $SWATLANGDIR/help $SWATLANGDIR/images \ + $SWATLANGDIR/include; do if [ ! -d $d ]; then - mkdir $d + mkdir -p $d if [ ! -d $d ]; then echo Failed to make directory $d, does $USER have privileges? exit 1 @@ -18,10 +31,13 @@ for d in $SWATDIR $SWATDIR/help $SWATDIR/images $SWATDIR/include; do fi done +done + # Install images +for ln in $LANGS; do -for f in $SRCDIR../swat/images/*.gif; do - FNAME=$SWATDIR/images/`basename $f` +for f in $SRCDIR../swat/$ln/images/*.gif; do + FNAME=$SWATDIR/$ln/images/`basename $f` echo $FNAME cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges? chmod 0644 $FNAME @@ -29,8 +45,8 @@ done # Install html help -for f in $SRCDIR../swat/help/*.html; do - FNAME=$SWATDIR/help/`basename $f` +for f in $SRCDIR../swat/$ln/help/*.html; do + FNAME=$SWATDIR/$ln/help/`basename $f` echo $FNAME if [ "x$BOOKDIR" = "x" ]; then cat $f | sed 's/@BOOKDIR@.*$//' > $f.tmp @@ -54,13 +70,15 @@ done # Install "server-side" includes -for f in $SRCDIR../swat/include/*.html; do - FNAME=$SWATDIR/include/`basename $f` +for f in $SRCDIR../swat/$ln/include/*.html; do + FNAME=$SWATDIR/$ln/include/`basename $f` echo $FNAME cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges? chmod 0644 $FNAME done +done + # Install Using Samba book if [ "x$BOOKDIR" != "x" ]; then |