[imp] CVS Update
Andy
andyw@black.hole-in-the.net
Fri, 14 Sep 2001 15:48:50 +0100
On Fri, Sep 14, 2001 at 10:28:00AM -0400, Jon Parise wrote:
> On Fri, Sep 14, 2001 at 10:23:23AM -0400, m.ibarra@cdcixis-na.com wrote:
>
> > I have been using cvsroot up until Monday.
>
> The CVSROOT changed on Wednesday. cvs.horde.org can only be used
> by developers. anoncvs.horde.org is the public, anonymous cvs
> repository.
>
> --
> Jon Parise (jon@csh.rit.edu) . Information Technology (B.S.)
> http://www.csh.rit.edu/~jon/ : Computer Science House Member
>
> --
> IMP mailing list: http://horde.org/imp/
> Archive: http://marc.theaimsgroup.com/?l=imp&r=1&w=2
> Frequently Asked Questions: http://horde.org/faq/
> To unsubscribe, mail: imp-unsubscribe@lists.horde.org
>
a quick fix for the updated cvs address
run from hordes parent directory
#!/bin/sh
old="cvs.horde.org"
new="anoncvs.hode.org"
for i in `find . -name CVS -type d -print`
do
echo $i
sed -e "s%$old%$new%" < $i/Root > $i/Root.new
mv $i/Root $i/Root.old
mv $i/Root.new $i/Root
done
--
tlabs
-------------------------------------------------------------------------------------------
$tlabs_head->configure(-state => 'disabled', -size => 'small', -relief => 'needing some');
andyw@black.hole-in-the.net
-------------------------------------------------------------------------------------------