Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 33954 invoked by uid 500); 18 Nov 2000 03:42:26 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 33943 invoked by uid 500); 18 Nov 2000 03:42:26 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 18 Nov 2000 03:42:25 -0000 Message-ID: <20001118034225.33939.qmail@locus.apache.org> From: rbb@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/lib/apr/helpers default.pl rbb 00/11/17 19:42:25 Modified: src/lib/apr/helpers default.pl Log: Commit the template that removes all spaces from the file names. The files are created with _ instead of spaces now. This also fixes all references to the files in the html. Revision Changes Path 1.6 +24 -8 apache-2.0/src/lib/apr/helpers/default.pl Index: default.pl =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/helpers/default.pl,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- default.pl 2000/11/17 21:15:14 1.5 +++ default.pl 2000/11/18 03:42:25 1.6 @@ -200,12 +200,16 @@ ## Generate class and member index at the top of the file. foreach $c ($p->classes()) { + $_ = $c->url; + s/\s/_/g; >>

- $(c.fullname)

+ $(c.fullname) @@ -259,7 +263,9 @@ foreach $b ($c->baseclasses()) { my $name = $b->name(); if ($url = $b->url()) { - push @t, "$name"; + $_ = $url; + s/\s/_/g; + push @t, "$name"; } else { push @t, $name; } } @@ -276,7 +282,9 @@ foreach $s ($c->subclasses()) { my $name = $s->name(); if ($url = $s->url()) { - push @t, "$name"; + $_ = $url; + s/\s/_/g; + push @t, "$name"; } else { push @t, $name; } } @@ -299,7 +307,9 @@ foreach $a ($c->seealso()) { my $name = $a->name(); if ($url = $a->url()) { - push @r, "$name"; + $_ = $url; + s/\s/_/g; + push @r, "$name"; } else { push @r, $name; } } @@ -313,7 +323,9 @@ print "

Member Index

\n"; print "<< @@ -431,7 +443,9 @@ foreach $a ($f->seealso()) { my $name = $a->name(); if ($url = $a->url()) { - push @r, "$name"; + $_ = $url; + s/\s/_/g; + push @r, "$name"; } else { push @r, $name; } } @@ -466,9 +480,11 @@ << $comma = 0; foreach $a ($v->seealso()) { + $_ = $a->url; + s/\s/_/g; if ($comma) { print ","; } $comma = 1; - >>$(a.name) + >>$(a.name) << } >>