From: Pekka Riikonen Date: Sat, 11 Aug 2001 14:11:58 +0000 (+0000) Subject: updates X-Git-Tag: 1.2.beta1~1955 X-Git-Url: http://git.silcnet.org/gitweb/?p=crypto.git;a=commitdiff_plain;h=878498e8ccd3766d9ae958edb657961de5c243e8 updates --- diff --git a/lib/LIBINDEX b/lib/LIBINDEX new file mode 100644 index 00000000..277227ca --- /dev/null +++ b/lib/LIBINDEX @@ -0,0 +1,10 @@ + + +SILC Toolkit Reference Manual +
+Copyright (C) GNU GPL 2001 The SILC Project
+@DATE@ +

diff --git a/lib/silcclient/DIRECTORY b/lib/silcclient/DIRECTORY index 5ff3a03e..ef45db46 100644 --- a/lib/silcclient/DIRECTORY +++ b/lib/silcclient/DIRECTORY @@ -6,7 +6,7 @@
    SILC Client Library

    Introduction

    -
    +
    
     SILC Client Library is SILC Client implementation without the actual user 
     interface. The library uses common and core components of SILC protocol from
     lib/silccore library and normal utility routines from lib/silcutil library.
    @@ -23,6 +23,7 @@ it wants.  The library is entirely transparent to the user interface and
     it does not include any user interface specific issues such as window
     handling or item handling on the screen etc.  These does not interest
     the library.
    +
     
  1. SILC Client API diff --git a/lib/silccore/DIRECTORY b/lib/silccore/DIRECTORY index 963eced5..849dc0e2 100644 --- a/lib/silccore/DIRECTORY +++ b/lib/silccore/DIRECTORY @@ -6,11 +6,12 @@
      SILC Core Library

      Introduction

      -
      +
      
       SILC Core Library includes all the core components of the SILC Protocol.
       It provides routines to encode and decode all SILC packet payloads defined
       in the protocol specification.  It provides packet assembling and parsing
       routines, and routines for sending private message and channel messages.
      +
       
    1. SILC Auth API diff --git a/scripts/silcdoc/silcdoc b/scripts/silcdoc/silcdoc index 23c342f2..75136813 100755 --- a/scripts/silcdoc/silcdoc +++ b/scripts/silcdoc/silcdoc @@ -68,9 +68,7 @@ if [ "$TYPE" = "HTML" ]; then # Generate the index and TOC files from the DIRECTORY files files=`find $SRC -name "DIRECTORY"` - index=`find $SRC -name "LIBINDEX"` - curdate=`date` - sed -e "/@DATE@/s//$curdate/" $index >$DST/index.html + touch $DST/index.html.tmp for i in $files do # Get library name @@ -82,12 +80,16 @@ if [ "$TYPE" = "HTML" ]; then sh gen.sh index.php $DST/$fname $DST/$fname # Generate the link for the top index.html for this library - echo "
    2. $name" >>$DST/index.html + echo "
    3. $name" >>$DST/index.html.tmp done # Generate the top index.html file + index=`find $SRC -name "LIBINDEX"` + curdate=`date` + sed -e "/@DATE@/s//$curdate/" -e "/@BODY@/ r $DST/index.html.tmp" -e s/@BODY@//g $index >$DST/index.html sh gen.sh gen_toc.php $DST/index.html $DST/index.html sh gen.sh index.php $DST/index.html $DST/index.html + rm -rf $DST/index.html.tmp rm -rf /tmp/silcdoc.html fi