From fs111 at web.de Thu Jul 24 06:39:09 2003 Content-Type: multipart/mixed; boundary="===============9096100915440151491==" MIME-Version: 1.0 From: =?utf-8?q?Andr=C3=A9_Kelpe_=3Cfs111_at_web=2Ede=3E?= To: devel at lists.fedoraproject.org Subject: Re: people.redhat.com index Date: Thu, 24 Jul 2003 12:39:31 +0200 Message-ID: <1059043171.2975.6.camel@localhost> In-Reply-To: 20030723192120.GC28315@raq465.uk2net.com --===============9096100915440151491== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Am Mit, 2003-07-23 um 21.21 schrieb Paul Nasrat: > Seeing as we're being wonderfully open, any chance the wonderfull index = > page at people.redhat.com could be removed so there is the directory > index instead. Not to worry if not. > = > Cheers > = > Paul I wrote a small workaround in perl to get an working index.html. Don't laugh I'm a beginner, but it works. It uses the fact that the ftp access to people.redhat.com is still wide open and a simple ls on it gives me all the directory names: #!/usr/bin/perl use Net::FTP; $ftp =3D Net::FTP->new("people.redhat.com", Debug =3D> 0); $ftp->login("anonymous",'me(a)test.net'); $ftp->cwd("/"); @data=3D$ftp->ls("/"); $ftp->quit; print("\n\r\n\r"); print(""); foreach $a(@data) { chomp($a); print("$a
\r\n"); } print(""); Save this to getIndex.pl, them make it runnable an redirect the output to a html-file, like ./getIndex.pl > index.html = HTH regards Andr=C3=A9 --===============9096100915440151491== Content-Type: application/pgp-signature MIME-Version: 1.0 Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="signature.asc" LS0tLS1CRUdJTiBQR1AgU0lHTkFUVVJFLS0tLS0KVmVyc2lvbjogR251UEcgdjEuMi4xIChHTlUv TGludXgpCgppRDhEQlFBL0g3ZGlZdXJzYThJbEVaTVJBblBMQUtDQ0hkMGhyNERkUU5qLytkMjFq K0MxbkhhbGJRQ2ZmNURNCmM3NUNHT1plak9FSmI5U2FUcytaMndVPQo9RkRWcQotLS0tLUVORCBQ R1AgU0lHTkFUVVJFLS0tLS0K --===============9096100915440151491==--