[Freevo-cvslog] freevo/contrib/rpm SDL-1.2.6-dxr3-ffmpeg.patch,NONE,1.1 SDL-1.2.6-gcc3.patch,NONE,1.1

2004-01-06 Thread tcwan
Update of /cvsroot/freevo/freevo/contrib/rpm In directory sc8-pr-cvs1:/tmp/cvs-serv29591 Added Files: SDL-1.2.6-dxr3-ffmpeg.patch SDL-1.2.6-gcc3.patch Log Message: Added dxr3 patches for SDL 1.2.6 --- NEW FILE: SDL-1.2.6-dxr3-ffmpeg.patch --- --- /usr/local/SDL-1.2.5/configure.in

[Freevo-cvslog] freevo/WIP/Aubin Rendezvous.py,NONE,1.1 freevoreg.py,NONE,1.1

2004-01-06 Thread outlyer
Update of /cvsroot/freevo/freevo/WIP/Aubin In directory sc8-pr-cvs1:/tmp/cvs-serv21259 Added Files: Rendezvous.py freevoreg.py Log Message: Some initial code for having Freevo announce itself using Rendezvous/Zeroconf... The current code makes Freevo's web interface show up in Safari and

[Freevo-devel] Rendezvous

2004-01-06 Thread Aubin Paul
I'm going to add Rendezvous support to Freevo, it's a nice way to have Freevo show up on the local network without needing to know about the service. It's fairly straightforward, but I will make it configurable. I think it could be a default plugin, but I'll leave it disabled by default. To use

[Freevo-cvslog] freevo/src/plugins Rendezvous.py,NONE,1.1

2004-01-06 Thread outlyer
Update of /cvsroot/freevo/freevo/src/plugins In directory sc8-pr-cvs1:/tmp/cvs-serv30818 Added Files: Rendezvous.py Log Message: Rendezvous Broadcast support for Freevo Web... the web interface will appear anywhere on your subnet that supports Rendezvous. (Tested under Mac OS X and

[Freevo-cvslog] freevo/WIP/Aubin Rendezvous.py,1.1,NONE freevoreg.py,1.1,NONE

2004-01-06 Thread outlyer
Update of /cvsroot/freevo/freevo/WIP/Aubin In directory sc8-pr-cvs1:/tmp/cvs-serv31018 Removed Files: Rendezvous.py freevoreg.py Log Message: Finished already, removing these files. --- Rendezvous.py DELETED --- --- freevoreg.py DELETED ---

[Freevo-cvslog] freevo ChangeLog,1.104,1.105

2004-01-06 Thread outlyer
Update of /cvsroot/freevo/freevo In directory sc8-pr-cvs1:/tmp/cvs-serv31629 Modified Files: ChangeLog Log Message: Updated Index: ChangeLog === RCS file: /cvsroot/freevo/freevo/ChangeLog,v retrieving revision 1.104

Re: [Freevo-devel] Rendezvous

2004-01-06 Thread Aubin Paul
Ok, it's working, but it's clunky because the plugin is activated under the OSD interface when it really should be in the webserver.py helper. Anyone want to hazard a guess on the best way to do this? On Tue, Jan 06, 2004 at 10:35:52AM -0500, Aubin Paul wrote: I'm going to add Rendezvous

[Freevo-devel] Re: Rendezvous

2004-01-06 Thread Dirk Meyer
Aubin Paul wrote: Ok, it's working, but it's clunky because the plugin is activated under the OSD interface when it really should be in the webserver.py helper. Anyone want to hazard a guess on the best way to do this? I knew this day would come. So we need a plugin interface for the

Re: [Freevo-devel] Rendezvous

2004-01-06 Thread Rob Shortt
Aubin Paul wrote: Ok, it's working, but it's clunky because the plugin is activated under the OSD interface when it really should be in the webserver.py helper. Anyone want to hazard a guess on the best way to do this? Sure. :) I had to get recordserver to use plugins too and Dischi made a

Re: [Freevo-devel] Rendezvous

2004-01-06 Thread Rob Shortt
Oh, sorry, you also have to tell the plugin not to init under the main interface: def __init__(self): # Disable this plugin if not loaded by record_server. if string.find(sys.argv[0], 'recordserver') == -1: return s/recordserver/webserver So, this is a little bit

[Freevo-cvslog] freevo/WIP/Ruelle freevoscreensaver.py,1.2,1.3

