Skip to content
Snippets Groups Projects
Commit 4f1c73f8 authored by Brian Carrier's avatar Brian Carrier
Browse files

Updated to reflect svn paths

parent 7dcdeb97
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/usr/bin/perl -w
RMAN=../../rman-3.2/rman use strict;
files='blkcalc blkcat disk_sreset disk_stat blkls blkstat ffind fls fsstat hfind icat ifind ils img_cat img_stat istat jcat jls mactime mmcat mmls mmstat sigfind sorter' my $BACK = "";
for f in $files my $RMAN = "/rman-3.2/rman";
do $RMAN -f html ${f}.1 > ../../www/man/${f}.html
done # rman and www are back different levels depending on
# which branch we are on.
if (-d "../../../rman-3.2") {
$BACK = "../../../";
} elsif (-d "../../../../rman-3.2") {
$BACK = "../../../../";
} else {
die "Missing rman directory";
}
die "www not in same dir as rman" unless (-e "${BACK}/www");
print "Cleaning up www directory\n";
system ("rm ${BACK}/www/man/*.html");
print "Building html files\n";
opendir (DIR, ".") or die "Error opening current directory";
while (1) {
my $f = readdir(DIR);
last unless defined ($f);
next if (($f eq ".") || ($f eq ".."));
if ($f =~ /^(.*?)\.1$/) {
$f = $1;
} else {
next;
}
system("${BACK}${RMAN} -f html ${f}.1 > ${BACK}/www/man/${f}.html");
}
...@@ -38,7 +38,7 @@ PROJECT_NUMBER = 3.0 ...@@ -38,7 +38,7 @@ PROJECT_NUMBER = 3.0
# If a relative path is entered, it will be relative to the location # If a relative path is entered, it will be relative to the location
# where doxygen was started. If left blank the current directory will be used. # where doxygen was started. If left blank the current directory will be used.
OUTPUT_DIRECTORY = ../www/docs OUTPUT_DIRECTORY = ../../../www/docs
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
# 4096 sub-directories (in 2 levels) under the output directory of each output # 4096 sub-directories (in 2 levels) under the output directory of each output
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment