[EGIT] [core/efl] master 01/01: evas/ply: Fix some memleaks

2016-12-18 Thread Jean-Philippe ANDRÉ
jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=72f98a06499cbabc7f56290afa89f7b8b37f52b9 commit 72f98a06499cbabc7f56290afa89f7b8b37f52b9 Author: Jean-Philippe Andre Date: Mon Dec 19 12:03:46 2016 +0900 evas/ply: Fix some memleaks I have

Re: [E-devel] Is it right to connect all tokens in namespace with period(".")?

2016-12-18 Thread Jean-Philippe André
Hi Conr2d, On 18 December 2016 at 21:46, Conrad Um wrote: > Dear all, > > As I mentioned in previous mail, I'm writing a Vala binding generator, but > I found our naming rule for namespaces a litte awkward. That is, we connect > all tokens in namespace with period, it seems to be not appropriate

[EGIT] [tools/eflete] master 01/01: image manager: update gengrid when the image manager is shown.

2016-12-18 Thread Jaehwan Kim
jaehwan pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=e16eb1be84d9cc58a798dfe1a335c41be02afaff commit e16eb1be84d9cc58a798dfe1a335c41be02afaff Author: Jaehwan Kim Date: Mon Dec 19 10:22:44 2016 +0900 image manager: update gengrid when the image

Re: [E-devel] OSUOSL network issue

2016-12-18 Thread The Rasterman
On Sat, 17 Dec 2016 19:45:55 + Bertrand Jacquin said: thanks beber... it would have bothered me... if i had been awake at the time... :) > Everything is resolved, here are the infos from OSUOSL > > > We had a major network outage today caused by a UPS fault in the data > > center which hou

[EGIT] [apps/terminology] master 02/03: termpty: Tab markers are the same for each line. Ref 4992

2016-12-18 Thread Boris Faure
billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=f3dd6f62fb21e777ce640d7d8433f4a7be7c695f commit f3dd6f62fb21e777ce640d7d8433f4a7be7c695f Author: Boris Faure Date: Sun Dec 18 18:48:03 2016 +0100 termpty: Tab markers are the same for ea

[EGIT] [apps/terminology] master 01/03: private: add macros ROUND_UP and DIV_ROUND_UP

2016-12-18 Thread Boris Faure
billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=836baf5d63e74a46d2d0fb028cd8457c4467587c commit 836baf5d63e74a46d2d0fb028cd8457c4467587c Author: Boris Faure Date: Sun Dec 18 18:46:41 2016 +0100 private: add macros ROUND_UP and DIV_ROU

[EGIT] [apps/terminology] master 03/03: termptyesc: correctly handle tab forward. Closes T4992

2016-12-18 Thread Boris Faure
billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=b9d5a55aa42e15aa13ca381bd05a9617b2ca9fae commit b9d5a55aa42e15aa13ca381bd05a9617b2ca9fae Author: Boris Faure Date: Sun Dec 18 19:17:42 2016 +0100 termptyesc: correctly handle tab forward

[E-devel] Is it right to connect all tokens in namespace with period(".")?

2016-12-18 Thread Conrad Um
Dear all, As I mentioned in previous mail, I'm writing a Vala binding generator, but I found our naming rule for namespaces a litte awkward. That is, we connect all tokens in namespace with period, it seems to be not appropriate in meaning of namespace. For example, "Elm.Layout" and "Elm.Layout.I

Re: [E-devel] What's the size of continuation indent?

2016-12-18 Thread Shuhrat Dehkanov
Hello, > But there isn't a real efl guideline on this, so technically you are free > to > use the indentation you like more. > If you are working on existing efl code just follow the first rule from the > wiki: ALWAYS KEEP EXISTING CODING STYLE. Now, that makes sense. Thank you :) On Sun, Dec 1

Re: [E-devel] What's the size of continuation indent?

2016-12-18 Thread Davide Andreoli
I usually prefer (as you can see i the first link) the continuation line "Aligned with opening delimiter" that is: > + Yes: > +foo = long_function_name(var_one, var_two, > + var_three, var_four) > + No: > +foo = long_function_name( > +var_one, var_two