diff options
author | Fred Drake <fdrake@acm.org> | 2002-10-01 15:20:20 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-10-01 15:20:20 (GMT) |
commit | 15a159c23166c77926cebebbf9cc4bf13119f86e (patch) | |
tree | 40d3d8b096fbbf4cea5dcf312431568eb08f4a2c /Doc/tools | |
parent | de6977f441ec9748940f1a55908053d0a6e277f8 (diff) | |
download | cpython-15a159c23166c77926cebebbf9cc4bf13119f86e.zip cpython-15a159c23166c77926cebebbf9cc4bf13119f86e.tar.gz cpython-15a159c23166c77926cebebbf9cc4bf13119f86e.tar.bz2 |
Change the default path to icons so that "mkhowto" does the "right thing" by
default when used for 3rd-party docs. This requires the standard Python docs
to specify a location, but they are a bit of a special case in sharing one set
of icons among several documents.
Diffstat (limited to 'Doc/tools')
-rwxr-xr-x | Doc/tools/mkhowto | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tools/mkhowto b/Doc/tools/mkhowto index 322b6ba..d2ff646 100755 --- a/Doc/tools/mkhowto +++ b/Doc/tools/mkhowto @@ -15,7 +15,7 @@ HTML options: --address, -a Specify an address for page footers. --link Specify the number of levels to include on each page. --split, -s Specify a section level for page splitting, default: %(max_split_depth)s. - --iconserver, -i Specify location of icons (default: ../). + --iconserver, -i Specify location of icons (default: ./). --image-type Specify the image type to use in HTML output; values: gif (default), png. --numeric Don't rename the HTML files; just keep node#.html for @@ -93,7 +93,7 @@ class Options: debugging = 0 discard_temps = 1 have_temps = 0 - icon_server = None + icon_server = "." image_type = "gif" logging = 0 max_link_depth = 3 |