Browse Source

Adds an explicit message for when reposman gets a 403.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7958 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.3.0
Jean-Philippe Lang 12 years ago
parent
commit
c03e2a1088
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      extra/svn/reposman.rb

+ 3
- 1
extra/svn/reposman.rb View File

@@ -207,12 +207,14 @@ Project.site = "#{$redmine_host}/sys";
begin
# Get all active projects that have the Repository module enabled
projects = Project.find(:all, :params => {:key => $api_key})
rescue ActiveResource::ForbiddenAccess
log("Request was denied by your Redmine server. Make sure that 'WS for repository management' is enabled in application settings and that you provided the correct API key.")
rescue => e
log("Unable to connect to #{Project.site}: #{e}", :exit => true)
end

if projects.nil?
log('no project found, perhaps you forgot to "Enable WS for repository management"', :exit => true)
log('No project found, perhaps you forgot to "Enable WS for repository management"', :exit => true)
end

log("retrieved #{projects.size} projects", :level => 1)

Loading…
Cancel
Save