From de87f83c0501624f155a25f2ce0a5ba91c73fd55 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 13 Aug 2018 22:09:27 -0400 Subject: [PATCH] Include querystring when force reload of a bare template view. Signed-off-by: Roberto Rosario --- mayan/apps/appearance/templates/appearance/base.html | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/mayan/apps/appearance/templates/appearance/base.html b/mayan/apps/appearance/templates/appearance/base.html index 03924406b5..677f8c7758 100644 --- a/mayan/apps/appearance/templates/appearance/base.html +++ b/mayan/apps/appearance/templates/appearance/base.html @@ -11,7 +11,7 @@ * current location's path as the new hash */ document.write(' diff --git a/setup.py b/setup.py index 4ae12cca73..b42264263e 100644 --- a/setup.py +++ b/setup.py @@ -62,8 +62,6 @@ PyYAML==3.13 celery==3.1.24 django-activity-stream==0.6.5 django-autoadmin==1.1.1 -#django-celery==3.2.1 - Use fork below until patch https://github.com/celery/django-celery/pull/552 is accepted. -https://github.com/mayan-edms/django-celery/zipball/master#egg=django-celery django-colorful==1.2 django-cors-headers==2.2.0 django-downloadview==1.9 @@ -128,6 +126,9 @@ setup( 'Topic :: Communications :: File Sharing', ], description='Free Open Source Electronic Document Management System', + dependency_links=[ + "https://github.com/mayan-edms/django-celery/zipball/master#egg=django-celery" + ], include_package_data=True, install_requires=install_requires, license='Apache 2.0',