Return-Path: Delivered-To: apmail-httpd-docs-archive@httpd.apache.org Received: (qmail 71349 invoked by uid 500); 5 Sep 2002 18:47:49 -0000 Mailing-List: contact docs-help@httpd.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: docs@httpd.apache.org Delivered-To: mailing list docs@httpd.apache.org Received: (qmail 71338 invoked from network); 5 Sep 2002 18:47:49 -0000 Date: Thu, 5 Sep 2002 14:48:38 -0400 (EDT) From: Rich Bowen To: Subject: Re: manual/expand.pl In-Reply-To: <3D779F0C.1000403@slive.ca> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On Thu, 5 Sep 2002, Joshua Slive wrote: > Rich Bowen wrote: > > > > > So that leaves 67 files that still need converted. In English, at least. > > > > Hey, are you trying to wreck my good mood? ;-) > > To be honest, I can't figure out where all those files are. I can find > 20 or 30 pretty easily, but not 60+. Perhaps it would be good to drop a > list into STATUS so that we can at least have the pleasure of watching > the list shorten over time. Running the following code: ----------------------- #!/usr/bin/perl use File::Find; find({ wanted => \&count, follow => 1 }, '.'); sub count { $x = $File::Find::fullname; return unless $x =~ /\.html\.en$/; $xml = $x; $xml =~ s/\.html\.en$/.xml/; $x =~ s/^.*manual//; print "$x has not yet been converted.\n" unless -e $xml; } --------------------- I got the following list: /custom-error.html.en has not yet been converted. /index.html.en has not yet been converted. /cgi_path.html.en has not yet been converted. /sitemap.html.en has not yet been converted. /vhosts/index.html.en has not yet been converted. /vhosts/fd-limits.html.en has not yet been converted. /vhosts/name-based.html.en has not yet been converted. /mod/module-dict.html.en has not yet been converted. /mod/directive-dict.html.en has not yet been converted. /howto/cgi.html.en has not yet been converted. /howto/ssi.html.en has not yet been converted. /howto/auth.html.en has not yet been converted. /ssl/index.html.en has not yet been converted. /developer/modules.html.en has not yet been converted. So I'm a little confused. Either my logic was way off the first time, or my Perl skills are fading with disuse. -- And everyone said, "If we only live, We too will go to sea in a Sieve - To the hills of the Chankly Bore!" (The Jumblies, by Edward Lear) --------------------------------------------------------------------- To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org For additional commands, e-mail: docs-help@httpd.apache.org