Return-Path: Delivered-To: apmail-xml-forrest-dev-archive@www.apache.org Received: (qmail 96766 invoked from network); 17 Sep 2003 10:02:41 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 17 Sep 2003 10:02:41 -0000 Received: (qmail 43920 invoked by uid 500); 17 Sep 2003 10:02:14 -0000 Delivered-To: apmail-xml-forrest-dev-archive@xml.apache.org Received: (qmail 43891 invoked by uid 500); 17 Sep 2003 10:02:13 -0000 Mailing-List: contact forrest-cvs-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: forrest-dev@xml.apache.org Delivered-To: mailing list forrest-cvs@xml.apache.org Received: (qmail 43878 invoked from network); 17 Sep 2003 10:02:13 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 17 Sep 2003 10:02:13 -0000 Received: (qmail 96748 invoked by uid 1352); 17 Sep 2003 10:02:39 -0000 Date: 17 Sep 2003 10:02:39 -0000 Message-ID: <20030917100239.96747.qmail@minotaur.apache.org> From: jefft@apache.org To: xml-forrest-cvs@apache.org Subject: cvs commit: xml-forrest/tools/ant/bin ant ant.bat X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jefft 2003/09/17 03:02:39 Modified: . status.xml tools/ant/bin ant ant.bat Log: Don't source /etc/antrc and ~/.antrc, as they may contain stuff that breaks Forrest (in jpackage-derived RPMs). Thanks to Eric BURGHARD Revision Changes Path 1.219 +5 -1 xml-forrest/status.xml Index: status.xml =================================================================== RCS file: /home/cvs/xml-forrest/status.xml,v retrieving revision 1.218 retrieving revision 1.219 diff -u -r1.218 -r1.219 --- status.xml 16 Sep 2003 23:12:13 -0000 1.218 +++ status.xml 17 Sep 2003 10:02:39 -0000 1.219 @@ -25,6 +25,10 @@ + + The 'forrest' command no longer sources /etc/antrc and + ~/.antrc, which solves problems on some *nix distributions. + Added creation of TOC support on PDF files. 1.4 +4 -4 xml-forrest/tools/ant/bin/ant Index: ant =================================================================== RCS file: /home/cvs/xml-forrest/tools/ant/bin/ant,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ant 30 Oct 2002 09:08:27 -0000 1.3 +++ ant 17 Sep 2003 10:02:39 -0000 1.4 @@ -4,8 +4,8 @@ # reserved. # load system-wide ant configuration -if [ -f "/etc/ant.conf" ] ; then - . /etc/ant.conf +if [ -f "/etc/forrest.conf" ] ; then + . /etc/forrest.conf fi # provide default values for people who don't use RPMs @@ -17,8 +17,8 @@ fi # load user ant configuration -if [ -f "$HOME/.antrc" ] ; then - . "$HOME/.antrc" +if [ -f "$HOME/.forrestrc" ] ; then + . "$HOME/.forrestrc" fi # OS specific support. $var _must_ be set to either true or false. 1.4 +2 -2 xml-forrest/tools/ant/bin/ant.bat Index: ant.bat =================================================================== RCS file: /home/cvs/xml-forrest/tools/ant/bin/ant.bat,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ant.bat 30 Oct 2002 09:08:27 -0000 1.3 +++ ant.bat 17 Sep 2003 10:02:39 -0000 1.4 @@ -3,7 +3,7 @@ REM Copyright (c) 2001-2002 The Apache Software Foundation. All rights REM reserved. -if exist "%HOME%\antrc_pre.bat" call "%HOME%\antrc_pre.bat" +if exist "%HOME%\forrestrc_pre.bat" call "%HOME%\forrestrc_pre.bat" if "%OS%"=="Windows_NT" @setlocal @@ -92,5 +92,5 @@ if "%OS%"=="Windows_NT" @endlocal :mainEnd -if exist "%HOME%\antrc_post.bat" call "%HOME%\antrc_post.bat" +if exist "%HOME%\forrestrc_post.bat" call "%HOME%\forrestrc_post.bat"