Update of /cvsroot/quickrip/quickrip/cli
In directory sc8-pr-cvs1:/tmp/cvs-serv8469/cli
Modified Files:
cli.py
Log Message:
Changed int_* to ui_*
Index: cli.py
===================================================================
RCS file: /cvsroot/quickrip/quickrip/cli/cli.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** cli.py 6 Aug 2003 16:18:02 -0000 1.3
--- cli.py 8 Aug 2003 00:30:01 -0000 1.4
***************
*** 96,100 ****
! def int_noTitles(self):
self.TL.win.addstr(2, 1, "ERROR: No titles were found!", curses.A_STANDOUT)
self.TL.win.refresh()
--- 96,100 ----
! def ui_noTitles(self):
self.TL.win.addstr(2, 1, "ERROR: No titles were found!", curses.A_STANDOUT)
self.TL.win.refresh()
***************
*** 104,108 ****
! def int_dispDVD(self, numtitles):
self.y = 1
self.TL.win.addstr(1, 1, "".join([str(numtitles), " titles found on this DVD"]))
--- 104,108 ----
! def ui_dispDVD(self, numtitles):
self.y = 1
self.TL.win.addstr(1, 1, "".join([str(numtitles), " titles found on this DVD"]))
***************
*** 110,114 ****
! def int_dispTitle(self, title):
self.y = self.y + 1
self.TL.win.addstr(self.y, 1, "".join(["[ ] ", title['name'], " ", title['timelabel']]))
--- 110,114 ----
! def ui_dispTitle(self, title):
self.y = self.y + 1
self.TL.win.addstr(self.y, 1, "".join(["[ ] ", title['name'], " ", title['timelabel']]))
|