Re: [E-devel] E SVN: yoz trunk/edje/src/bin

2012-08-09 Thread Gustavo Sverzut Barbieri
On Thursday, August 9, 2012, Enlightenment SVN wrote:

> Log:
> edje: don't compile if we have a group without a name


Maybe show file and line so we know where we forgot?



>
> Author:   yoz
> Date: 2012-08-09 01:57:35 -0700 (Thu, 09 Aug 2012)
> New Revision: 75035
> Trac: http://trac.enlightenment.org/e/changeset/75035
>
> Modified:
>   trunk/edje/src/bin/edje_cc_out.c
>
> Modified: trunk/edje/src/bin/edje_cc_out.c
> ===
> --- trunk/edje/src/bin/edje_cc_out.c2012-08-09 08:27:04 UTC (rev 75034)
> +++ trunk/edje/src/bin/edje_cc_out.c2012-08-09 08:57:35 UTC (rev 75035)
> @@ -2052,6 +2052,11 @@
>  unsigned int id = 0;
>  unsigned int i;
>
> +if (!pc->part)
> +  {
> + ERR("A collection without a name was detected, that's not
> allowed.");
> + exit(-1);
> +  }
>  find = eina_hash_find(edje_file->collection, pc->part);
>  if (find && find->id == pc->id)
>continue ;
>
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net 
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>


-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: yoz trunk/edje/src/bin

2012-09-18 Thread Cedric BAIL
On Mon, Sep 17, 2012 at 6:37 PM, Enlightenment SVN
 wrote:
> Log:
> edje: fix group inherit with script

Can you backport it and properly document NEWS and ChangeLog ?

> Author:   yoz
> Date: 2012-09-17 09:37:50 -0700 (Mon, 17 Sep 2012)
> New Revision: 76769
> Trac: http://trac.enlightenment.org/e/changeset/76769
>
> Modified:
>   trunk/edje/src/bin/edje_cc_handlers.c
>
> Modified: trunk/edje/src/bin/edje_cc_handlers.c
> ===
> --- trunk/edje/src/bin/edje_cc_handlers.c   2012-09-17 16:35:38 UTC (rev 
> 76768)
> +++ trunk/edje/src/bin/edje_cc_handlers.c   2012-09-17 16:37:50 UTC (rev 
> 76769)
> @@ -1098,6 +1098,8 @@
>data_queue_copied_part_lookup(pc, &(et2->id), &(et->id));
>  else if (ep2->action == EDJE_ACTION_TYPE_ACTION_STOP)
>data_queue_copied_program_lookup(pc, &(et2->id), &(et->id));
> +else if (ep2->action == EDJE_ACTION_TYPE_SCRIPT)
> +  data_queue_copied_program_lookup(pc, &(et2->id), &(et->id));
>  else if (ep2->action == EDJE_ACTION_TYPE_DRAG_VAL_SET)
>data_queue_copied_part_lookup(pc, &(et2->id), &(et->id));
>  else if (ep2->action == EDJE_ACTION_TYPE_DRAG_VAL_STEP)
> @@ -2557,6 +2559,7 @@
>  cp->l2 = cp2->l2;
>  cp->script = STRDUP(cp2->script);
>  cd->is_lua = cd2->is_lua;
> +cd->shared = cd2->shared;
>  cd->programs = eina_list_append(cd->programs, cp);
>  data_queue_copied_anonymous_lookup(pc, &(cp2->id), &(cp->id));
>   }
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>



-- 
Cedric BAIL

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: yoz trunk/edje/src/bin

2012-09-18 Thread Michaël Bouchaud
Of course no time to do it properly yersteday :)

2012/9/18 Cedric BAIL 

