diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2015-05-11 18:58:25 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-14 18:04:09 +0100 |
commit | c5a16235b8b56102703bc264768ba386ebe90611 (patch) | |
tree | 1a3822b4225ac5de88cc812e14ec0080ffec0a4b /bitbake/lib/toaster/toastergui/templates/base.html | |
parent | 35d75c83522a050f0e35a33f73317461e2adf554 (diff) | |
download | poky-c5a16235b8b56102703bc264768ba386ebe90611.tar.gz |
bitbake: toaster: fix html5 compliance
This patch brings needed changes in all views so that
each view passes the HTML5 compliance test by the
W3C Markup Service.
(Bitbake rev: 6e60ed8ab71e4300ab571f42b7af5011086df697)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/base.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/base.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/base.html b/bitbake/lib/toaster/toastergui/templates/base.html index 47bbbbda14..230dee49d6 100644 --- a/bitbake/lib/toaster/toastergui/templates/base.html +++ b/bitbake/lib/toaster/toastergui/templates/base.html | |||
@@ -29,10 +29,10 @@ | |||
29 | <script> | 29 | <script> |
30 | libtoaster.ctx = { | 30 | libtoaster.ctx = { |
31 | projectId : {{project.id|default:'undefined'}}, | 31 | projectId : {{project.id|default:'undefined'}}, |
32 | xhrDataTypeaheadUrl : "{% url 'xhr_datatypeahead' %}", | ||
33 | jsUrl : "{% static 'js/' %}", | 32 | jsUrl : "{% static 'js/' %}", |
34 | htmlUrl : "{% static 'html/' %}", | 33 | htmlUrl : "{% static 'html/' %}", |
35 | {% if project.id %} | 34 | {% if project.id %} |
35 | xhrDataTypeaheadUrl : "{% url 'xhr_datatypeahead' project.id %}", | ||
36 | xhrProjectEditUrl : "{% url 'xhr_projectedit' project.id %}", | 36 | xhrProjectEditUrl : "{% url 'xhr_projectedit' project.id %}", |
37 | projectPageUrl : "{% url 'project' project.id %}", | 37 | projectPageUrl : "{% url 'project' project.id %}", |
38 | projectName : "{{project.name}}", | 38 | projectName : "{{project.name}}", |
@@ -104,16 +104,16 @@ | |||
104 | <p><a id="view-all-projects" href="{% url 'all-projects' %}">View all projects</a></p> | 104 | <p><a id="view-all-projects" href="{% url 'all-projects' %}">View all projects</a></p> |
105 | </form> | 105 | </form> |
106 | </li> | 106 | </li> |
107 | <div class="alert" style="display:none"> | 107 | <li style="display: none"> |
108 | This project's configuration is incomplete,<br/>so you cannot run builds.<br/> | 108 | This project's configuration is incomplete,<br/>so you cannot run builds.<br/> |
109 | <p><a href="{% if project.id %}{% url 'project' project.id %}{% endif %}">View project configuration</a></p> | 109 | <p><a href="{% if project.id %}{% url 'project' project.id %}{% endif %}">View project configuration</a></p> |
110 | </div> | 110 | </li> |
111 | <li id="targets-form"> | 111 | <li id="targets-form"> |
112 | <h6>Recipe(s):</h6> | 112 | <h6>Recipe(s):</h6> |
113 | <form> | 113 | <form> |
114 | <input type="text" class="input-xlarge" id="build-target-input" placeholder="Type a recipe name" autocomplete="off" data-minLength="1" data-autocomplete="off" data-provide="typeahead" /> | 114 | <input type="text" class="input-xlarge" id="build-target-input" placeholder="Type a recipe name" autocomplete="off" data-minLength="1" data-autocomplete="off" data-provide="typeahead" /> |
115 | <div> | 115 | <div> |
116 | <a class="btn btn-primary" id="build-button" disabled="disabled" data-project-id="{{project.id}}">Build</a> | 116 | <a class="btn btn-primary" id="build-button" data-project-id="{{project.id}}">Build</a> |
117 | </div> | 117 | </div> |
118 | </form> | 118 | </form> |
119 | </li> | 119 | </li> |