Update of /cvsroot/freevo/freevo/src/video/plugins
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31147/src/video/plugins

Modified Files:
        imdb.py 
Log Message:
auto detect movies with more than one file

Index: imdb.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/video/plugins/imdb.py,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** imdb.py     3 Feb 2004 20:51:12 -0000       1.34
--- imdb.py     2 Jun 2004 21:36:50 -0000       1.35
***************
*** 16,19 ****
--- 16,22 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.35  2004/06/02 21:36:50  dischi
+ # auto detect movies with more than one file
+ #
  # Revision 1.34  2004/02/03 20:51:12  dischi
  # fix/enhance dvd on disc
***************
*** 127,131 ****
          """
          fxd = FxdImdb()
!         
          box = PopupBox(text=_('searching IMDB...'))
          box.show()
--- 130,134 ----
          """
          fxd = FxdImdb()
! 
          box = PopupBox(text=_('searching IMDB...'))
          box.show()
***************
*** 227,233 ****
              fxd.setDiscset(devicename, None)
          else:
!             video = makeVideo('file', 'f1', os.path.basename(self.item.filename),
!                               device=devicename)
!             fxd.setVideo(video)
              fxd.setFxdFile(os.path.splitext(self.item.filename)[0])
  
--- 230,243 ----
              fxd.setDiscset(devicename, None)
          else:
!             if self.item.subitems:
!                 for i in range(len(self.item.subitems)):
!                     video = makeVideo('file', 'f%s' % i,
!                                       
os.path.basename(self.item.subitems[i].filename),
!                                       device=devicename)
!                     fxd.setVideo(video)
!             else:
!                 video = makeVideo('file', 'f1', os.path.basename(self.item.filename),
!                                   device=devicename)
!                 fxd.setVideo(video)
              fxd.setFxdFile(os.path.splitext(self.item.filename)[0])
  



-------------------------------------------------------
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to