# incremented the version number to 0.2.0
# switched PHP short open tags to the full open tags. # included pecl-svn into the project # fixed various RPM packaging problems for PHP 5.3 and SELinux
This commit is contained in:
@ -148,6 +148,8 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PHPEXTDIR = @PHPEXTDIR@
|
||||
PHPEXTINIDIR = @PHPEXTINIDIR@
|
||||
PREFIX = @PREFIX@
|
||||
RM = @RM@
|
||||
RMDIR = @RMDIR@
|
||||
@ -191,6 +193,8 @@ mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
phpextdir = @phpextdir@
|
||||
phpextinidir = @phpextinidir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
psdir = @psdir@
|
||||
|
@ -98,7 +98,7 @@ api_base_url = "http://127.0.0.1"
|
||||
svn_base_url = "${REQUEST_PROTOCOL}://${HTTP_HOST}/svn"
|
||||
|
||||
;------------------------------------------------------------------------------
|
||||
; Login model to use.
|
||||
; Login model to use. LdapLoginModel or DbLoginModel.
|
||||
;------------------------------------------------------------------------------
|
||||
#login_model = "LdapLoginModel"
|
||||
login_model = "DbLoginModel"
|
||||
@ -203,7 +203,9 @@ signin_for_code_search = "yes"
|
||||
;------------------------------------------------------------------------------
|
||||
; customized footer
|
||||
;------------------------------------------------------------------------------
|
||||
; Leave this empty for the default footer message
|
||||
; Leave this empty for the default footer message. You can use a HTML tag as
|
||||
; well as a plain text. For example,
|
||||
; footer = "<u>Code Repository</u>"
|
||||
;------------------------------------------------------------------------------
|
||||
footer = ""
|
||||
|
||||
@ -214,6 +216,13 @@ footer = ""
|
||||
;------------------------------------------------------------------------------
|
||||
cloc_command_path = "@CFGDIR@/cloc.pl"
|
||||
|
||||
;------------------------------------------------------------------------------
|
||||
; List of README files to show in the code folder view.
|
||||
; The first file found is shown. You can specify multiple file name
|
||||
; separated by a comma.
|
||||
;------------------------------------------------------------------------------
|
||||
code_folder_readme = "README.wiki,README.txt,README"
|
||||
|
||||
;------------------------------------------------------------------------------
|
||||
; Subversion read access is limited to the specified user type. The types
|
||||
; include anonymous, authenticated, member. This applies to a public project
|
||||
@ -240,8 +249,7 @@ svn_restriction_allowed_subdir_depth_min = 0
|
||||
svn_restriction_allowed_subdir_depth_max = 0
|
||||
|
||||
;------------------------------------------------------------------------------
|
||||
; List of README files to show in the code folder view.
|
||||
; The first file found is shown. You can specify multiple file name
|
||||
; separated by a comma.
|
||||
; Command separated list of user names who can execute /usr/sbin/codepot-user.
|
||||
; Set it to an empty string to allow all users.
|
||||
;------------------------------------------------------------------------------
|
||||
code_folder_readme = "README.wiki,README.txt,README";
|
||||
codepot_user_executor = "root"
|
||||
|
@ -1,5 +1,7 @@
|
||||
|
||||
USE codepot;
|
||||
-- ---------------------------------------------------------
|
||||
-- This file is the Codepot database schema file for MySQL.
|
||||
-- Note this file doesn't mandate which database to use.
|
||||
-- ---------------------------------------------------------
|
||||
|
||||
CREATE TABLE site (
|
||||
id VARCHAR(32) PRIMARY KEY,
|
||||
|
Reference in New Issue
Block a user