Attachment 'albums.pyw'

Download

   1 #!/bin/env python
   2 #----------------------------------------------------------------------------
   3 # Name:         albums.pyw
   4 # Purpose:      starts everything
   5 #
   6 # Author:       Peter Damoc (peter at sigmacore.net)
   7 #               adapted from Martin Fowler's MVP example
   8 # Created:      January 2006
   9 # Version:      0.1 
  10 # Licence:      wxWindows license
  11 
  12 import presenters
  13 import models
  14 import views
  15 import interactors
  16 
  17 '''
  18 Just creates the Presenter with some albums, a way to display them(the View) 
  19 and a way to interact with them (the Interactor)
  20 '''
  21 presenters.AlbumPresenter(models.GetDemoAlbums(), views.AlbumWindow(), interactors.AlbumInteractor())

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.
  • [get | view] (2009-10-04 09:16:02, 0.7 KB) [[attachment:albums.pyw]]
  • [get | view] (2009-10-04 09:16:02, 1.5 KB) [[attachment:interactors.py]]
  • [get | view] (2009-10-04 09:16:02, 2.3 KB) [[attachment:mock_objects.py]]
  • [get | view] (2009-10-04 09:16:02, 1.1 KB) [[attachment:models.py]]
  • [get | view] (2009-10-04 09:16:02, 12.4 KB) [[attachment:mvp.png]]
  • [get | view] (2009-10-04 09:16:02, 5.5 KB) [[attachment:mvp.zip]]
  • [get | view] (2009-10-04 09:16:02, 12.9 KB) [[attachment:mvp2.png]]
  • [get | view] (2009-10-04 09:16:02, 5.9 KB) [[attachment:mvp2.zip]]
  • [get | view] (2009-10-04 09:16:02, 3.8 KB) [[attachment:package.zip]]
  • [get | view] (2009-10-04 09:16:02, 4.4 KB) [[attachment:presenters.py]]
  • [get | view] (2009-10-04 09:16:02, 2.2 KB) [[attachment:test_presenters.py]]
  • [get | view] (2009-10-04 09:16:02, 4.3 KB) [[attachment:views.py]]
 All files | Selected Files: delete move to page copy to page

You are not allowed to attach a file to this page.

NOTE: To edit pages in this wiki you must be a member of the TrustedEditorsGroup.