From f223d788b5c69c79bf2ca3763411a16acb1896da Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Fri, 17 Nov 2000 21:15:14 +0000 Subject: Remove the auto-generated image tag from the top of the index files, since we don't have an image to use there. Also change all spaces in the file names to '_'. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60754 13f79535-47bb-0310-9956-ffa450edef68 --- helpers/default.pl | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'helpers') diff --git a/helpers/default.pl b/helpers/default.pl index e11aee7d0..204c9c1e7 100644 --- a/helpers/default.pl +++ b/helpers/default.pl @@ -13,7 +13,7 @@ ## simply change these variables $project_name = '[Apache Portable RunTime]'; -$company_logo = ''; # change this to an image tag. +#$company_logo = ''; # change this to an image tag. $copyright = '© 2000 [Apache Software Foundation]'; $image_directory = "../images/"; $bullet1_image = $image_directory . "ball1.gif"; @@ -66,19 +66,19 @@ file "master.html"; foreach $p (packages()) { $_ = $p->url; - s/\s/%20/g; + s/\s/_/g; >>$(p.name)
<< foreach $e ($p->classes()) { $_ = $e->url; - s/\s/%20/g; + s/\s/_/g; >>
  • $(e.fullname) << } foreach $e ($p->globals()) { $_ = $e->url; - s/\s/%20/g; + s/\s/_/g; >>
  • $(e.fullname) << } @@ -115,7 +115,7 @@ file "packages.html"; foreach $p (packages()) { $_ = $p->url; - s/\s/%20/g; + s/\s/_/g; >>$(p.name)
    << } @@ -180,7 +180,9 @@ if (&todolistFiles()) { my $p; foreach $p (packages()) { - file $p->name() . ".html"; + $_ = $p->name; + s/\s/_/g; + file $_ . ".html"; >> $project_name -- $(p.name) -- cgit v1.2.1