added rpm files
authorMatthew Mosesohn <mmosesohn@mirantis.com>
Mon, 25 Mar 2013 15:41:43 +0000 (19:41 +0400)
committerMatthew Mosesohn <mmosesohn@mirantis.com>
Mon, 25 Mar 2013 15:44:40 +0000 (19:44 +0400)
Change-Id: I7dc0c19eea9924ed8b6b771a1f941154e4ae3f38

rpm/SOURCES/0001-disable-debug.patch [new file with mode: 0644]
rpm/SOURCES/0002-Don-t-access-the-net-while-building-docs.patch [new file with mode: 0644]
rpm/SOURCES/0003-take-variables-out-of-compressed-output.patch [new file with mode: 0644]
rpm/SOURCES/0004-disable-to-set-mount-point-as-it-s-unsupported-here.patch [new file with mode: 0644]
rpm/SOURCES/horizon-2013.1.g3.tar.gz [new file with mode: 0644]
rpm/SOURCES/openstack-dashboard-httpd-2.4.conf [new file with mode: 0644]
rpm/SOURCES/openstack-dashboard-httpd-logging.conf [new file with mode: 0644]
rpm/SOURCES/openstack-dashboard.conf [new file with mode: 0644]
rpm/SOURCES/python-django-horizon-2013.1-compressed-css.tar.gz [new file with mode: 0644]
rpm/SPECS/python-django-horizon.spec [new file with mode: 0644]

