Added basic openfire support

This commit is contained in:
Raynaldo Rivera
2014-10-04 21:20:26 -07:00
parent cd8befe506
commit bf5a5b4bef
7 changed files with 62 additions and 22 deletions

View File

@@ -141,5 +141,9 @@ STATICFILES_DIRS = (
STATIC_URL = '/static/'
# ALLIANCE INFO
ALLIANCE_ID = 99001336
ALLIANCE_NAME = 'The 99 Percent'
ALLIANCE_ID = 0
ALLIANCE_NAME = 'Some alliance here'
# Jabber Prosody Info
OPENFIRE_ADDRESS = "http://domain.com:9090/"
OPENFIRE_SECRET_KEY = "somekey"

View File

@@ -13,6 +13,7 @@ urlpatterns = patterns('',
url(r'^maincharacterchange/(\d+)/$', 'portal.views.main_character_change', name='main_character_change'),
url(r'^applications/', 'portal.views.applications_view', name = 'applications'),
url(r'^activateforum/$', 'portal.views.activate_forum', name = 'activateforum'),
url(r'^activatejabber/$', 'portal.views.activate_jabber', name = 'activatejabber'),
url(r'^loginuser/','authentication.views.login_user', name='loginuser'),
url(r'^logoutuser/','authentication.views.logout_user', name='logoutuser'),
url(r'^register/', 'registration.views.register', name='register'),