I've been experimenting with getting the code via svn from the git
repository.  I'm finding that the svn code doesn't seem to keep up with
the git code.


Code:
--------------------
    
  # cd /usr/share/lms/server.svn
  # svn up
  At revision 37372.
  # svn info
  Path: .
  URL: https://github.com/Logitech/slimserver/branches/public/7.8
  Repository Root: https://github.com/Logitech/slimserver
  Repository UUID: 3292fe4e-2b0c-77c3-e4d6-ce57b7db7bff
  Revision: 37372
  Node Kind: directory
  Schedule: normal
  Last Changed Author: mherger
  Last Changed Rev: 37327
  Last Changed Date: 2013-09-11 08:55:07 -0600 (Wed, 11 Sep 2013)
  
  diff ./Slim/Web/HTTP.pm ../server.git/Slim/Web/HTTP.pm
  809,810c809,817
  <                       # Update the client's last activity time, since they 
did something through the web
  <                       $client->lastActivityTime( Time::HiRes::time() );
  ---
  >                       if ( $path =~ m|plugins/UPnP/|i ) {
  >                               # Bug 18053 - we're ignoring upnp requests, 
as these aren't our clients being active but whatever else
  >                               main::DEBUGLOG && $log->is_debug && 
$log->debug("Don't update the client's lastActivityTime - this is a UPnP 
request. ($path)");
  >                               logError("Don't update the client's 
lastActivityTime - this is a UPnP request. ($path)");
  >                       }
  >                       else {
  >                               # Update the client's last activity time, 
since they did something through the web
  >                               $client->lastActivityTime( 
Time::HiRes::time() );
  >                       }
  
  
--------------------

So, in this case, a fully up-to-date svn checkout doesn't incorporate
Michael's latest commits to the git repo.


------------------------------------------------------------------------
gharris999's Profile: http://forums.slimdevices.com/member.php?userid=115
View this thread: http://forums.slimdevices.com/showthread.php?t=99667

_______________________________________________
beta mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/beta

Reply via email to