summaryrefslogtreecommitdiff
path: root/helpers
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-11-17 21:15:14 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-11-17 21:15:14 +0000
commitc9e0cf73ebe985873f40f9f1b589aba65eba9952 (patch)
tree3838ff354c884eb123d4fdb05771fef988be12c1 /helpers
parenta9493ae7b44dad35c0090e9587382410ecd69757 (diff)
downloadlibapr-c9e0cf73ebe985873f40f9f1b589aba65eba9952.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: http://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>