Merge lp:~zulcss/horizon/ftbfs into lp:~openstack-ubuntu-testing/horizon/havana

Proposed by Chuck Short
Status: Approved
Approved by: Yolanda Robla
Approved revision: 152
Proposed branch: lp:~zulcss/horizon/ftbfs
Merge into: lp:~openstack-ubuntu-testing/horizon/havana
Diff against target: 92 lines (+33/-14)
3 files modified
debian/changelog (+8/-0)
debian/control (+2/-0)
debian/patches/ubuntu_local_settings.patch (+23/-14)
To merge this branch: bzr merge lp:~zulcss/horizon/ftbfs
Reviewer Review Type Date Requested Status
Yolanda Robla (community) Approve
Review via email: mp+163967@code.launchpad.net

Description of the change

ftbfs

To post a comment you must log in.
Revision history for this message
Yolanda Robla (yolanda.robla) wrote :

Looks good to me

review: Approve

Unmerged revisions

152. By Chuck Short

* New upstream release.
* debian/control: Add python-d2to1, python-pbr
* debian/patches/ubuntu_local_settings.patch: Refreshed.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2013-04-22 13:09:18 +0000
+++ debian/changelog 2013-05-15 15:17:29 +0000
@@ -1,3 +1,11 @@
1horizon (1:2013.2.a92.g13b8c8f-0ubuntu1) UNRELEASED; urgency=low
2
3 * New upstream release.
4 * debian/control: Add python-d2to1, python-pbr
5 * debian/patches/ubuntu_local_settings.patch: Refreshed.
6
7 -- Chuck Short <zulcss@ubuntu.com> Wed, 15 May 2013 09:46:34 -0500
8
1horizon (1:2013.1-0ubuntu3) raring; urgency=low9horizon (1:2013.1-0ubuntu3) raring; urgency=low
210
3 * Re-sync Ubuntu theme with upstream changes, fixing instance network11 * Re-sync Ubuntu theme with upstream changes, fixing instance network
412
=== modified file 'debian/control'
--- debian/control 2013-03-15 12:29:47 +0000
+++ debian/control 2013-05-15 15:17:29 +0000
@@ -6,10 +6,12 @@
6 pep8,6 pep8,
7 pylint,7 pylint,
8 python-all (>= 2.6.6-3~),8 python-all (>= 2.6.6-3~),
9 python-d2to1,
9 python-django-nose,10 python-django-nose,
10 python-mox,11 python-mox,
11 python-netaddr,12 python-netaddr,
12 python-nose,13 python-nose,
14 python-pbr,
13 python-setuptools,15 python-setuptools,
14 python-sphinx16 python-sphinx
15Standards-Version: 3.9.317Standards-Version: 3.9.3
1618
=== modified file 'debian/patches/ubuntu_local_settings.patch'
--- debian/patches/ubuntu_local_settings.patch 2013-03-13 11:34:29 +0000
+++ debian/patches/ubuntu_local_settings.patch 2013-05-15 15:17:29 +0000
@@ -1,5 +1,6 @@
1--- a/openstack_dashboard/local/local_settings.py.example1diff -Naurp horizon-2013.2.a92.g13b8c8f.orig/openstack_dashboard/local/local_settings.py.example horizon-2013.2.a92.g13b8c8f/openstack_dashboard/local/local_settings.py.example
2+++ b/openstack_dashboard/local/local_settings.py.example2--- horizon-2013.2.a92.g13b8c8f.orig/openstack_dashboard/local/local_settings.py.example 2013-05-15 09:45:15.000000000 -0500
3+++ horizon-2013.2.a92.g13b8c8f/openstack_dashboard/local/local_settings.py.example 2013-05-15 09:56:29.010312527 -0500
3@@ -4,7 +4,7 @@ from django.utils.translation import uge4@@ -4,7 +4,7 @@ from django.utils.translation import uge
4 5
5 from openstack_dashboard import exceptions6 from openstack_dashboard import exceptions
@@ -8,26 +9,34 @@
8+DEBUG = False9+DEBUG = False
9 TEMPLATE_DEBUG = DEBUG10 TEMPLATE_DEBUG = DEBUG
10 11
11 # Set SSL proxy settings:12 # Required for Django 1.5.
12@@ -67,7 +67,8 @@ LOCAL_PATH = os.path.dirname(os.path.abs13@@ -90,12 +90,12 @@ SECRET_KEY = secret_key.generate_or_read
14 # We recommend you use memcached for development; otherwise after every reload
15 # of the django development server, you will have to login again. To use
16 # memcached set CACHES to something like
17-# CACHES = {
18-# 'default': {
19-# 'BACKEND' : 'django.core.cache.backends.memcached.MemcachedCache',
20-# 'LOCATION' : '127.0.0.1:11211',
21-# }
22-#}
23+ CACHES = {
24+ 'default': {
25+ 'BACKEND' : 'django.core.cache.backends.memcached.MemcachedCache',
26+ 'LOCATION' : '127.0.0.1:11211',
27+ }
28+}
13 29
14 CACHES = {30 CACHES = {
15 'default': {31 'default': {
16- 'BACKEND' : 'django.core.cache.backends.locmem.LocMemCache'32@@ -108,6 +108,21 @@ EMAIL_BACKEND = 'django.core.mail.backen
17+ 'BACKEND' : 'django.core.cache.backends.memcached.MemcachedCache',
18+ 'LOCATION' : '127.0.0.1:11211'
19 }
20 }
21
22@@ -76,6 +77,22 @@ EMAIL_BACKEND = 'django.core.mail.backen
23 # Or send them to /dev/null33 # Or send them to /dev/null
24 #EMAIL_BACKEND = 'django.core.mail.backends.dummy.EmailBackend'34 #EMAIL_BACKEND = 'django.core.mail.backends.dummy.EmailBackend'
25 35
26+# Enable the Ubuntu theme if it is present.
27+try:36+try:
28+ from ubuntu_theme import *37+ from ubuntu_theme import *
29+except ImportError:38+except ImportError:
30+ pass39+ pass
31+40+
32+# Default Ubuntu apache configuration uses /horizon as the application root.41+# Default Ubuntu apache configuration uses /horizon as the application root.
33+# Configure auth redirects here accordingly.42+# Configure auth redirects here accordingly.

Subscribers

People subscribed via source and target branches