* [PATCH] toaster: Fix missing tooltips from layers on project configuration page
@ 2015-10-06 17:51 Michael Wood
2015-10-07 10:57 ` Barros Pena, Belen
0 siblings, 1 reply; 6+ messages in thread
From: Michael Wood @ 2015-10-06 17:51 UTC (permalink / raw)
To: toaster
Re-enable the layer tooltips on the project configuration page.
This adds the required fields to the API used for the layer dependencies
to be able to show the metadata needed.
[YOCTO #8295]
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
---
bitbake/lib/toaster/toastergui/static/js/projectpage.js | 5 +----
bitbake/lib/toaster/toastergui/views.py | 16 ++++++++++------
2 files changed, 11 insertions(+), 10 deletions(-)
diff --git a/bitbake/lib/toaster/toastergui/static/js/projectpage.js b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
index 95cef18..8d68ce1 100644
--- a/bitbake/lib/toaster/toastergui/static/js/projectpage.js
+++ b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
@@ -146,10 +146,7 @@ function projectPageInit(ctx) {
link.attr("href", layerObj.layerdetailurl);
link.text(layerObj.name);
- /* YOCTO #8024
- link.tooltip({title: layerObj.giturl + " | "+ layerObj.branch.name, placement: "right"});
- branch name not accessible sometimes it is revision instead
- */
+ link.tooltip({title: layerObj.vcs_url + " | "+ layerObj.vcs_reference, placement: "right"});
var trashItem = projectLayer.children("span");
trashItem.click(function (e) {
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index e07f0e2..2a9423b 100755
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -2761,12 +2761,16 @@ if True:
project = Project.objects.get(pk=pid)
layer_version = Layer_Version.objects.get(pk=layerid)
- context = { 'project' : project,
- 'layerversion' : layer_version,
- 'layerdeps' : {"list": [{"id": dep.id, "name": dep.layer.name} \
- for dep in layer_version.get_alldeps(project.id)]},
- 'projectlayers': map(lambda prjlayer: prjlayer.layercommit.id, ProjectLayer.objects.filter(project=project))
- }
+ context = {'project' : project,
+ 'layerversion' : layer_version,
+ 'layerdeps' : {"list": [{"id": dep.id,
+ "name": dep.layer.name,
+ "layerdetailurl": reverse('layerdetails', args=(pid, dep.pk)),
+ "vcs_url": dep.layer.vcs_url,
+ "vcs_reference": dep.get_vcs_reference()} \
+ for dep in layer_version.get_alldeps(project.id)]},
+ 'projectlayers': map(lambda prjlayer: prjlayer.layercommit.id, ProjectLayer.objects.filter(project=project))
+ }
return context
--
2.1.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] toaster: Fix missing tooltips from layers on project configuration page
2015-10-06 17:51 [PATCH] toaster: Fix missing tooltips from layers on project configuration page Michael Wood
@ 2015-10-07 10:57 ` Barros Pena, Belen
2015-10-12 16:13 ` Michael Wood
0 siblings, 1 reply; 6+ messages in thread
From: Barros Pena, Belen @ 2015-10-07 10:57 UTC (permalink / raw)
To: Wood, Michael G, toaster@yoctoproject.org
On 06/10/2015 18:51, "toaster-bounces@yoctoproject.org on behalf of
Michael Wood" <toaster-bounces@yoctoproject.org on behalf of
michael.g.wood@intel.com> wrote:
>Re-enable the layer tooltips on the project configuration page.
>This adds the required fields to the API used for the layer dependencies
>to be able to show the metadata needed.
>
>[YOCTO #8295]
This works for me: tooltips are back :)
Thanks!
Belén
>
>Signed-off-by: Michael Wood <michael.g.wood@intel.com>
>---
> bitbake/lib/toaster/toastergui/static/js/projectpage.js | 5 +----
> bitbake/lib/toaster/toastergui/views.py | 16
>++++++++++------
> 2 files changed, 11 insertions(+), 10 deletions(-)
>
>diff --git a/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>index 95cef18..8d68ce1 100644
>--- a/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>+++ b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>@@ -146,10 +146,7 @@ function projectPageInit(ctx) {
>
> link.attr("href", layerObj.layerdetailurl);
> link.text(layerObj.name);
>- /* YOCTO #8024
>- link.tooltip({title: layerObj.giturl + " | "+
>layerObj.branch.name, placement: "right"});
>- branch name not accessible sometimes it is revision instead
>- */
>+ link.tooltip({title: layerObj.vcs_url + " | "+
>layerObj.vcs_reference, placement: "right"});
>
> var trashItem = projectLayer.children("span");
> trashItem.click(function (e) {
>diff --git a/bitbake/lib/toaster/toastergui/views.py
>b/bitbake/lib/toaster/toastergui/views.py
>index e07f0e2..2a9423b 100755
>--- a/bitbake/lib/toaster/toastergui/views.py
>+++ b/bitbake/lib/toaster/toastergui/views.py
>@@ -2761,12 +2761,16 @@ if True:
> project = Project.objects.get(pk=pid)
> layer_version = Layer_Version.objects.get(pk=layerid)
>
>- context = { 'project' : project,
>- 'layerversion' : layer_version,
>- 'layerdeps' : {"list": [{"id": dep.id, "name":
>dep.layer.name} \
>- for dep in
>layer_version.get_alldeps(project.id)]},
>- 'projectlayers': map(lambda prjlayer:
>prjlayer.layercommit.id, ProjectLayer.objects.filter(project=project))
>- }
>+ context = {'project' : project,
>+ 'layerversion' : layer_version,
>+ 'layerdeps' : {"list": [{"id": dep.id,
>+ "name": dep.layer.name,
>+ "layerdetailurl": reverse('layerdetails', args=(pid,
>dep.pk)),
>+ "vcs_url": dep.layer.vcs_url,
>+ "vcs_reference": dep.get_vcs_reference()} \
>+ for dep in layer_version.get_alldeps(project.id)]},
>+ 'projectlayers': map(lambda prjlayer:
>prjlayer.layercommit.id, ProjectLayer.objects.filter(project=project))
>+ }
>
> return context
>
>--
>2.1.4
>
>--
>_______________________________________________
>toaster mailing list
>toaster@yoctoproject.org
>https://lists.yoctoproject.org/listinfo/toaster
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] toaster: Fix missing tooltips from layers on project configuration page
2015-10-07 10:57 ` Barros Pena, Belen
@ 2015-10-12 16:13 ` Michael Wood
2015-10-13 8:46 ` Smith, Elliot
0 siblings, 1 reply; 6+ messages in thread
From: Michael Wood @ 2015-10-12 16:13 UTC (permalink / raw)
To: Barros Pena, Belen, toaster@yoctoproject.org
Could someone review/merge this. I think it also fixes [YOCTO #3251
<https://bugzilla.yoctoproject.org/show_bug.cgi?id=8251>]
Michael
On 07/10/15 11:57, Barros Pena, Belen wrote:
>
> On 06/10/2015 18:51, "toaster-bounces@yoctoproject.org on behalf of
> Michael Wood" <toaster-bounces@yoctoproject.org on behalf of
> michael.g.wood@intel.com> wrote:
>
>> Re-enable the layer tooltips on the project configuration page.
>> This adds the required fields to the API used for the layer dependencies
>> to be able to show the metadata needed.
>>
>> [YOCTO #8295]
> This works for me: tooltips are back :)
>
> Thanks!
>
> Belén
>
>> Signed-off-by: Michael Wood <michael.g.wood@intel.com>
>> ---
>> bitbake/lib/toaster/toastergui/static/js/projectpage.js | 5 +----
>> bitbake/lib/toaster/toastergui/views.py | 16
>> ++++++++++------
>> 2 files changed, 11 insertions(+), 10 deletions(-)
>>
>> diff --git a/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>> b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>> index 95cef18..8d68ce1 100644
>> --- a/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>> +++ b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>> @@ -146,10 +146,7 @@ function projectPageInit(ctx) {
>>
>> link.attr("href", layerObj.layerdetailurl);
>> link.text(layerObj.name);
>> - /* YOCTO #8024
>> - link.tooltip({title: layerObj.giturl + " | "+
>> layerObj.branch.name, placement: "right"});
>> - branch name not accessible sometimes it is revision instead
>> - */
>> + link.tooltip({title: layerObj.vcs_url + " | "+
>> layerObj.vcs_reference, placement: "right"});
>>
>> var trashItem = projectLayer.children("span");
>> trashItem.click(function (e) {
>> diff --git a/bitbake/lib/toaster/toastergui/views.py
>> b/bitbake/lib/toaster/toastergui/views.py
>> index e07f0e2..2a9423b 100755
>> --- a/bitbake/lib/toaster/toastergui/views.py
>> +++ b/bitbake/lib/toaster/toastergui/views.py
>> @@ -2761,12 +2761,16 @@ if True:
>> project = Project.objects.get(pk=pid)
>> layer_version = Layer_Version.objects.get(pk=layerid)
>>
>> - context = { 'project' : project,
>> - 'layerversion' : layer_version,
>> - 'layerdeps' : {"list": [{"id": dep.id, "name":
>> dep.layer.name} \
>> - for dep in
>> layer_version.get_alldeps(project.id)]},
>> - 'projectlayers': map(lambda prjlayer:
>> prjlayer.layercommit.id, ProjectLayer.objects.filter(project=project))
>> - }
>> + context = {'project' : project,
>> + 'layerversion' : layer_version,
>> + 'layerdeps' : {"list": [{"id": dep.id,
>> + "name": dep.layer.name,
>> + "layerdetailurl": reverse('layerdetails', args=(pid,
>> dep.pk)),
>> + "vcs_url": dep.layer.vcs_url,
>> + "vcs_reference": dep.get_vcs_reference()} \
>> + for dep in layer_version.get_alldeps(project.id)]},
>> + 'projectlayers': map(lambda prjlayer:
>> prjlayer.layercommit.id, ProjectLayer.objects.filter(project=project))
>> + }
>>
>> return context
>>
>> --
>> 2.1.4
>>
>> --
>> _______________________________________________
>> toaster mailing list
>> toaster@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/toaster
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] toaster: Fix missing tooltips from layers on project configuration page
2015-10-12 16:13 ` Michael Wood
@ 2015-10-13 8:46 ` Smith, Elliot
2015-10-13 9:00 ` Smith, Elliot
0 siblings, 1 reply; 6+ messages in thread
From: Smith, Elliot @ 2015-10-13 8:46 UTC (permalink / raw)
To: Michael Wood; +Cc: toaster@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 3993 bytes --]
On 12 October 2015 at 17:13, Michael Wood <michael.g.wood@intel.com> wrote:
> Could someone review/merge this. I think it also fixes [YOCTO #3251 <
> https://bugzilla.yoctoproject.org/show_bug.cgi?id=8251>]
I'll look at this.
Elliot
>
>
> Michael
>
>
> On 07/10/15 11:57, Barros Pena, Belen wrote:
>
>>
>> On 06/10/2015 18:51, "toaster-bounces@yoctoproject.org on behalf of
>> Michael Wood" <toaster-bounces@yoctoproject.org on behalf of
>> michael.g.wood@intel.com> wrote:
>>
>> Re-enable the layer tooltips on the project configuration page.
>>> This adds the required fields to the API used for the layer dependencies
>>> to be able to show the metadata needed.
>>>
>>> [YOCTO #8295]
>>>
>> This works for me: tooltips are back :)
>>
>> Thanks!
>>
>> Belén
>>
>> Signed-off-by: Michael Wood <michael.g.wood@intel.com>
>>> ---
>>> bitbake/lib/toaster/toastergui/static/js/projectpage.js | 5 +----
>>> bitbake/lib/toaster/toastergui/views.py | 16
>>> ++++++++++------
>>> 2 files changed, 11 insertions(+), 10 deletions(-)
>>>
>>> diff --git a/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>>> b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>>> index 95cef18..8d68ce1 100644
>>> --- a/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>>> +++ b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>>> @@ -146,10 +146,7 @@ function projectPageInit(ctx) {
>>>
>>> link.attr("href", layerObj.layerdetailurl);
>>> link.text(layerObj.name);
>>> - /* YOCTO #8024
>>> - link.tooltip({title: layerObj.giturl + " | "+
>>> layerObj.branch.name, placement: "right"});
>>> - branch name not accessible sometimes it is revision instead
>>> - */
>>> + link.tooltip({title: layerObj.vcs_url + " | "+
>>> layerObj.vcs_reference, placement: "right"});
>>>
>>> var trashItem = projectLayer.children("span");
>>> trashItem.click(function (e) {
>>> diff --git a/bitbake/lib/toaster/toastergui/views.py
>>> b/bitbake/lib/toaster/toastergui/views.py
>>> index e07f0e2..2a9423b 100755
>>> --- a/bitbake/lib/toaster/toastergui/views.py
>>> +++ b/bitbake/lib/toaster/toastergui/views.py
>>> @@ -2761,12 +2761,16 @@ if True:
>>> project = Project.objects.get(pk=pid)
>>> layer_version = Layer_Version.objects.get(pk=layerid)
>>>
>>> - context = { 'project' : project,
>>> - 'layerversion' : layer_version,
>>> - 'layerdeps' : {"list": [{"id": dep.id, "name":
>>> dep.layer.name} \
>>> - for dep in
>>> layer_version.get_alldeps(project.id)]},
>>> - 'projectlayers': map(lambda prjlayer:
>>> prjlayer.layercommit.id, ProjectLayer.objects.filter(project=project))
>>> - }
>>> + context = {'project' : project,
>>> + 'layerversion' : layer_version,
>>> + 'layerdeps' : {"list": [{"id": dep.id,
>>> + "name": dep.layer.name,
>>> + "layerdetailurl": reverse('layerdetails', args=(pid,
>>> dep.pk)),
>>> + "vcs_url": dep.layer.vcs_url,
>>> + "vcs_reference": dep.get_vcs_reference()} \
>>> + for dep in layer_version.get_alldeps(project.id)]},
>>> + 'projectlayers': map(lambda prjlayer:
>>> prjlayer.layercommit.id, ProjectLayer.objects.filter(project=project))
>>> + }
>>>
>>> return context
>>>
>>> --
>>> 2.1.4
>>>
>>> --
>>> _______________________________________________
>>> toaster mailing list
>>> toaster@yoctoproject.org
>>> https://lists.yoctoproject.org/listinfo/toaster
>>>
>>
> --
> _______________________________________________
> toaster mailing list
> toaster@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/toaster
>
--
Elliot Smith
Software Engineer
Intel Open Source Technology Centre
[-- Attachment #2: Type: text/html, Size: 6846 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] toaster: Fix missing tooltips from layers on project configuration page
2015-10-13 8:46 ` Smith, Elliot
@ 2015-10-13 9:00 ` Smith, Elliot
0 siblings, 0 replies; 6+ messages in thread
From: Smith, Elliot @ 2015-10-13 9:00 UTC (permalink / raw)
To: Michael Wood; +Cc: toaster@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 4399 bytes --]
On 13 October 2015 at 09:46, Smith, Elliot <elliot.smith@intel.com> wrote:
> On 12 October 2015 at 17:13, Michael Wood <michael.g.wood@intel.com>
> wrote:
>
>> Could someone review/merge this. I think it also fixes [YOCTO #3251 <
>> https://bugzilla.yoctoproject.org/show_bug.cgi?id=8251>]
>
>
I reviewed this, and confirmed it fixes 8251.
I have sent it upstream and added to toaster-next.
Elliot
>
> I'll look at this.
>
> Elliot
>
>
>>
>>
>> Michael
>>
>>
>> On 07/10/15 11:57, Barros Pena, Belen wrote:
>>
>>>
>>> On 06/10/2015 18:51, "toaster-bounces@yoctoproject.org on behalf of
>>> Michael Wood" <toaster-bounces@yoctoproject.org on behalf of
>>> michael.g.wood@intel.com> wrote:
>>>
>>> Re-enable the layer tooltips on the project configuration page.
>>>> This adds the required fields to the API used for the layer dependencies
>>>> to be able to show the metadata needed.
>>>>
>>>> [YOCTO #8295]
>>>>
>>> This works for me: tooltips are back :)
>>>
>>> Thanks!
>>>
>>> Belén
>>>
>>> Signed-off-by: Michael Wood <michael.g.wood@intel.com>
>>>> ---
>>>> bitbake/lib/toaster/toastergui/static/js/projectpage.js | 5 +----
>>>> bitbake/lib/toaster/toastergui/views.py | 16
>>>> ++++++++++------
>>>> 2 files changed, 11 insertions(+), 10 deletions(-)
>>>>
>>>> diff --git a/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>>>> b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>>>> index 95cef18..8d68ce1 100644
>>>> --- a/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>>>> +++ b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
>>>> @@ -146,10 +146,7 @@ function projectPageInit(ctx) {
>>>>
>>>> link.attr("href", layerObj.layerdetailurl);
>>>> link.text(layerObj.name);
>>>> - /* YOCTO #8024
>>>> - link.tooltip({title: layerObj.giturl + " | "+
>>>> layerObj.branch.name, placement: "right"});
>>>> - branch name not accessible sometimes it is revision instead
>>>> - */
>>>> + link.tooltip({title: layerObj.vcs_url + " | "+
>>>> layerObj.vcs_reference, placement: "right"});
>>>>
>>>> var trashItem = projectLayer.children("span");
>>>> trashItem.click(function (e) {
>>>> diff --git a/bitbake/lib/toaster/toastergui/views.py
>>>> b/bitbake/lib/toaster/toastergui/views.py
>>>> index e07f0e2..2a9423b 100755
>>>> --- a/bitbake/lib/toaster/toastergui/views.py
>>>> +++ b/bitbake/lib/toaster/toastergui/views.py
>>>> @@ -2761,12 +2761,16 @@ if True:
>>>> project = Project.objects.get(pk=pid)
>>>> layer_version = Layer_Version.objects.get(pk=layerid)
>>>>
>>>> - context = { 'project' : project,
>>>> - 'layerversion' : layer_version,
>>>> - 'layerdeps' : {"list": [{"id": dep.id, "name":
>>>> dep.layer.name} \
>>>> - for dep in
>>>> layer_version.get_alldeps(project.id)]},
>>>> - 'projectlayers': map(lambda prjlayer:
>>>> prjlayer.layercommit.id, ProjectLayer.objects.filter(project=project))
>>>> - }
>>>> + context = {'project' : project,
>>>> + 'layerversion' : layer_version,
>>>> + 'layerdeps' : {"list": [{"id": dep.id,
>>>> + "name": dep.layer.name,
>>>> + "layerdetailurl": reverse('layerdetails', args=(pid,
>>>> dep.pk)),
>>>> + "vcs_url": dep.layer.vcs_url,
>>>> + "vcs_reference": dep.get_vcs_reference()} \
>>>> + for dep in layer_version.get_alldeps(project.id)]},
>>>> + 'projectlayers': map(lambda prjlayer:
>>>> prjlayer.layercommit.id, ProjectLayer.objects.filter(project=project))
>>>> + }
>>>>
>>>> return context
>>>>
>>>> --
>>>> 2.1.4
>>>>
>>>> --
>>>> _______________________________________________
>>>> toaster mailing list
>>>> toaster@yoctoproject.org
>>>> https://lists.yoctoproject.org/listinfo/toaster
>>>>
>>>
>> --
>> _______________________________________________
>> toaster mailing list
>> toaster@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/toaster
>>
>
>
>
> --
> Elliot Smith
> Software Engineer
> Intel Open Source Technology Centre
>
--
Elliot Smith
Software Engineer
Intel Open Source Technology Centre
[-- Attachment #2: Type: text/html, Size: 7855 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] toaster: Fix missing tooltips from layers on project configuration page
@ 2015-10-13 8:58 Elliot Smith
0 siblings, 0 replies; 6+ messages in thread
From: Elliot Smith @ 2015-10-13 8:58 UTC (permalink / raw)
To: bitbake-devel
From: Michael Wood <michael.g.wood@intel.com>
Re-enable the layer tooltips on the project configuration page.
This adds the required fields to the API used for the layer dependencies
to be able to show the metadata needed.
Also fixes link hrefs which were missing in the add layers confirmation
dialog (bug 8251).
[YOCTO #8295]
[YOCTO #8251]
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
---
bitbake/lib/toaster/toastergui/static/js/projectpage.js | 5 +----
bitbake/lib/toaster/toastergui/views.py | 16 ++++++++++------
2 files changed, 11 insertions(+), 10 deletions(-)
diff --git a/bitbake/lib/toaster/toastergui/static/js/projectpage.js b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
index d367047..30989a0 100644
--- a/bitbake/lib/toaster/toastergui/static/js/projectpage.js
+++ b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
@@ -146,10 +146,7 @@ function projectPageInit(ctx) {
link.attr("href", layerObj.layerdetailurl);
link.text(layerObj.name);
- /* YOCTO #8024
- link.tooltip({title: layerObj.giturl + " | "+ layerObj.branch.name, placement: "right"});
- branch name not accessible sometimes it is revision instead
- */
+ link.tooltip({title: layerObj.vcs_url + " | "+ layerObj.vcs_reference, placement: "right"});
var trashItem = projectLayer.children("span");
trashItem.click(function (e) {
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index 468cce3..c4264a1 100755
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -2768,12 +2768,16 @@ if True:
project = Project.objects.get(pk=pid)
layer_version = Layer_Version.objects.get(pk=layerid)
- context = { 'project' : project,
- 'layerversion' : layer_version,
- 'layerdeps' : {"list": [{"id": dep.id, "name": dep.layer.name} \
- for dep in layer_version.get_alldeps(project.id)]},
- 'projectlayers': map(lambda prjlayer: prjlayer.layercommit.id, ProjectLayer.objects.filter(project=project))
- }
+ context = {'project' : project,
+ 'layerversion' : layer_version,
+ 'layerdeps' : {"list": [{"id": dep.id,
+ "name": dep.layer.name,
+ "layerdetailurl": reverse('layerdetails', args=(pid, dep.pk)),
+ "vcs_url": dep.layer.vcs_url,
+ "vcs_reference": dep.get_vcs_reference()} \
+ for dep in layer_version.get_alldeps(project.id)]},
+ 'projectlayers': map(lambda prjlayer: prjlayer.layercommit.id, ProjectLayer.objects.filter(project=project))
+ }
return context
--
1.9.3
---------------------------------------------------------------------
Intel Corporation (UK) Limited
Registered No. 1134945 (England)
Registered Office: Pipers Way, Swindon SN3 1RJ
VAT No: 860 2173 47
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-10-13 9:00 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-06 17:51 [PATCH] toaster: Fix missing tooltips from layers on project configuration page Michael Wood
2015-10-07 10:57 ` Barros Pena, Belen
2015-10-12 16:13 ` Michael Wood
2015-10-13 8:46 ` Smith, Elliot
2015-10-13 9:00 ` Smith, Elliot
-- strict thread matches above, loose matches on Subject: below --
2015-10-13 8:58 Elliot Smith
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.