Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sleuthkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IRT
Sleuthkit
Commits
4f1c73f8
Commit
4f1c73f8
authored
16 years ago
by
Brian Carrier
Browse files
Options
Downloads
Patches
Plain Diff
Updated to reflect svn paths
parent
7dcdeb97
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
man/build-html
+34
-6
34 additions, 6 deletions
man/build-html
tsk3/docs/Doxyfile
+1
-1
1 addition, 1 deletion
tsk3/docs/Doxyfile
with
35 additions
and
7 deletions
man/build-html
+
34
−
6
View file @
4f1c73f8
#!/
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
");
}
This diff is collapsed.
Click to expand it.
tsk3/docs/Doxyfile
+
1
−
1
View file @
4f1c73f8
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment