add transmission interface

This commit is contained in:
j 2010-06-24 15:11:34 +02:00
commit 0510588b28
11 changed files with 130 additions and 1 deletions

View file

@ -110,6 +110,7 @@ INSTALLED_APPS = (
'app',
'backend',
'oxuser',
'torrent',
)
AUTH_PROFILE_MODULE = 'oxuser.UserProfile'
@ -124,6 +125,11 @@ VIDEO_ENCODING = {
'high': {'profile': 'padma'}
}
TRANSMISSON_HOST='localhost'
TRANSMISSON_PORT=9091
TRANSMISSON_USER='transmission'
TRANSMISSON_PASSWORD='transmission'
#overwrite default settings with local settings
try:
from local_settings import *