diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2015-03-09 18:39:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-16 17:44:06 +0000 |
commit | 50c5ca5254395c7bd092993304c314d86422eb99 (patch) | |
tree | 6582a4c18e499a0b735bbef63f0054b0a72a709c /bitbake/lib/toaster/toastergui/templates/project.html | |
parent | e5590bc381e5f09a768bdcb367d21785864b4d2b (diff) | |
download | poky-50c5ca5254395c7bd092993304c314d86422eb99.tar.gz |
bitbake: toastergui: improve data suggestion
We improve the data suggestions in the project page.
The machines suggestions now contain the layer name.
The targets and machine do not show the layer branch.
For targets, the layer name is searchable.
For machines, the description field is searchable.
[YOCTO #7153]
[YOCTO #7154]
(Bitbake rev: 02a4997807ee995817d741985eea13d38e548007)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/project.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/project.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/project.html b/bitbake/lib/toaster/toastergui/templates/project.html index 06fc6a5b62..f4a3a75358 100644 --- a/bitbake/lib/toaster/toastergui/templates/project.html +++ b/bitbake/lib/toaster/toastergui/templates/project.html | |||
@@ -355,7 +355,7 @@ vim: expandtab tabstop=2 | |||
355 | You cannot really compare the builds for the new machine with the previous ones. | 355 | You cannot really compare the builds for the new machine with the previous ones. |
356 | </div> | 356 | </div> |
357 | <form ng-submit="editProjectSettings('#select-machine')" class="input-append"> | 357 | <form ng-submit="editProjectSettings('#select-machine')" class="input-append"> |
358 | <input type="text" id="machine" autocomplete="off" ng-model="machineName" typeahead="m.name for m in getAutocompleteSuggestions('machines', $viewValue)"/> | 358 | <input type="text" id="machine" autocomplete="off" ng-model="machineName" typeahead="m.name for m in getAutocompleteSuggestions('machines', $viewValue)" typeahead-template-url="suggestion_details" /> |
359 | <input type="submit" id="apply-change-machine" class="btn" type="button" ng-disabled="machineName == machine.name || machineName.length == 0" value="Save"></input> | 359 | <input type="submit" id="apply-change-machine" class="btn" type="button" ng-disabled="machineName == machine.name || machineName.length == 0" value="Save"></input> |
360 | <input type="reset" id="cancel-machine" class="btn btn-link" ng-click="toggle('#select-machine')" value="Cancel"></input> | 360 | <input type="reset" id="cancel-machine" class="btn btn-link" ng-click="toggle('#select-machine')" value="Cancel"></input> |
361 | {% csrf_token %} | 361 | {% csrf_token %} |