summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2014-02-20 14:32:32 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-17 13:59:37 +0000
commitf4755edc8686cde97701b6e496149048be528739 (patch)
treeb9180a9fa217fca47e8979a8647ba293b75c66a2 /bitbake
parent92c98c4af7d0b3901f2e0f43167477b8b97d6ebe (diff)
downloadast2050-yocto-poky-f4755edc8686cde97701b6e496149048be528739.zip
ast2050-yocto-poky-f4755edc8686cde97701b6e496149048be528739.tar.gz
bitbake: toaster: Add no search results page
Adding the no search results page to the built packages (bpackage.html), variables (configvars.html), recipes (recipes.html) and tasks (tasks.html) tables. The change copies the code from the build.html template into the other 4 templates. There is probably a smarter way of doing this, though. (Bitbake rev: 3feff77091b3926c10ca8f30890c9049633ccb66) 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/bpackage.html13
-rw-r--r--bitbake/lib/toaster/toastergui/templates/configvars.html14
-rwxr-xr-xbitbake/lib/toaster/toastergui/templates/recipes.html14
-rw-r--r--bitbake/lib/toaster/toastergui/templates/tasks.html15
4 files changed, 56 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/bpackage.html b/bitbake/lib/toaster/toastergui/templates/bpackage.html
index 1eb1f8e..54f4bb4 100644
--- a/bitbake/lib/toaster/toastergui/templates/bpackage.html
+++ b/bitbake/lib/toaster/toastergui/templates/bpackage.html
@@ -20,6 +20,18 @@
</h1>
</div>
+{% if objects.paginator.count == 0 %}
+ <div class="row-fluid">
+ <div class="alert">
+ <form class="no-results input-append" id="searchform">
+ <input id="search" name="search" class="input-xxlarge" type="text" value="{{request.GET.search}}"/><a href="javascript:$('#search').val('');searchform.submit()" class="add-on btn" tabindex="-1"><i class="icon-remove"></i></a>
+ <button class="btn" type="submit" value="Search">Search</button>
+ <button class="btn btn-link" onclick="javascript:$('#search').val('');searchform.submit()">Show all packages</button>
+ </form>
+ </div>
+ </div>
+
+{% else %}
{% include "basetable_top.html" %}
{% for package in objects %}
@@ -69,5 +81,6 @@
{% endfor %}
{% include "basetable_bottom.html" %}
+{% endif %}
</div>
{% endblock %}
diff --git a/bitbake/lib/toaster/toastergui/templates/configvars.html b/bitbake/lib/toaster/toastergui/templates/configvars.html
index ecd5a0f..5c552c9 100644
--- a/bitbake/lib/toaster/toastergui/templates/configvars.html
+++ b/bitbake/lib/toaster/toastergui/templates/configvars.html
@@ -30,6 +30,19 @@
<!-- variables -->
<div id="variables" class="tab-pane">
+
+ {% if objects.paginator.count == 0 %}
+ <div class="row-fluid">
+ <div class="alert">
+ <form class="no-results input-append" id="searchform">
+ <input id="search" name="search" class="input-xxlarge" type="text" value="{{request.GET.search}}"/><a href="javascript:$('#search').val('');searchform.submit()" class="add-on btn" tabindex="-1"><i class="icon-remove"></i></a>
+ <button class="btn" type="submit" value="Search">Search</button>
+ <button class="btn btn-link" onclick="javascript:$('#search').val('');searchform.submit()">Show all variables</button>
+ </form>
+ </div>
+ </div>
+
+ {% else %}
{% include "basetable_top.html" %}
{% for variable in objects %}
@@ -52,6 +65,7 @@
{% endfor %}
{% include "basetable_bottom.html" %}
+{% endif %}
</div> <!-- endvariables -->
<!-- file list popups -->
diff --git a/bitbake/lib/toaster/toastergui/templates/recipes.html b/bitbake/lib/toaster/toastergui/templates/recipes.html
index 724bcf5..da5ac99 100755
--- a/bitbake/lib/toaster/toastergui/templates/recipes.html
+++ b/bitbake/lib/toaster/toastergui/templates/recipes.html
@@ -19,6 +19,19 @@
{%endif%}
</h1>
</div>
+
+{% if objects.paginator.count == 0 %}
+ <div class="row-fluid">
+ <div class="alert">
+ <form class="no-results input-append" id="searchform">
+ <input id="search" name="search" class="input-xxlarge" type="text" value="{{request.GET.search}}"/><a href="javascript:$('#search').val('');searchform.submit()" class="add-on btn" tabindex="-1"><i class="icon-remove"></i></a>
+ <button class="btn" type="submit" value="Search">Search</button>
+ <button class="btn btn-link" onclick="javascript:$('#search').val('');searchform.submit()">Show all recipes</button>
+ </form>
+ </div>
+ </div>
+
+{% else %}
{% include "basetable_top.html" %}
{% for recipe in objects %}
@@ -80,5 +93,6 @@
{% endfor %}
{% include "basetable_bottom.html" %}
+{% endif %}
</div>
{% endblock %}
diff --git a/bitbake/lib/toaster/toastergui/templates/tasks.html b/bitbake/lib/toaster/toastergui/templates/tasks.html
index ce75b75..f484867 100644
--- a/bitbake/lib/toaster/toastergui/templates/tasks.html
+++ b/bitbake/lib/toaster/toastergui/templates/tasks.html
@@ -17,6 +17,20 @@
{%endif%}
</h1>
</div>
+
+{% if objects.paginator.count == 0 %}
+ <div class="row-fluid">
+ <div class="alert">
+ <form class="no-results input-append" id="searchform">
+ <input id="search" name="search" class="input-xxlarge" type="text" value="{{request.GET.search}}"/><a href="javascript:$('#search').val('');searchform.submit()" class="add-on btn" tabindex="-1"><i class="icon-remove"></i></a>
+ <button class="btn" type="submit" value="Search">Search</button>
+ <button class="btn btn-link" onclick="javascript:$('#search').val('');searchform.submit()">Show all tasks</button>
+ </form>
+ </div>
+ </div>
+
+
+{% else %}
{% include "basetable_top.html" %}
{% for task in objects %}
@@ -58,5 +72,6 @@
{% endfor %}
{% include "basetable_bottom.html" %}
+{% endif %}
</div>
{% endblock %}
OpenPOWER on IntegriCloud