mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-05 05:04:46 +02:00

Add a script for doing a one-time import of OE-Classic recipe information, so comparisons against OE-Core can be performed; this is stored using a new ClassicRecipe model supporting additional fields for tracking migration status. The migration status fields can be updated as well as viewed and summarised in graph format. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
62 lines
2.3 KiB
HTML
62 lines
2.3 KiB
HTML
{% extends "base_toplevel.html" %}
|
|
{% load i18n %}
|
|
|
|
{% comment %}
|
|
|
|
layerindex-web - OE-Classic index page template
|
|
|
|
Copyright (C) 2013 Intel Corporation
|
|
Licensed under the MIT license, see COPYING.MIT for details
|
|
|
|
{% endcomment %}
|
|
|
|
|
|
<!--
|
|
{% block title_append %} - OE-Classic{% endblock %}
|
|
-->
|
|
|
|
{% block branch_selector %}
|
|
{% autoescape on %}
|
|
<li class="dropdown">
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
|
Branch: <b>OE-Classic</b>
|
|
<b class="caret"></b>
|
|
</a>
|
|
<ul class="dropdown-menu">
|
|
{% for branch in all_branches %}
|
|
<li><a href="{% url layer_list branch.name %}">
|
|
{{ branch.name }}
|
|
{% if branch.short_description %}
|
|
({{ branch.short_description }})
|
|
{% endif %}
|
|
</a></li>
|
|
{% endfor %}
|
|
<li class="divider"></li>
|
|
<li><a href="{% url classic %}"><b>OE-Classic</b></a></li>
|
|
</ul>
|
|
</li>
|
|
{% endautoescape %}
|
|
{% endblock %}
|
|
|
|
{% block content_inner %}
|
|
{% autoescape on %}
|
|
|
|
<div class="container-fluid">
|
|
<div class="row-fluid">
|
|
|
|
<h2>OE-Classic</h2>
|
|
|
|
<p>OpenEmbedded-Classic (OE-Classic) is the name for the old monolithic version of OpenEmbedded. It contained a number of recipes some of which have not yet been migrated on top of OE-Core. To help people to find and migrate these recipes we provide an index here as well as some statistics to get an idea of the migration.</p>
|
|
|
|
<a class="btn btn-large btn-primary" href="{% url classic_recipe_search %}">Recipes</a>
|
|
<a class="btn btn-large" href="{% url classic_recipe_search %}?q=&cover_status=!">Unmigrated Recipes</a>
|
|
<a class="btn btn-large btn-primary" href="{% url classic_recipe_stats %}">Stats</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endautoescape %}
|
|
|
|
{% endblock %}
|
|
|