summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/layerdetails.html
blob: 029c93b9784be0106d1e76dcb73202341dc9e6fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
{% extends "base.html" %}
{% load projecttags %}
{% load humanize %}
{% load static %}

{% block title %} {{layerversion.layer.name}} - {{project.name}} - Toaster {% endblock %}
{% block pagecontent %}

<div id="delete-layer-modal" class="modal fade" tabindex="-1" role="dialog">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-body">
		  Are you sure you want to delete the <strong>{{layerversion.layer.name}}</strong> layer?
      </div>
      <div class="modal-footer">
        <button type="button" id="layer-delete-confirmed" class="btn btn-primary">Delete</button>
        <button type="button" class="btn btn-default btn-link" data-dismiss="modal">Cancel</button>
      </div>
    </div>
  </div>
</div>

<div class="row">
  <div class="col-md-12">
    <ul class="breadcrumb">
      <li>
        <a href="{% url 'project' project.id %}">{{project.name}}</a>
        <span class="divider">&rarr;</span>
      </li>
      <li><a href="{% url 'projectlayers' project.id %}">Compatible layers</a>
        <span class="divider">&rarr;</span>
      </li>
      <li class="active">
        {{layerversion.layer.name}} ({{layerversion.get_vcs_reference|truncatechars:13}})
      </li>
    </ul>

    {# If this is not an imported layer then hide the edit ui #}
    {% if layerversion.layer_source != layer_source.TYPE_IMPORTED %}
    <style scoped>
    .glyphicon-edit {
      display:none;
    }
    .delete-current-value{
      display: none;
    }
    li .glyphicon-trash {
      display:none;
    }
    .add-deps {
     display:none;
    }
    </style>
    {% endif %}

    <script src="{% static 'js/layerdetails.js' %}"></script>
    <script>

    $(document).ready(function(){
      var ctx = {
        xhrUpdateLayerUrl : "{% url 'xhr_layer' project.id layerversion.pk %}",
        layerVersion : {
          name : "{{layerversion.layer.name}}",
          id : {{layerversion.id}},
          commit: "{{layerversion.get_vcs_reference}}",
          {%if layerversion.id in projectlayers %}
          inCurrentPrj : true,
          {% else %}
          inCurrentPrj : false,
          {% endif %}
          layerdetailurl : "{% url 'layerdetails' project.id layerversion.id  %}",
          layer_source: {{layerversion.layer_source|json}},
        },
        layerSourceTypes: {{layer_source|json}},
      };

      try {
        layerDetailsPageInit(ctx);
      } catch (e) {
        document.write("Sorry, An error has occurred loading this page");
        console.warn(e);
      }
    });
    </script>

    <div class="page-header">
      <h1>{{layerversion.layer.name}} <small class="commit"
        {% if layerversion.get_vcs_reference|length > 13 %}
           data-toggle="tooltip" title="{{layerversion.get_vcs_reference}}"
        {% endif %}>({{layerversion.get_vcs_reference|truncatechars:13}})</small>
      </h1>
    </div>
    <div class="row">
      <!-- container for tabs -->
      <div class="col-md-8 tabbable">
        <div class="alert alert-info lead" id="alert-area" style="display:none">
          <button type="button" class="close" id="dismiss-alert">&times;</button>
          <span id="alert-msg"></span>
        </div>
        <ul class="nav nav-tabs">
          <li class="active">
            <a data-toggle="tab" href="#information" id="details-tab">Layer details</a>
          </li>
          <li>
            <a data-toggle="tab" href="#recipes" class="text-muted" id="targets-tab">Recipes (<span class="table-count-recipestable"></span>)</a>
          </li>
          <li>
            <a data-toggle="tab" href="#machines" class="text-muted" id="machines-tab">Machines (<span class="table-count-machinestable"></span>)</a>
          </li>
        </ul>
        <div class="tab-content">
          <span class="button-place">
            {% if layerversion.id not in projectlayers %}
            <button id="add-remove-layer-btn" data-directive="add" class="btn btn-default btn-lg btn-block">
              <span class="glyphicon glyphicon-plus"></span>
              Add the {{layerversion.layer.name}} layer to your project
            </button>
            {% else %}
            <button id="add-remove-layer-btn" data-directive="remove" class="btn btn-default btn-block btn-lg btn-danger">
              <span class="glyphicon glyphicon-trash"></span>
              Remove the {{layerversion.layer.name}} layer from your project
            </button>
            {% endif %}
          </span>

          <!-- layer details pane -->
          <div id="information" class="tab-pane active">
            <dl class="dl-horizontal">
              <dt class="">
              <span class="glyphicon glyphicon-question-sign get-help" title="Fetch/clone URL of the repository"></span>
              Repository URL
              </dt>
              <dd>
              <span class="current-value">{{layerversion.layer.vcs_url}}</span>
              {% if layerversion.get_vcs_link_url %}
              <a href="{{layerversion.get_vcs_link_url}}/" class="glyphicon glyphicon-new-window" target="_blank"></a>
              {% endif %}
              <form id="change-repo-form" class="form-inline" style="display:none">
                <div class="form-group">
                  <input type="text" class="form-control" value="{{layerversion.layer.vcs_url}}">
                </div>
                <button data-layer-prop="vcs_url" class="btn btn-default change-btn" type="button">Save</button>
                <a href="#" style="display:none" class="btn btn-link cancel">Cancel</a>
              </form>
              <span class="glyphicon glyphicon-edit"></span>
              </dd>
              <dt>
              <span class="glyphicon glyphicon-question-sign get-help" title="Subdirectory within the repository where the layer is located, if not in the root (usually only used if the repository contains more than one layer)"></span>
              Repository subdirectory
              </dt>
              <dd>
              <span class="text-muted" style="display:none">Not set</span>
              <span class="current-value">{{layerversion.dirpath}}</span>
              {% if layerversion.get_vcs_dirpath_link_url %}
              <a href="{{layerversion.get_vcs_dirpath_link_url}}" class="glyphicon glyphicon-new-window" target="_blank"></a>
              {% endif %}
              <form id="change-subdir-form" class="form-inline" style="display:none;">
                <div class="form-group">
                  <input type="text" class="form-control" value="{{layerversion.dirpath}}">
                </div>
                <button data-layer-prop="dirpath" class="btn btn-default change-btn" type="button">Save</button>
                <a href="#" style="display:none" class="btn btn-link cancel">Cancel</a>
              </form>
              <span id="change-subdir" class="glyphicon glyphicon-edit"></span>
              <span class="glyphicon glyphicon-trash delete-current-value" data-toggle="tooltip" title="Delete"></span>
              </dd>
              <dt>
              <span class="glyphicon glyphicon-question-sign get-help" title="The Git branch, tag or commit"></span>
              Git revision
              </dt>
              <dd>
              <span class="current-value">{{layerversion.get_vcs_reference}}</span>
              <form style="display:none;" class="form-inline">
                <div class="form-group">
                  <input type="text" class="form-control" value="{{layerversion.get_vcs_reference}}">
                </div>
                <button  data-layer-prop="commit" class="btn btn-default change-btn" type="button">Save</button>
                <a href="#" style="display:none" class="btn btn-link cancel">Cancel</a>
              </form>
              <span class="glyphicon glyphicon-edit"></i>
              </dd>
              <dt>
              <span class="glyphicon glyphicon-question-sign get-help" title="Other layers this layer depends upon"></span>
              Layer dependencies
              </dt>
              <dd>
              <ul class="list-unstyled current-value" id="layer-deps-list">
                {% for ld in layerversion.dependencies.all %}
                <li data-layer-id="{{ld.depends_on.id}}">
                  <a data-toggle="tooltip" title="{{ld.depends_on.layer.vcs_url}} | {{ld.depends_on.get_vcs_reference}}" href="{% url 'layerdetails' project.id ld.depends_on.id %}">{{ld.depends_on.layer.name}}</a>
                  <span class="glyphicon glyphicon-trash " data-toggle="tooltip" title="Delete"></span>
                </li>
                {% endfor %}
              </ul>
              <form class="form-inline add-deps">
                <div class="form-group">
                  <input class="form-control" type="text" autocomplete="off" data-minLength="1" data-autocomplete="off"  placeholder="Type a layer name" id="layer-dep-input">
                </div>
                <a class="btn btn-default" id="add-layer-dependency-btn" disabled="disabled">
                  Add layer
                </a>
                <span class="help-block add-deps">You can only add layers Toaster knows about</span>
              </form>
              </dd>
            </dl>
          </div>
          <!-- end layerdetails tab -->
          <!-- targets tab -->
          <div id="recipes" class="tab-pane">
            <!-- Recipe table -->
            <div id="no-recipes-yet" class="alert alert-info" style="display:none">
              <p>Toaster does not have recipe information for the <strong> {{layerversion.layer.name}} </strong> layer.</p>
              <p>Toaster learns about layers when you build them. If this layer provides any recipes, they will be listed here after you build the <strong> {{layerversion.layer.name}} </strong> layer.</p>
            </div>
            {% url 'layerrecipestable' project.id layerversion.id  as xhr_table_url %}
            {% with "recipestable" as table_name %}
            {% with "Recipes" as title %}
            {% include 'toastertable-simple.html' %}
            {% endwith %}
            {% endwith %}
          </div>

          <div id="machines" class="tab-pane">

            <div id="no-machines-yet" class="alert alert-info" style="display:none">
              <p>Toaster does not have machine information for the <strong> {{layerversion.layer.name}} </strong> layer.</p>
              <p>Sadly, machine information cannot be obtained from builds, so this page will remain empty.</p>
            </div>


            <!-- Machines table -->
            {% url 'layermachinestable' project.id layerversion.id  as xhr_table_url %}
            {% with "machinestable" as table_name  %}
            {% with "Machines" as title  %}
            {% include 'toastertable-simple.html' %}
            {% endwith %}
            {% endwith %}
          </div>
        </div> <!-- end tab content -->
      </div> <!-- end tabable -->

      <div class="col-md-4"> <!-- info side panel -->
        <div class="well">
          <h2>About {{layerversion.layer.name}}</h2>
          <dl class="item-info">

            <dt>
            Summary
            <span class="glyphicon glyphicon-question-sign get-help" title="One-line description of the layer"></span>
            </dt>
            <dd>
            <span class="text-muted" style="display:none">Not set</span>
            <span class="current-value">{{layerversion.layer.summary|default_if_none:''}}</span>
            <form style="display:none; margin-bottom:20px; margin-top:5px;">
              <div class="form-group">
                <textarea class="form-control" rows="2">{% if layerversion.layer.summary %}{{layerversion.layer.summary}}{% endif %}</textarea>
              </div>
              <button class="btn btn-default change-btn" data-layer-prop="summary" type="button">Save</button>
              <a href="#" class="btn btn-link cancel">Cancel</a>
            </form>
            <span class="glyphicon glyphicon-edit"></span>
            <span class="glyphicon glyphicon-trash delete-current-value" data-toggle="tooltip" title="Delete"></span>
            </dd>
            <dt>
            Description
            </dt>
            <dd>
            <span class="text-muted" style="display:none">Not set</span>
            <span class="current-value">{{layerversion.layer.description|default_if_none:''}}</span>
            <form style="display:none; margin-bottom:20px; margin-top:5px;">
              <div class="form-group">
                <textarea class="form-control" rows="6">{% if layerversion.layer.description %}{{layerversion.layer.description}}{% endif %}</textarea>
              </div>
              <button class="btn btn-default change-btn" data-layer-prop="description" type="button" >Save</button>
              <a href="#" class="btn btn-link cancel">Cancel</a>
            </form>
            <span class="glyphicon glyphicon-edit"></span>
            <span class="glyphicon glyphicon-trash delete-current-value" data-toggle="tooltip" title="Delete"></span>
            </dd>
            {% if layerversion.layer_source == layer_source.TYPE_LAYERINDEX  %}
            <dt>Layer index</dt>
            <dd>
            <a href="http://layers.openembedded.org/layerindex/branch/{{layerversion.release.name}}/layer/{{layerversion.layer.name}}">Layer index {{layerversion.layer.name}}</a>
            </dd>
            {% endif %}
          </dl>
          {# Only show delete link for imported layers #}
          {% if layerversion.layer_source == layer_source.TYPE_IMPORTED %}
          <i class="icon-trash text-danger"></i>
          <a href="#delete-layer-modal"  role="button" class="text-danger" data-toggle="modal" data-target="#delete-layer-modal">Delete {{layerversion.layer.name}}</a>
          {% endif %}
        </div>
      </div>
    </div>
  </div> <!-- close column 12 div -->
</div> <!-- close top row div -->

{% endblock %}