For newly added layers it may not be immediately obvious that you have to wait for it to be indexed (since the update script is usually run on a scheduled basis). If the layer branch hasn't been indexed, add a note mentioning this.
Signed-off-by: Paul Eggleton <[email protected]> --- templates/layerindex/detail.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/templates/layerindex/detail.html b/templates/layerindex/detail.html index 144d5e8..0747421 100644 --- a/templates/layerindex/detail.html +++ b/templates/layerindex/detail.html @@ -167,6 +167,11 @@ </div> <!-- end of row-fluid --> </div> <!-- end of container-fluid --> + {% if not layerbranch.vcs_last_commit %} + <div class="alert alert-info"> + <b>Note:</b> The content of this layer on branch {{ url_branch }} has not yet been indexed. Indexing should take place within a few hours. + </div> + {% endif %} <ul class="nav nav-tabs" id="layertabbar"> {% if layerbranch.recipe_set.count > 0 %} -- 2.9.5 -- _______________________________________________ yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/yocto
