dsully | 1 May 2006 17:24
Favicon

[Slim-Checkins] r7238 - in /trunk/server: Changelog6.html Slim/DataStores/DBI/DBIStore.pm

Author: dsully
Date: Mon May  1 08:24:55 2006
New Revision: 7238

URL: http://svn.slimdevices.com?rev=7238&view=rev
Log:
Bug: 3344
Description: Check for a blessed() contributor before calling a method on it.

Modified:
    trunk/server/Changelog6.html
    trunk/server/Slim/DataStores/DBI/DBIStore.pm

Modified: trunk/server/Changelog6.html
URL: http://svn.slimdevices.com/trunk/server/Changelog6.html?rev=7238&r1=7237&r2=7238&view=diff
==============================================================================
--- trunk/server/Changelog6.html (original)
+++ trunk/server/Changelog6.html Mon May  1 08:24:55 2006
 <at>  <at>  -254,6 +254,7  <at>  <at> 
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=3276">#3276</a> - removing artist
from playlist by clicking X removes entire playlist</li>
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=3289">#3289</a> - Brightness prefs
can change when brightness pressed on upgrade screen</li>
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=3304">#3304</a> - crash when playing
radio station mms://viptvr2.yacast.net/encoderfip</li>
+		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=3344">#3344</a> - Crash during scan</li>
 	</ul>
 </ul>

Modified: trunk/server/Slim/DataStores/DBI/DBIStore.pm
(Continue reading)

dsully | 1 May 2006 18:50
Favicon

[Slim-Checkins] r7240 - /branches/BRANCH_6_3_x/server/CPAN/Net/IP.pm

Author: dsully
Date: Mon May  1 09:50:19 2006
New Revision: 7240

URL: http://svn.slimdevices.com?rev=7240&view=rev
Log:
Bug: N/A
Description: Net::IP needed for 6.3.x / Async

Added:
    branches/BRANCH_6_3_x/server/CPAN/Net/IP.pm   (with props)

Added: branches/BRANCH_6_3_x/server/CPAN/Net/IP.pm
URL: http://svn.slimdevices.com/branches/BRANCH_6_3_x/server/CPAN/Net/IP.pm?rev=7240&view=auto
==============================================================================
--- branches/BRANCH_6_3_x/server/CPAN/Net/IP.pm (added)
+++ branches/BRANCH_6_3_x/server/CPAN/Net/IP.pm Mon May  1 09:50:19 2006
 <at>  <at>  -1,0 +1,2514  <at>  <at> 
+# Copyright (c) 1999 - 2002                           RIPE NCC
+#
+# All Rights Reserved
+#
+# Permission to use, copy, modify, and distribute this software and its
+# documentation for any purpose and without fee is hereby granted,
+# provided that the above copyright notice appear in all copies and that
+# both that copyright notice and this permission notice appear in
+# supporting documentation, and that the name of the author not be
+# used in advertising or publicity pertaining to distribution of the
+# software without specific, written prior permission.
+#
(Continue reading)

dsully | 1 May 2006 18:51
Favicon

[Slim-Checkins] r7241 - /branches/BRANCH_6_3_x/server/CPAN/File/Slurp.pm

Author: dsully
Date: Mon May  1 09:51:29 2006
New Revision: 7241

URL: http://svn.slimdevices.com?rev=7241&view=rev
Log:
Bug: N/A
Description: Add File::Slurp for 6.3

Added:
    branches/BRANCH_6_3_x/server/CPAN/File/Slurp.pm   (with props)

Added: branches/BRANCH_6_3_x/server/CPAN/File/Slurp.pm
URL: http://svn.slimdevices.com/branches/BRANCH_6_3_x/server/CPAN/File/Slurp.pm?rev=7241&view=auto
==============================================================================
--- branches/BRANCH_6_3_x/server/CPAN/File/Slurp.pm (added)
+++ branches/BRANCH_6_3_x/server/CPAN/File/Slurp.pm Mon May  1 09:51:29 2006
 <at>  <at>  -1,0 +1,647  <at>  <at> 
