Update of /cvsroot/freevo/freevo/src/audio
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20772

Modified Files:
      Tag: rel-1-5
        audioitem.py 
Log Message:
Fix sorting behaviour to respect rather than ignore TPOS tags. This is the
expected behaviour, but was missing. Requires latest mmpython to work properly.


Index: audioitem.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/audio/audioitem.py,v
retrieving revision 1.57.2.1
retrieving revision 1.57.2.2
diff -C2 -d -r1.57.2.1 -r1.57.2.2
*** audioitem.py        21 Jul 2004 17:12:23 -0000      1.57.2.1
--- audioitem.py        10 Sep 2004 19:48:17 -0000      1.57.2.2
***************
*** 10,13 ****
--- 10,17 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.57.2.2  2004/09/10 19:48:17  outlyer
+ # Fix sorting behaviour to respect rather than ignore TPOS tags. This is the
+ # expected behaviour, but was missing. Requires latest mmpython to work properly.
+ #
  # Revision 1.57.2.1  2004/07/21 17:12:23  outlyer
  # Bugfix.
***************
*** 142,146 ****
              # sort by track number
              try:
!                 return '%0.3i-%s' % (int(self['trackno']), Unicode(self.url))
              except ValueError:
                  return '%s-%s' % (Unicode(self['trackno']), Unicode(self.url))
--- 146,150 ----
              # sort by track number
              try:
!                 return '%s %0.3i-%s' % (self['discs'],int(self['trackno']), 
Unicode(self.url))
              except ValueError:
                  return '%s-%s' % (Unicode(self['trackno']), Unicode(self.url))



-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM. 
Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to