summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libwebbrowser.tex
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-04-01 21:29:15 (GMT)
committerGeorg Brandl <georg@python.org>2007-04-01 21:29:15 (GMT)
commit4e9165d2dd15cd1766ae1286517a44f1620d3cbf (patch)
tree82f15bdc00a92fb0ddb1ee11471a46288aba969e /Doc/lib/libwebbrowser.tex
parentc7a2e4656e09cebd36a4ad2439794a48b9565737 (diff)
downloadcpython-4e9165d2dd15cd1766ae1286517a44f1620d3cbf.zip
cpython-4e9165d2dd15cd1766ae1286517a44f1620d3cbf.tar.gz
cpython-4e9165d2dd15cd1766ae1286517a44f1620d3cbf.tar.bz2
Fix a lot of markup and meta-information glitches.
Diffstat (limited to 'Doc/lib/libwebbrowser.tex')
-rw-r--r--Doc/lib/libwebbrowser.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libwebbrowser.tex b/Doc/lib/libwebbrowser.tex
index 8f1910a..50366ba 100644
--- a/Doc/lib/libwebbrowser.tex
+++ b/Doc/lib/libwebbrowser.tex
@@ -154,19 +154,19 @@ webbrowser.open_new(url)
Browser controllers provide two methods which parallel two of the
module-level convenience functions:
-\begin{methoddesc}{open}{url\optional{, new\optional{, autoraise=1}}}
+\begin{methoddesc}[controller]{open}{url\optional{, new\optional{, autoraise=1}}}
Display \var{url} using the browser handled by this controller.
If \var{new} is 1, a new browser window is opened if possible.
If \var{new} is 2, a new browser page ("tab") is opened if possible.
\end{methoddesc}
-\begin{methoddesc}{open_new}{url}
+\begin{methoddesc}[controller]{open_new}{url}
Open \var{url} in a new window of the browser handled by this
controller, if possible, otherwise, open \var{url} in the only
browser window. Alias \function{open_new}.
\end{methoddesc}
-\begin{methoddesc}{open_new_tab}{url}
+\begin{methoddesc}[controller]{open_new_tab}{url}
Open \var{url} in a new page ("tab") of the browser handled by this
controller, if possible, otherwise equivalent to \function{open_new}.
\versionadded{2.5}