split models into apps, new api interface
This commit is contained in:
parent
f833109c02
commit
b8e5764f3d
32 changed files with 2033 additions and 488 deletions
|
|
@ -114,16 +114,21 @@ INSTALLED_APPS = (
|
|||
|
||||
'django_extensions',
|
||||
'devserver',
|
||||
'south',
|
||||
# 'south',
|
||||
'djcelery',
|
||||
|
||||
'app',
|
||||
'api',
|
||||
'item',
|
||||
'archive',
|
||||
'user',
|
||||
'date',
|
||||
'item',
|
||||
'itemlist',
|
||||
'layer',
|
||||
'person',
|
||||
'place',
|
||||
'text',
|
||||
'torrent',
|
||||
'user',
|
||||
)
|
||||
|
||||
AUTH_PROFILE_MODULE = 'user.UserProfile'
|
||||
|
|
@ -131,6 +136,9 @@ AUTH_PROFILE_MODULE = 'user.UserProfile'
|
|||
#Video encoding settings
|
||||
#available profiles: 96p, 270p, 360p, 480p, 720p, 1080p
|
||||
|
||||
DEFAULT_SORT = [{"key": "director", "operator": ""}]
|
||||
DEFAULT_THEME = "classic"
|
||||
|
||||
VIDEO_PROFILE = '96p'
|
||||
VIDEO_DERIVATIVES = []
|
||||
VIDEO_H264 = False
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue