{% extends "base.html" %} {% load i18n %} {% load static %} {% comment %} layerindex-web - layer detail page template Copyright (C) 2013 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %}
{% if not layerbranch %}
This layer does not exist for branch {{ url_branch }}.
{% endif %}
{% for note in layeritem.layernote_set.all %}
{{ note.text|urlize }} {% if perms.layerindex.publish_layer or useredit %}

Edit note Delete note

{% endif %}
{% endfor %}

{{ layeritem.description }}

{% if layeritem.usage_url %} Setup information {% endif %} {% if layeritem.mailing_list_url %} Mailing list {% endif %}

Git repository

{{ layeritem.vcs_url }} {% if layeritem.vcs_web_url %} web repo {% endif %}

{% if layerbranch.vcs_subdir %}

Subdirectory

{{ layerbranch.vcs_subdir }} {% if layerbranch.tree_url %} web subdirectory {% endif %}

{% endif %} {% if layerbranch.vcs_last_commit %}

Last commit: {{ layerbranch.vcs_last_commit|timesince }} ago ({{ layerbranch.branch.name }} branch)

{% endif %} {% if layerbranch.active_maintainers.count > 0 %}

{% if layerbranch.active_maintainers|length == 1 %}Maintainer{% else %}Maintainers{% endif %}

    {% for maintainer in layerbranch.active_maintainers %}
  • {{ maintainer.name }} {% if maintainer.responsibility %} ({{ maintainer.responsibility }}) {% endif %} email
  • {% endfor %}
{% endif %} {% if rrs_maintplans %}

{{ rrs_maintplans|pluralize:"Maintenance Plan,Maintenance Plans" }}

{% endif %}
{% if layerbranch.dependencies_set.count > 0 %}
{% if layerbranch.get_required.count > 0 %}

Dependencies

The {{ layeritem.name }} layer depends upon:

{% endif %} {% if layerbranch.get_recommends.count > 0 %}

Recommends

The {{ layeritem.name }} layer recommends:

{% endif %}
{% endif %}
{% if not layerbranch.vcs_last_commit %}
Note: The content of this layer on branch {{ url_branch }} has not yet been indexed. Indexing should take place within a few hours.
{% endif %}
{% if layerbranch.recipe_set.count > 0 %}
{% for recipe in layerbranch.sorted_recipes %} {% endfor %}
Recipe name Version Description
{{ recipe.name }}{% if 'image' in recipe.inherits.split %}{% endif %}{% if recipe.blacklisted %}blacklisted{% endif %} {{ recipe.pv }} {{ recipe.short_desc }}
{% endif %} {% if machines.count > 0 %}
{% for machine in machines %} {% endfor %}
{{ machine.name }} {{ machine.description }}
{% endif %} {% if appends.count > 0 %}
{% for append in appends %} {% endfor %}
{{ append.filename }}
{% endif %} {% if classes.count > 0 %}
{% for class in classes %} {% endfor %}
{{ class.name }}
{% endif %} {% if distros.count > 0 %}
{% for distro in distros %} {% endfor %}
{{ distro.name }} {{ distro.description }}
{% endif %} {% if updates.count > 0 %}
{% for update in updates %} {% endfor %}
Date/time Errors Warnings
{% if update.log %} {{ update.started }}{% if update.update.reload %} (reload){% endif%} {% else %} {{ update.started }}{% if update.update.reload %} (reload){% endif%} {% endif %} {% if update.errors %}{{ update.errors }}{% endif %} {% if update.warnings %}{{ update.warnings }}{% endif %}
{% endif %}
{% endautoescape %} {% endblock %} {% block scripts %} {% endblock %}