1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-25 19:58:36 +00:00

Batch mirror fix

This commit is contained in:
Unknown
2014-04-26 22:34:48 -06:00
parent 1badb2bbcc
commit 59d0e73c35
13 changed files with 68 additions and 80 deletions

View File

@@ -53,7 +53,6 @@ var (
Domain string
SecretKey string
RunUser string
LdapAuth bool
RepoRootPath string
ScriptType string
@@ -93,6 +92,7 @@ var Service struct {
NotifyMail bool
ActiveCodeLives int
ResetPwdCodeLives int
LdapAuth bool
}
func ExecDir() (string, error) {
@@ -179,8 +179,8 @@ func newLogService() {
}
func newLdapService() {
LdapAuth = Cfg.MustBool("security", "LDAP_AUTH", false)
if !LdapAuth {
Service.LdapAuth = Cfg.MustBool("security", "LDAP_AUTH", false)
if !Service.LdapAuth {
return
}
@@ -201,7 +201,7 @@ func newLdapService() {
}
if nbsrc == 0 {
log.Warn("No valide LDAP found, LDAP Authentication NOT enabled")
LdapAuth = false
Service.LdapAuth = false
return
}

View File

@@ -26,11 +26,14 @@ func RepoAssignment(redirect bool, args ...bool) martini.Handler {
var displayBare bool
if len(args) >= 1 {
validBranch = args[0]
// Note: argument has wrong value in Go1.3 martini.
// validBranch = args[0]
validBranch = true
}
if len(args) >= 2 {
displayBare = args[1]
// displayBare = args[1]
displayBare = true
}
var (