texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo update (Mon May 17 09:22:01 EDT 2004)


From: Karl Berry
Subject: texinfo update (Mon May 17 09:22:01 EDT 2004)
Date: Mon, 17 May 2004 09:22:37 -0400

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.345
retrieving revision 1.346
diff -c -r1.345 -r1.346
*** ChangeLog   16 May 2004 15:53:36 -0000      1.345
--- ChangeLog   17 May 2004 12:58:40 -0000      1.346
***************
*** 1,3 ****
--- 1,8 ----
+ 2004-05-17  Karl Berry  <address@hidden>
+ 
+       * util/gendocs.sh, gendocs_template: use package.format.tar.gz
+               consistently.  Before, -, _, and . were all used.
+ 
  2004-05-16  Karl Berry  <address@hidden>
  
        * lib/Makefile.am (libtxi_a_SOURCES): include strcase.h.
Index: lib/alloca.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/lib/alloca.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -c -r1.6 -r1.7
*** lib/alloca.c        27 Nov 2003 23:45:42 -0000      1.6
--- lib/alloca.c        17 May 2004 12:59:20 -0000      1.7
***************
*** 25,30 ****
--- 25,32 ----
  # include <config.h>
  #endif
  
+ #include <alloca.h>
+ 
  #include <string.h>
  #include <stdlib.h>
  
Index: util/gendocs.sh
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/gendocs.sh,v
retrieving revision 1.11
retrieving revision 1.12
diff -c -r1.11 -r1.12
*** util/gendocs.sh     16 May 2004 12:41:10 -0000      1.11
--- util/gendocs.sh     17 May 2004 12:57:58 -0000      1.12
***************
*** 1,7 ****
  #!/bin/sh
  # gendocs.sh -- generate a GNU manual in many formats.  This script is
  #   mentioned in maintain.texi.  See the help message below for usage details.
! # $Id: gendocs.sh,v 1.11 2004/05/16 12:41:10 karl Exp $
  # 
  # Copyright (C) 2003, 2004 Free Software Foundation, Inc.
  #
--- 1,7 ----
  #!/bin/sh
  # gendocs.sh -- generate a GNU manual in many formats.  This script is
  #   mentioned in maintain.texi.  See the help message below for usage details.
! # $Id: gendocs.sh,v 1.12 2004/05/17 12:57:58 karl Exp $
  # 
  # Copyright (C) 2003, 2004 Free Software Foundation, Inc.
  #
***************
*** 39,45 ****
  : ${GENDOCS_TEMPLATE_DIR="."}
  unset CDPATH
  
! rcs_revision='$Revision: 1.11 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="gendocs.sh $rcs_version
--- 39,45 ----
  : ${GENDOCS_TEMPLATE_DIR="."}
  unset CDPATH
  
! rcs_revision='$Revision: 1.12 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="gendocs.sh $rcs_version
***************
*** 149,156 ****
  echo Generating info files...
  ${MAKEINFO} -o $PACKAGE.info $srcfile
  mkdir -p $outdir/
! tar czf $outdir/$PACKAGE-info.tar.gz $PACKAGE.info*
! info_tgz_size="`calcsize $outdir/$PACKAGE-info.tar.gz`"
  # do not mv the info files, there's no point in having them available
  # separately on the web.
  
--- 149,156 ----
  echo Generating info files...
  ${MAKEINFO} -o $PACKAGE.info $srcfile
  mkdir -p $outdir/
! tar czf $outdir/$PACKAGE.info.tar.gz $PACKAGE.info*
! info_tgz_size="`calcsize $outdir/$PACKAGE.info.tar.gz`"
  # do not mv the info files, there's no point in having them available
  # separately on the web.
  
***************
*** 194,202 ****
  split_html_dir=$PACKAGE.html
  (
    cd ${split_html_dir} || exit 1
!   tar -czf ../$outdir/${PACKAGE}_html_node.tar.gz -- *.html
  )
