diff options
author | Fred Drake <fdrake@acm.org> | 1998-02-26 05:49:37 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-02-26 05:49:37 (GMT) |
commit | 20ee2065000afd73c092fc341e550b3e21964c70 (patch) | |
tree | f1d0d3f43ef1f0d74d64a10e4eb3ad2362fb89be /Doc | |
parent | 46c86bbca9ba804cdf7478044de94461594e93d5 (diff) | |
download | cpython-20ee2065000afd73c092fc341e550b3e21964c70.zip cpython-20ee2065000afd73c092fc341e550b3e21964c70.tar.gz cpython-20ee2065000afd73c092fc341e550b3e21964c70.tar.bz2 |
Add support for some of the newer commands, a little cleanup.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/myformat.perl | 34 |
1 files changed, 28 insertions, 6 deletions
diff --git a/Doc/myformat.perl b/Doc/myformat.perl index d684897..171c1dd 100644 --- a/Doc/myformat.perl +++ b/Doc/myformat.perl @@ -21,6 +21,30 @@ sub do_cmd_NULL{ join('', '<tt>NULL</tt>', @_[0]); } sub do_cmd_e{ local($_) = @_; '\' . $_; } +$AUTHOR_ADDRESS = '(not specified)'; +$PYTHON_VERSION = '(not specified)'; + +sub do_cmd_version{ $PYTHON_VERSION . @_[0]; } +sub do_cmd_release{ + local($_) = @_; + s/$any_next_pair_pr_rx//; + $PYTHON_VERSION = "$2"; + $_; +} + +sub do_cmd_authoraddress{ + local($_) = @_; + s/$any_next_pair_pr_rx//; + $AUTHOR_ADDRESS = "$2"; + $_; +} + +sub do_cmd_hackscore{ + local($_) = @_; + s/$any_next_pair_pr_rx/_/; + $_; +} + sub do_cmd_optional{ local($_) = @_; s/$any_next_pair_pr_rx/<\/var><big>\[<\/big><var>\2<\/var><big>\]<\/big><var>/; @@ -258,9 +282,9 @@ sub do_cmd_refstmodindex{ &ref_module_index_helper('standard', @_); } sub do_cmd_nodename{ &do_cmd_label(@_); } sub init_myformat{ - # XXX need some way for this to be called after &initialise; - $anchor_mark = ''; - $icons{'anchor_mark'} = ''; + # XXX need some way for this to be called after &initialise; ??? +# $anchor_mark = ''; +# $icons{'anchor_mark'} = ''; # <<2>>...<<2>> $any_next_pair_rx3 = "$O(\\d+)$C([\\s\\S]*)$O\\3$C"; $any_next_pair_rx5 = "$O(\\d+)$C([\\s\\S]*)$O\\5$C"; @@ -276,9 +300,7 @@ sub init_myformat{ &init_myformat; sub get_indexsubitem{ - local($result) = $INDEX_SUBITEM; - #print "\nget_indexsubitem ==> $result\n"; - $result ? " $result" : ''; + $INDEX_SUBITEM ? " $INDEX_SUBITEM" : ''; } # similar to make_index_entry(), but includes the string in the result |