Re: [E-devel] Improving web site accessibility

2017-11-16 Thread Carsten Haitzler
On Thu, 16 Nov 2017 22:28:13 + Stephen Houston said: > Oh I almost forgot. Please please please full width as well. No one does > the centered page with large left and right margins anymore. Use the space, > don't waste it. Full width will make documentation much

Re: [E-devel] Improving web site accessibility

2017-11-16 Thread Carsten Haitzler
On Thu, 16 Nov 2017 22:26:01 + Stephen Houston said: > +1 I've been saying we need a new website bad. And one that is sleek, > modern, and yes white. Time to look up to date and kept with the times. > You will notice nearly every major linux distribution and nearly

Re: [E-devel] Improving web site accessibility

2017-11-16 Thread Carsten Haitzler
On Thu, 16 Nov 2017 23:38:05 + jaquilina said: > Hi guys this is something I can contribute to in terms of website. and I > can even host it if you all so desire. Question is do you want this > built off a framework, such as wordpress where it will be easy to >

Re: [E-devel] Improving web site accessibility

2017-11-16 Thread Bryce Harrington
On Fri, Nov 17, 2017 at 10:30:21AM +1030, Simon Lees wrote: > > > On 17/11/17 10:08, jaquilina wrote: > > Hi guys this is something I can contribute to in terms of website. and I > > can even host it if you all so desire. Question is do you want this > > built off a framework, such as wordpress

Re: [E-devel] Improving web site accessibility

2017-11-16 Thread Simon Lees
On 17/11/17 10:08, jaquilina wrote: > Hi guys this is something I can contribute to in terms of website. and I > can even host it if you all so desire. Question is do you want this > built off a framework, such as wordpress where it will be easy to > include a forums section or something custom

Re: [E-devel] Improving web site accessibility

2017-11-16 Thread Stephen Houston
I said yes, but the general consensus to that on IRC was strongly leaving toward just theming the doku we have. On Thu, Nov 16, 2017, 5:38 PM jaquilina wrote: > Hi guys this is something I can contribute to in terms of website. and I > can even host it if you all so

Re: [E-devel] Improving web site accessibility

2017-11-16 Thread jaquilina
Hi guys this is something I can contribute to in terms of website. and I can even host it if you all so desire. Question is do you want this built off a framework, such as wordpress where it will be easy to include a forums section or something custom built? On 2017-11-16 22:26, Stephen

Re: [E-devel] Improving web site accessibility

2017-11-16 Thread Stephen Houston
Oh I almost forgot. Please please please full width as well. No one does the centered page with large left and right margins anymore. Use the space, don't waste it. Full width will make documentation much easier to read as well. On Thu, Nov 16, 2017, 4:26 PM Stephen Houston

Re: [E-devel] Improving web site accessibility

2017-11-16 Thread Stephen Houston
+1 I've been saying we need a new website bad. And one that is sleek, modern, and yes white. Time to look up to date and kept with the times. You will notice nearly every major linux distribution and nearly all major linux software websites are in the confines of what you describe. Simple, flat,

[E-devel] Improving web site accessibility

2017-11-16 Thread Cedric Bail
Hi, As some of you may have noticed we are doing some improvement to our documentation and trying to get things easier when starting with EFL. One of the main issue we are facing is that our website is definitively hard to read for a lot of people. So Paul went on trying to figure out why.

Re: [E-devel] Eina_Array step confusion

2017-11-16 Thread Cedric Bail
> Original Message > Subject: Re: [E-devel] Eina_Array step confusion > Local Time: November 16, 2017 6:11 AM > UTC Time: November 16, 2017 2:11 PM > From: a...@andywilliams.me > To: Enlightenment developer list > > Admittedly I still

Re: [E-devel] Eina_Array step confusion

2017-11-16 Thread Andrew Williams
Admittedly I still don't understand parameter 2. What is the point of passing in a variable when it's value is required to be constant? if (sizeof (Eina_Array) != sizeof_eina_array) ERR("Unknow Eina_Array size ! Got %i, expected %i !\n" Thanks, Andy On Thu, 16 Nov 2017 at 12:50 Andrew Williams

Re: [E-devel] Eina_Array step confusion

2017-11-16 Thread Andrew Williams
Hi, Yeah, see my follow up, I got the wrong end of the stick so I will go fix the docs instead. Andy On Thu, 16 Nov 2017 at 12:40 Jérémy Zurcher wrote: > Hello, > > On Thursday 16 November 2017 11:00, Andrew Williams wrote : > > Hi, > > > > Are there any objections to me: >

Re: [E-devel] Eina_Array step confusion

2017-11-16 Thread Jérémy Zurcher
Hello, On Thursday 16 November 2017 11:00, Andrew Williams wrote : > Hi, > > Are there any objections to me: > > 1) changing the parameter name on array creation to "size" from "step" this is not the size of the array that is set here, but the # of array elements used to automatically grow or

Re: [E-devel] Eina_Array step confusion

2017-11-16 Thread Andrew Williams
Wow, turns out this was a big misunderstanding, the docs for "step_set" were confusing and I got the wrong end of the stick! Instead of the elaborate plan above I will change the "step" parameter to "grow_step" in init and in step_set and write some meaningful docs. With that the meaning should

Re: [E-devel] Eina_str split/join

2017-11-16 Thread Andrew Williams
Hi, In addition to the above if 2) is the desired approach would there be any opposition to changing eina_str_join and eina_str_join_static (and potentially eina_str_join_len even) to be variadic? Thanks, Andy On Thu, 16 Nov 2017 at 10:56 Andrew Williams wrote: > Hi. > >

Re: [E-devel] Eina_Array step confusion

2017-11-16 Thread Andrew Williams
Hi, Are there any objections to me: 1) changing the parameter name on array creation to "size" from "step" 2) adding eina_array_size_set which additionally does not take a sizeof param 3) deprecate the eina_array_step_set as it's semantics are strange (as per previous email). Thanks. Andy On

[E-devel] Eina_str split/join

2017-11-16 Thread Andrew Williams
Hi. Looking at eina_str and I see handy split and join methods. Split returns an array but join accepts only two strings to join. This feels unbalanced and I wonder what people feel about this. Most libs seem to balance it by passing an array to join(). Looking through efl it seems that neither