Update of /cvsroot/freevo/freevo/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29304/src
Modified Files: config.py Log Message: Automouter patch to check for hosts in mediamenu from Soenke Schwardt. See doc of VIDEO_ITEMS for details Index: config.py =================================================================== RCS file: /cvsroot/freevo/freevo/src/config.py,v retrieving revision 1.101 retrieving revision 1.102 diff -C2 -d -r1.101 -r1.102 *** config.py 12 Mar 2004 22:01:18 -0000 1.101 --- config.py 18 Mar 2004 15:38:18 -0000 1.102 *************** *** 23,26 **** --- 23,30 ---- # ----------------------------------------------------------------------- # $Log$ + # Revision 1.102 2004/03/18 15:38:18 dischi + # Automouter patch to check for hosts in mediamenu from Soenke Schwardt. + # See doc of VIDEO_ITEMS for details + # # Revision 1.101 2004/03/12 22:01:18 rshortt # Fix some assumptions with channel detection. Also channel id's are strings, *************** *** 583,589 **** for d in x: if isstring(d): ! abs.append(os.path.abspath(d)) else: ! abs.append((d[0], os.path.abspath(d[1]))) exec ('%s = abs' % n) --- 587,607 ---- for d in x: if isstring(d): ! pos = d.find(':') ! if pos == -1: ! abs.append(os.path.abspath(d)) ! else: ! if pos > d.find('/'): ! abs.append(os.path.abspath(d)) ! else: ! abs.append(d[0:pos+1] + os.path.abspath(d[pos+1:])) else: ! pos = d[1].find(':') ! if pos == -1: ! abs.append((d[0], os.path.abspath(d[1]))) ! else: ! if pos > d[1].find('/'): ! abs.append((d[0], os.path.abspath(d[1]))) ! else: ! abs.append((d[0], d[1][0:pos+1] + os.path.abspath(d[1][pos+1:]))) exec ('%s = abs' % n) ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ Freevo-cvslog mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-cvslog