1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-09 19:01:42 +00:00

Merge branch 'develop'

Conflicts:
	templates/base.html
This commit is contained in:
zhengxie
2013-04-22 20:19:40 +08:00
4 changed files with 33 additions and 10 deletions

View File

@@ -3,6 +3,9 @@
import sys
import os
import re
import random
import string
DEBUG = False
TEMPLATE_DEBUG = DEBUG
@@ -204,7 +207,11 @@ REGISTRATION_SEND_MAIL = False
CCNET_APPLET_ROOT = "http://127.0.0.1:13420"
# Account initial password, for password resetting.
INIT_PASSWD = '123456'
# INIT_PASSWD can either be a string, or a function (function has to be set without the brackets)
def genpassword():
return ''.join([random.choice(string.digits + string.letters) for i in range(0, 10)])
INIT_PASSWD = genpassword
# browser tab title
SITE_TITLE = 'Private Seafile'
@@ -213,6 +220,14 @@ SITE_TITLE = 'Private Seafile'
SITE_BASE = 'http://seafile.com'
SITE_NAME = 'Seafile'
# Path to the Logo Imagefile (relative to the media path)
LOGO_PATH = 'img/logo.png'
# URL to which the logo links
LOGO_URL = SITE_BASE
# css to modify the seafile css
BRANDING_CSS = ''
# Using Django to server static file. Set to `False` if deployed behide a web
# server.
SERVE_STATIC = True