Update of /cvsroot/freevo/freevo/src
In directory sc8-pr-cvs1:/tmp/cvs-serv19614

Modified Files:
        directory.py event.py menu.py plugin.py rc.py 
Log Message:
Various event bugfixes.


Index: directory.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/directory.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** directory.py        27 May 2003 17:53:33 -0000      1.11
--- directory.py        30 May 2003 00:53:19 -0000      1.12
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.12  2003/05/30 00:53:19  rshortt
+ # Various event bugfixes.
+ #
  # Revision 1.11  2003/05/27 17:53:33  dischi
  # Added new event handler module
***************
*** 572,576 ****
          # reload the menu, use an event to avoid problems because this function
          # was called by a thread
!         rc.post_event('REBUILD_SCREEN')
  
  
--- 575,579 ----
          # reload the menu, use an event to avoid problems because this function
          # was called by a thread
!         rc.post_event('MENU_REBUILD')
  
  

Index: event.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/event.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** event.py    29 May 2003 03:28:22 -0000      1.5
--- event.py    30 May 2003 00:53:19 -0000      1.6
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.6  2003/05/30 00:53:19  rshortt
+ # Various event bugfixes.
+ #
  # Revision 1.5  2003/05/29 03:28:22  outlyer
  # Fix seeking in video too...
***************
*** 119,122 ****
--- 122,126 ----
  MENU_PAGEUP            = Event('MENU_PAGEUP')
  MENU_PAGEDOWN          = Event('MENU_PAGEDOWN')
+ MENU_REBUILD           = Event('MENU_REBUILD')
                         
  MENU_GOTO_MAINMENU     = Event('MENU_GOTO_MAINMENU')

Index: menu.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/menu.py,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -d -r1.47 -r1.48
*** menu.py     27 May 2003 17:53:33 -0000      1.47
--- menu.py     30 May 2003 00:53:19 -0000      1.48
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.48  2003/05/30 00:53:19  rshortt
+ # Various event bugfixes.
+ #
  # Revision 1.47  2003/05/27 17:53:33  dischi
  # Added new event handler module
***************
*** 567,571 ****
                  return
  
!         print 'no eventhandler for event %s' % event.name
          return 0
  
--- 570,574 ----
                  return
  
!         print 'no eventhandler for event %s' % str(event)
          return 0
  

Index: plugin.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/plugin.py,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** plugin.py   29 May 2003 21:06:48 -0000      1.20
--- plugin.py   30 May 2003 00:53:19 -0000      1.21
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.21  2003/05/30 00:53:19  rshortt
+ # Various event bugfixes.
+ #
  # Revision 1.20  2003/05/29 21:06:48  rshortt
  # Add a shutdown function to the module which will call possible shutdown methods on 
daemon plugins.
***************
*** 365,370 ****
      plugin event parsing
      """
!     if event.name[:12] == 'PLUGIN_EVENT':
!         return event.name[13:]
      else:
          return None
--- 368,374 ----
      plugin event parsing
      """
!     event = str(event)
!     if event[:12] == 'PLUGIN_EVENT':
!         return event[13:]
      else:
          return None

Index: rc.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/rc.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** rc.py       27 May 2003 17:53:33 -0000      1.15
--- rc.py       30 May 2003 00:53:19 -0000      1.16
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.16  2003/05/30 00:53:19  rshortt
+ # Various event bugfixes.
+ #
  # Revision 1.15  2003/05/27 17:53:33  dischi
  # Added new event handler module
***************
*** 200,204 ****
              if list:
                  for code in list:
!                     e = self.key_event_mapper(osd._cb())
                      if e:
                          return e
--- 203,208 ----
              if list:
                  for code in list:
!                     if not (e == self.key_event_mapper(code)):
!                       e = self.key_event_mapper(osd._cb)
                      if e:
                          return e




-------------------------------------------------------
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to