All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michael Wood <michael.g.wood@intel.com>
To: "toaster@yoctoproject.org" <toaster@yoctoproject.org>
Subject: Re: [review-request][PATCH v2] bitbake: toaster: Project page fix project layers tooltip
Date: Thu, 19 Mar 2015 11:08:51 +0000	[thread overview]
Message-ID: <550AAE43.2030405@intel.com> (raw)
In-Reply-To: <1426508910-8249-1-git-send-email-michael.g.wood@intel.com>

Dropping this patch as it conflicts with work now merged for #7381 will 
submit a new reduced patch.

On 16/03/15 12:28, Michael Wood wrote:
> Make sure the tooltip for the project page shows correct vcs reference
> by using the value of get_vcs_reference and align the tooltip on the
> right.
>
> [YOCTO #7155]
>
> Signed-off-by: Michael Wood <michael.g.wood@intel.com>
> ---
>   bitbake/lib/toaster/toastergui/templates/project.html | 2 +-
>   bitbake/lib/toaster/toastergui/views.py               | 7 +++----
>   2 files changed, 4 insertions(+), 5 deletions(-)
>
> diff --git a/bitbake/lib/toaster/toastergui/templates/project.html b/bitbake/lib/toaster/toastergui/templates/project.html
> index 54590ee..f677743 100644
> --- a/bitbake/lib/toaster/toastergui/templates/project.html
> +++ b/bitbake/lib/toaster/toastergui/templates/project.html
> @@ -293,7 +293,7 @@ vim: expandtab tabstop=2
>           <a href="{% url 'importlayer' %}">Import layer</a></p>
>         <ul class="unstyled configuration-list">
>             <li ng-repeat="l in layers track by l.id" class="animate-repeat">
> -            <a href="{[l.layerdetailurl]}" class="layer-info" data-toggle="tooltip" tooltip="{[l.giturl]} | {[l.branch.name]}">{[l.name]}</a>
> +            <a href="{[l.layerdetailurl]}" class="layer-info" data-toggle="tooltip" tooltip-placement="right" tooltip="{[l.giturl]} | {[l.vcs_ref]}">{[l.name]}</a>
>               <i class="icon-trash" ng-click="layerDel(l.id)" tooltip="Delete"></i>
>                         </li>
>         </ul>
> diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
> index 8034cfc..5453c83 100755
> --- a/bitbake/lib/toaster/toastergui/views.py
> +++ b/bitbake/lib/toaster/toastergui/views.py
> @@ -2131,9 +2131,8 @@ if toastermain.settings.MANAGED:
>                           "giturl": x.layercommit.layer.vcs_url,
>                           "url": x.layercommit.layer.layer_index_url,
>                           "layerdetailurl": reverse("layerdetails", args=(x.layercommit.pk,)),
> -                # This branch name is actually the release
> -                        "branch" : { "name" : x.layercommit.commit, "layersource" : x.layercommit.up_branch.layer_source.name if x.layercommit.up_branch != None else None}},
> -                    prj.projectlayer_set.all().order_by("id")),
> +                        "vcs_ref" : x.layercommit.get_vcs_reference() },
> +                prj.projectlayer_set.all().order_by("id")),
>               "targets" : map(lambda x: {"target" : x.target, "task" : x.task, "pk": x.pk}, prj.projecttarget_set.all()),
>               "freqtargets": freqtargets,
>               "releases": map(lambda x: {"id": x.pk, "name": x.name, "description":x.description}, Release.objects.all()),
> @@ -2254,7 +2253,7 @@ if toastermain.settings.MANAGED:
>               # return all project settings
>               return HttpResponse(jsonfilter( {
>                   "error": "ok",
> -                "layers" :  map(lambda x: {"id": x.layercommit.pk, "orderid" : x.pk, "name" : x.layercommit.layer.name, "giturl" : x.layercommit.layer.vcs_url, "url": x.layercommit.layer.layer_index_url, "layerdetailurl": reverse("layerdetails", args=(x.layercommit.layer.pk,)), "branch" : { "name" : x.layercommit.up_branch.name, "layersource" : x.layercommit.up_branch.layer_source.name}}, prj.projectlayer_set.all().select_related("layer").order_by("id")),
> +                "layers" :  map(lambda x: {"id": x.layercommit.pk, "orderid" : x.pk, "name" : x.layercommit.layer.name, "giturl" : x.layercommit.layer.vcs_url, "url": x.layercommit.layer.layer_index_url, "layerdetailurl": reverse("layerdetails", args=(x.layercommit.layer.pk,)), "vcs_ref": x.layercommit.get_vcs_reference(), "branch" : { "name" : x.layercommit.up_branch.name, "layersource" : x.layercommit.up_branch.layer_source.name}}, prj.projectlayer_set.all().select_related("layer").order_by("id")),
>                   "builds" : _project_recent_build_list(prj),
>                   "variables": map(lambda x: (x.name, x.value), prj.projectvariable_set.all()),
>                   "machine": {"name": prj.projectvariable_set.get(name="MACHINE").value},



      reply	other threads:[~2015-03-19 11:08 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-13 16:55 [review-request][PATCH] bitbake: toaster: Project page fix project layers tooltip Michael Wood
2015-03-16 10:22 ` Barros Pena, Belen
2015-03-16 12:28   ` [review-request][PATCH v2] " Michael Wood
2015-03-19 11:08     ` Michael Wood [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=550AAE43.2030405@intel.com \
    --to=michael.g.wood@intel.com \
    --cc=toaster@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.