2004-01-06 Thread mikeruelle
Update of /cvsroot/freevo/freevo/WIP/Ruelle In directory sc8-pr-cvs1:/tmp/cvs-serv27405 Modified Files: freevoscreensaver.py Log Message: now we have ssr screen savers with pictures Index: freevoscreensaver.py === RCS file:

[Freevo-cvslog] freevo/src playlist.py,1.52,1.53

2004-01-06 Thread dischi
Update of /cvsroot/freevo/freevo/src In directory sc8-pr-cvs1:/tmp/cvs-serv9103 Modified Files: playlist.py Log Message: autostart ssr slideshows and fix display_type bug Index: playlist.py === RCS file:

[Freevo-cvslog] freevo/src/util vfs.py,1.9,1.10

2004-01-06 Thread dischi
Update of /cvsroot/freevo/freevo/src/util In directory sc8-pr-cvs1:/tmp/cvs-serv10905 Modified Files: vfs.py Log Message: added mtime function using stat Index: vfs.py === RCS file: /cvsroot/freevo/freevo/src/util/vfs.py,v

[Freevo-cvslog] freevo/src directory.py,1.87,1.88

2004-01-06 Thread dischi
Update of /cvsroot/freevo/freevo/src In directory sc8-pr-cvs1:/tmp/cvs-serv11205 Modified Files: directory.py Log Message: use new mtime function to avoid crash Index: directory.py === RCS file:

[Freevo-cvslog] freevo/src/image __init__.py,1.14,1.15

2004-01-06 Thread dischi
Update of /cvsroot/freevo/freevo/src/image In directory sc8-pr-cvs1:/tmp/cvs-serv12311/image Modified Files: __init__.py Log Message: add repeat support Index: __init__.py === RCS file:

[Freevo-cvslog] freevo/src playlist.py,1.53,1.54

2004-01-06 Thread dischi
Update of /cvsroot/freevo/freevo/src In directory sc8-pr-cvs1:/tmp/cvs-serv12311 Modified Files: playlist.py Log Message: add repeat support Index: playlist.py === RCS file: /cvsroot/freevo/freevo/src/playlist.py,v

[Freevo-devel] Re: Rendezvous

2004-01-06 Thread Dirk Meyer
Rob Shortt wrote: Aubin Paul wrote: Ok, it's working, but it's clunky because the plugin is activated under the OSD interface when it really should be in the webserver.py helper. Anyone want to hazard a guess on the best way to do this? Sure. :) I had to get recordserver to use plugins too

[Freevo-devel] better osd (was: [Freevo-cvslog] freevo/WIP/Ruelle freevoscreensaver.py,1.1,1.)

2004-01-06 Thread Dirk Meyer
Aubin Paul wrote: Makes sense to me... Dischi's _debug_ command is a good example of how we could do it. On Mon, Jan 05, 2004 at 08:03:12PM -0500, Michael Ruelle wrote: Ok i can see that. Maybe add a severity to the osd_message's and then we can have things show/ignore it based on a

[Freevo-cvslog] freevo/WIP/Ruelle freevoscreensaver.py,1.3,1.4

2004-01-06 Thread mikeruelle
Update of /cvsroot/freevo/freevo/WIP/Ruelle In directory sc8-pr-cvs1:/tmp/cvs-serv18420 Modified Files: freevoscreensaver.py Log Message: remove games_items popup from showing Index: freevoscreensaver.py === RCS file:

Re: [Freevo-devel] Re: Rendezvous

2004-01-06 Thread Aubin Paul
On Tue, Jan 06, 2004 at 08:36:59PM +0100, Dirk Meyer wrote: This is only for one plugin (and a bad hack). What about making something like plugin.register('whaterver', type='webserver') Than web and recorderserver call plugin.init(). If the following stuff: That seems logical to me...

Re: [Freevo-devel] [PLUGIN] Mailreader (and a new theme)

2004-01-06 Thread Gustavo Sverzut Barbieri
Hi Viggo, I'm the barbieri_* author. It was designed to show other most unused Freevo possibilities. It used to be prettier, but now it's very ugly. I don't have much graphical skills, but I know how the skin work (I wrote many pieces of that code), so if you have any question, just ask.

[Freevo-cvslog] freevo/WIP/Ruelle freevoscreensaver.py,1.4,1.5

2004-01-06 Thread mikeruelle
Update of /cvsroot/freevo/freevo/WIP/Ruelle In directory sc8-pr-cvs1:/tmp/cvs-serv2795 Modified Files: freevoscreensaver.py Log Message: slideshows from fxd files Index: freevoscreensaver.py === RCS file:

