diff options
author | Fred Drake <fdrake@acm.org> | 1999-03-02 16:17:44 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-03-02 16:17:44 (GMT) |
commit | 0c275fa856e06921878fc52bfd3e4de5f11972f0 (patch) | |
tree | 1d88e51298bd34638ac9fd71d2d1f3a24c538e79 /Doc/texinputs | |
parent | 557460cb7a7b266c7b7a27abff26f483e495ffb4 (diff) | |
download | cpython-0c275fa856e06921878fc52bfd3e4de5f11972f0.zip cpython-0c275fa856e06921878fc52bfd3e4de5f11972f0.tar.gz cpython-0c275fa856e06921878fc52bfd3e4de5f11972f0.tar.bz2 |
Added support for \platform, \platformof, and \ignorePlatformAnnotation.
Diffstat (limited to 'Doc/texinputs')
-rw-r--r-- | Doc/texinputs/python.sty | 57 |
1 files changed, 47 insertions, 10 deletions
diff --git a/Doc/texinputs/python.sty b/Doc/texinputs/python.sty index 6bf8eb1..e2c9dbb 100644 --- a/Doc/texinputs/python.sty +++ b/Doc/texinputs/python.sty @@ -261,7 +261,11 @@ \setindexsubitem{(in module #1)}% \index{#1@{\py@idxcode{#1}} (#2module)|textbf}% \ifpy@UseModuleIndex% - \write\modindexfile{\protect\indexentry{#1@{\texttt {#1}}}{\thepage}}% + \@ifundefined{py@modplat@\py@thismodulekey}{ + \write\modindexfile{\protect\indexentry{#1@{\texttt{#1}}}{\thepage}}% + }{\write\modindexfile{\protect\indexentry{#1@{\texttt{#1} % + \emph{(\platformof[\py@thismodulekey]{})}}}{\thepage}}% + } \fi% } @@ -287,27 +291,56 @@ % Module synopsis processing ----------------------------------------------- % +\newcommand{\py@thisclass}{} +\newcommand{\py@thismodule}{} +\newcommand{\py@thismodulekey}{} +\newcommand{\py@thismoduletype}{} + \newcommand{\py@standardIndexModule}[1]{\stmodindex{#1}} \newcommand{\py@builtinIndexModule}[1]{\bimodindex{#1}} \newcommand{\py@extensionIndexModule}[1]{\exmodindex{#1}} \newcommand{\py@IndexModule}[1]{\modindex{#1}} -\newif\ifpy@HaveModSynopsis\py@HaveModSynopsisfalse -\newif\ifpy@ModSynopsisFileIsOpen\py@ModSynopsisFileIsOpenfalse +\newif\ifpy@HaveModSynopsis \py@HaveModSynopsisfalse +\newif\ifpy@ModSynopsisFileIsOpen \py@ModSynopsisFileIsOpenfalse +\newif\ifpy@HaveModPlatform \py@HaveModPlatformfalse % \declaremodule[key]{type}{name} \newcommand{\declaremodule}[3][\py@modulebadkey]{ \py@openModSynopsisFile \renewcommand{\py@thismoduletype}{#2} - \csname py@#2IndexModule\endcsname{#3} \ifx\py@modulebadkey#1 \renewcommand{\py@thismodulekey}{#3} \else \renewcommand{\py@thismodulekey}{#1} \fi + \csname py@#2IndexModule\endcsname{#3} \label{module-\py@thismodulekey} - \py@HaveModSynopsistrue } +\newif\ifpy@ModPlatformFileIsOpen \py@ModPlatformFileIsOpenfalse +\newcommand{\py@ModPlatformFilename}{\jobname.pla} +\newcommand{\platform}[1]{ + \ifpy@ModPlatformFileIsOpen\else + \newwrite\py@ModPlatformFile + \openout\py@ModPlatformFile=\py@ModPlatformFilename + \py@ModPlatformFileIsOpentrue + \fi + \@ifundefined{py@modplat@\py@thismodulekey}{ + \py@writeModPlatformFile{% + \newcommand{\csname py@modplat@\py@thismodulekey\endcsname}{#1}}% + }{\py@writeModPlatformFile{% + \newcommand{\string\py@modplat@\py@thismodulekey}{#1}% + } + } +} +\InputIfFileExists{\jobname.pla}{}{} +\newcommand{\platformof}[2][\py@modulebadkey]{% + \ifx\py@modulebadkey#1 \def\py@key{#2}% + \else \def\py@key{#1}% + \fi% + \csname py@modplat@\py@key\endcsname% +} +\newcommand{\ignorePlatformAnnotation}[1]{} % \moduleauthor{name}{email} \newcommand{\moduleauthor}[2]{} @@ -319,6 +352,7 @@ \newcommand{\py@defsynopsis}{Module has no synopsis.} \newcommand{\py@modulesynopsis}{\py@defsynopsis} \newcommand{\modulesynopsis}[1]{ + \py@HaveModSynopsistrue \renewcommand{\py@modulesynopsis}{#1} } @@ -355,6 +389,14 @@ } \AtEndDocument{\py@ProcessModSynopsis\py@closeModSynopsisFile} + +\long\def\py@writeModPlatformFile#1{% + \protected@write\py@ModPlatformFile% + {\let\label\@gobble \let\index\@gobble \let\glossary\@gobble}% + {\string#1}% +} + + \newcommand{\localmoduletable}{ \IfFileExists{\py@ModSynopsisFilename}{ \begin{synopsistable} @@ -381,11 +423,6 @@ % -------------------------------------------------------------------------- -\newcommand{\py@thisclass}{} -\newcommand{\py@thismodule}{} -\newcommand{\py@thismodulekey}{} -\newcommand{\py@thismoduletype}{} - \newcommand{\py@reset}{ \py@ProcessModSynopsis \renewcommand{\py@thisclass}{} |