[Python-checkins] python/dist/src/Doc/dist dist.tex,1.62,1.63

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Thu Feb 19 17:16:09 EST 2004


Update of /cvsroot/python/python/dist/src/Doc/dist
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13586

Modified Files:
	dist.tex 
Log Message:
minor markup improvements


Index: dist.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/dist/dist.tex,v
retrieving revision 1.62
retrieving revision 1.63
diff -C2 -d -r1.62 -r1.63
*** dist.tex	23 Jan 2004 15:23:49 -0000	1.62
--- dist.tex	19 Feb 2004 22:16:05 -0000	1.63
***************
*** 1418,1422 ****
  modules and packages), the resulting installer will be version
  independent and have a name like \file{foo-1.0.win32.exe}.  These
! installers can even be created on \UNIX{} or MacOS platforms.
  
  If you have a non-pure distribution, the extensions can only be
--- 1418,1422 ----
  modules and packages), the resulting installer will be version
  independent and have a name like \file{foo-1.0.win32.exe}.  These
! installers can even be created on \UNIX{} or Mac OS platforms.
  
  If you have a non-pure distribution, the extensions can only be
***************
*** 1455,1465 ****
  
  This script will be run at installation time on the target system
! after all the files have been copied, with argv[1] set to '-install',
! and again at uninstallation time before the files are removed with argv[1]
! set to '-remove'.
  
  The installation script runs embedded in the windows installer, every
! output (sys.stdout, sys.stderr) is redirected into a buffer and will
! be displayed in the GUI after the script has finished.
  
  Some functions especially useful in this context are available in the
--- 1455,1465 ----
  
  This script will be run at installation time on the target system
! after all the files have been copied, with \code{argv[1]} set to
! \programopt{-install}, and again at uninstallation time before the
! files are removed with \code{argv[1]} set to \programopt{-remove}.
  
  The installation script runs embedded in the windows installer, every
! output (\code{sys.stdout}, \code{sys.stderr}) is redirected into a
! buffer and will be displayed in the GUI after the script has finished.
  
  Some functions especially useful in this context are available in the
***************
*** 1503,1511 ****
  \end{verbatim}
  
! If the folder cannot be retrieved, OSError is raised.
  
  Which folders are available depends on the exact Windows version, and probably
  also the configuration. For details refer to Microsoft's documentation of the
! \code{SHGetSpecialFolderPath} function.
  
  \begin{verbatim}
--- 1503,1511 ----
  \end{verbatim}
  
! If the folder cannot be retrieved, \exception{OSError} is raised.
  
  Which folders are available depends on the exact Windows version, and probably
  also the configuration. For details refer to Microsoft's documentation of the
! \cfunction{SHGetSpecialFolderPath()} function.
  
  \begin{verbatim}
***************
*** 1523,1527 ****
  and \var{iconindex} is the index of the icon in the file
  \var{iconpath}.  Again, for details consult the Microsoft
! documentation for the \code{IShellLink} interface.
  
  \section{Registering with the Package Index}
--- 1523,1527 ----
  and \var{iconindex} is the index of the icon in the file
  \var{iconpath}.  Again, for details consult the Microsoft
! documentation for the \class{IShellLink} interface.
  
  \section{Registering with the Package Index}




More information about the Python-checkins mailing list