summaryrefslogtreecommitdiff
path: root/helpers
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-11-17 21:15:14 +0000
committerRyan Bloom <rbb@apache.org>2000-11-17 21:15:14 +0000
commitf223d788b5c69c79bf2ca3763411a16acb1896da (patch)
tree3838ff354c884eb123d4fdb05771fef988be12c1 /helpers
parent17a57b210719c90c6bfdc710e2c1fbcf94650683 (diff)
downloadapr-f223d788b5c69c79bf2ca3763411a16acb1896da.tar.gz
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
Diffstat (limited to 'helpers')
-rw-r--r--helpers/default.pl14
1 files changed, 8 insertions, 6 deletions
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 = '<img src="../images/ScanDocBig.jpg">'; # change this to an image tag.
+#$company_logo = '<img src="../images/ScanDocBig.jpg">'; # change this to an image tag.
$copyright = '&copy 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;
>><a href="$_" target="Documentation"><b>$(p.name)</b></a><br>
<dir>
<<
foreach $e ($p->classes()) {
$_ = $e->url;
- s/\s/%20/g;
+ s/\s/_/g;
>><li><a href="$_" target="Documentation">$(e.fullname)</a>
<<
}
foreach $e ($p->globals()) {
$_ = $e->url;
- s/\s/%20/g;
+ s/\s/_/g;
>><li><a href="$_" target="Documentation">$(e.fullname)</a>
<<
}
@@ -115,7 +115,7 @@ file "packages.html";
foreach $p (packages()) {
$_ = $p->url;
- s/\s/%20/g;
+ s/\s/_/g;
>><a href = "$_">$(p.name)</a><br>
<<
}
@@ -180,7 +180,9 @@ if (&todolistFiles()) {
my $p;
foreach $p (packages()) {
- file $p->name() . ".html";
+ $_ = $p->name;
+ s/\s/_/g;
+ file $_ . ".html";
>><html>
<head>
<title>$project_name -- $(p.name)</title>