Skip to content

Commit

Permalink
issue OpenROV/openrov-software#370; Removed references to build server
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianAdams committed Mar 24, 2015
1 parent 61d0655 commit 1aac6c0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
3 changes: 1 addition & 2 deletions src/plugins/01_software/public/js/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ angular.module('DashboardApp.Software', [

$sceDelegateProvider
.resourceUrlWhitelist(
['self', 'http://build.openrov.com/**']);
['self', 'http://deb-repo.openrov.com/**']);
})
.value('cgBusyDefaults',{
message:'Loading...',
Expand All @@ -22,4 +22,3 @@ angular.module('DashboardApp.Software', [
delay: 50,
minDuration: 700
});

4 changes: 2 additions & 2 deletions src/plugins/01_software/public/js/service.reporting.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ var ReportingService = ['$http', function($http) {
reporting.report = function (istalledPackages, rovInformation, location) {
return $http({
method: 'POST',
url: 'http://build.openrov.com/reporting/reportRov',
url: 'http://updates.openrov.com/reporting/reportRov',
data: {installedPackages: istalledPackages, rovInformation: rovInformation, location: location}
});
};
return reporting;
}];
}];
12 changes: 6 additions & 6 deletions src/plugins/01_software/tests/lib/apt-cache.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,27 +97,27 @@ function policyExample(buffer) {
"Candidate: 2.5.1-pre-release.26.448f366",
"Version table:",
" 2.5.1-pre-release.26.448f366 0",
" 500 http://build.openrov.com/debian/ pre-release/debian armhf Packages",
" 500 http://deb-repo.openrov.com/ pre-release/debian armhf Packages",
" 2.5.1-pre-release.21.2f75718 0",
" 500 http://build.openrov.com/debian/ pre-release/debian armhf Packages",
" 500 http://deb-repo.openrov.com/ pre-release/debian armhf Packages",
"openrov-mjpeg-streamer:",
"Installed: 2.0.1-7",
"Candidate: 2.0.1-7",
"Version table:",
" *** 2.0.1-7 0",
" 500 http://build.openrov.com/debian/ stable/debian armhf Packages",
" 500 http://deb-repo.openrov.com/ stable/debian armhf Packages",
" 100 /var/lib/dpkg/status",
" 2.0-6 0",
" 500 http://build.openrov.com/debian/ stable/debian armhf Packages",
" 500 http://deb-repo.openrov.com/ stable/debian armhf Packages",
"openrov-test:",
"Installed: (none)",
"Candidate: 0.0.1-1",
"Version table:",
" 0.0.1-1 0",
" 500 http://build.openrov.com/debian/ pre-release/debian armhf Packages"
" 500 http://deb-repo.openrov.com/ pre-release/debian armhf Packages"
];
lines.forEach(function(line){
buffer.push(line + "\n");
});
return buffer;
}
}

0 comments on commit 1aac6c0

Please sign in to comment.