[Python-checkins] python/dist/src/Doc/mac libmacui.tex,1.18,1.19

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Fri Sep 5 07:48:05 EDT 2003


Update of /cvsroot/python/python/dist/src/Doc/mac
In directory sc8-pr-cvs1:/tmp/cvs-serv2408

Modified Files:
	libmacui.tex 
Log Message:
clean up some markup


Index: libmacui.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/mac/libmacui.tex,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** libmacui.tex	12 Feb 2003 09:58:33 -0000	1.18
--- libmacui.tex	5 Sep 2003 13:48:02 -0000	1.19
***************
*** 16,20 ****
  
  
! \begin{funcdesc}{Message}{str\optional{, id\optional{, ok=None}}}
  Displays a modal dialog with the message text \var{str}, which should be
  at most 255 characters long. The button text defaults to ``OK'', but is
--- 16,20 ----
  
  
! \begin{funcdesc}{Message}{str\optional{, id\optional{, ok}}}
  Displays a modal dialog with the message text \var{str}, which should be
  at most 255 characters long. The button text defaults to ``OK'', but is
***************
*** 31,36 ****
  the ``OK'' and ``Cancel'' buttons can be changed with the \var{ok} and
  \var{cancel} arguments. All strings can be at most 255 bytes long.
! \function{AskString()} returns the string entered or \code{None} in case
! the user cancelled.
  \end{funcdesc}
  
--- 31,36 ----
  the ``OK'' and ``Cancel'' buttons can be changed with the \var{ok} and
  \var{cancel} arguments. All strings can be at most 255 bytes long.
! \function{AskString()} returns the string entered or \constant{None}
! in case the user cancelled.
  \end{funcdesc}
  
***************
*** 129,137 ****
  	}
  Post a dialog asking the user for a file to open, and return the file
! selected or \var{None} if the user cancelled.
  \var{message} is a text message to display,
  \var{typeList} is a list of 4-char filetypes allowable,
! \var{defaultLocation} is the pathname, FSSpec or FSRef of the folder
! to show initially,
  \var{location} is the \code{(x, y)} position on the screen where the
  dialog is shown,
--- 129,137 ----
  	}
  Post a dialog asking the user for a file to open, and return the file
! selected or \constant{None} if the user cancelled.
  \var{message} is a text message to display,
  \var{typeList} is a list of 4-char filetypes allowable,
! \var{defaultLocation} is the pathname, \class{FSSpec} or \class{FSRef}
! of the folder to show initially,
  \var{location} is the \code{(x, y)} position on the screen where the
  dialog is shown,
***************
*** 140,149 ****
  \var{cancelButtonLabel} is a string to show in stead of ``Cancel'' in the
  cancel button,
! \var{wanted} is the type of value wanted as a return: \class{string},
  \class{unicode}, \class{FSSpec}, \class{FSRef} and subtypes thereof are
  acceptable.
  
  For a description of the other arguments please see the Apple Navigation
! Services documentation and the EasyDialogs sourcecode.
  \end{funcdesc}
  
--- 140,149 ----
  \var{cancelButtonLabel} is a string to show in stead of ``Cancel'' in the
  cancel button,
! \var{wanted} is the type of value wanted as a return: \class{str},
  \class{unicode}, \class{FSSpec}, \class{FSRef} and subtypes thereof are
  acceptable.
  
  For a description of the other arguments please see the Apple Navigation
! Services documentation and the \module{EasyDialogs} source code.
  \end{funcdesc}
  
***************
*** 165,172 ****
  	\optional{, wanted}
  	}
! Post a dialog asking the user for a file to save to, and return the file
! selected or \var{None} if the user cancelled. \var{savedFileName} is the
! default for the file name to save to (the return value). See AskFileForOpen
! for a description of the other arguments.
  \end{funcdesc}
  
--- 165,173 ----
  	\optional{, wanted}
  	}
! Post a dialog asking the user for a file to save to, and return the
! file selected or \constant{None} if the user cancelled.
! \var{savedFileName} is the default for the file name to save to (the
! return value). See \function{AskFileForOpen()} for a description of
! the other arguments.
  \end{funcdesc}
  
***************
*** 186,192 ****
  	\optional{, wanted}
  	}
! Post a dialog asking the user to select a folder, and return the folder
! selected or \var{None} if the user cancelled. See AskFileForOpen
! for a description of the arguments.
  \end{funcdesc}
  
--- 187,193 ----
  	\optional{, wanted}
  	}
! Post a dialog asking the user to select a folder, and return the
! folder selected or \constant{None} if the user cancelled. See
! \function{AskFileForOpen()} for a description of the arguments.
  \end{funcdesc}
  





More information about the Python-checkins mailing list