[Python-checkins] python/dist/src/Mac/OSXResources/app/Resources/English.lproj/Documentation/macpython_ide_tutorial index.html,1.1,1.2

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Sun, 16 Mar 2003 12:42:02 -0800


Update of /cvsroot/python/python/dist/src/Mac/OSXResources/app/Resources/English.lproj/Documentation/macpython_ide_tutorial
In directory sc8-pr-cvs1:/tmp/cvs-serv6940

Modified Files:
	index.html 
Log Message:
Lots of textual changes suggested by Matthew Moelter.


Index: index.html
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/OSXResources/app/Resources/English.lproj/Documentation/macpython_ide_tutorial/index.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** index.html	11 Mar 2003 22:59:17 -0000	1.1
--- index.html	16 Mar 2003 20:41:58 -0000	1.2
***************
*** 14,18 ****
  			<td>
  				<p>This document gives a very basic introduction to the
! 				MacPython Integrated Development Environment on Mac OS. It was
  				written specifically for MacPython 2.3 on Mac OS X, but most of
  				it  is applicable to MacPython-OS9 too. It is based on 
--- 14,18 ----
  			<td>
  				<p>This document gives a very basic introduction to the
! 				MacPython <b>I</b>ntegrated <b>D</b>evelopment <b>E</b>nvironment (IDE) on Mac OS. It was
  				written specifically for MacPython 2.3 on Mac OS X, but most of
  				it  is applicable to MacPython-OS9 too. It is based on 
***************
*** 48,52 ****
  <p>This is the interactive window to the IDE, it allows us to enter
  commands directly into Python, and as soon as we enter a command,
! Python will execute it and spit out its result back to us.  We'll be
  using this interactive window a lot when we're exploring Python: it's
  very nice because we get back our results immediately.  If it helps,
--- 48,52 ----
  <p>This is the interactive window to the IDE, it allows us to enter
  commands directly into Python, and as soon as we enter a command,
! Python will execute it and spit its result back to us.  We'll be
  using this interactive window a lot when we're exploring Python: it's
  very nice because we get back our results immediately.  If it helps,
***************
*** 87,91 ****
  the computer to remember what we typed?</p>
  
! <p>The solution is a little subtle: we can't directly save what's on
  the interpreter window, because it will include both our commands and
  the system's responses.  What we'd like is to make a prepared file,
--- 87,91 ----
  the computer to remember what we typed?</p>
  
! <p>The solution is a little subtle: we can't directly save what's in
  the interpreter window, because it will include both our commands and
  the system's responses.  What we'd like is to make a prepared file,
***************
*** 114,118 ****
  <p>What we wanted to do before was save some of the stuff we had
  tried out on the interpreter window.  Let's do that by typing (or
! copy/pasting) those commands into our Program window.</p>
  <p><img src="entering_in_new_window.gif" border=1></p>
  
--- 114,118 ----
  <p>What we wanted to do before was save some of the stuff we had
  tried out on the interpreter window.  Let's do that by typing (or
! copy/pasting) those commands into our edit window.</p>
  <p><img src="entering_in_new_window.gif" border=1></p>
  
***************
*** 120,124 ****
  One big thing to notice
  is that we're careful to get rid of the "<tt>&gt;&gt;&gt;</tt>"
! prompts because there's not really part of our program.  The
  interpreter uses them just to tell us that we're in the interpreter,
  but now that we're editing in a separate file, we can remove the
--- 120,124 ----
  One big thing to notice
  is that we're careful to get rid of the "<tt>&gt;&gt;&gt;</tt>"
! prompts because they're not really part of our program.  The
  interpreter uses them just to tell us that we're in the interpreter,
  but now that we're editing in a separate file, we can remove the
***************
*** 130,134 ****
  <hr><br style="page-break-after: always">
  
! <p>Let's save the file now.  The Save command is located under the File menu:
  <p><img src="saving_edited_file.gif" border=1></p>
  
--- 130,134 ----
  <hr><br style="page-break-after: always">
  
! <p>Let's save the file now.  The Save command is located under the <tt>File</tt> menu:
  <p><img src="saving_edited_file.gif" border=1></p>
  
***************
*** 156,165 ****
  <p>Python is often perceptive enough to direct us toward the problem,
  and in this case, it's telling us that we forgot to put something at
! the end of this line.  In this case, we need to add an additional
! quotation mark.  Let's add that in now.</p>
  
  <p>Other errors, which usually occur later, when your program has
  already done something, result in a different dialog that allows you
! to look at variables and such in addition to only showing you where
  the error occurred. </p>
  
--- 156,165 ----
  <p>Python is often perceptive enough to direct us toward the problem,
  and in this case, it's telling us that we forgot to put something at
! the end of this line.  In this case, we need to add a
! quotation mark at the end.  Let's add that in now.</p>
  
  <p>Other errors, which usually occur later, when your program has
  already done something, result in a different dialog that allows you
! to look at variables and such in addition to showing you where
  the error occurred. </p>
  
***************
*** 174,180 ****
  
  <p>As we play with Python, we'll find ourselves "switching modes"
! between the Interpreter window and the Program window.  However,
  if we try anything more complicated than two or three lines it
! is often a good idea to work in an edit window, and align
  your edit and output window such that you can see them at the same time.</p>
  
--- 174,180 ----
  
  <p>As we play with Python, we'll find ourselves "switching modes"
! between the Interpreter window and the edit window.  However,
  if we try anything more complicated than two or three lines it
! is often a good idea to work in an edit window. Align
  your edit and output window such that you can see them at the same time.</p>
  
***************
*** 185,192 ****
  <ul>
  	<li>All sorts of edit commands such as find and replace can be
! 	used in the editor windows. See the edit menu.</li>
  	
  	<li>The bottom of the edit window has the scrollbar, but at the
! 	left are two navigation devices: a line number box that you can also type
  	numbers into to quickly go to a specific place, and a popup menu
  	that lists all classes, functions and methods in your file.</li>
--- 185,192 ----
  <ul>
  	<li>All sorts of edit commands such as find and replace can be
! 	used in the editor windows. See the <tt>Edit</tt> menu.</li>
  	
  	<li>The bottom of the edit window has the scrollbar, but at the
! 	left are two navigation devices: a line number box that you can type
  	numbers into to quickly go to a specific place, and a popup menu
  	that lists all classes, functions and methods in your file.</li>