From jim at zope.com Thu Jun 5 16:14:36 2003 From: jim at zope.com (Jim Fulton) Date: Sun Aug 10 16:40:37 2008 Subject: [Zope-book] CVS: Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter2 - forms.sxi:1.4 Message-ID: <200306052014.h55KEaE25328@cvs.baymountain.com> Update of /cvs-repository/Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter2 In directory cvs.zope.org:/tmp/cvs-serv25026 Modified Files: forms.sxi Log Message: Made a number of fixes. Also changed to reflect the recent change in the way widgets are named in form views. === Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter2/forms.sxi 1.3 => 1.4 === From jim at zope.com Thu Jun 19 16:11:31 2003 From: jim at zope.com (Jim Fulton) Date: Sun Aug 10 16:40:37 2008 Subject: [Zope-book] CVS: Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter1 - slides.sxi:1.18 Message-ID: <200306192011.h5JKBVN02996@cvs.baymountain.com> Update of /cvs-repository/Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter1 In directory cvs.zope.org:/tmp/cvs-serv2710 Modified Files: slides.sxi Log Message: Made lots of bug fixes based on feedback from Zachery Bir, who actually tried to run the examples. I need to make another pass through these. I *thought* I had updated the associated source files in the example directories, but it appears that I didn't. :( === Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter1/slides.sxi 1.17 => 1.18 === From jeremy at zope.com Fri Jun 20 17:33:59 2003 From: jeremy at zope.com (Jeremy Hylton) Date: Sun Aug 10 16:40:37 2008 Subject: [Zope-book] CVS: Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter2/Step1 - Contact.py:NONE Message-ID: <200306202133.h5KLXx009418@cvs.baymountain.com> Update of /cvs-repository/Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter2/Step1 In directory cvs.zope.org:/tmp/cvs-serv9302 Removed Files: Contact.py Log Message: Remove stale file at Jim's direction. Prevent conflict with contact.py on case-insensitive file systems. === Removed File Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter2/Step1/Contact.py === From jim at zope.com Sat Jun 21 18:25:32 2003 From: jim at zope.com (Jim Fulton) Date: Sun Aug 10 16:40:37 2008 Subject: [Zope-book] CVS: Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter1 - slides.sxi:1.19 Message-ID: <200306212225.h5LMPW313177@cvs.baymountain.com> Update of /cvs-repository/Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter1 In directory cvs.zope.org:/tmp/cvs-serv13133 Modified Files: slides.sxi Log Message: Several minor fixes. Also added a page to show the template that displayes city and state. === Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter1/slides.sxi 1.18 => 1.19 === From jeremy at zope.com Sat Jun 21 23:20:49 2003 From: jeremy at zope.com (Jeremy Hylton) Date: Sun Aug 10 16:40:37 2008 Subject: [Zope-book] CVS: Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter1/Step4 - browser.py:1.2 Message-ID: <200306220320.h5M3KnC22329@cvs.baymountain.com> Update of /cvs-repository/Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter1/Step4 In directory cvs.zope.org:/tmp/cvs-serv22316 Modified Files: browser.py Log Message: Fix import of IContact === Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter1/Step4/browser.py 1.1 => 1.2 === --- Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter1/Step4/browser.py:1.1 Tue Mar 25 03:35:17 2003 +++ Docs/ZopeComponentArchitecture/PythonProgrammerTutorial/Chapter1/Step4/browser.py Sat Jun 21 23:20:49 2003 @@ -1,5 +1,5 @@ from zope.publisher.browser import BrowserView -from IContact import IContact +from interface import IContact class ContactEditView(BrowserView): "Provide a user interface for editing a contact"