1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

r496: fixing swat welcome page -- added links to example guide, devel guide, and howto (all in multi page format)

(This used to be commit 984d9fe271)
This commit is contained in:
Gerald Carter 2004-05-05 15:52:11 +00:00 committed by Gerald (Jerry) Carter
parent 04e8a07bb5
commit 4f9c8e28ac
2 changed files with 37 additions and 22 deletions

View File

@ -75,28 +75,41 @@ done
if [ -d $SRCDIR../docs/htmldocs/ ]; then
for f in $SRCDIR../docs/htmldocs/*.html; do
FNAME=$SWATDIR/help/`basename $f`
echo $FNAME
cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?
chmod 0644 $FNAME
done
for dir in htmldocs/ htmldocs/howto htmldocs/guide htmldocs/devel
do
if [ ! -d $SRCDIR../docs/$dir ]; then
continue
fi
INSTALLDIR=$SWATDIR/help/`echo $dir | sed 's/htmldocs\///g'`
if [ ! -d $INSTALLDIR ]; then
mkdir $INSTALLDIR
fi
if [ -d $SRCDIR../docs/htmldocs/images/ ]; then
if [ ! -d $SWATDIR/help/images/ ]; then
mkdir $SWATDIR/help/images
if [ ! -d $SWATDIR/help/images/ ]; then
echo Failed to make directory $SWATDIR/help/images, does $USER have privileges?
exit 1
fi
fi
for f in $SRCDIR../docs/htmldocs/images/*.png; do
FNAME=$SWATDIR/help/images/`basename $f`
echo $FNAME
cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?
chmod 0644 $FNAME
done
fi
for f in $SRCDIR../docs/$dir/*.html; do
FNAME=$INSTALLDIR/`basename $f`
echo $FNAME
cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?
chmod 0644 $FNAME
done
if [ -d $SRCDIR../docs/$dir/images/ ]; then
if [ ! -d $INSTALLDIR/images/ ]; then
mkdir $INSTALLDIR/images
if [ ! -d $INSTALLDIR/images/ ]; then
echo Failed to make directory $SWATDIR/help/images, does $USER have privileges?
exit 1
fi
fi
for f in $SRCDIR../docs/$dir/images/*.png; do
FNAME=$INSTALLDIR/`basename $f`
echo $FNAME
cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?
chmod 0644 $FNAME
done
fi
done
fi
# Install Using Samba book (but only if it is there)

View File

@ -57,7 +57,9 @@ Please choose a configuration action using one of the above buttons
<li><b>Books</b>
<ul>
<li><a href="/swat/using_samba/toc.html" target="docs">Using Samba, 2ed.</a> - by Jay Ts, Robert Eckstein, and David Collier-Brown
<li><a href="/swat/help/Samba-HOWTO-Collection.html">The Samba HOWTO Collection</a>
<li><a href="/swat/help/howto/">The Official Samba HOWTO and Reference Guide</a>
<li><a href="/swat/help/guide/">Samba 3 by Example</a>
<li><a href="/swat/help/devel/">The Samba Developer Guide</a>
</ul>
</ul>