Discussion:
file listing bug
Steve Hill
2001-11-17 05:08:42 UTC
Permalink
Worked like a charm.. thanks Tom/Dean!

(BTW: a new TODO might be to handle the socket error that occurs if you
attempt to start a second instance of the server with a better
explanation.. forgot about that windows service running!)

-----Original Message-----
From: dean blackketter <dean-qV/***@public.gmane.org>
To: slimp3-dev-***@public.gmane.org
Date: Fri, 16 Nov 2001 20:10:44 -0800
Subject: [slimp3-dev] Re: file listing bug
Ugh, repsponding to my own message...
I reread the thread and it is evident that Dean checked in the file
from a unix machine and that Steve is checking out from a windows
machine. This explains why it looks good to Dean and is corrupted for
Steve (things that looks like LFs are being changed into CR-LFs for
cvs admin -kb foo.dll
will fix the problem.
Done!
Steve, after Dean (or somebody else) does that, you need to delete the
cvs update -A
Good luck. Post if it works!
-dean
------------------------ Yahoo! Groups Sponsor
---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/ltH6zA/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~-
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/ltH6zA/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
dean blackketter
2001-11-17 04:10:44 UTC
Permalink
Ugh, repsponding to my own message...
I reread the thread and it is evident that Dean checked in the file
from a unix machine and that Steve is checking out from a windows
machine. This explains why it looks good to Dean and is corrupted for
Steve (things that looks like LFs are being changed into CR-LFs for
cvs admin -kb foo.dll
will fix the problem.
Done!
Steve, after Dean (or somebody else) does that, you need to delete the
cvs update -A
Good luck. Post if it works!

-dean

------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/ltH6zA/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
dean blackketter
2003-02-22 13:24:37 UTC
Permalink
<!doctype html public "-//W3C//DTD W3 HTML//EN">
<head><style type="text/css"><!--
blockquote, dl, ul, ol, li { padding-top: 0 ; padding-bottom: 0 }
--></style><title>[slimp3-dev] Re: file listing
bug</title></head><body>
<blockquote type="cite" cite>Ugh, repsponding to my own message...<br>
<br>
I reread the thread and it is evident that Dean checked in the
file<br>
from a unix machine and that Steve is checking out from a windows<br>
machine. This explains why it looks good to Dean and is corrupted
for</blockquote>
<blockquote type="cite" cite>Steve (things that looks like LFs are
being changed into CR-LFs for<br>
Steve and left alone for Dean). In this case, a simple:<br>
<br>
&nbsp;&nbsp; cvs admin -kb foo.dll<br>
<br>
will fix the problem.</blockquote>
<div><br>
Done!<br>
</div>
<blockquote type="cite" cite><br>
Steve, after Dean (or somebody else) does that, you need to delete
the<br>
file and then do a:<br>
<br>
&nbsp;&nbsp; cvs update -A</blockquote>
<div><br></div>
<div>Good luck.&nbsp; Post if it works!</div>
<div><br></div>
<div>-dean</div>
</body>
</html>
Tom Jones
2001-11-17 03:01:05 UTC
Permalink
Ugh, repsponding to my own message...

I reread the thread and it is evident that Dean checked in the file
from a unix machine and that Steve is checking out from a windows
machine. This explains why it looks good to Dean and is corrupted for
Steve (things that looks like LFs are being changed into CR-LFs for
Steve and left alone for Dean). In this case, a simple:

cvs admin -kb foo.dll

will fix the problem.

Steve, after Dean (or somebody else) does that, you need to delete the
file and then do a:

cvs update -A


-- Tom
Yay! I get to be useful!
There are potentially two related problems here. First CVS does (by
$Author$, $Date$, $Id$, etc.
and expands them into appropriate strings (see
http://www.cvshome.org/docs/manual/cvs_12.html#SEC98 for details).
This expansion happens on checkout. So if you have keyword
substitution on (again, it is by default) and a binary has a string
of
bits in it that looks like a keyword you get a corrupted binary.
The other (more likely) related thing is that the CVS stores files
in
the respository with unix style (LF-only) line endings (regardless
of
the OS of the hosting the CVS repository). Line endings are
converted
to the appropriate type on checkout (CR/LF for windows/dos and
CR-only
for macintosh/vms). In this case, like the keywords above, if you
had
a string of bits that looked like a canonical line ending (LF) it
would be converted to the type appropriate for the client OS and
http://www.cvshome.org/docs/manual/cvs_9.html#SEC80 for more
detail).
Now, how do you fix this and, more importantly, avoid it in the
future? Simple, you tell CVS the file is a binary and not to do
line-ending conversion or keyword substitution.
This is normally handled at the time that you add the file by
cvs add -kb foo.dll
This option that you set will be "sticky" (i.e., will be remembered
for all future operations) for that file.
In this case, the file has already been added so we need to change
cvs admin -kb foo.dll
We're not quite done. If the file was added from a unix system
everthing is now fine. If it was added from a Windows machine (or
pre-OSX macintosh, or any other machine that uses something other
than
LF for line endings) and there was a string of bits that looked
like
a line ending (which got converted to the canonical form during the
initial checkin), the binary in the repository is permanently
corrupted and a new version will need to be checked in.
Additionally, all users who currently have this binary checked out
will either need to delete and pull a whole new source tree or do
the
delete the current copy of foo.dll
cvs update -A foo.dll
You can create a CVSROOT/cvswrappers file that will take care of
automatically doing the "-kb" whenever you add a file according to
it's extension (or any other wildcard pattern match.
see:http://www.cvshome.org/docs/manual/cvs_18.html#SEC162 for more
info).
I hope that all this makes sense and I apologize for the long winded
explanation.
I would have gone through the source tree and found all mis-optioned
binaries, but sourceforge isn't responding for me
-- Tom Jones
(owner of SliMP3 #19 and a release engineer at a bay area software
company where, among other things, I maintain a several GB CVS
repoitory for a ~100 person engineering team)
I checked it out with both WinCVS 1.2 and a DOS-based windows CVS
client,
and both times it came out bad (10 bytes larger). I can't figure
out
what's happening to it...
-----Original Message-----
Date: Fri, 16 Nov 2001 14:50:53 -0800
Subject: Re: [slimp3-dev] Re: file listing bug
So, do you know what happened? I want to make sure that we know
how
to make the checkouts reliable.
-dean
I checked it all out again (I'm using WinCVS) and had the same
problem
-
it turns out the file size is 10 bytes larger when retrieved
this
way.
Then I went to browse the CVS files through sourceforge and it
let me
download HiRes.1 (wonder why it wasn't .dll ?) and that one
worked
fine,
so apparently the problem is in my checkout, not the file
itself.
Sorry 'bout that...
-----Original Message-----
Date: Fri, 16 Nov 2001 13:53:42 -0800
Subject: Re: [slimp3-dev] Re: file listing bug
Can you compare the one you checked out against the one that
you
sent
me and see how they differ?
The one I unzipped appears the same as the one I have
checked
in...
I tried out the version you checked in and the fix works
(it
shows
all
files). However, the windows binary got messed up either
in
sending
it
to you, in posting to CVS, or in my retrieval of it..
windows
said
it
wasn't a valid library.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/bAmslD/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Tom Jones
2001-11-17 02:51:59 UTC
Permalink
Yay! I get to be useful!

There are potentially two related problems here. First CVS does (by
default) keyword substition wherein it takes things like:

$Author$, $Date$, $Id$, etc.

and expands them into appropriate strings (see
http://www.cvshome.org/docs/manual/cvs_12.html#SEC98 for details).

This expansion happens on checkout. So if you have keyword
substitution on (again, it is by default) and a binary has a string of
bits in it that looks like a keyword you get a corrupted binary.

The other (more likely) related thing is that the CVS stores files in
the respository with unix style (LF-only) line endings (regardless of
the OS of the hosting the CVS repository). Line endings are converted
to the appropriate type on checkout (CR/LF for windows/dos and CR-only
for macintosh/vms). In this case, like the keywords above, if you had
a string of bits that looked like a canonical line ending (LF) it
would be converted to the type appropriate for the client OS and
potentially corrupts the binary. (see:
http://www.cvshome.org/docs/manual/cvs_9.html#SEC80 for more detail).

Now, how do you fix this and, more importantly, avoid it in the
future? Simple, you tell CVS the file is a binary and not to do
line-ending conversion or keyword substitution.

This is normally handled at the time that you add the file by
specifying the keyword susbstutions mode like:

cvs add -kb foo.dll

This option that you set will be "sticky" (i.e., will be remembered
for all future operations) for that file.

In this case, the file has already been added so we need to change
it's "sticky" options. Do this with the "admin" command:

cvs admin -kb foo.dll

We're not quite done. If the file was added from a unix system
everthing is now fine. If it was added from a Windows machine (or
pre-OSX macintosh, or any other machine that uses something other than
LF for line endings) and there was a string of bits that looked like
a line ending (which got converted to the canonical form during the
initial checkin), the binary in the repository is permanently
corrupted and a new version will need to be checked in.

Additionally, all users who currently have this binary checked out
will either need to delete and pull a whole new source tree or do the
following to get a good copy of it:

delete the current copy of foo.dll
cvs update -A foo.dll

You can create a CVSROOT/cvswrappers file that will take care of
automatically doing the "-kb" whenever you add a file according to
it's extension (or any other wildcard pattern match.
see:http://www.cvshome.org/docs/manual/cvs_18.html#SEC162 for more
info).

I hope that all this makes sense and I apologize for the long winded
explanation.

I would have gone through the source tree and found all mis-optioned
binaries, but sourceforge isn't responding for me


-- Tom Jones

(owner of SliMP3 #19 and a release engineer at a bay area software
company where, among other things, I maintain a several GB CVS
repoitory for a ~100 person engineering team)
I checked it out with both WinCVS 1.2 and a DOS-based windows CVS
client,
and both times it came out bad (10 bytes larger). I can't figure
out
what's happening to it...
-----Original Message-----
Date: Fri, 16 Nov 2001 14:50:53 -0800
Subject: Re: [slimp3-dev] Re: file listing bug
So, do you know what happened? I want to make sure that we know
how
to make the checkouts reliable.
-dean
I checked it all out again (I'm using WinCVS) and had the same
problem
-
it turns out the file size is 10 bytes larger when retrieved this
way.
Then I went to browse the CVS files through sourceforge and it
let me
download HiRes.1 (wonder why it wasn't .dll ?) and that one
worked
fine,
so apparently the problem is in my checkout, not the file
itself.
Sorry 'bout that...
-----Original Message-----
Date: Fri, 16 Nov 2001 13:53:42 -0800
Subject: Re: [slimp3-dev] Re: file listing bug
Can you compare the one you checked out against the one that
you
sent
me and see how they differ?
The one I unzipped appears the same as the one I have checked
in...
I tried out the version you checked in and the fix works (it
shows
all
files). However, the windows binary got messed up either in
sending
it
to you, in posting to CVS, or in my retrieval of it.. windows
said
it
wasn't a valid library.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/XwUZwC/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Steve Hill
2001-11-16 23:41:43 UTC
Permalink
I checked it out with both WinCVS 1.2 and a DOS-based windows CVS client,
and both times it came out bad (10 bytes larger). I can't figure out
what's happening to it...

-----Original Message-----
From: dean blackketter <dean-qV/***@public.gmane.org>
To: slimp3-dev-***@public.gmane.org
Date: Fri, 16 Nov 2001 14:50:53 -0800
Subject: Re: [slimp3-dev] Re: file listing bug
So, do you know what happened? I want to make sure that we know how
to make the checkouts reliable.
-dean
I checked it all out again (I'm using WinCVS) and had the same problem
-
it turns out the file size is 10 bytes larger when retrieved this way.
Then I went to browse the CVS files through sourceforge and it let me
download HiRes.1 (wonder why it wasn't .dll ?) and that one worked
fine,
so apparently the problem is in my checkout, not the file itself.
Sorry 'bout that...
-----Original Message-----
Date: Fri, 16 Nov 2001 13:53:42 -0800
Subject: Re: [slimp3-dev] Re: file listing bug
Can you compare the one you checked out against the one that you
sent
me and see how they differ?
The one I unzipped appears the same as the one I have checked in...
I tried out the version you checked in and the fix works (it shows
all
files). However, the windows binary got messed up either in
sending
it
to you, in posting to CVS, or in my retrieval of it.. windows said
it
wasn't a valid library.
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor
---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/Vv.L9D/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~-
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor
---------------------~-->
Need new boots for winter? Looking for a perfect gift for your shoe
loving friends?
Zappos.com is the perfect fit for all your shoe needs!
http://us.click.yahoo.com/3wM6yD/QrSDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~-
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/bAmslD/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
dean blackketter
2001-11-16 22:50:53 UTC
Permalink
So, do you know what happened? I want to make sure that we know how
to make the checkouts reliable.

-dean
I checked it all out again (I'm using WinCVS) and had the same problem -
it turns out the file size is 10 bytes larger when retrieved this way.
Then I went to browse the CVS files through sourceforge and it let me
download HiRes.1 (wonder why it wasn't .dll ?) and that one worked fine,
so apparently the problem is in my checkout, not the file itself.
Sorry 'bout that...
-----Original Message-----
Date: Fri, 16 Nov 2001 13:53:42 -0800
Subject: Re: [slimp3-dev] Re: file listing bug
Can you compare the one you checked out against the one that you sent
me and see how they differ?
The one I unzipped appears the same as the one I have checked in...
I tried out the version you checked in and the fix works (it shows all
files). However, the windows binary got messed up either in sending
it
to you, in posting to CVS, or in my retrieval of it.. windows said it
wasn't a valid library.
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor
---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/Vv.L9D/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~-
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Need new boots for winter? Looking for a perfect gift for your shoe loving friends?
Zappos.com is the perfect fit for all your shoe needs!
http://us.click.yahoo.com/3wM6yD/QrSDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Steve Hill
2001-11-16 22:18:20 UTC
Permalink
I checked it all out again (I'm using WinCVS) and had the same problem -
it turns out the file size is 10 bytes larger when retrieved this way.
Then I went to browse the CVS files through sourceforge and it let me
download HiRes.1 (wonder why it wasn't .dll ?) and that one worked fine,
so apparently the problem is in my checkout, not the file itself.

Sorry 'bout that...

-----Original Message-----
From: dean blackketter <dean-qV/***@public.gmane.org>
To: slimp3-dev-***@public.gmane.org
Date: Fri, 16 Nov 2001 13:53:42 -0800
Subject: Re: [slimp3-dev] Re: file listing bug
Can you compare the one you checked out against the one that you sent
me and see how they differ?
The one I unzipped appears the same as the one I have checked in...
I tried out the version you checked in and the fix works (it shows all
files). However, the windows binary got messed up either in sending
it
to you, in posting to CVS, or in my retrieval of it.. windows said it
wasn't a valid library.
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor
---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/Vv.L9D/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~-
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/Vv.L9D/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
dean blackketter
2003-02-22 13:24:44 UTC
Permalink
<!doctype html public "-//W3C//DTD W3 HTML//EN">
<head><style type="text/css"><!--
blockquote, dl, ul, ol, li { padding-top: 0 ; padding-bottom: 0 }
--></style><title>Re: [slimp3-dev] Re: file listing
bug</title></head><body>
<div>So, do you know what happened?&nbsp; I want to make sure that we
know how to make the checkouts reliable.</div>
<div><br></div>
<div>-dean</div>
<blockquote type="cite" cite>I checked it all out again (I'm using
WinCVS) and had the same problem - <br>
it turns out the file size is 10 bytes larger when retrieved this
way.&nbsp; <br>
Then I went to browse the CVS files through sourceforge and it let me
<br>
download HiRes.1 (wonder why it wasn't .dll ?) and that one worked
fine, <br>
so apparently the problem is in my checkout, not the file itself.&nbsp;
<br>
<br>
Sorry 'bout that...<br>
<br>
-----Original Message-----<br>
From: dean blackketter &lt;dean-qV/***@public.gmane.org&gt;<br>
To: slimp3-dev-***@public.gmane.org<br>
Date: Fri, 16 Nov 2001 13:53:42 -0800<br>
Subject: Re: [slimp3-dev] Re: file listing bug<br>
<br>
&gt; Can you compare the one you checked out against the one that you
sent <br>
&gt; me and see how they differ?<br>
&gt; <br>
&gt; The one I unzipped appears the same as the one I have checked
in...<br>
&gt; <br>
&gt; <br>
&gt; &gt;I tried out the version you checked in and the fix works (it
shows all<br>
&gt; &gt;files).&nbsp; However, the windows binary got messed up
either in sending<br>
&gt; it<br>
&gt; &gt;to you, in posting to CVS, or in my retrieval of it.. windows
said it<br>
&gt; &gt;wasn't a valid library.<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;To unsubscribe from this group, send an email to:<br>
&gt; &gt;slimp3-dev-unsubscribe-***@public.gmane.org<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;Your use of Yahoo! Groups is subject to<br>
&gt; http://docs.yahoo.com/info/terms/<br>
&gt; <br>
&gt; <br>
&gt; ------------------------ Yahoo! Groups Sponsor<br>
&gt; ---------------------~--&gt;<br>
&gt; Universal Inkjet Refill Kit $29.95<br>
&gt; Refill any ink cartridge for less!<br>
&gt; Includes black and color ink.<br>
&gt; http://us.click.yahoo.com/Vv.L9D/MkNDAA/ySSFAA/rIp0lB/TM<br>
&gt;
---------------------------------------------------------------------<span
</span>~-<br>
&gt; &gt;<br>
&gt; <br>
&gt; To unsubscribe from this group, send an email to:<br>
&gt; slimp3-dev-unsubscribe-***@public.gmane.org<br>
&gt; <br>
&gt;&nbsp; <br>
&gt; <br>
&gt; Your use of Yahoo! Groups is subject to<br>
&gt; http://docs.yahoo.com/info/terms/ <br>
&gt; <br>
&gt; <br>
&gt; <br>
<br>
<br>
<br>
------------------------ Yahoo! Groups Sponsor
---------------------~--&gt;<br>
Universal Inkjet Refill Kit $29.95<br>
Refill any ink cartridge for less!<br>
Includes black and color ink.<br>
http://us.click.yahoo.com/Vv.L9D/MkNDAA/ySSFAA/rIp0lB/TM<br>
---------------------------------------------------------------------<span </span>~-&gt;<br>
<br>
To unsubscribe from this group, send an email to:<br>
slimp3-dev-unsubscribe-***@public.gmane.org</blockquote>
<blockquote type="cite" cite><br></blockquote>
<blockquote type="cite" cite>&nbsp;</blockquote>
<blockquote type="cite" cite><br></blockquote>
<blockquote type="cite" cite>Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/ </blockquote>
<div><br></div>
</body>
</html>
dean blackketter
2001-11-16 21:53:42 UTC
Permalink
Can you compare the one you checked out against the one that you sent
me and see how they differ?

The one I unzipped appears the same as the one I have checked in...
I tried out the version you checked in and the fix works (it shows all
files). However, the windows binary got messed up either in sending it
to you, in posting to CVS, or in my retrieval of it.. windows said it
wasn't a valid library.
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/Vv.L9D/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
dean blackketter
2003-02-22 13:24:45 UTC
Permalink
<!doctype html public "-//W3C//DTD W3 HTML//EN">
<head><style type="text/css"><!--
blockquote, dl, ul, ol, li { padding-top: 0 ; padding-bottom: 0 }
--></style><title>Re: [slimp3-dev] Re: file listing
bug</title></head><body>
<div>Can you compare the one you checked out against the one that you
sent me and see how they differ? </div>
<div><br></div>
<div>The one I unzipped appears the same as the one I have checked
in...</div>
<div><br></div>
<div><br></div>
<blockquote type="cite" cite>I tried out the version you checked in
and the fix works (it shows all <br>
files).&nbsp; However, the windows binary got messed up either in
sending it <br>
to you, in posting to CVS, or in my retrieval of it.. windows said it
<br>
wasn't a valid library.<br>
</blockquote>
<blockquote type="cite" cite><br>
<br>
------------------------ Yahoo! Groups Sponsor
---------------------~--&gt;<br>
Universal Inkjet Refill Kit $29.95<br>
Refill any ink cartridge for less!<br>
Includes black and color ink.<br>
http://us.click.yahoo.com/ltH6zA/MkNDAA/ySSFAA/rIp0lB/TM<br>
---------------------------------------------------------------------<span </span>~-&gt;<br>
<br>
To unsubscribe from this group, send an email to:<br>
slimp3-dev-unsubscribe-***@public.gmane.org</blockquote>
<blockquote type="cite" cite><br></blockquote>
<blockquote type="cite" cite>&nbsp;</blockquote>
<blockquote type="cite" cite><br></blockquote>
<blockquote type="cite" cite>Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/ </blockquote>
<div><br></div>
</body>
</html>
Steve Hill
2001-11-16 18:18:09 UTC
Permalink
I tried out the version you checked in and the fix works (it shows all
files). However, the windows binary got messed up either in sending it
to you, in posting to CVS, or in my retrieval of it.. windows said it
wasn't a valid library.



------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/ltH6zA/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
dean blackketter
2001-11-16 17:55:22 UTC
Permalink
Hey Eric,
Whoops, sounds like my bug. Sorry 'bout that...
No apologies necessary. We all write bugs.

I just checked in a fix, let me know if it works for you.

-dean

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
creeble-/
2001-11-16 17:48:47 UTC
Permalink
Whoops, sounds like my bug. Sorry 'bout that...

Eric.
Yeah, there's a bug in the server where directories with multiple
songs with a given track number are thrown away when sorting the
tracks by number.
I'll fix it.
-dean
Good catch - all of the ones that aren't showing are the ones with
no
track number (0).
-----Original Message-----
Date: Fri, 16 Nov 2001 07:11:35 -0800
Subject: Re: [slimp3-dev] file listing bug
Steve,
What are the track numbers of these songs?
-dean
I just noticed that the some of my songs were being left out
of the
listing.. I've attached a log file that shows it read 3 Hootie
songs,
but
my web output is only 2 songs.
I have three songs in the directory "Hootie And The Blowfish"
and they
now all begin with "Hootie And The Blowfish". There was one
song that
was "Hootie and the Blowfish" (notice lowercase), and until I
made
"and"
and "the" uppercase, it only showed 1 song. I have the same
problem
in
my other directories as well (missing songs).
@items = SliMP3::Playlist::playlistget($fulldir, 0);
in HTTP::printbrowser; I did a print of all the items that
printbrowser
was looping through, and it matched the output I saw on the
web.
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/


------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/XwUZwC/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
dean blackketter
2003-02-22 13:24:51 UTC
Permalink
<!doctype html public "-//W3C//DTD W3 HTML//EN">
<head><style type="text/css"><!--
blockquote, dl, ul, ol, li { padding-top: 0 ; padding-bottom: 0 }
--></style><title>[slimp3-dev] Re: file listing
bug</title></head><body>
<div>Hey Eric,</div>
<div><br></div>
<blockquote type="cite" cite>Whoops, sounds like my bug. Sorry 'bout
that...</blockquote>
<div><br></div>
<div>No apologies necessary.&nbsp;&nbsp;&nbsp; We all write
bugs.</div>
<div><br></div>
<div>I just checked in a fix, let me know if it works for you.</div>
<div><br></div>
<div>-dean</div>
</body>
</html>
dean blackketter
2001-11-16 15:45:36 UTC
Permalink
Yeah, there's a bug in the server where directories with multiple
songs with a given track number are thrown away when sorting the
tracks by number.

I'll fix it.

-dean
Good catch - all of the ones that aren't showing are the ones with no
track number (0).
-----Original Message-----
Date: Fri, 16 Nov 2001 07:11:35 -0800
Subject: Re: [slimp3-dev] file listing bug
Steve,
What are the track numbers of these songs?
-dean
I just noticed that the some of my songs were being left out of the
listing.. I've attached a log file that shows it read 3 Hootie songs,
but
my web output is only 2 songs.
I have three songs in the directory "Hootie And The Blowfish" and they
now all begin with "Hootie And The Blowfish". There was one song that
was "Hootie and the Blowfish" (notice lowercase), and until I made
"and"
and "the" uppercase, it only showed 1 song. I have the same problem
in
my other directories as well (missing songs).
@items = SliMP3::Playlist::playlistget($fulldir, 0);
in HTTP::printbrowser; I did a print of all the items that
printbrowser
was looping through, and it matched the output I saw on the web.
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/r9F0cB/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Steve Hill
2001-11-16 15:23:42 UTC
Permalink
Good catch - all of the ones that aren't showing are the ones with no
track number (0).

-----Original Message-----
From: dean blackketter <dean-qV/***@public.gmane.org>
To: slimp3-dev-***@public.gmane.org
Date: Fri, 16 Nov 2001 07:11:35 -0800
Subject: Re: [slimp3-dev] file listing bug
Steve,
What are the track numbers of these songs?
-dean
I just noticed that the some of my songs were being left out of the
listing.. I've attached a log file that shows it read 3 Hootie songs,
but
my web output is only 2 songs.
I have three songs in the directory "Hootie And The Blowfish" and they
now all begin with "Hootie And The Blowfish". There was one song that
was "Hootie and the Blowfish" (notice lowercase), and until I made
"and"
and "the" uppercase, it only showed 1 song. I have the same problem
in
my other directories as well (missing songs).
@items = SliMP3::Playlist::playlistget($fulldir, 0);
in HTTP::printbrowser; I did a print of all the items that
printbrowser
was looping through, and it matched the output I saw on the web.
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/r9F0cB/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
dean blackketter
2003-02-22 13:25:03 UTC
Permalink
<!doctype html public "-//W3C//DTD W3 HTML//EN">
<head><style type="text/css"><!--
blockquote, dl, ul, ol, li { padding-top: 0 ; padding-bottom: 0 }
--></style><title>Re: [slimp3-dev] file listing
bug</title></head><body>
<div>Yeah, there's a bug in the server where directories with multiple
songs with a given track number are thrown away when sorting the
tracks by number.</div>
<div><br></div>
<div>I'll fix it.</div>
<div><br></div>
<div>-dean</div>
<div><br></div>
<blockquote type="cite" cite>Good catch - all of the ones that aren't
showing are the ones with no <br>
track number (0).</blockquote>
<blockquote type="cite" cite><br>
-----Original Message-----<br>
From: dean blackketter &lt;dean-qV/***@public.gmane.org&gt;<br>
To: slimp3-dev-***@public.gmane.org<br>
Date: Fri, 16 Nov 2001 07:11:35 -0800<br>
Subject: Re: [slimp3-dev] file listing bug<br>
<br>
&gt; Steve,<br>
&gt; <br>
&gt; What are the track numbers of these songs?<br>
&gt; <br>
&gt; -dean<br>
&gt; <br>
&gt; &gt;I just noticed that the some of my songs were being left out
of the<br>
&gt; &gt;listing.. I've attached a log file that shows it read 3
Hootie songs,<br>
&gt; but<br>
&gt; &gt;my web output is only 2 songs.<br>
&gt; &gt;<br>
&gt; &gt;I have three songs in the directory &quot;Hootie And The
Blowfish&quot; and they<br>
&gt; &gt;now all begin with &quot;Hootie And The Blowfish&quot;. There
was one song that<br>
&gt; &gt;was &quot;Hootie and the Blowfish&quot; (notice lowercase),
and until I made<br>
&gt; &quot;and&quot;<br>
&gt; &gt;and &quot;the&quot; uppercase, it only showed 1 song.&nbsp; I
have the same problem<br>
&gt; in<br>
&gt; &gt;my other directories as well (missing songs).<br>
&gt; &gt;<br>
&gt; &gt;&gt;From what I can tell, the problem lies in the call
to:<br>
&gt; &gt;<br>
&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; @items =
SliMP3::Playlist::playlistget($fulldir, 0);<br>
&gt; &gt;<br>
&gt; &gt;in HTTP::printbrowser; I did a print of all the items
that<br>
&gt; printbrowser<br>
&gt; &gt;was looping through, and it matched the output I saw on the
web.<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;To unsubscribe from this group, send an email to:<br>
&gt; &gt;slimp3-dev-unsubscribe-***@public.gmane.org<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;Your use of Yahoo! Groups is subject to<br>
&gt; http://docs.yahoo.com/info/terms/<br>
&gt; <br>
&gt; <br>
&gt; To unsubscribe from this group, send an email to:<br>
&gt; slimp3-dev-unsubscribe-***@public.gmane.org<br>
&gt; <br>
&gt;&nbsp; <br>
&gt; <br>
&gt; Your use of Yahoo! Groups is subject to<br>
&gt; http://docs.yahoo.com/info/terms/ <br>
&gt; <br>
&gt; <br>
&gt; <br>
<br>
<br>
<br>
------------------------ Yahoo! Groups Sponsor
---------------------~--&gt;<br>
Universal Inkjet Refill Kit $29.95<br>
Refill any ink cartridge for less!<br>
Includes black and color ink.<br>
http://us.click.yahoo.com/r9F0cB/MkNDAA/ySSFAA/rIp0lB/TM<br>
---------------------------------------------------------------------<span </span>~-&gt;<br>
<br>
To unsubscribe from this group, send an email to:<br>
slimp3-dev-unsubscribe-***@public.gmane.org<br>
<br>
&nbsp;<br>
<br>
Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/ </blockquote>
<div><br></div>
</body>
</html>
dean blackketter
2001-11-16 15:11:35 UTC
Permalink
Steve,

What are the track numbers of these songs?

-dean
I just noticed that the some of my songs were being left out of the
listing.. I've attached a log file that shows it read 3 Hootie songs, but
my web output is only 2 songs.
I have three songs in the directory "Hootie And The Blowfish" and they
now all begin with "Hootie And The Blowfish". There was one song that
was "Hootie and the Blowfish" (notice lowercase), and until I made "and"
and "the" uppercase, it only showed 1 song. I have the same problem in
my other directories as well (missing songs).
@items = SliMP3::Playlist::playlistget($fulldir, 0);
in HTTP::printbrowser; I did a print of all the items that printbrowser
was looping through, and it matched the output I saw on the web.
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Steve Hill
2001-11-16 14:23:37 UTC
Permalink
I just noticed that the some of my songs were being left out of the
listing.. I've attached a log file that shows it read 3 Hootie songs, but
my web output is only 2 songs.

I have three songs in the directory "Hootie And The Blowfish" and they
now all begin with "Hootie And The Blowfish". There was one song that
was "Hootie and the Blowfish" (notice lowercase), and until I made "and"
and "the" uppercase, it only showed 1 song. I have the same problem in
my other directories as well (missing songs).
@items = SliMP3::Playlist::playlistget($fulldir, 0);

in HTTP::printbrowser; I did a print of all the items that printbrowser
was looping through, and it matched the output I saw on the web.



------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/bAmslD/MkNDAA/ySSFAA/rIp0lB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
slimp3-dev-unsubscribe-***@public.gmane.org



Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
dean blackketter
2003-02-22 13:25:05 UTC
Permalink
<!doctype html public "-//W3C//DTD W3 HTML//EN">
<head><style type="text/css"><!--
blockquote, dl, ul, ol, li { padding-top: 0 ; padding-bottom: 0 }
--></style><title>Re: [slimp3-dev] file listing
bug</title></head><body>
<div>Steve,</div>
<div><br></div>
<div>What are the track numbers of these songs?</div>
<div><br></div>
<div>-dean</div>
<div><br></div>
<blockquote type="cite" cite>I just noticed that the some of my songs
were being left out of the <br>
listing.. I've attached a log file that shows it read 3 Hootie songs,
but <br>
my web output is only 2 songs.<br>
<br>
I have three songs in the directory &quot;Hootie And The Blowfish&quot;
and they <br>
now all begin with &quot;Hootie And The Blowfish&quot;. There was one
song that <br>
was &quot;Hootie and the Blowfish&quot; (notice lowercase), and until
I made &quot;and&quot; <br>
and &quot;the&quot; uppercase, it only showed 1 song.&nbsp; I have the
same problem in <br>
my other directories as well (missing songs).<br>
<br>
&gt;From what I can tell, the problem lies in the call to:<br>
<br>
&nbsp;&nbsp;&nbsp; @items = SliMP3::Playlist::playlistget($fulldir,
0);<br>
<br>
in HTTP::printbrowser; I did a print of all the items that
printbrowser <br>
was looping through, and it matched the output I saw on the web.<br>
<br>
<br>
<br>
------------------------ Yahoo! Groups Sponsor
---------------------~--&gt;<br>
Universal Inkjet Refill Kit $29.95<br>
Refill any ink cartridge for less!<br>
Includes black and color ink.<br>
http://us.click.yahoo.com/bAmslD/MkNDAA/ySSFAA/rIp0lB/TM<br>
---------------------------------------------------------------------<span </span>~-&gt;<br>
<br>
To unsubscribe from this group, send an email to:<br>
slimp3-dev-unsubscribe-***@public.gmane.org</blockquote>
<blockquote type="cite" cite><br></blockquote>
<blockquote type="cite" cite>&nbsp;</blockquote>
<blockquote type="cite" cite><br></blockquote>
<blockquote type="cite" cite>Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/ </blockquote>
<div><br></div>
</body>
</html>

Loading...