! html_node_tgz_size="`calcsize $outdir/${PACKAGE}_html_node.tar.gz`"
  rm -f $outdir/html_node/*.html
  mkdir -p $outdir/html_node/
  mv ${split_html_dir}/*.html $outdir/html_node/
--- 194,202 ----
  split_html_dir=$PACKAGE.html
  (
    cd ${split_html_dir} || exit 1
!   tar -czf ../$outdir/${PACKAGE}.html_node.tar.gz -- *.html
  )
! html_node_tgz_size="`calcsize $outdir/${PACKAGE}.html_node.tar.gz`"
  rm -f $outdir/html_node/*.html
  mkdir -p $outdir/html_node/
  mv ${split_html_dir}/*.html $outdir/html_node/
***************
*** 220,228 ****
    ${DOCBOOK2HTML} -o $split_html_db_dir ${outdir}/$PACKAGE-db.xml
    (
      cd ${split_html_db_dir} || exit 1
!     tar -czf ../$outdir/${PACKAGE}_html_node_db.tar.gz -- *.html
    )
!   html_node_db_tgz_size="`calcsize $outdir/${PACKAGE}_html_node_db.tar.gz`"
    rm -f $outdir/html_node_db/*.html
    mkdir -p $outdir/html_node_db
    mv ${split_html_db_dir}/*.html $outdir/html_node_db/
--- 220,228 ----
    ${DOCBOOK2HTML} -o $split_html_db_dir ${outdir}/$PACKAGE-db.xml
    (
      cd ${split_html_db_dir} || exit 1
!     tar -czf ../$outdir/${PACKAGE}.html_node_db.tar.gz -- *.html
    )
!   html_node_db_tgz_size="`calcsize $outdir/${PACKAGE}.html_node_db.tar.gz`"
    rm -f $outdir/html_node_db/*.html
    mkdir -p $outdir/html_node_db
    mv ${split_html_db_dir}/*.html $outdir/html_node_db/
Index: util/gendocs_template
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/gendocs_template,v
retrieving revision 1.4
retrieving revision 1.5
diff -c -r1.4 -r1.5
*** util/gendocs_template       11 Apr 2004 17:56:47 -0000      1.4
--- util/gendocs_template       17 May 2004 12:57:58 -0000      1.5
***************
*** 1,7 ****
  <?xml version="1.0" encoding="utf-8" ?>
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
! <!-- $Id: gendocs_template,v 1.4 2004/04/11 17:56:47 karl Exp $ -->
  <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
  
  <head>
--- 1,7 ----
  <?xml version="1.0" encoding="utf-8" ?>
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
! <!-- $Id: gendocs_template,v 1.5 2004/05/17 12:57:58 karl Exp $ -->
  <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
  
  <head>
***************
*** 43,52 ****
    <li><a href="%%PACKAGE%%.html.gz">HTML compressed
        (%%HTML_MONO_GZ_SIZE%%K gzipped characters)</a> - entirely on 
        one web page.</li>
!   <li><a href="%%PACKAGE%%_html_node.tar.gz">HTML compressed
        (%%HTML_NODE_TGZ_SIZE%%K gzipped tar file)</a> -
        with one web page per node.</li>
!   <li><a href="%%PACKAGE%%-info.tar.gz">Info document
        (%%INFO_TGZ_SIZE%%K characters gzipped tar file)</a>.</li>
    <li><a href="%%PACKAGE%%.txt">ASCII text
        (%%ASCII_SIZE%%K characters)</a>.</li>
--- 43,52 ----
    <li><a href="%%PACKAGE%%.html.gz">HTML compressed
        (%%HTML_MONO_GZ_SIZE%%K gzipped characters)</a> - entirely on 
        one web page.</li>
!   <li><a href="%%PACKAGE%%.html_node.tar.gz">HTML compressed
        (%%HTML_NODE_TGZ_SIZE%%K gzipped tar file)</a> -
        with one web page per node.</li>
!   <li><a href="%%PACKAGE%%.info.tar.gz">Info document
        (%%INFO_TGZ_SIZE%%K characters gzipped tar file)</a>.</li>
    <li><a href="%%PACKAGE%%.txt">ASCII text
        (%%ASCII_SIZE%%K characters)</a>.</li>
***************
*** 92,98 ****
  <p>
  Updated:
  <!-- timestamp start -->
! $Date: 2004/04/11 17:56:47 $ $Author: karl $
  <!-- timestamp end -->
  </p>
  </div>
--- 92,98 ----
  <p>
  Updated:
  <!-- timestamp start -->
! $Date: 2004/05/17 12:57:58 $ $Author: karl $
  <!-- timestamp end -->
  </p>
  </div>
P ChangeLog
P lib/alloca.c
P util/gendocs.sh
P util/gendocs_template


reply via email to

[Prev in Thread] Current Thread [Next in Thread]