Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8920156d
Commit
8920156d
authored
May 07, 1998
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New script to drive HTML generation.
parent
4c9542b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
Doc/tools/mkhtml.sh
Doc/tools/mkhtml.sh
+27
-0
No files found.
Doc/tools/mkhtml.sh
0 → 100755
View file @
8920156d
#! /bin/sh
#
# Drive HTML generation for a Python manual.
#
# The first arg is required and is the designation for which manual to build;
# api, ext, lib, ref, or tut. All other args are passed on to latex2html.
WORKDIR
=
`
pwd
`
cd
`
dirname
$0
`
/..
srcdir
=
`
pwd
`
cd
$WORKDIR
part
=
$1
;
shift
1
TEXINPUTS
=
$srcdir
/
$part
:
$TEXINPUTS
export
TEXINPUTS
if
[
-d
$part
]
;
then
(
set
-x
;
rm
-f
$part
/
*
.html
)
fi
set
-x
latex2html
-init_file
$srcdir
/perl/l2hinit.perl
${
1
:+
$@
}
$srcdir
/
$part
/
$part
cd
$part
$srcdir
/tools/node2label.pl
*
.html
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment