touched up issue handling

changed subversion repository creation code.
This commit is contained in:
2010-03-28 13:44:24 +00:00
parent 0b38f8e093
commit 6bd395d012
116 changed files with 1546 additions and 439 deletions

View File

@ -85,6 +85,7 @@ CYGPATH_W = @CYGPATH_W@
DATADIR = @DATADIR@
DEFS = @DEFS@
DEPOTDIR = @DEPOTDIR@
DOCDIR = @DOCDIR@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
@ -96,6 +97,7 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LIBDIR = @LIBDIR@
LIBEXECDIR = @LIBEXECDIR@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LOCALSTATEDIR = @LOCALSTATEDIR@

View File

@ -91,6 +91,11 @@ max_upload_size = "10000"
;------------------------------------------------------------------------------
max_latest_projects = "10"
;------------------------------------------------------------------------------
; Maximum number of projects to show
;------------------------------------------------------------------------------
max_projects_per_page = "50"
;------------------------------------------------------------------------------
; Maximum number of issues to show
;------------------------------------------------------------------------------

View File

@ -45,13 +45,13 @@ make_repo() {
chmod 0755 "${repodir}/post-commit"
#}
svnadmin create "${repodir}/${reponame}" && {
#svnadmin create "${repodir}/${reponame}" && {
oldpwd="`pwd`"
cd "${repodir}/${reponame}/hooks"
ln -sf ../../start-commit start-commit
ln -sf ../../post-commit post-commit
cd "${oldpwd}"
}
#}
return 0;
}