mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
bitbake: toaster: Replace hyphens with underscores in package name
Package details pages were using hyphens to separate package name from package version. Changing them to underscores. (Bitbake rev: c0820f93e0387d2b6ead9e2fa7205d49001d27e6) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
2ac438747f
commit
d7fde8bb3c
@@ -2,7 +2,7 @@
|
|||||||
{% load projecttags %}
|
{% load projecttags %}
|
||||||
|
|
||||||
{% block localbreadcrumb %}
|
{% block localbreadcrumb %}
|
||||||
{% with fullPackageSpec=package.name|add:"-"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}
|
{% with fullPackageSpec=package.name|add:"_"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}
|
||||||
{% if target %}
|
{% if target %}
|
||||||
<li><a href="{% url "target" build.id target.id %}">{{target.target}}</a></li>
|
<li><a href="{% url "target" build.id target.id %}">{{target.target}}</a></li>
|
||||||
{% else %}
|
{% else %}
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
{% endblock localbreadcrumb %}
|
{% endblock localbreadcrumb %}
|
||||||
|
|
||||||
{% block pagedetailinfomain %}
|
{% block pagedetailinfomain %}
|
||||||
{% with fullPackageSpec=package.name|add:"-"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}
|
{% with fullPackageSpec=package.name|add:"_"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}
|
||||||
|
|
||||||
<div class="row span11">
|
<div class="row span11">
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
{% load projecttags %}
|
{% load projecttags %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}
|
||||||
{% with fullPackageSpec=package.name|add:"-"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}
|
{% with fullPackageSpec=package.name|add:"_"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}
|
||||||
<h1>{{fullPackageSpec}} <small>({{target.target}})</small></h1>
|
<h1>{{fullPackageSpec}} <small>({{target.target}})</small></h1>
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% endblock title %}
|
{% endblock title %}
|
||||||
|
|
||||||
{% block tabcontent %}
|
{% block tabcontent %}
|
||||||
{% with fullPackageSpec=package.name|add:"-"|add:package.version|add:"-"|add:package.revision|filtered_packagespec packageFileCount=package.buildfilelist_package.count %}
|
{% with fullPackageSpec=package.name|add:"_"|add:package.version|add:"-"|add:package.revision|filtered_packagespec packageFileCount=package.buildfilelist_package.count %}
|
||||||
{% include "package_included_tabs.html" with active_tab="dependencies" %}
|
{% include "package_included_tabs.html" with active_tab="dependencies" %}
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
<div class="tab-pane active" id="dependencies">
|
<div class="tab-pane active" id="dependencies">
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
{% load projecttags %}
|
{% load projecttags %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}
|
||||||
{% with fullPackageSpec=package.name|add:"-"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}
|
{% with fullPackageSpec=package.name|add:"_"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}
|
||||||
<h1>{{fullPackageSpec}} <small>({{target.target}})</small></h1>
|
<h1>{{fullPackageSpec}} <small>({{target.target}})</small></h1>
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% endblock title %}
|
{% endblock title %}
|
||||||
|
|
||||||
{% block tabcontent %}
|
{% block tabcontent %}
|
||||||
{% with fullPackageSpec=package.name|add:"-"|add:package.version|add:"-"|add:package.revision|filtered_packagespec packageFileCount=package.buildfilelist_package.count %}
|
{% with fullPackageSpec=package.name|add:"_"|add:package.version|add:"-"|add:package.revision|filtered_packagespec packageFileCount=package.buildfilelist_package.count %}
|
||||||
{% include "package_included_tabs.html" with active_tab="detail" %}
|
{% include "package_included_tabs.html" with active_tab="detail" %}
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
<div class="tab-pane active" id="files">
|
<div class="tab-pane active" id="files">
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
{% load projecttags %}
|
{% load projecttags %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}
|
||||||
{% with fullPackageSpec=package.name|add:"-"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}
|
{% with fullPackageSpec=package.name|add:"_"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}
|
||||||
<h1>{{fullPackageSpec}} <small>({{target.target}})</small></h1>
|
<h1>{{fullPackageSpec}} <small>({{target.target}})</small></h1>
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% endblock title %}
|
{% endblock title %}
|
||||||
|
|
||||||
{% block tabcontent %}
|
{% block tabcontent %}
|
||||||
{% with fullPackageSpec=package.name|add:"-"|add:package.version|add:"-"|add:package.revision|filtered_packagespec packageFileCount=package.buildfilelist_package.count %}
|
{% with fullPackageSpec=package.name|add:"_"|add:package.version|add:"-"|add:package.revision|filtered_packagespec packageFileCount=package.buildfilelist_package.count %}
|
||||||
{% include "package_included_tabs.html" with active_tab="reverse" %}
|
{% include "package_included_tabs.html" with active_tab="reverse" %}
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
<div class="tab-pane active" id="brought-in-by">
|
<div class="tab-pane active" id="brought-in-by">
|
||||||
|
|||||||
Reference in New Issue
Block a user