+package File::Slurp;
+
+use strict;
+
+use Carp ;
+use Fcntl qw( :DEFAULT :seek ) ;
+use Symbol ;
+
+use base 'Exporter' ;
+use vars qw( %EXPORT_TAGS  <at> EXPORT_OK $VERSION  <at> EXPORT ) ;
+
+%EXPORT_TAGS = ( 'all' => [
(Continue reading)

dsully | 1 May 2006 19:53
Favicon

[Slim-Checkins] r7242 - /trunk/server/Slim/Formats/XML.pm

Author: dsully
Date: Mon May  1 10:53:22 2006
New Revision: 7242

URL: http://svn.slimdevices.com?rev=7242&view=rev
Log:
Bug: N/A
Description: Remove useless 'use utf8' clauses.

Don't try to escape a title that's a reference.

Modified:
    trunk/server/Slim/Formats/XML.pm

Modified: trunk/server/Slim/Formats/XML.pm
URL: http://svn.slimdevices.com/trunk/server/Slim/Formats/XML.pm?rev=7242&r1=7241&r2=7242&view=diff
==============================================================================
--- trunk/server/Slim/Formats/XML.pm (original)
+++ trunk/server/Slim/Formats/XML.pm Mon May  1 10:53:22 2006
 <at>  <at>  -412,12 +412,8  <at>  <at> 

 #### Some routines for munging strings
 sub unescape {
-	my $data = shift;
-
-	return '' unless(defined($data));
-
-	use utf8; # required for 5.6
-	
+	my $data = shift || return '';
(Continue reading)

dsully | 1 May 2006 20:47
Favicon

[Slim-Checkins] r7243 - /branches/BRANCH_6_3_x/makerelease.pl

Author: dsully
Date: Mon May  1 11:47:20 2006
New Revision: 7243

URL: http://svn.slimdevices.com?rev=7243&view=rev
Log:
Bug: N/A
Description: Fix the filename for branch builds.

Modified:
    branches/BRANCH_6_3_x/makerelease.pl

Modified: branches/BRANCH_6_3_x/makerelease.pl
URL: http://svn.slimdevices.com/branches/BRANCH_6_3_x/makerelease.pl?rev=7243&r1=7242&r2=7243&view=diff
==============================================================================
--- branches/BRANCH_6_3_x/makerelease.pl (original)
+++ branches/BRANCH_6_3_x/makerelease.pl Mon May  1 11:47:20 2006
 <at>  <at>  -341,14 +341,14  <at>  <at> 

 	unlink("$winserverdir/SlimServer.iss");
 	unlink("$winserverdir/slim.bmp");
-	
+
 	move($winserverdir, "$distdir/SlimServer for Windows");

 	$winserverdir = "$distdir/SlimServer for Windows";

-	move("$winserverdir/Output/SlimSetup.exe", "$distdir/SlimServer_v$version.exe");
-
-	rmtree("$winserverdir/Output");
(Continue reading)

dsully | 1 May 2006 21:03
Favicon

[Slim-Checkins] r7244 - /trunk/makerelease.pl

Author: dsully
Date: Mon May  1 12:03:44 2006
New Revision: 7244

URL: http://svn.slimdevices.com?rev=7244&view=rev
Log:
Bug: N/A
Description: Use $title for the filename

Modified:
    trunk/makerelease.pl

Modified: trunk/makerelease.pl
URL: http://svn.slimdevices.com/trunk/makerelease.pl?rev=7244&r1=7243&r2=7244&view=diff
==============================================================================
--- trunk/makerelease.pl (original)
+++ trunk/makerelease.pl Mon May  1 12:03:44 2006
 <at>  <at>  -344,9 +344,9  <at>  <at> 

 	$winserverdir = "$distdir/SlimServer for Windows";

-	move("$winserverdir/Output/SlimSetup.exe", "$distdir/SlimServer_v$version.exe");
-
-	rmtree("$winserverdir/Output");
+	move("$winserverdir/Output/SlimSetup.exe", "$distdir/$title.exe");
+
+	rmtree($winserverdir);

 	# make the zip file, if we can
 	system("which zip >/dev/null 2>&1");
(Continue reading)

andy | 1 May 2006 21:57
Favicon

[Slim-Checkins] r7245 - /trunk/server/Slim/Buttons/XMLBrowser.pm

Author: andy
Date: Mon May  1 12:57:47 2006
New Revision: 7245

URL: http://svn.slimdevices.com?rev=7245&view=rev
Log:
Properly set the expiration value for feeds in XMLBrowser

Modified:
    trunk/server/Slim/Buttons/XMLBrowser.pm

Modified: trunk/server/Slim/Buttons/XMLBrowser.pm
URL: http://svn.slimdevices.com/trunk/server/Slim/Buttons/XMLBrowser.pm?rev=7245&r1=7244&r2=7245&view=diff
==============================================================================
--- trunk/server/Slim/Buttons/XMLBrowser.pm (original)
+++ trunk/server/Slim/Buttons/XMLBrowser.pm Mon May  1 12:57:47 2006
 <at>  <at>  -53,6 +53,9  <at>  <at> 
 		Slim::Buttons::Common::pushModeLeft($client, 'INPUT.Choice', \%params);

 	} else {
+		
+		# Grab expires param here, as the block will change the param stack
+		my $expires = $client->param('expires');

 		# give user feedback while loading
 		$client->block(
 <at>  <at>  -66,7 +69,7  <at>  <at> 
 			{
 				'client'  => $client,
 				'url'     => $url,
(Continue reading)

dsully | 1 May 2006 21:58
Favicon

[Slim-Checkins] r7246 - /trunk/makerelease.pl

Author: dsully
Date: Mon May  1 12:58:37 2006
New Revision: 7246

URL: http://svn.slimdevices.com?rev=7246&view=rev
Log:
Bug: N/A
Description: Rename _perlscripts.ZIP to .perlscripts.ZIP

Modified:
    trunk/makerelease.pl

Modified: trunk/makerelease.pl
URL: http://svn.slimdevices.com/trunk/makerelease.pl?rev=7246&r1=7245&r2=7246&view=diff
==============================================================================
--- trunk/makerelease.pl (original)
+++ trunk/makerelease.pl Mon May  1 12:58:37 2006
 <at>  <at>  -30,7 +30,6  <at>  <at> 
 my $date;
 my $version;
 my $title;
-my $title_perlscripts;
 my $distdir;
 my $sourcecopy;
 my $TOPDIR;
 <at>  <at>  -346,7 +345,7  <at>  <at> 

 	move("$winserverdir/Output/SlimSetup.exe", "$distdir/$title.exe");

-	rmtree($winserverdir);
(Continue reading)

dsully | 1 May 2006 21:59
Favicon

[Slim-Checkins] r7247 - /branches/BRANCH_6_3_x/makerelease.pl

Author: dsully
Date: Mon May  1 12:59:20 2006
New Revision: 7247

URL: http://svn.slimdevices.com?rev=7247&view=rev
Log:
Bug: N/A
Description: Merge from trunk

Modified:
    branches/BRANCH_6_3_x/makerelease.pl

Modified: branches/BRANCH_6_3_x/makerelease.pl
URL: http://svn.slimdevices.com/branches/BRANCH_6_3_x/makerelease.pl?rev=7247&r1=7246&r2=7247&view=diff
==============================================================================
--- branches/BRANCH_6_3_x/makerelease.pl (original)
+++ branches/BRANCH_6_3_x/makerelease.pl Mon May  1 12:59:20 2006
 <at>  <at>  -30,7 +30,6  <at>  <at> 
 my $date;
 my $version;
 my $title;
-my $title_perlscripts;
 my $distdir;
 my $sourcecopy;
 my $TOPDIR;
 <at>  <at>  -348,7 +347,7  <at>  <at> 

 	move("$winserverdir/Output/SlimSetup.exe", "$distdir/$title.exe");

-	rmtree($winserverdir);
(Continue reading)

andy | 1 May 2006 22:02
Favicon

[Slim-Checkins] r7248 - in /branches/BRANCH_6_3_x/server/Slim: Buttons/XMLBrowser.pm Formats/XML.pm

Author: andy
Date: Mon May  1 13:02:39 2006
New Revision: 7248

URL: http://svn.slimdevices.com?rev=7248&view=rev
Log:
Merge XML changes from trunk (7242, 7245)

Modified:
    branches/BRANCH_6_3_x/server/Slim/Buttons/XMLBrowser.pm
    branches/BRANCH_6_3_x/server/Slim/Formats/XML.pm

Modified: branches/BRANCH_6_3_x/server/Slim/Buttons/XMLBrowser.pm
URL: http://svn.slimdevices.com/branches/BRANCH_6_3_x/server/Slim/Buttons/XMLBrowser.pm?rev=7248&r1=7247&r2=7248&view=diff
==============================================================================
--- branches/BRANCH_6_3_x/server/Slim/Buttons/XMLBrowser.pm (original)
+++ branches/BRANCH_6_3_x/server/Slim/Buttons/XMLBrowser.pm Mon May  1 13:02:39 2006
 <at>  <at>  -52,6 +52,9  <at>  <at> 
 		Slim::Buttons::Common::pushModeLeft($client, 'INPUT.Choice', \%params);

 	} else {
+		
+		# Grab expires param here, as the block will change the param stack
+		my $expires = $client->param('expires');

 		# give user feedback while loading
 		$client->block(
 <at>  <at>  -65,7 +68,7  <at>  <at> 
 			{
 				'client'  => $client,
(Continue reading)


Gmane