> On Mon, Sep 17, 2012 at 6:37 PM, Enlightenment SVN
>  wrote:
> > Log:
> > edje: fix group inherit with script
>
> Can you backport it and properly document NEWS and ChangeLog ?
>
> > Author:   yoz
> > Date: 2012-09-17 09:37:50 -0700 (Mon, 17 Sep 2012)
> > New Revision: 76769
> > Trac: http://trac.enlightenment.org/e/changeset/76769
> >
> > Modified:
> >   trunk/edje/src/bin/edje_cc_handlers.c
> >
> > Modified: trunk/edje/src/bin/edje_cc_handlers.c
> > ===
> > --- trunk/edje/src/bin/edje_cc_handlers.c   2012-09-17 16:35:38 UTC
> (rev 76768)
> > +++ trunk/edje/src/bin/edje_cc_handlers.c   2012-09-17 16:37:50 UTC
> (rev 76769)
> > @@ -1098,6 +1098,8 @@
> >data_queue_copied_part_lookup(pc, &(et2->id), &(et->id));
> >  else if (ep2->action == EDJE_ACTION_TYPE_ACTION_STOP)
> >data_queue_copied_program_lookup(pc, &(et2->id), &(et->id));
> > +else if (ep2->action == EDJE_ACTION_TYPE_SCRIPT)
> > +  data_queue_copied_program_lookup(pc, &(et2->id), &(et->id));
> >  else if (ep2->action == EDJE_ACTION_TYPE_DRAG_VAL_SET)
> >data_queue_copied_part_lookup(pc, &(et2->id), &(et->id));
> >  else if (ep2->action == EDJE_ACTION_TYPE_DRAG_VAL_STEP)
> > @@ -2557,6 +2559,7 @@
> >  cp->l2 = cp2->l2;
> >  cp->script = STRDUP(cp2->script);
> >  cd->is_lua = cd2->is_lua;
> > +cd->shared = cd2->shared;
> >  cd->programs = eina_list_append(cd->programs, cp);
> >  data_queue_copied_anonymous_lookup(pc, &(cp2->id), &(cp->id));
> >   }
> >
> >
> >
> --
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > ___
> > enlightenment-svn mailing list
> > enlightenment-...@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
> >
>
>
>
> --
> Cedric BAIL
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>



-- 
Michaël Bouchaud (yoz) 
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: yoz trunk/edje/src/bin

2012-09-18 Thread Daniel Juyung Seo
Thanks for the great fix :)

Daniel Juyung Seo (SeoZ)

On Tue, Sep 18, 2012 at 5:13 PM, Michaël Bouchaud  wrote:
> Of course no time to do it properly yersteday :)
>
> 2012/9/18 Cedric BAIL 
>
>> On Mon, Sep 17, 2012 at 6:37 PM, Enlightenment SVN
>>  wrote:
>> > Log:
>> > edje: fix group inherit with script
>>
>> Can you backport it and properly document NEWS and ChangeLog ?
>>
>> > Author:   yoz
>> > Date: 2012-09-17 09:37:50 -0700 (Mon, 17 Sep 2012)
>> > New Revision: 76769
>> > Trac: http://trac.enlightenment.org/e/changeset/76769
>> >
>> > Modified:
>> >   trunk/edje/src/bin/edje_cc_handlers.c
>> >
>> > Modified: trunk/edje/src/bin/edje_cc_handlers.c
>> > ===
>> > --- trunk/edje/src/bin/edje_cc_handlers.c   2012-09-17 16:35:38 UTC
>> (rev 76768)
>> > +++ trunk/edje/src/bin/edje_cc_handlers.c   2012-09-17 16:37:50 UTC
>> (rev 76769)
>> > @@ -1098,6 +1098,8 @@
>> >data_queue_copied_part_lookup(pc, &(et2->id), &(et->id));
>> >  else if (ep2->action == EDJE_ACTION_TYPE_ACTION_STOP)
>> >data_queue_copied_program_lookup(pc, &(et2->id), &(et->id));
>> > +else if (ep2->action == EDJE_ACTION_TYPE_SCRIPT)
>> > +  data_queue_copied_program_lookup(pc, &(et2->id), &(et->id));
>> >  else if (ep2->action == EDJE_ACTION_TYPE_DRAG_VAL_SET)
>> >data_queue_copied_part_lookup(pc, &(et2->id), &(et->id));
>> >  else if (ep2->action == EDJE_ACTION_TYPE_DRAG_VAL_STEP)
>> > @@ -2557,6 +2559,7 @@
>> >  cp->l2 = cp2->l2;
>> >  cp->script = STRDUP(cp2->script);
>> >  cd->is_lua = cd2->is_lua;
>> > +cd->shared = cd2->shared;
>> >  cd->programs = eina_list_append(cd->programs, cp);
>> >  data_queue_copied_anonymous_lookup(pc, &(cp2->id), &(cp->id));
>> >   }
>> >
>> >
>> >
>> --
>> > Live Security Virtual Conference
>> > Exclusive live event will cover all the ways today's security and
>> > threat landscape has changed and how IT managers can respond. Discussions
>> > will include endpoint security, mobile security and the latest in malware
>> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>> > ___
>> > enlightenment-svn mailing list
>> > enlightenment-...@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>> >
>>
>>
>>
>> --
>> Cedric BAIL
>>
>>
>> --
>> Live Security Virtual Conference
>> Exclusive live event will cover all the ways today's security and
>> threat landscape has changed and how IT managers can respond. Discussions
>> will include endpoint security, mobile security and the latest in malware
>> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>> ___
>> enlightenment-devel mailing list
>> enlightenment-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>
>
>
>
> --
> Michaël Bouchaud (yoz) 
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel