mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
bitbake: toastergui: base Fix html indentation
(Bitbake rev: 37364e671ad1897bef818239a8e289b3d4c93925) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b06a633f25
commit
d826d4e800
@@ -10,54 +10,54 @@
|
||||
<link rel="stylesheet" href="{% static 'css/prettify.css' %}" type='text/css'/>
|
||||
<link rel="stylesheet" href="{% static 'css/default.css' %}" type='text/css'/>
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
|
||||
<script src="{% static 'js/jquery-2.0.3.min.js' %}">
|
||||
</script>
|
||||
<script src="{% static 'js/jquery.cookie.js' %}">
|
||||
</script>
|
||||
<script src="{% static 'js/bootstrap.min.js' %}">
|
||||
</script>
|
||||
<script src="{% static 'js/prettify.js' %}">
|
||||
</script>
|
||||
<script src="{% static 'js/libtoaster.js' %}">
|
||||
</script>
|
||||
{% if DEBUG %}
|
||||
<script>
|
||||
libtoaster.debug = true;
|
||||
</script>
|
||||
{% endif %}
|
||||
<script>
|
||||
libtoaster.ctx = {
|
||||
jsUrl : "{% static 'js/' %}",
|
||||
htmlUrl : "{% static 'html/' %}",
|
||||
projectsUrl : "{% url 'all-projects' %}",
|
||||
{% if project.id %}
|
||||
projectId : {{project.id}},
|
||||
projectPageUrl : {% url 'project' project.id as purl%}{{purl|json}},
|
||||
projectName : {{project.name|json}},
|
||||
projectTargetsUrl: {% url 'projectavailabletargets' project.id as paturl%}{{paturl|json}},
|
||||
projectBuildsUrl: {% url 'projectbuilds' project.id as pburl %}{{pburl|json}},
|
||||
projectId : {{project.id}},
|
||||
{% else %}
|
||||
projectId : undefined,
|
||||
projectPageUrl : undefined,
|
||||
projectName : undefined,
|
||||
projectId : undefined,
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
|
||||
<script src="{% static 'js/jquery-2.0.3.min.js' %}">
|
||||
</script>
|
||||
<script src="{% static 'js/jquery.cookie.js' %}">
|
||||
</script>
|
||||
<script src="{% static 'js/bootstrap.min.js' %}">
|
||||
</script>
|
||||
<script src="{% static 'js/prettify.js' %}">
|
||||
</script>
|
||||
<script src="{% static 'js/libtoaster.js' %}">
|
||||
</script>
|
||||
{% if DEBUG %}
|
||||
<script>
|
||||
libtoaster.debug = true;
|
||||
</script>
|
||||
{% endif %}
|
||||
};
|
||||
</script>
|
||||
<script src="{% static 'js/base.js' %}"></script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
/* Vars needed for base.js */
|
||||
var ctx = {};
|
||||
ctx.numProjects = {{projects|length}};
|
||||
ctx.currentUrl = "{{request.path|escapejs}}";
|
||||
<script>
|
||||
libtoaster.ctx = {
|
||||
jsUrl : "{% static 'js/' %}",
|
||||
htmlUrl : "{% static 'html/' %}",
|
||||
projectsUrl : "{% url 'all-projects' %}",
|
||||
{% if project.id %}
|
||||
projectId : {{project.id}},
|
||||
projectPageUrl : {% url 'project' project.id as purl%}{{purl|json}},
|
||||
projectName : {{project.name|json}},
|
||||
projectTargetsUrl: {% url 'projectavailabletargets' project.id as paturl%}{{paturl|json}},
|
||||
projectBuildsUrl: {% url 'projectbuilds' project.id as pburl %}{{pburl|json}},
|
||||
projectId : {{project.id}},
|
||||
{% else %}
|
||||
projectId : undefined,
|
||||
projectPageUrl : undefined,
|
||||
projectName : undefined,
|
||||
projectId : undefined,
|
||||
{% endif %}
|
||||
};
|
||||
</script>
|
||||
<script src="{% static 'js/base.js' %}"></script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
/* Vars needed for base.js */
|
||||
var ctx = {};
|
||||
ctx.numProjects = {{projects|length}};
|
||||
ctx.currentUrl = "{{request.path|escapejs}}";
|
||||
|
||||
basePageInit(ctx);
|
||||
});
|
||||
</script>
|
||||
basePageInit(ctx);
|
||||
});
|
||||
</script>
|
||||
|
||||
{% block extraheadcontent %}
|
||||
{% endblock %}
|
||||
@@ -69,80 +69,80 @@
|
||||
Loading <i class="fa-pulse icon-spinner"></i>
|
||||
</div>
|
||||
|
||||
<div class="navbar navbar-fixed-top">
|
||||
<div class="navbar-inner">
|
||||
<div class="container-fluid">
|
||||
<a class="brand logo" href="#"><img src="{% static 'img/logo.png' %}" class="" alt="Yocto logo project"/></a>
|
||||
<span class="brand">
|
||||
<a href="/">Toaster</a>
|
||||
{% if DEBUG %}
|
||||
<i class="icon-info-sign" title="<strong>Toaster version information</strong>" data-content="<dl><dt>Branch</dt><dd>{{TOASTER_BRANCH}}</dd><dt>Revision</dt><dd>{{TOASTER_REVISION}}</dd></dl>"></i>
|
||||
{% endif %}
|
||||
</span>
|
||||
<ul class="nav">
|
||||
<li {% if "builds" in request.path %}
|
||||
class="active"
|
||||
{% endif %}>
|
||||
<a href="{% url 'all-builds' %}">
|
||||
<i class="icon-tasks"></i>
|
||||
All builds
|
||||
</a>
|
||||
</li>
|
||||
<li {% if "projects" in request.path %}
|
||||
class="active"
|
||||
{% endif %}>
|
||||
<a href="{% url 'all-projects' %}">
|
||||
<i class="icon-folder-open"></i>
|
||||
All projects
|
||||
</a>
|
||||
</li> </ul>
|
||||
<a class="pull-right manual" target="_blank" href="http://www.yoctoproject.org/docs/latest/toaster-manual/toaster-manual.html">
|
||||
<i class="icon-book"></i>
|
||||
Toaster manual
|
||||
</a>
|
||||
<div class="btn-group pull-right">
|
||||
<a class="btn" id="new-project-button" href="{% url 'newproject' %}">New project</a>
|
||||
</div>
|
||||
<!-- New build popover -->
|
||||
<div class="btn-group pull-right" id="new-build-button" style="display:none">
|
||||
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
||||
New build
|
||||
<i class="icon-caret-down"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu new-build multi-select">
|
||||
<li>
|
||||
<h3>New build</h3>
|
||||
<h6>Project:</h6>
|
||||
<span id="project">
|
||||
{% if project.id %}
|
||||
<a class="lead" href="{% url 'project' project.id %}">{{project.name}}</a>
|
||||
<i class="icon-pencil"></i>
|
||||
{% endif %}
|
||||
</span>
|
||||
<form id="change-project-form" style="display:none;">
|
||||
<div class="input-append">
|
||||
<input type="text" class="input-medium" id="project-name-input" placeholder="Type a project name" autocomplete="off" data-minLength="1" data-autocomplete="off" data-provide="typeahead"/>
|
||||
<button id="save-project-button" class="btn" type="button">Save</button>
|
||||
<a href="#" id="cancel-change-project" class="btn btn-link" style="display: none">Cancel</a>
|
||||
</div>
|
||||
<p><a id="view-all-projects" href="{% url 'all-projects' %}">View all projects</a></p>
|
||||
</form>
|
||||
</li>
|
||||
<li style="display: none">
|
||||
This project's configuration is incomplete,<br/>so you cannot run builds.<br/>
|
||||
<p><a href="{% if project.id %}{% url 'project' project.id %}{% endif %}">View project configuration</a></p>
|
||||
</li>
|
||||
<li id="targets-form">
|
||||
<h6>Recipe(s):</h6>
|
||||
<form>
|
||||
<input type="text" class="input-xlarge build-target-input" placeholder="Type a recipe name" autocomplete="off" data-minLength="1" data-autocomplete="off" data-provide="typeahead" disabled/>
|
||||
<div>
|
||||
<button class="btn btn-primary" id="build-button" disabled>Build</button>
|
||||
</div>
|
||||
</form>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="navbar navbar-fixed-top">
|
||||
<div class="navbar-inner">
|
||||
<div class="container-fluid">
|
||||
<a class="brand logo" href="#"><img src="{% static 'img/logo.png' %}" class="" alt="Yocto logo project"/></a>
|
||||
<span class="brand">
|
||||
<a href="/">Toaster</a>
|
||||
{% if DEBUG %}
|
||||
<i class="icon-info-sign" title="<strong>Toaster version information</strong>" data-content="<dl><dt>Branch</dt><dd>{{TOASTER_BRANCH}}</dd><dt>Revision</dt><dd>{{TOASTER_REVISION}}</dd></dl>"></i>
|
||||
{% endif %}
|
||||
</span>
|
||||
<ul class="nav">
|
||||
<li {% if "builds" in request.path %}
|
||||
class="active"
|
||||
{% endif %}>
|
||||
<a href="{% url 'all-builds' %}">
|
||||
<i class="icon-tasks"></i>
|
||||
All builds
|
||||
</a>
|
||||
</li>
|
||||
<li {% if "projects" in request.path %}
|
||||
class="active"
|
||||
{% endif %}>
|
||||
<a href="{% url 'all-projects' %}">
|
||||
<i class="icon-folder-open"></i>
|
||||
All projects
|
||||
</a>
|
||||
</li> </ul>
|
||||
<a class="pull-right manual" target="_blank" href="http://www.yoctoproject.org/docs/latest/toaster-manual/toaster-manual.html">
|
||||
<i class="icon-book"></i>
|
||||
Toaster manual
|
||||
</a>
|
||||
<div class="btn-group pull-right">
|
||||
<a class="btn" id="new-project-button" href="{% url 'newproject' %}">New project</a>
|
||||
</div>
|
||||
<!-- New build popover -->
|
||||
<div class="btn-group pull-right" id="new-build-button" style="display:none">
|
||||
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
||||
New build
|
||||
<i class="icon-caret-down"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu new-build multi-select">
|
||||
<li>
|
||||
<h3>New build</h3>
|
||||
<h6>Project:</h6>
|
||||
<span id="project">
|
||||
{% if project.id %}
|
||||
<a class="lead" href="{% url 'project' project.id %}">{{project.name}}</a>
|
||||
<i class="icon-pencil"></i>
|
||||
{% endif %}
|
||||
</span>
|
||||
<form id="change-project-form" style="display:none;">
|
||||
<div class="input-append">
|
||||
<input type="text" class="input-medium" id="project-name-input" placeholder="Type a project name" autocomplete="off" data-minLength="1" data-autocomplete="off" data-provide="typeahead"/>
|
||||
<button id="save-project-button" class="btn" type="button">Save</button>
|
||||
<a href="#" id="cancel-change-project" class="btn btn-link" style="display: none">Cancel</a>
|
||||
</div>
|
||||
<p><a id="view-all-projects" href="{% url 'all-projects' %}">View all projects</a></p>
|
||||
</form>
|
||||
</li>
|
||||
<li style="display: none">
|
||||
This project's configuration is incomplete,<br/>so you cannot run builds.<br/>
|
||||
<p><a href="{% if project.id %}{% url 'project' project.id %}{% endif %}">View project configuration</a></p>
|
||||
</li>
|
||||
<li id="targets-form">
|
||||
<h6>Recipe(s):</h6>
|
||||
<form>
|
||||
<input type="text" class="input-xlarge build-target-input" placeholder="Type a recipe name" autocomplete="off" data-minLength="1" data-autocomplete="off" data-provide="typeahead" disabled/>
|
||||
<div>
|
||||
<button class="btn btn-primary" id="build-button" disabled>Build</button>
|
||||
</div>
|
||||
</form>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user