[Freevo-wikilog] [Freevo Wiki] Update of DocumentationPage

2004-01-06 Thread freevo-wikilog
Dear Wiki user, You have subscribed to a wiki page or wiki category on Freevo Wiki for change notification. The following page has been changed by 165.228.130.11: http://freevo.sourceforge.net/cgi-bin/moin.cgi/DocumentationPage

[Freevo-cvslog] freevo/src/plugins tiny_xosd.py,NONE,1.1

2004-01-06 Thread rshortt
Update of /cvsroot/freevo/freevo/src/plugins In directory sc8-pr-cvs1:/tmp/cvs-serv2224 Added Files: tiny_xosd.py Log Message: An osd plugin by Cyril Lacoux that uses pyosd and therefore libxosd. This will display over Freevo and child applications while running in X. --- NEW FILE:

Re: [Freevo-devel] [PLUGIN] proposed tiny_xosd.py : second try ;-)

2004-01-06 Thread Rob Shortt
Cyril Lacoux [Yack] wrote: Hi, Hi. Here are the patches against cvs. Thanks! tiny_xosd.patch is the same as previous with a little bugfix (Volume: xx% instead of Volume xx%). I took a look at this, tried it out, and I think its cool. It is definately worth it for those who use X. Can this be

Re: [Freevo-devel] [PLUGIN] proposed tiny_xosd.py : second try ;-)

2004-01-06 Thread Rob Shortt
Cyril, there doesn't seem to be an obvious way to offset the message horizontally. For me the 'V' in Volume, and the left side of the bar are right against the left side of my screen because of the overscan. I added handling of the OSD_OVERSCAN_Y but didn't see a way of handling the X

[Freevo-devel] : [Freevo-devel] why my freevo.po for chinese(gb2312) can't work?

2004-01-06 Thread
Title: hi, I read the gettext.py ,and after changed gettext.install('freevo', os.environ['FREEVO_LOCALE']) in config.py to gettext.install('freevo', os.environ['FREEVO_LOCALE'],'gb2312'),finally,it display chinese correctly!(freevo.po use charset=utf-8) thank god.butit still someproblem

Re: [Freevo-devel] better osd (was: [Freevo-cvslog] freevo/WIP/Ruelle freevoscreensaver.py,1.1,1.)

2004-01-06 Thread Gustavo Sverzut Barbieri
--- Dirk Meyer [EMAIL PROTECTED] escreveu: Aubin Paul wrote: Makes sense to me... Dischi's _debug_ command is a good example of how we could do it. On Mon, Jan 05, 2004 at 08:03:12PM -0500, Michael Ruelle wrote: Ok i can see that. Maybe add a severity to the osd_message's and then

[Freevo-devel] Encodingserver - I didn't start yet but...

2004-01-06 Thread den_RDC
But i did think a lng time about it. Have been busy latly with all sorts of stuff, but i did make some changes to the implementation and there's a code structure in my head. Here's the proposed Interface definition ( the changes make it possible to make an initial version that just

Re: [Freevo-devel] [PLUGIN] Mailreader (and a new theme)

2004-01-06 Thread Gustavo Sverzut Barbieri
--- Viggo Fredriksen [EMAIL PROTECTED] escreveu: Gustavo Sverzut Barbieri wrote: Hi Viggo, I'm the barbieri_* author. It was designed to show other most unused Freevo possibilities. It used to be prettier, but now it's very ugly. I don't have much graphical skills, but I know

Re: [Freevo-devel] Encodingserver - I didn't start yet but...

2004-01-06 Thread Gustavo Sverzut Barbieri
Good! Just waiting you to implement ;P I just don't like the Audio-Video relationship u impose. Better to keep with the container stuff you mentioned. Gustavo --- den_RDC [EMAIL PROTECTED] escreveu: But i did think a lng time about it. Have been busy latly with all sorts of stuff,

[Freevo-cvslog] freevo/src/plugins freevo-rendezvous.py,NONE,1.1

2004-01-06 Thread outlyer
Update of /cvsroot/freevo/freevo/src/plugins In directory sc8-pr-cvs1:/tmp/cvs-serv8942 Added Files: freevo-rendezvous.py Log Message: ? --- NEW FILE: freevo-rendezvous.py --- import socket import Rendezvous import time import plugin from freevo.version import __version__ import