From docs-cvs-return-2659-apmail-perl-docs-cvs-archive=perl.apache.org@perl.apache.org Wed Jun 08 06:56:36 2005 Return-Path: Delivered-To: apmail-perl-docs-cvs-archive@www.apache.org Received: (qmail 68721 invoked from network); 8 Jun 2005 06:56:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Jun 2005 06:56:36 -0000 Received: (qmail 85413 invoked by uid 500); 8 Jun 2005 06:56:36 -0000 Delivered-To: apmail-perl-docs-cvs-archive@perl.apache.org Received: (qmail 85389 invoked by uid 500); 8 Jun 2005 06:56:36 -0000 Mailing-List: contact docs-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk Reply-To: docs-dev@perl.apache.org List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list docs-cvs@perl.apache.org Received: (qmail 85364 invoked by uid 99); 8 Jun 2005 06:56:35 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 07 Jun 2005 23:56:34 -0700 Received: (qmail 68694 invoked by uid 65534); 8 Jun 2005 06:56:23 -0000 Message-ID: <20050608065623.68693.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: svn commit: r189539 - /perl/modperl/docs/trunk/MAINTAINER Date: Wed, 08 Jun 2005 06:56:23 -0000 To: docs-cvs@perl.apache.org From: stas@apache.org X-Mailer: svnmailer-1.0.0-dev X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: stas Date: Tue Jun 7 23:56:22 2005 New Revision: 189539 URL: http://svn.apache.org/viewcvs?rev=3D189539&view=3Drev Log: fix the oneliner Modified: perl/modperl/docs/trunk/MAINTAINER Modified: perl/modperl/docs/trunk/MAINTAINER URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/MAINTAINER?rev= =3D189539&r1=3D189538&r2=3D189539&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- perl/modperl/docs/trunk/MAINTAINER (original) +++ perl/modperl/docs/trunk/MAINTAINER Tue Jun 7 23:56:22 2005 @@ -19,7 +19,8 @@ won't recognize .png or crash, we want to use gifs instead. Here is how to convert png files to gif files: =20 - perl -le 'for (@ARGV) { print STDERR "converting $_\n"; \ s/\.\w+$//; -system "pngtopnm $_.png | pnmquant 256 | ppmtogif > $_.gif" } ' *.png + perl -le 'for (@ARGV) { print STDERR "converting $_\n"; \ s/\.\w+$//; \ + system "pngtopnm $_.png | pnmquant 256 | ppmtogif > $_.gif" } ' *.png + =20 =20 --------------------------------------------------------------------- To unsubscribe, e-mail: docs-cvs-unsubscribe@perl.apache.org For additional commands, e-mail: docs-cvs-help@perl.apache.org