Commit 02c30b1a authored by Toshi MARUYAMA's avatar Toshi MARUYAMA Committed by Eric Davis

scm: add a feature of configurable path of executable for scm adapters (#7517).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4795 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 1656ce3c
......@@ -107,6 +107,15 @@ default:
autologin_cookie_path:
autologin_cookie_secure:
# Configuration of SCM executable command.
# Absolute path (ex. /usr/local/bin/hg) or command name (ex. hg.exe, bzr.exe)
# On Windows, *.cmd, *.bat (ex. hg.cmd, bzr.bat) does not work.
scm_command_subversion: svn # (default: svn)
scm_command_mercurial: "\"C:\Program Files\TortoiseHg\hg.exe\"" # (default: hg)
scm_command_git: /usr/local/bin/git # (default: git)
scm_command_bazaar: bzr.exe # (default: bzr)
scm_command_darcs: darcs-1.0.9-i386-linux # (default: darcs)
# specific configuration options for production environment
# that overrides the default ones
production:
......
......@@ -23,7 +23,7 @@ module Redmine
class BazaarAdapter < AbstractAdapter
# Bazaar executable name
BZR_BIN = "bzr"
BZR_BIN = Redmine::Configuration['scm_command_bazaar'] || "bzr"
# Get info about the repository
def info
......
......@@ -23,7 +23,7 @@ module Redmine
class CvsAdapter < AbstractAdapter
# CVS executable name
CVS_BIN = "cvs"
CVS_BIN = Redmine::Configuration['scm_command_cvs'] || "cvs"
# Guidelines for the input:
# url -> the project-path, relative to the cvsroot (eg. module name)
......
......@@ -23,7 +23,7 @@ module Redmine
module Adapters
class DarcsAdapter < AbstractAdapter
# Darcs executable name
DARCS_BIN = "darcs"
DARCS_BIN = Redmine::Configuration['scm_command_darcs'] || "darcs"
class << self
def client_version
......
......@@ -22,7 +22,7 @@ module Redmine
module Adapters
class GitAdapter < AbstractAdapter
# Git executable name
GIT_BIN = "git"
GIT_BIN = Redmine::Configuration['scm_command_git'] || "git"
def info
begin
......
......@@ -24,7 +24,7 @@ module Redmine
class MercurialAdapter < AbstractAdapter
# Mercurial executable name
HG_BIN = "hg"
HG_BIN = Redmine::Configuration['scm_command_mercurial'] || "hg"
TEMPLATES_DIR = File.dirname(__FILE__) + "/mercurial"
TEMPLATE_NAME = "hg-template"
TEMPLATE_EXTENSION = "tmpl"
......
......@@ -24,7 +24,7 @@ module Redmine
class SubversionAdapter < AbstractAdapter
# SVN executable name
SVN_BIN = "svn"
SVN_BIN = Redmine::Configuration['scm_command_subversion'] || "svn"
class << self
def client_version
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment