summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui')
-rw-r--r--bitbake/lib/toaster/toastergui/urls.py2
-rw-r--r--bitbake/lib/toaster/toastergui/views.py4
-rw-r--r--bitbake/lib/toaster/toastergui/widgets.py5
3 files changed, 6 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py
index d2df4e6048..bc3b0c79d8 100644
--- a/bitbake/lib/toaster/toastergui/urls.py
+++ b/bitbake/lib/toaster/toastergui/urls.py
@@ -6,7 +6,7 @@
6# SPDX-License-Identifier: GPL-2.0-only 6# SPDX-License-Identifier: GPL-2.0-only
7# 7#
8 8
9from django.conf.urls import url 9from django.urls import re_path as url
10from django.views.generic import RedirectView 10from django.views.generic import RedirectView
11 11
12from toastergui import tables 12from toastergui import tables
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index a571b8cc18..bf92510cdc 100644
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -670,11 +670,11 @@ def xhr_dirinfo(request, build_id, target_id):
670 return HttpResponse(_get_dir_entries(build_id, target_id, top), content_type = "application/json") 670 return HttpResponse(_get_dir_entries(build_id, target_id, top), content_type = "application/json")
671 671
672from django.utils.functional import Promise 672from django.utils.functional import Promise
673from django.utils.encoding import force_text 673from django.utils.encoding import force_str
674class LazyEncoder(json.JSONEncoder): 674class LazyEncoder(json.JSONEncoder):
675 def default(self, obj): 675 def default(self, obj):
676 if isinstance(obj, Promise): 676 if isinstance(obj, Promise):
677 return force_text(obj) 677 return force_str(obj)
678 return super(LazyEncoder, self).default(obj) 678 return super(LazyEncoder, self).default(obj)
679 679
680from toastergui.templatetags.projecttags import filtered_filesizeformat 680from toastergui.templatetags.projecttags import filtered_filesizeformat
diff --git a/bitbake/lib/toaster/toastergui/widgets.py b/bitbake/lib/toaster/toastergui/widgets.py
index ceff52942e..53696912a4 100644
--- a/bitbake/lib/toaster/toastergui/widgets.py
+++ b/bitbake/lib/toaster/toastergui/widgets.py
@@ -7,6 +7,7 @@
7# 7#
8 8
9from django.views.generic import View, TemplateView 9from django.views.generic import View, TemplateView
10from django.utils.decorators import method_decorator
10from django.views.decorators.cache import cache_control 11from django.views.decorators.cache import cache_control
11from django.shortcuts import HttpResponse 12from django.shortcuts import HttpResponse
12from django.core.cache import cache 13from django.core.cache import cache
@@ -63,8 +64,8 @@ class ToasterTable(TemplateView):
63 self.default_orderby = "" 64 self.default_orderby = ""
64 65
65 # prevent HTTP caching of table data 66 # prevent HTTP caching of table data
66 @cache_control(must_revalidate=True, 67 @method_decorator(cache_control(must_revalidate=True,
67 max_age=0, no_store=True, no_cache=True) 68 max_age=0, no_store=True, no_cache=True))
68 def dispatch(self, *args, **kwargs): 69 def dispatch(self, *args, **kwargs):
69 return super(ToasterTable, self).dispatch(*args, **kwargs) 70 return super(ToasterTable, self).dispatch(*args, **kwargs)
70 71