Skip to content

Commit

Permalink
Merge pull request #887 from dotKom/feedme
Browse files Browse the repository at this point in the history
feedme integration v2
  • Loading branch information
myth committed Sep 17, 2014
2 parents aa381e6 + cb436fb commit c946e04
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions onlineweb4/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@
os.path.join(PROJECT_ROOT_DIRECTORY, 'templates/'),
)

# Pizzasystem settings
PIZZA_GROUP = 'dotkom'
PIZZA_ADMIN_GROUP = 'pizzaadmin'
# Feedme settings
FEEDME_GROUP = 'dotkom'
FEEDME_ADMIN_GROUP = 'feedmeadmin'

# Variables for fagKom/bedKom-sync script, override in local.py
BEDKOM_GROUP_ID = 1
Expand Down Expand Up @@ -200,6 +200,7 @@
'apps.resourcecenter',
'apps.mailinglists',
'scripts',
'feedme',

# Wiki
'wiki',
Expand Down
6 changes: 3 additions & 3 deletions onlineweb4/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@
url(r'^genfors/', include('apps.genfors.urls')),
)

# pizzasystem
if 'pizzasystem' in settings.INSTALLED_APPS:
urlpatterns += patterns('', url(r'^pizza/', include('pizzasystem.urls')))
# feedme
if 'feedme' in settings.INSTALLED_APPS:
urlpatterns += patterns('', url(r'^feedme/', include('feedme.urls')))

#Captcha url
if 'captcha' in settings.INSTALLED_APPS:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ django-simple-captcha==0.4.1 # Simple captcha
django_compressor==1.3 # Compiles less and minifies js
django-watson==1.1.2 # Indexed model search lib
APScheduler==2.1.1 # Scheduler
#git+https://github.com/dotKom/pizzasystem.git@1.2#egg=pizzasystem
git+https://github.com/dotKom/feedme.git@#egg=feedme==1.0.5
git+https://github.com/dotKom/[email protected]#egg=redWine==0.5
reportlab==2.7
pdfdocument==1.6
Expand Down

0 comments on commit c946e04

Please sign in to comment.