summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster
diff options
context:
space:
mode:
authorDavid Reyna <David.Reyna@windriver.com>2014-03-26 06:43:04 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-01 10:22:42 +0100
commit7920219543f80ef14385420c11d7d9a110944ac1 (patch)
treea8a0080233b6881873a1a26b12b043bb1e98a020 /bitbake/lib/toaster
parentfd4579e5f225e6bba3060ae119a12803fba71ccf (diff)
downloadpoky-7920219543f80ef14385420c11d7d9a110944ac1.tar.gz
bitbake: toaster: disable configvar sorts for value and files
Disable the sort on files because it sorts on the file array's first (and invisible) element. Disable the sort on values because the raw ASCII sort looks wrong to the general user, especially for values with leading spaces. [YOCTO #6004] (Bitbake rev: 800cbddd612c977960aa4dd93b24c22aac4bfae0) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster')
-rw-r--r--bitbake/lib/toaster/toastergui/views.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index 4e412cae72..6413c80ed9 100644
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -1120,15 +1120,11 @@ def configvars(request, build_id):
1120 {'name': 'Value ', 1120 {'name': 'Value ',
1121 'qhelp': "The value assigned to the variable", 1121 'qhelp': "The value assigned to the variable",
1122 'dclass': "span4", 1122 'dclass': "span4",
1123 'orderfield': _get_toggle_order(request, "variable_value"),
1124 'ordericon':_get_toggle_order_icon(request, "variable_value"),
1125 }, 1123 },
1126 {'name': 'Set in file', 1124 {'name': 'Set in file',
1127 'qhelp': "The last configuration file that touched the variable value", 1125 'qhelp': "The last configuration file that touched the variable value",
1128 'clclass': 'file', 'hidden' : 0, 1126 'clclass': 'file', 'hidden' : 0,
1129 'dclass': "span6", 1127 'dclass': "span6",
1130 'orderfield': _get_toggle_order(request, "vhistory__file_name"),
1131 'ordericon':_get_toggle_order_icon(request, "vhistory__file_name"),
1132 'filter' : { 1128 'filter' : {
1133 'class' : 'vhistory__file_name', 1129 'class' : 'vhistory__file_name',
1134 'label': 'Show:', 1130 'label': 'Show:',