Merge lp:~dholbach/ubucon-site/update into lp:ubucon-site

Proposed by Daniel Holbach
Status: Merged
Merged at revision: 40
Proposed branch: lp:~dholbach/ubucon-site/update
Merge into: lp:ubucon-site
Prerequisite: lp:~dholbach/ubucon-site/newsblog
Diff against target: 139 lines (+57/-46)
3 files modified
README.local.md (+1/-0)
ubucon_site/requirements.txt (+27/-27)
ubucon_site/settings/__init__.py (+29/-19)
To merge this branch: bzr merge lp:~dholbach/ubucon-site/update
Reviewer Review Type Date Requested Status
Michael Hall (community) Approve
Review via email: mp+290403@code.launchpad.net

Commit message

Update pip components to newest.

To post a comment you must log in.
lp:~dholbach/ubucon-site/update updated
40. By Daniel Holbach

update docs

Revision history for this message
Michael Hall (mhall119) wrote :

LGTM

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'README.local.md'
2--- README.local.md 2016-04-05 13:58:43 +0000
3+++ README.local.md 2016-04-05 13:58:43 +0000
4@@ -1,3 +1,4 @@
5+# libxml2-dev and libxslt-dev for aldryn-newsblog, which wants lxml
6 sudo apt install virtualenv libxml2-dev libxslt-dev
7
8 # Enable DATABASE in ubucon_site/settings/__init__.py
9
10=== modified file 'ubucon_site/requirements.txt'
11--- ubucon_site/requirements.txt 2016-04-05 13:58:43 +0000
12+++ ubucon_site/requirements.txt 2016-04-05 13:58:43 +0000
13@@ -1,33 +1,33 @@
14 aldryn-newsblog==1.2.1
15-Django==1.7.1
16-Django-Select2==4.3.1
17-Pillow==2.9.0
18 argparse==1.2.1
19-dj-database-url==0.3.0
20-django-classy-tags==0.6.2
21-django-cms==3.1.2
22-django-mptt==0.7.4
23-django-openid-auth==0.5
24-django-reversion==1.8.5
25-django-sekizai==0.8.2
26-django-treebeard==3.0
27-djangocms-admin-style==0.2.7
28-djangocms-column==1.5
29-djangocms-file==0.1
30-djangocms-flash==0.2.0
31-djangocms-googlemap==0.3
32-djangocms-inherit==0.1
33+Django==1.8.11
34+django-classy-tags==0.7.2
35+django-cms==3.2.3
36+djangocms-admin-style==1.1.0
37+djangocms-column==1.6.0
38+djangocms-file==1.0
39+djangocms-flash==0.3.0
40+djangocms-googlemap==0.4.0
41+djangocms-inherit==0.1.1
42 djangocms-installer==0.7.9
43-djangocms-link==1.6.2
44-djangocms-picture==0.1
45-djangocms-style==1.5
46-djangocms-teaser==0.1
47-djangocms-text-ckeditor==2.7.0
48-djangocms-video==0.1
49+djangocms-link==1.7.2
50+djangocms-picture==1.0.0
51+djangocms-style==1.7.0
52+djangocms-teaser==0.2.0
53+djangocms-text-ckeditor==2.9.1
54+djangocms-video==1.0.0
55+django-mptt==0.8.3
56+django-openid-auth==0.7
57+django-reversion==1.10.1
58+django-sekizai==0.9.0
59+Django-Select2==5.8.4
60+django-treebeard==4.0
61+dj-database-url==0.4.0
62+dj-static==0.0.6
63 html5lib==0.999999
64+Pillow==3.1.1
65 python-openid==2.2.5
66-pytz==2015.4
67-six==1.9.0
68-tzlocal==1.2
69-dj-static==0.0.6
70+pytz==2016.3
71+six==1.10.0
72+tzlocal==1.2.2
73 wsgiref==0.1.2
74
75=== modified file 'ubucon_site/settings/__init__.py'
76--- ubucon_site/settings/__init__.py 2016-04-05 13:58:43 +0000
77+++ ubucon_site/settings/__init__.py 2016-04-05 13:58:43 +0000
78@@ -80,6 +80,35 @@
79
80 SITE_ID = 1
81
82+TEMPLATES = [
83+ {
84+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
85+ 'DIRS': [
86+ os.path.join(BASE_DIR, 'templates'),
87+ ],
88+ 'APP_DIRS': True,
89+ 'OPTIONS': {
90+ 'context_processors': [
91+ 'django.template.context_processors.request',
92+ 'django.contrib.auth.context_processors.auth',
93+ 'django.contrib.messages.context_processors.messages',
94+ 'django.core.context_processors.i18n',
95+ 'django.core.context_processors.debug',
96+ 'django.core.context_processors.request',
97+ 'django.core.context_processors.media',
98+ 'django.core.context_processors.csrf',
99+ 'django.core.context_processors.tz',
100+ 'sekizai.context_processors.sekizai',
101+ 'django.core.context_processors.static',
102+ 'cms.context_processors.cms_settings',
103+ # For Aldryn
104+ 'aldryn_boilerplates.context_processors.boilerplate',
105+ ],
106+ },
107+ },
108+]
109+
110+
111 TEMPLATE_LOADERS = (
112 'django.template.loaders.filesystem.Loader',
113 'aldryn_boilerplates.template_loaders.AppDirectoriesLoader',
114@@ -87,25 +116,6 @@
115 'django.template.loaders.eggs.Loader'
116 )
117
118-TEMPLATE_CONTEXT_PROCESSORS = (
119- 'django.contrib.auth.context_processors.auth',
120- 'django.contrib.messages.context_processors.messages',
121- 'django.core.context_processors.i18n',
122- 'django.core.context_processors.debug',
123- 'django.core.context_processors.request',
124- 'django.core.context_processors.media',
125- 'django.core.context_processors.csrf',
126- 'django.core.context_processors.tz',
127- 'sekizai.context_processors.sekizai',
128- 'django.core.context_processors.static',
129- 'cms.context_processors.cms_settings',
130- # For Aldryn
131- 'aldryn_boilerplates.context_processors.boilerplate',
132-)
133-
134-TEMPLATE_DIRS = (
135- os.path.join(BASE_DIR, 'templates'),
136-)
137
138 MIDDLEWARE_CLASSES = (
139 'django.contrib.sessions.middleware.SessionMiddleware',

Subscribers

People subscribed via source and target branches