diff --git a/rpm/SOURCES/0001-disable-debug.patch b/rpm/SOURCES/0001-disable-debug.patch
new file mode 100644 (file)
index 0000000..fa5d206
--- /dev/null
@@ -0,0 +1,71 @@
+From 8cf09673312cf401c89e01f7293b2332a9dc33f2 Mon Sep 17 00:00:00 2001
+From: Matthias Runge <mrunge@redhat.com>
+Date: Tue, 27 Nov 2012 14:08:00 +0100
+Subject: [PATCH] - disable debug - make url movable (currently moved to
+ /dashboard - enable offline compression
+
+---
+ openstack_dashboard/local/local_settings.py.example |  2 +-
+ openstack_dashboard/settings.py                     | 12 +++++++-----
+ 2 files changed, 8 insertions(+), 6 deletions(-)
+
+diff --git a/openstack_dashboard/local/local_settings.py.example b/openstack_dashboard/local/local_settings.py.example
+index b85fa80..6ee1988 100644
+--- a/openstack_dashboard/local/local_settings.py.example
++++ b/openstack_dashboard/local/local_settings.py.example
+@@ -4,7 +4,7 @@ from django.utils.translation import ugettext_lazy as _
+ from openstack_dashboard import exceptions
+-DEBUG = True
++DEBUG = False
+ TEMPLATE_DEBUG = DEBUG
+ # Set SSL proxy settings:
+diff --git a/openstack_dashboard/settings.py b/openstack_dashboard/settings.py
+index da89944..9e7cec9 100644
+--- a/openstack_dashboard/settings.py
++++ b/openstack_dashboard/settings.py
+@@ -29,7 +29,7 @@ warnings.formatwarning = lambda message, category, *args, **kwargs: \
+                                 '%s: %s' % (category.__name__, message)
+ ROOT_PATH = os.path.dirname(os.path.abspath(__file__))
+-BIN_DIR = os.path.abspath(os.path.join(ROOT_PATH, '..', 'bin'))
++BIN_DIR = '/usr/bin'
+ if ROOT_PATH not in sys.path:
+     sys.path.append(ROOT_PATH)
+@@ -39,12 +39,13 @@ TEMPLATE_DEBUG = DEBUG
+ SITE_BRANDING = 'OpenStack Dashboard'
+-LOGIN_URL = '/auth/login/'
+-LOGOUT_URL = '/auth/logout/'
++WEBROOT = '/dashboard'
++LOGIN_URL = WEBROOT + '/auth/login/'
++LOGOUT_URL = WEBROOT + '/auth/logout/'
+ # LOGIN_REDIRECT_URL can be used as an alternative for
+ # HORIZON_CONFIG.user_home, if user_home is not set.
+ # Do not set it to '/home/', as this will cause circular redirect loop
+-LOGIN_REDIRECT_URL = '/'
++LOGIN_REDIRECT_URL = WEBROOT
+ MEDIA_ROOT = os.path.abspath(os.path.join(ROOT_PATH, '..', 'media'))
+ MEDIA_URL = '/media/'
+@@ -108,7 +109,7 @@ STATICFILES_FINDERS = (
+     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
+ )
+-less_binary = os.path.join(BIN_DIR, 'less', 'lessc')
++less_binary = os.path.join(BIN_DIR, 'lessc')
+ COMPRESS_PRECOMPILERS = (
+     ('text/less', (less_binary + ' {infile} {outfile}')),
+ )
+@@ -121,6 +122,7 @@ COMPRESS_ENABLED = True
+ COMPRESS_OUTPUT_DIR = 'dashboard'
+ COMPRESS_CSS_HASHING_METHOD = 'hash'
+ COMPRESS_PARSER = 'compressor.parser.HtmlParser'
++COMPRESS_OFFLINE = True
+ INSTALLED_APPS = (
+     'openstack_dashboard',
diff --git a/rpm/SOURCES/0002-Don-t-access-the-net-while-building-docs.patch b/rpm/SOURCES/0002-Don-t-access-the-net-while-building-docs.patch
new file mode 100644 (file)
index 0000000..5f4dde0
--- /dev/null
@@ -0,0 +1,22 @@
+From 9ec313da0a17efe80ac38f8a037ff967da2aaac0 Mon Sep 17 00:00:00 2001
+From: Matthias Runge <mrunge@redhat.com>
+Date: Wed, 28 Nov 2012 11:37:48 +0100
+Subject: [PATCH] Don't access the net while building docs
+
+(Note this hasn't been submitted upstream)
+---
+ doc/source/conf.py | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/doc/source/conf.py b/doc/source/conf.py
+index 561b440..beaaef4 100644
+--- a/doc/source/conf.py
++++ b/doc/source/conf.py
+@@ -141,7 +141,6 @@ write_autodoc_index()
+ # They can be extensions coming with Sphinx (named 'sphinx.ext.*')
+ # or your custom ones.
+ extensions = ['sphinx.ext.autodoc',
+-              'sphinx.ext.intersphinx',
+               'sphinx.ext.todo',
+               'sphinx.ext.coverage',
+               'sphinx.ext.pngmath',
diff --git a/rpm/SOURCES/0003-take-variables-out-of-compressed-output.patch b/rpm/SOURCES/0003-take-variables-out-of-compressed-output.patch
new file mode 100644 (file)
index 0000000..8003ace
--- /dev/null
@@ -0,0 +1,26 @@
+From 75baecee3b897505492e28f005042247790dc756 Mon Sep 17 00:00:00 2001
+From: Matthias Runge <mrunge@redhat.com>
+Date: Thu, 29 Nov 2012 11:14:29 +0100
+Subject: [PATCH] take variables out of compressed output
+
+---
+ horizon/templates/horizon/_conf.html | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/horizon/templates/horizon/_conf.html b/horizon/templates/horizon/_conf.html
+index 2dc70fa..2ed6382 100644
+--- a/horizon/templates/horizon/_conf.html
++++ b/horizon/templates/horizon/_conf.html
+@@ -3,6 +3,7 @@
+ {% compress js %}
+ <script src='{{ STATIC_URL }}horizon/js/horizon.js' type='text/javascript' charset='utf-8'></script>
+ <script src='{{ STATIC_URL }}horizon/js/horizon.conf.js' type='text/javascript' charset='utf-8'></script>
++{% endcompress %}
+ <script type='text/javascript' charset='utf-8'>
+ /* Storage for backend configuration variables which the frontend
+  * should be aware of.
+@@ -13,4 +14,3 @@ horizon.conf.ajax = {
+   queue_limit: {{ HORIZON_CONFIG.ajax_queue_limit|default:"null" }}
+ };
+ </script>
+-{% endcompress %}
diff --git a/rpm/SOURCES/0004-disable-to-set-mount-point-as-it-s-unsupported-here.patch b/rpm/SOURCES/0004-disable-to-set-mount-point-as-it-s-unsupported-here.patch
new file mode 100644 (file)
index 0000000..c0106d0
--- /dev/null
@@ -0,0 +1,26 @@
+From d691a94942328f6924077f985f4290f93a9a7bb6 Mon Sep 17 00:00:00 2001
+From: Matthias Runge <mrunge@redhat.com>
+Date: Thu, 17 Jan 2013 10:06:25 +0100
+Subject: [PATCH] disable to set mount point, as it's unsupported here
+
+---
+ openstack_dashboard/local/local_settings.py.example | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+diff --git a/openstack_dashboard/local/local_settings.py.example b/openstack_dashboard/local/local_settings.py.example
+index 6ee1988..268d65d 100644
+--- a/openstack_dashboard/local/local_settings.py.example
++++ b/openstack_dashboard/local/local_settings.py.example
+@@ -97,11 +97,10 @@ OPENSTACK_KEYSTONE_BACKEND = {
+ }
+ OPENSTACK_HYPERVISOR_FEATURES = {
+-    'can_set_mount_point': True,
+-
+     # NOTE: as of Grizzly this is not yet supported in Nova so enabling this
+     # setting will not do anything useful
+     'can_encrypt_volumes': False
++    'can_set_mount_point': False
+ }
+ # OPENSTACK_ENDPOINT_TYPE specifies the endpoint type to use for the endpoints
diff --git a/rpm/SOURCES/horizon-2013.1.g3.tar.gz b/rpm/SOURCES/horizon-2013.1.g3.tar.gz
new file mode 100644 (file)
index 0000000..8d446da
Binary files /dev/null and b/rpm/SOURCES/horizon-2013.1.g3.tar.gz differ
diff --git a/rpm/SOURCES/openstack-dashboard-httpd-2.4.conf b/rpm/SOURCES/openstack-dashboard-httpd-2.4.conf
new file mode 100644 (file)
index 0000000..63d1b17
--- /dev/null
@@ -0,0 +1,19 @@
+WSGIDaemonProcess dashboard
+WSGIProcessGroup dashboard
+WSGISocketPrefix run/wsgi
+
+WSGIScriptAlias /dashboard /usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi
+Alias /static /usr/share/openstack-dashboard/static
+
+<Directory /usr/share/openstack-dashboard/openstack_dashboard/wsgi>
+  Options All
+  AllowOverride All
+  Require all granted
+</Directory>
+
+<Directory /usr/share/openstack-dashboard/static>
+  Options All
+  AllowOverride All
+  Require all granted
+</Directory>
+
diff --git a/rpm/SOURCES/openstack-dashboard-httpd-logging.conf b/rpm/SOURCES/openstack-dashboard-httpd-logging.conf
new file mode 100644 (file)
index 0000000..5292b9e
--- /dev/null
@@ -0,0 +1,32 @@
+# if you want logging to a separate file, please update your config 
+# according to the last 4 lines in this snippet, and also take care
+# to introduce a <VirtualHost > directive.
+#
+
+WSGISocketPrefix run/wsgi
+
+<VirtualHost *:80>
+    WSGIScriptAlias /dashboard /usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi
+    Alias /static /usr/share/openstack-dashboard/static
+
+    WSGIDaemonProcess dashboard
+    WSGIProcessGroup dashboard
+
+    #DocumentRoot %HORIZON_DIR%/.blackhole/
+
+    <Directory />
+        Options FollowSymLinks
+        AllowOverride None
+    </Directory>
+
+    <Directory /usr/share/openstack-dashboard/>
+        Options Indexes FollowSymLinks MultiViews
+        AllowOverride None
+        Order allow,deny
+        allow from all
+    </Directory>
+
+    ErrorLog logs/openstack_dashboard_error.log
+    LogLevel warn
+    CustomLog logs/openstack_dashboard_access.log combined
+</VirtualHost>
diff --git a/rpm/SOURCES/openstack-dashboard.conf b/rpm/SOURCES/openstack-dashboard.conf
new file mode 100644 (file)
index 0000000..67bfbce
--- /dev/null
@@ -0,0 +1,33 @@
+WSGIDaemonProcess dashboard
+WSGIProcessGroup dashboard
+WSGISocketPrefix run/wsgi
+
+WSGIScriptAlias /dashboard /usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi
+Alias /static /usr/share/openstack-dashboard/static
+
+<Directory /usr/share/openstack-dashboard/openstack_dashboard/wsgi>
+  <IfModule mod_deflate.c>
+    SetOutputFilter DEFLATE
+    <IfModule mod_headers.c>
+      # Make sure proxies don’t deliver the wrong content
+      Header append Vary User-Agent env=!dont-vary
+    </IfModule>
+  </IfModule>
+
+  Order allow,deny
+  Allow from all
+</Directory>
+
+<Directory /usr/share/openstack-dashboard/static>
+  <IfModule mod_expires.c>
+    ExpiresActive On
+    ExpiresDefault "access 6 month"
+  </IfModule>
+  <IfModule mod_deflate.c>
+    SetOutputFilter DEFLATE
+  </IfModule>
+
+  Order allow,deny
+  Allow from all
+</Directory>
+
diff --git a/rpm/SOURCES/python-django-horizon-2013.1-compressed-css.tar.gz b/rpm/SOURCES/python-django-horizon-2013.1-compressed-css.tar.gz
new file mode 100644 (file)
index 0000000..deff2ff
Binary files /dev/null and b/rpm/SOURCES/python-django-horizon-2013.1-compressed-css.tar.gz differ
diff --git a/rpm/SPECS/python-django-horizon.spec b/rpm/SPECS/python-django-horizon.spec
new file mode 100644 (file)
index 0000000..85dee0a
--- /dev/null
@@ -0,0 +1,348 @@
+Name:       python-django-horizon
+Version:    2013.1
+Release:    0.7.g3%{?dist}
+Summary:    Django application for talking to Openstack
+
+Group:      Development/Libraries
+# Code in horizon/horizon/utils taken from django which is BSD
+License:    ASL 2.0 and BSD
+URL:        http://horizon.openstack.org/
+BuildArch:  noarch
+Source0:     https://launchpad.net/horizon/grizzly/grizzly-3/+download/horizon-%{version}.g3.tar.gz
+Source1:    openstack-dashboard.conf
+Source2:    openstack-dashboard-httpd-2.4.conf
+
+Source3:    python-django-horizon-2013.1-compressed-css.tar.gz
+# demo config for separate logging
+Source4:    openstack-dashboard-httpd-logging.conf
+
+#
+# patches_base=2013.1.g3
+#
+Patch0001: 0001-disable-debug.patch
+Patch0002: 0002-Don-t-access-the-net-while-building-docs.patch
+Patch0003: 0003-take-variables-out-of-compressed-output.patch
+Patch0004: 0004-disable-to-set-mount-point-as-it-s-unsupported-here.patch
+
+
+%if 0%{?rhel}<7 || 0%{?fedora} < 18
+
+# epel6 has a separate Django14 package
+%if 0%{?rhel}==6
+Requires:   Django14
+BuildRequires:   Django14
+%else
+BuildRequires:   Django
+Requires:   Django
+%endif
+
+%else
+BuildRequires:   python-django
+Requires:   python-django
+%endif
+
+Requires:   python-dateutil
+Requires:   python-glanceclient
+Requires:   python-keystoneclient 
+Requires:   python-novaclient >= 2012.1
+Requires:   python-quantumclient
+Requires:   python-cinderclient
+Requires:   python-swiftclient
+Requires:   pytz
+
+BuildRequires: python2-devel
+BuildRequires: python-setuptools
+
+# for checks:
+#BuildRequires:   python-django-nose
+#BuildRequires:   python-cinderclient
+#BuildRequires:   python-django-appconf
+#BuildRequires:   python-django-openstack-auth
+#BuildRequires:   python-django-compressor
+
+# additional provides to be consistent with other django packages
+Provides: django-horizon = %{version}-%{release}
+
+%description
+Horizon is a Django application for providing Openstack UI components.
+It allows performing site administrator (viewing account resource usage,
+configuring users, accounts, quotas, flavors, etc.) and end user
+operations (start/stop/delete instances, create/restore snapshots, view
+instance VNC console, etc.)
+
+
+%package -n openstack-dashboard
+Summary:    Openstack web user interface reference implementation
+Group:      Applications/System
+
+Requires:   httpd
+Requires:   mod_wsgi
+Requires:   python-django-horizon >= %{version}
+Requires:   python-django-openstack-auth
+Requires:   python-django-compressor
+Requires:   python-django-appconf
+
+BuildRequires: python2-devel
+BuildRequires: python-django-openstack-auth
+BuildRequires: python-django-compressor
+BuildRequires: python-django-appconf
+#BuildRequires: nodejs
+#BuildRequires: lessjs
+
+BuildRequires:   pytz 
+%description -n openstack-dashboard
+Openstack Dashboard is a web user interface for Openstack. The package
+provides a reference implementation using the Django Horizon project,
+mostly consisting of JavaScript and CSS to tie it altogether as a standalone
+site.
+
+
+%package doc
+Summary:    Documentation for Django Horizon
+Group:      Documentation
+
+Requires:   %{name} = %{version}-%{release}
+%if 0%{?rhel}==6
+BuildRequires: python-sphinx10
+%else
+BuildRequires: python-sphinx >= 1.1.3
+%endif
+
+# Doc building basically means we have to mirror Requires:
+BuildRequires: python-dateutil
+BuildRequires: python-glanceclient
+BuildRequires: python-keystoneclient
+BuildRequires: python-novaclient >= 2012.1
+BuildRequires: python-quantumclient
+BuildRequires: python-cinderclient
+BuildRequires: python-swiftclient
+
+%description doc
+Documentation for the Django Horizon application for talking with Openstack
+
+
+%prep
+%setup -q -n horizon-%{version}.g3
+
+%patch0001 -p1
+%patch0002 -p1
+%patch0003 -p1
+#%patch0004 -p1
+# remove unnecessary .po files
+find . -name "django*.po" -exec rm -f '{}' \;
+
+# drop config snippet
+cp -p %{SOURCE4} .
+
+%build
+%{__python} setup.py build
+
+%install
+%{__python} setup.py install -O1 --skip-build --root %{buildroot}
+
+# drop httpd-conf snippet
+%if 0%{?rhel} || 0%{?fedora} <18
+install -m 0644 -D -p %{SOURCE1} %{buildroot}%{_sysconfdir}/httpd/conf.d/openstack-dashboard.conf
+%else
+# httpd-2.4 changed the syntax
+install -m 0644 -D -p %{SOURCE2} %{buildroot}%{_sysconfdir}/httpd/conf.d/openstack-dashboard.conf
+%endif
+
+export PYTHONPATH="$( pwd ):$PYTHONPATH"
+%if 0%{?rhel}==6
+sphinx-1.0-build -b html doc/source html
+%else
+sphinx-build -b html doc/source html
+%endif
+
+# Fix hidden-file-or-dir warnings
+rm -fr html/.doctrees html/.buildinfo
+
+install -d -m 755 %{buildroot}%{_datadir}/openstack-dashboard
+install -d -m 755 %{buildroot}%{_sharedstatedir}/openstack-dashboard
+install -d -m 755 %{buildroot}%{_sysconfdir}/openstack-dashboard
+
+# Copy everything to /usr/share
+mv %{buildroot}%{python_sitelib}/openstack_dashboard \
+   %{buildroot}%{_datadir}/openstack-dashboard
+mv manage.py %{buildroot}%{_datadir}/openstack-dashboard
+rm -rf %{buildroot}%{python_sitelib}/openstack_dashboard
+
+
+# Move config to /etc, symlink it back to /usr/share
+mv %{buildroot}%{_datadir}/openstack-dashboard/openstack_dashboard/local/local_settings.py.example %{buildroot}%{_sysconfdir}/openstack-dashboard/local_settings
+ln -s %{_sysconfdir}/openstack-dashboard/local_settings %{buildroot}%{_datadir}/openstack-dashboard/openstack_dashboard/local/local_settings.py
+
+%if 0%{?rhel} > 6 || 0%{?fedora} >= 16
+%find_lang django
+%find_lang djangojs
+%else
+# Handling locale files
+# This is adapted from the %%find_lang macro, which cannot be directly
+# used since Django locale files are not located in %%{_datadir}
+#
+# The rest of the packaging guideline still apply -- do not list
+# locale files by hand!
+(cd $RPM_BUILD_ROOT && find . -name 'django*.mo') | %{__sed} -e 's|^.||' |
+%{__sed} -e \
+   's:\(.*/locale/\)\([^/_]\+\)\(.*\.mo$\):%lang(\2) \1\2\3:' \
+      >> django.lang
+%endif
+
+grep "\/usr\/share\/openstack-dashboard" django.lang > dashboard.lang
+grep "\/site-packages\/horizon" django.lang > horizon.lang
+
+%if 0%{?rhel} > 6 || 0%{?fedora} >= 16
+cat djangojs.lang >> horizon.lang
+%endif
+
+# copy static files to %{_datadir}/openstack-dashboard/static
+mkdir -p %{buildroot}%{_datadir}/openstack-dashboard/static
+cp -a openstack_dashboard/static/* %{buildroot}%{_datadir}/openstack-dashboard/static
+cp -a horizon/static/* %{buildroot}%{_datadir}/openstack-dashboard/static 
+
+# compress css, js etc.
+cd %{buildroot}%{_datadir}/openstack-dashboard
+tar xzf %{SOURCE3}
+
+%files -f horizon.lang
+%doc LICENSE README.rst openstack-dashboard-httpd-logging.conf
+%dir %{python_sitelib}/horizon
+%{python_sitelib}/horizon/*.py*
+%{python_sitelib}/horizon/browsers
+%{python_sitelib}/horizon/conf
+%{python_sitelib}/horizon/forms
+%{python_sitelib}/horizon/management
+%{python_sitelib}/horizon/static
+%{python_sitelib}/horizon/tables
+%{python_sitelib}/horizon/tabs
+%{python_sitelib}/horizon/templates
+%{python_sitelib}/horizon/templatetags
+%{python_sitelib}/horizon/test
+%{python_sitelib}/horizon/utils
+%{python_sitelib}/horizon/workflows
+%{python_sitelib}/*.egg-info
+%exclude %{python_sitelib}/bin
+
+%files -n openstack-dashboard -f dashboard.lang
+%dir %{_datadir}/openstack-dashboard/
+%{_datadir}/openstack-dashboard/*.py*
+%{_datadir}/openstack-dashboard/static
+%{_datadir}/openstack-dashboard/openstack_dashboard/*.py*
+%{_datadir}/openstack-dashboard/openstack_dashboard/api
+%{_datadir}/openstack-dashboard/openstack_dashboard/dashboards
+%{_datadir}/openstack-dashboard/openstack_dashboard/local
+%{_datadir}/openstack-dashboard/openstack_dashboard/openstack
+%{_datadir}/openstack-dashboard/openstack_dashboard/static
+%{_datadir}/openstack-dashboard/openstack_dashboard/templates
+%{_datadir}/openstack-dashboard/openstack_dashboard/test
+%{_datadir}/openstack-dashboard/openstack_dashboard/usage
+%{_datadir}/openstack-dashboard/openstack_dashboard/wsgi
+%dir %{_datadir}/openstack-dashboard/openstack_dashboard/locale
+%dir %{_datadir}/openstack-dashboard/openstack_dashboard/locale/??
+%dir %{_datadir}/openstack-dashboard/openstack_dashboard/locale/??_??
+%dir %{_datadir}/openstack-dashboard/openstack_dashboard/locale/??/LC_MESSAGES
+
+%{_sharedstatedir}/openstack-dashboard
+%dir %attr(0750, root, apache) %{_sysconfdir}/openstack-dashboard
+%config(noreplace) %{_sysconfdir}/httpd/conf.d/openstack-dashboard.conf
+%config(noreplace) %attr(0640, root, apache) %{_sysconfdir}/openstack-dashboard/local_settings
+
+%files doc
+%doc html 
+
+%changelog
+* Thu Mar 14 2013 Matthias Runge <mrunge@redhat.com> - 2013.1-0.7.g3
+- fix compressed css (rhbz#921036)
+- enable compression in httpd file
+- set expires in httpd config file
+
+* Fri Mar 08 2013 Matthias Runge <mrunge@redhat.com> - 2013.1-0.6.g3
+- fix a syntax error in config file
+
+* Wed Feb 27 2013 Matthias Runge <mrunge@redhat.com> - 2013.1-0.5.g3
+- update to grizzly-3
+
+* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2013.1-0.4.g2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Sat Jan 19 2013 Matthias Runge <mrunge@redhat.com> - 2013.1-0.4.g2
+- update to grizzly-2
+- fix compression during build
+
+* Mon Jan 07 2013 Matthias Runge <mrunge@redhat.com> - 2013.1-0.3.g1
+- use nodejs/lessjs to compress
+
+* Fri Dec 14 2012 Matthias Runge <mrunge@redhat.com> - 2013.1-0.2.g1
+- add config example snippet to enable logging to separate files
+
+* Thu Nov 29 2012 Matthias Runge <mrunge@redhat.com> - 2013.1-0.1.g1
+- update to grizzly-1 milestone
+
+* Tue Nov 13 2012 Matthias Runge <mrunge@redhat.com> - 2012.2-4
+- drop dependency to python-cloudfiles
+- fix /etc/openstack-dashboard permission CVE-2012-5474 (rhbz#873120)
+
+* Mon Oct 22 2012 Matthias Runge <mrunge@redhat.com> - 2012.2-3
+- require Django14 for EPEL6
+- finally move login/logout to /dashboard/auth/login
+- adapt httpd config to httpd-2.4 (bz 868408)
+
+* Mon Oct 15 2012 Matthias Runge <mrunge@redhat.com> - 2012.2-2
+- fix static img, static fonts issue
+
+* Wed Sep 26 2012 Matthias Runge <mrunge@redhat.com> - 2012.2-0.10.rc2
+- more el6 compatibility
+
+* Tue Sep 25 2012 Matthias Runge <mrunge@redhat.com> - 2012.2-0.9.rc2
+- remove %%post section
+
+* Mon Sep 24 2012 Matthias Runge <mrunge@redhat.com> - 2012.2-0.8.rc2
+- also require pytz
+
+* Fri Sep 21 2012 Matthias Runge <mrunge@redhat.com> - 2012.2-0.7.rc2
+- update to release folsom rc2
+
+* Fri Sep 21 2012 Matthias Runge <mrunge@redhat.com> - 2012.2-0.6.rc1
+- fix compressing issue
+
+* Mon Sep 17 2012 Matthias Runge <mrunge@redhat.com> - 2012.2-0.5.rc1
+- update to folsom rc1
+- require python-django instead of Django
+- add requirements to python-django-compressor, python-django-openstack-auth
+- add requirements to python-swiftclient
+- use compressed js, css files
+
+* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012.2-0.4.f1
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Tue Jun 26 2012 Matthias Runge <mrunge@matthias-runge.de> - 2012.2-0.3.f1
+- add additional provides django-horizon
+
+* Wed Jun 06 2012 Pádraig Brady <P@draigBrady.com> - 2012.2-0.2.f1
+- Update to folsom milestone 1
+
+* Wed May 09 2012 Alan Pevec <apevec@redhat.com> - 2012.1-4
+- Remove the currently uneeded dependency on python-django-nose
+
+* Thu May 03 2012 Pádraig Brady <P@draigBrady.com> - 2012.1-3
+- CVE-2012-2144 session reuse vulnerability
+
+* Tue Apr 17 2012 Pádraig Brady <P@draigBrady.com> - 2012.1-2
+- CVE-2012-2094 XSS vulnerability in Horizon log viewer
+- Configure the default database to use
+
+* Mon Apr 09 2012 Cole Robinson <crobinso@redhat.com> - 2012.1-1
+- Update to essex final release
+- Package manage.py (bz 808219)
+- Properly access all needed javascript (bz 807567)
+
+* Sat Mar 03 2012 Cole Robinson <crobinso@redhat.com> - 2012.1-0.1.rc1
+- Update to rc1 snapshot
+- Drop no longer needed packages
+- Change default URL to http://localhost/dashboard
+- Add dep on newly packaged python-django-nose
+- Fix static content viewing (patch from Jan van Eldik) (bz 788567)
+
+* Mon Jan 30 2012 Cole Robinson <crobinso@redhat.com> - 2012.1-0.1.e3
+- Initial package