Re: [Freevo-users] Freevo 1.6 XMAME - BUG FIX

2006-11-22 Thread Ryan Roth
Thanks. Glad I could help. Duncan Webb wrote: > Ryan Roth wrote: > >> 106 also. The patch I suggest would probably be a good idea to include >> or build off of just for compatibility. >> >> >> > If you type the commands at the command line > > import os os.system('xmame.

Re: [Freevo-users] Freevo 1.6 XMAME - BUG FIX

2006-11-22 Thread Duncan Webb
Ryan Roth wrote: > 106 also. The patch I suggest would probably be a good idea to include > or build off of just for compatibility. > > If you type the commands at the command line >>> import os >>> os.system('xmame.SDL -listxml -out /tmp/roms') info: trying to parse: /etc/xmame/xmamerc info:

Re: [Freevo-users] Freevo 1.6 XMAME - BUG FIX

2006-11-22 Thread Ryan Roth
106 also. The patch I suggest would probably be a good idea to include or build off of just for compatibility. > I'm using version 0.106. > > I will try Ryan's patch this weekend. > > Jim > > "Duncan Webb" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > >> Ryan Roth wrote: >> >

Re: [Freevo-users] Freevo 1.6 XMAME - BUG FIX

2006-11-22 Thread Jim Duda
I'm using version 0.106. I will try Ryan's patch this weekend. Jim "Duncan Webb" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Ryan Roth wrote: > > Which version of xmame are you using? > >>From what I see in version 0.106 the errors and messages go to stderr so > should not affe

Re: [Freevo-users] Freevo 1.6 XMAME - BUG FIX

2006-11-22 Thread Duncan Webb
Ryan Roth wrote: Which version of xmame are you using? >From what I see in version 0.106 the errors and messages go to stderr so should not affect the parser. Duncan > It should be > /usr/lib/python2.4/site-packages/freevo/games/mame_cache.py > not > /usr/lib/python2.4/site-packages/fr

Re: [Freevo-users] Freevo 1.6 XMAME - BUG FIX

2006-11-22 Thread Ryan Roth
It should be /usr/lib/python2.4/site-packages/freevo/games/mame_cache.py not /usr/lib/python2.4/site-packages/freevo/directory.py > I changed line 222 in > /usr/lib/python2.4/site-packages/freevo/directory.py to fix this issue. > > from : > > listinfo = os.popen( mame_cmd + ' --l

Re: [Freevo-users] Freevo 1.6 XMAME - BUG FIX

2006-11-22 Thread Ryan Roth
I changed line 222 in /usr/lib/python2.4/site-packages/freevo/directory.py to fix this issue. from : listinfo = os.popen( mame_cmd + ' --listxml', 'r' ) to: os.system( mame_cmd + ' -listxml -out /tmp/roms') listinfo = os.popen( 'cat /tmp/roms', 'r') This error is caused by the f

[Freevo-users] Freevo 1.6 XMAME

2006-11-21 Thread Jim Duda
I get these errors when I attempt to launch MAME. I have mame installed. Issuing xmame --listxml gives me a huge data dump of information. My local_conf.py has: GAMES_ITEMS = [ ('MAME', '/usr/share/xmame/roms', ('MAME', '/usr/bin/xmame', '', '/usr/share/xmame/artwork', None))

Re: [Freevo-users] Freevo 1.6 XMAME

2006-11-21 Thread Ryan Roth
I just upgraded my freevo box to the current SVN and I am getting the same error. I haven't had time to look into it yet. > I get these errors when I attempt to launch MAME. I have mame > installed. Issuing xmame --listxml gives me a huge data dump of > information. > > My local_conf.py has