summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2014-02-19 09:45:24 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-09 12:24:00 -0700
commit5462bd0f741a52e5c501c6490837200b34e09083 (patch)
tree794c3a4bf7507f636c9c01dc808e8a9862bb5c48 /bitbake
parentf0dce4283d8ffbf5075784b026955c8840d47e5b (diff)
downloadpoky-5462bd0f741a52e5c501c6490837200b34e09083.tar.gz
bitbake: toaster: Change help text for Section
The help text for the Section information in the recipes table and the recipe details page said "packages" instead of recipes, and it said there were 5 possible values for the SECTION variable (which is not true). Changed to "The section in which recipes should be categorised" (Bitbake rev: 984273e07126674c674ad8b400418117ae087860) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/recipe.html2
-rw-r--r--bitbake/lib/toaster/toastergui/views.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/recipe.html b/bitbake/lib/toaster/toastergui/templates/recipe.html
index 1adb012189..d2d6bc1773 100644
--- a/bitbake/lib/toaster/toastergui/templates/recipe.html
+++ b/bitbake/lib/toaster/toastergui/templates/recipe.html
@@ -257,7 +257,7 @@
257 {% if object.section %} 257 {% if object.section %}
258 <dt> 258 <dt>
259 Section 259 Section
260 <i class="icon-question-sign get-help" data-toggle="tooltip" title="The section in which packages should be categorised. There are 5 sections: base, console, utils, devel and libs."></i> 260 <i class="icon-question-sign get-help" data-toggle="tooltip" title="The section in which recipes should be categorised"></i>
261 </dt> 261 </dt>
262 <dd>{{object.section}}</dd> 262 <dd>{{object.section}}</dd>
263 {% endif %} 263 {% endif %}
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index a5db136d28..11c8fd806e 100644
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -657,7 +657,7 @@ def recipes(request, build_id):
657 }, 657 },
658 { 658 {
659 'name':'Section', 659 'name':'Section',
660 'qhelp':'The section in which packages should be categorised. There are 5 sections: base, console, utils, devel and libs', 660 'qhelp':'The section in which recipes should be categorised',
661 'orderfield': _get_toggle_order(request, "section"), 661 'orderfield': _get_toggle_order(request, "section"),
662 'ordericon':_get_toggle_order_icon(request, "section"), 662 'ordericon':_get_toggle_order_icon(request, "section"),
663 'clclass': 'recipe_section', 'hidden': 0, 663 'clclass': 'recipe_section', 'hidden': 0,