]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake: toaster: Change help text for Section
authorBelen Barros Pena <belen.barros.pena@intel.com>
Wed, 19 Feb 2014 09:45:24 +0000 (09:45 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 9 Mar 2014 19:24:00 +0000 (12:24 -0700)
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>
bitbake/lib/toaster/toastergui/templates/recipe.html
bitbake/lib/toaster/toastergui/views.py

index 1adb012189f3710bdee214c6e97f01938de5a095..d2d6bc17732d71b9c580de62baac42091932a5f8 100644 (file)
         {% if object.section %}
             <dt>
             Section
-            <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>
+            <i class="icon-question-sign get-help" data-toggle="tooltip" title="The section in which recipes should be categorised"></i>
             </dt>
             <dd>{{object.section}}</dd>
         {% endif %}
index a5db136d28b2e538ba0d068a29d07126404f349e..11c8fd806e7cafb0e7118b708ccfccec55d75dbd 100644 (file)
@@ -657,7 +657,7 @@ def recipes(request, build_id):
             },
             {
                 'name':'Section',
-                'qhelp':'The section in which packages should be categorised. There are 5 sections: base, console, utils, devel and libs',
+                'qhelp':'The section in which recipes should be categorised',
                 'orderfield': _get_toggle_order(request, "section"),
                 'ordericon':_get_toggle_order_icon(request, "section"),
                 'clclass': 'recipe_section', 'hidden': 0,