Re: [E-devel] E SVN: raster trunk/efl/src/lib/ecore_x

2013-01-29 Thread Cedric BAIL
On Tue, Jan 29, 2013 at 5:24 PM, Enlightenment SVN
 wrote:
> Log:
> add @since.
>
>
>
> Author:   raster
> Date: 2013-01-29 00:24:21 -0800 (Tue, 29 Jan 2013)
> New Revision: 83419
> Trac: http://trac.enlightenment.org/e/changeset/83419
>
> Modified:
>   trunk/efl/src/lib/ecore_x/Ecore_X.h
>
> Modified: trunk/efl/src/lib/ecore_x/Ecore_X.h
> ===
> --- trunk/efl/src/lib/ecore_x/Ecore_X.h 2013-01-29 08:23:40 UTC (rev 83418)
> +++ trunk/efl/src/lib/ecore_x/Ecore_X.h 2013-01-29 08:24:21 UTC (rev 83419)
> @@ -559,7 +559,7 @@
> Ecore_X_Window win;
> Ecore_X_Window event_win;
> Ecore_X_Time   time;
> -   Eina_Bool  send_event : 1;
> +   Eina_Bool  send_event : 1; /**< @since 1.8 */
>  };
>
>  struct _Ecore_X_Event_Window_Show

I am not sure that ': 1" is safe in a public API. What happen if we
add another Eina_Bool : 1 after that one later on, wouldn't that break
ABI ?
--
Cedric BAIL

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: raster trunk/e/src/bin

2013-01-29 Thread Cedric BAIL
On Tue, Jan 29, 2013 at 5:25 PM, Enlightenment SVN
 wrote:
> Log:
> fix window unmap event handling with synthetic unmaps - only really an
>   issue during manageing (startup) of a border - race condition. may
>   misee hides. this fixes it but needs efl 1.8. :/

Isn't trunk only for 1.8 and branch for 1.7 anyway ?

> Author:   raster
> Date: 2013-01-29 00:25:24 -0800 (Tue, 29 Jan 2013)
> New Revision: 83420
> Trac: http://trac.enlightenment.org/e/changeset/83420
>
> Modified:
>   trunk/e/src/bin/e_border.c
>
> Modified: trunk/e/src/bin/e_border.c
> ===
> --- trunk/e/src/bin/e_border.c  2013-01-29 08:24:21 UTC (rev 83419)
> +++ trunk/e/src/bin/e_border.c  2013-01-29 08:25:24 UTC (rev 83420)
> @@ -5285,14 +5285,29 @@
>   int ev_type __UNUSED__,
>   void *ev)
>  {
> -   E_Border *bd;
> +   E_Border *bd = NULL;
> Ecore_X_Event_Window_Hide *e;
>
> e = ev;
> -//   printf("HIDE: %x, event %x\n", e->win, e->event_win);
> +//   printf("HIDE: %x, event %x send: %i\n", e->win, e->event_win, 
> e->send_event);
>  // not interested in hide events from windows other than the window in 
> question
> -   if (e->win != e->event_win) return ECORE_CALLBACK_PASS_ON;
> -   bd = e_border_find_by_client_window(e->win);
> +   if (e->win != e->event_win)
> + {
> +#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
> +bd = e_border_find_by_client_window(e->win);
> +if (!bd) return ECORE_CALLBACK_PASS_ON;
> +if (!e->send_event) return ECORE_CALLBACK_PASS_ON;
> +else
> +  {
> + if (!((bd->zone) &&
> +   (bd->zone->container->manager->root == e->event_win)))
> +   return ECORE_CALLBACK_PASS_ON;
> +  }
> +#else
> +return ECORE_CALLBACK_PASS_ON;
> +#endif
> + }
> +   if (!bd) bd = e_border_find_by_client_window(e->win);
>  //   printf("  bd = %p\n", bd);
> if (!bd) return ECORE_CALLBACK_PASS_ON;
>  //   printf("  bd->ignore_first_unmap = %i\n", bd->ignore_first_unmap);
>
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>



--
Cedric BAIL

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: raster trunk/e/src/bin

2013-01-29 Thread Michael Blumenkrantz
no

On Tue, Jan 29, 2013 at 8:38 AM, Cedric BAIL  wrote:

> On Tue, Jan 29, 2013 at 5:25 PM, Enlightenment SVN
>  wrote:
> > Log:
> > fix window unmap event handling with synthetic unmaps - only really an
> >   issue during manageing (startup) of a border - race condition. may
> >   misee hides. this fixes it but needs efl 1.8. :/
>
> Isn't trunk only for 1.8 and branch for 1.7 anyway ?
>
> > Author:   raster
> > Date: 2013-01-29 00:25:24 -0800 (Tue, 29 Jan 2013)
> > New Revision: 83420
> > Trac: http://trac.enlightenment.org/e/changeset/83420
> >
> > Modified:
> >   trunk/e/src/bin/e_border.c
> >
> > Modified: trunk/e/src/bin/e_border.c
> > ===
> > --- trunk/e/src/bin/e_border.c  2013-01-29 08:24:21 UTC (rev 83419)
> > +++ trunk/e/src/bin/e_border.c  2013-01-29 08:25:24 UTC (rev 83420)
> > @@ -5285,14 +5285,29 @@
> >   int ev_type __UNUSED__,
> >   void *ev)
> >  {
> > -   E_Border *bd;
> > +   E_Border *bd = NULL;
> > Ecore_X_Event_Window_Hide *e;
> >
> > e = ev;
> > -//   printf("HIDE: %x, event %x\n", e->win, e->event_win);
> > +//   printf("HIDE: %x, event %x send: %i\n", e->win, e->event_win,
> e->send_event);
> >  // not interested in hide events from windows other than the window in
> question
> > -   if (e->win != e->event_win) return ECORE_CALLBACK_PASS_ON;
> > -   bd = e_border_find_by_client_window(e->win);
> > +   if (e->win != e->event_win)
> > + {
> > +#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
> > +bd = e_border_find_by_client_window(e->win);
> > +if (!bd) return ECORE_CALLBACK_PASS_ON;
> > +if (!e->send_event) return ECORE_CALLBACK_PASS_ON;
> > +else
> > +  {
> > + if (!((bd->zone) &&
> > +   (bd->zone->container->manager->root ==
> e->event_win)))
> > +   return ECORE_CALLBACK_PASS_ON;
> > +  }
> > +#else
> > +return ECORE_CALLBACK_PASS_ON;
> > +#endif
> > + }
> > +   if (!bd) bd = e_border_find_by_client_window(e->win);
> >  //   printf("  bd = %p\n", bd);
> > if (!bd) return ECORE_CALLBACK_PASS_ON;
> >  //   printf("  bd->ignore_first_unmap = %i\n", bd->ignore_first_unmap);
> >
> >
> >
> --
> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > MVPs and experts. ON SALE this month only -- learn more at:
> > http://p.sf.net/sfu/learnnow-d2d
> > ___
> > enlightenment-svn mailing list
> > enlightenment-...@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
> >
>
>
>
> --
> Cedric BAIL
>
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: raster trunk/efl/src/lib/ecore_x

2013-01-29 Thread The Rasterman
On Tue, 29 Jan 2013 17:37:10 +0900 Cedric BAIL  said:

> On Tue, Jan 29, 2013 at 5:24 PM, Enlightenment SVN
>  wrote:
> > Log:
> > add @since.
> >
> >
> >
> > Author:   raster
> > Date: 2013-01-29 00:24:21 -0800 (Tue, 29 Jan 2013)
> > New Revision: 83419
> > Trac: http://trac.enlightenment.org/e/changeset/83419
> >
> > Modified:
> >   trunk/efl/src/lib/ecore_x/Ecore_X.h
> >
> > Modified: trunk/efl/src/lib/ecore_x/Ecore_X.h
> > ===
> > --- trunk/efl/src/lib/ecore_x/Ecore_X.h 2013-01-29 08:23:40 UTC (rev 83418)
> > +++ trunk/efl/src/lib/ecore_x/Ecore_X.h 2013-01-29 08:24:21 UTC (rev 83419)
> > @@ -559,7 +559,7 @@
> > Ecore_X_Window win;
> > Ecore_X_Window event_win;
> > Ecore_X_Time   time;
> > -   Eina_Bool  send_event : 1;
> > +   Eina_Bool  send_event : 1; /**< @since 1.8 */
> >  };
> >
> >  struct _Ecore_X_Event_Window_Show
> 
> I am not sure that ': 1" is safe in a public API. What happen if we
> add another Eina_Bool : 1 after that one later on, wouldn't that break
> ABI ?

no. :)

-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Phabricator test environment

2013-01-29 Thread The Rasterman
On Tue, 29 Jan 2013 16:16:33 +0900 Cedric BAIL  said:

> On Tue, Jan 29, 2013 at 3:52 PM, Jérémy Zurcher  wrote:
> > On Monday 28 January 2013  12:44, Alex-P. Natsios wrote :
> >> Now that i opened it again it opened relatively faster but in an
> >> editor thingy last time i tried (yesterday) it took quite a time for
> >> most of the Code Browser interface.
> >> Commit history listing, opening a file, navigating in code.. all took
> >> a few seconds and were barely rendering line by line here.
> >>
> >> On Mon, Jan 28, 2013 at 12:24 PM, Martin Jansa 
> >> wrote:
> >> > On Mon, Jan 28, 2013 at 03:04:35AM +0100, Cedric BAIL wrote:
> >> >> On Mon, Jan 28, 2013 at 1:18 AM, Alex-P. Natsios 
> >> >> wrote:
> >> >> > My register issue with the captcha has disappeared and i finally was
> >> >> > able to make an account.
> >> >
> >> > I still had to edit local source of registration form and replace
> >> > http:// with https:// in recaptcha URL.
> >> >
> >> >> > The UI is pretty nice but can be confusing , same goes for some
> >> >> > linguistic choices for most terms (as also stated by David Seikel and
> >> >> > Davide Andreoli).
> >> >> > As stated by Jérémy Zurcher in another thread the code browser is
> >> >> > REALLY slow (damn.. sorry for arguing with you .. haven't tested it..
> >> >> > its slower than acceptable O.o).
> >> >>
> >> >> Uh ? I am not sure we are testing the same website ! The code browser
> >> >> is infinitely faster than what we have now and seems to give almost
> >> >> instant access. Maybe it is due to some network lag ? Where are you
> >> >> and what do you mean by really slow ? How long does it take for you to
> >> >> navigate to master efl/src/lib/eina/eina_file.c ? It took me 18s from
> >> >> the "Browse Repositories" and I feel like the bottleneck is my ability
> >> >> to click the link quickly.
> >> >
> >> > Here it was also relatively quick.
> >> > 2 minutes to find "Browser Repositories" :)
> >> > and then 12s to naviage to efl/src/lib/eina/eina_file.c.
> >> >
> >> > Cheers,
> >> >
> >> > --
> >> > Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com
> >> >
> >>
> >>
> >>
> >> --
> >> Regards,
> >>
> >> Alex-P. Natsios
> >> (a.k.a Drakevr)
> >>
> >
> >
> > compare these 2.com, and navigate
> >
> > http://cgit.asynk.ch/e/tree/efl/src/lib/eina/eina_file.c
> > https://phab.enlightenment.org/diffusion/EFL/browse/master/src/lib/eina/eina_file.c
> 
> It took me 15s to go to eina_file.c instead of 18s.
> 
> > speed, signal/noise ratio, syntax coloration, diff options, easy access to
> > branches ... only git blame output is missing from cgit.
> 
> syntax coloration is indeed something clearly missing from phab.
> 
> > cgit.enlightenment.org is a really cheap and nice complementary tool to
> > have, usable by non-registred users too.
> 
> Is it worth maintaining it ? That's our question, at the moment, it's
> a 3s and syntax coloration win from my point of view. Is that enough ?

i say that its not worth it imho... one reason for choosing phab is that fact
that we can sanely maintain it if need be... it's in php. most devs know php,
and if they don't.. they are not writing c :)

-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: raster trunk/e/src/bin

2013-01-29 Thread The Rasterman
On Tue, 29 Jan 2013 17:38:24 +0900 Cedric BAIL  said:

> On Tue, Jan 29, 2013 at 5:25 PM, Enlightenment SVN
>  wrote:
> > Log:
> > fix window unmap event handling with synthetic unmaps - only really an
> >   issue during manageing (startup) of a border - race condition. may
> >   misee hides. this fixes it but needs efl 1.8. :/
> 
> Isn't trunk only for 1.8 and branch for 1.7 anyway ?

meh. it means "dont try backport this as it needs efl 1.8 too"

> > Author:   raster
> > Date: 2013-01-29 00:25:24 -0800 (Tue, 29 Jan 2013)
> > New Revision: 83420
> > Trac: http://trac.enlightenment.org/e/changeset/83420
> >
> > Modified:
> >   trunk/e/src/bin/e_border.c
> >
> > Modified: trunk/e/src/bin/e_border.c
> > ===
> > --- trunk/e/src/bin/e_border.c  2013-01-29 08:24:21 UTC (rev 83419)
> > +++ trunk/e/src/bin/e_border.c  2013-01-29 08:25:24 UTC (rev 83420)
> > @@ -5285,14 +5285,29 @@
> >   int ev_type __UNUSED__,
> >   void *ev)
> >  {
> > -   E_Border *bd;
> > +   E_Border *bd = NULL;
> > Ecore_X_Event_Window_Hide *e;
> >
> > e = ev;
> > -//   printf("HIDE: %x, event %x\n", e->win, e->event_win);
> > +//   printf("HIDE: %x, event %x send: %i\n", e->win, e->event_win,
> > e->send_event); // not interested in hide events from windows other than
> > the window in question
> > -   if (e->win != e->event_win) return ECORE_CALLBACK_PASS_ON;
> > -   bd = e_border_find_by_client_window(e->win);
> > +   if (e->win != e->event_win)
> > + {
> > +#if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8)
> > +bd = e_border_find_by_client_window(e->win);
> > +if (!bd) return ECORE_CALLBACK_PASS_ON;
> > +if (!e->send_event) return ECORE_CALLBACK_PASS_ON;
> > +else
> > +  {
> > + if (!((bd->zone) &&
> > +   (bd->zone->container->manager->root == e->event_win)))
> > +   return ECORE_CALLBACK_PASS_ON;
> > +  }
> > +#else
> > +return ECORE_CALLBACK_PASS_ON;
> > +#endif
> > + }
> > +   if (!bd) bd = e_border_find_by_client_window(e->win);
> >  //   printf("  bd = %p\n", bd);
> > if (!bd) return ECORE_CALLBACK_PASS_ON;
> >  //   printf("  bd->ignore_first_unmap = %i\n", bd->ignore_first_unmap);
> >
> >
> > --
> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > MVPs and experts. ON SALE this month only -- learn more at:
> > http://p.sf.net/sfu/learnnow-d2d
> > ___
> > enlightenment-svn mailing list
> > enlightenment-...@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
> >
> 
> 
> 
> --
> Cedric BAIL
> 
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> 


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Naviframe looses current pushed Item when creating an inner window

2013-01-29 Thread thomasg
Whenever I see what used to be a fine plain text e-mail, being
_converted_ by some terrible mail client to HTML I am frightened, too.
:P


On Tue, Jan 29, 2013 at 8:46 AM, ChunEon Park  wrote:
>
> Whenever i see the "naviframe" in the mailing, im frightened.
>
> 
>
> -Regards, Hermet-
> -Original Message-
> From: "Michael Blumenkrantz"
> To: "Enlightenment developer 
> list";
> Cc:
> Sent: 2013-01-29 (화) 16:36:49
> Subject: Re: [E-devel] Naviframe looses current pushed Item when creating an 
> inner window
>
> I disagree. IRC is far more fun than a mailing list.
>
> On Tue, Jan 29, 2013 at 7:34 AM, Jeff Hoogland 
> @linux.com>wrote:
>
> > Not nearly as much fun Mike.
> >
> >
> > On Tue, Jan 29, 2013 at 1:31 AM, Michael Blumenkrantz <
> > michael.blumenkra...@gmail.com> wrote:
> >
> > > this is why we have irc: so you can avoid the embarrassment of 
> writing
> > > mails like this one
> > >
> > > On Tue, Jan 29, 2013 at 6:48 AM, Jeff Hoogland 
> @linux.com
> > > >wrote:
> > >
> > > > Ignore my previous email. I'm really bad at this whole 
> programming
> > thing.
> > > >
> > > >
> > > > On Tue, Jan 29, 2013 at 12:30 AM, Jeff Hoogland <
> > jeffhoogl...@linux.com
> > > > >wrote:
> > > >
> > > > > I am running into an issue when creating an InnerWindow 
> inside of a
> > > > window
> > > > > displaying a naviframe instance. The trouble is that once 
> I
> > hide/delete
> > > > the
> > > > > inner window I've displayed the naviframe instance 
> underneath looses
> > > the
> > > > > item it was displaying.
> > > > >
> > > > > Is this intended is there a way to stop it from 
> happening? I suppose
> > I
> > > > can
> > > > > manually push the page I want displayed after I am done 
> with my inner
> > > > > window - but this seems unnecessary.
> > > > >
> > > > > Here is a small code example that illustrates the issue 
> ->
> > > > > 
> https://github.com/JeffHoogland/esudo/blob/master/example.py
> > > > >
> > > > > The esudo instance is simply an inner window.
> > > > >
> > > > > --
> > > > > ~Jeff Hoogland //jeffhoogland.com/>
> > > > > Thoughts on Technology 
> //jeffhoogland.blogspot.com/>, Tech
> > Blog
> > > > > Bodhi Linux //bodhilinux.com/>, 
> Enlightenment for your Desktop
> > > > >
> > > >
> > > >
> > > >
> > > > --
> > > > ~Jeff Hoogland //jeffhoogland.com/>
> > > > Thoughts on Technology 
> //jeffhoogland.blogspot.com/>, Tech Blog
> > > > Bodhi Linux //bodhilinux.com/>, Enlightenment 
> for your Desktop
> > > >
> > > >
> > >
> > 
> --
> > > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, 
> HTML5, CSS,
> > > > MVC, Windows 8 Apps, JavaScript and much more. Keep your 
> skills current
> > > > with LearnDevNow - 3,200 step-by-step video tutorials by 
> Microsoft
> > > > MVPs and experts. ON SALE this month only -- learn more at:
> > > > http://p.sf.net/sfu/learnnow-d2d
> > > > ___
> > > > enlightenment-devel mailing list
> > > > enlightenment-devel@lists.sourceforge.net
> > > > 
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > > >
> > >
> > >
> > 
> --
> > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills 
> current
> > > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > > MVPs and experts. ON SALE this month only -- learn more at:
> > > http://p.sf.net/sfu/learnnow-d2d
> > > ___
> > > enlightenment-devel mailing list
> > > enlightenment-devel@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >
> >
> >
> >
> > --
> > ~Jeff Hoogland //jeffhoogland.com/>
> > Thoughts on Technology //jeffhoogland.blogspot.com/>, 
> Tech Blog
> > Bodhi Linux //bodhilinux.com/>, Enlightenment for your 
> Desktop
> >
> > 
> --
> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > MVPs and experts. ON SALE this month only -- learn more at:
> > http://p.sf.net/sfu/learnnow-d2d
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, Jav

Re: [E-devel] Naviframe looses current pushed Item when creating an inner window

2013-01-29 Thread Stefan Schmidt
Hello.

On 29/01/13 09:01, thomasg wrote:
> Whenever I see what used to be a fine plain text e-mail, being
> _converted_ by some terrible mail client to HTML I am frightened, too.
> :P

Can anyone guess my feelings when I see mailthreads with some line or 
even just one word at the top and the rest of the thread fully quoted 
below? :)

Mailing list etiquette is nothing EFL as a project has. :)

regards
Stefan Schmidt


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Naviframe looses current pushed Item when creating an inner window

2013-01-29 Thread The Rasterman
On Tue, 29 Jan 2013 09:17:01 + Stefan Schmidt  said:

smarf.

> Hello.
> 
> On 29/01/13 09:01, thomasg wrote:
> > Whenever I see what used to be a fine plain text e-mail, being
> > _converted_ by some terrible mail client to HTML I am frightened, too.
> > :P
> 
> Can anyone guess my feelings when I see mailthreads with some line or 
> even just one word at the top and the rest of the thread fully quoted 
> below? :)
> 
> Mailing list etiquette is nothing EFL as a project has. :)
> 
> regards
> Stefan Schmidt
> 
> 
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> 


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Naviframe looses current pushed Item when creating an inner window

2013-01-29 Thread Michael Blumenkrantz
++

On Tue, Jan 29, 2013 at 9:24 AM, Carsten Haitzler wrote:

> On Tue, 29 Jan 2013 09:17:01 + Stefan Schmidt 
> said:
>
> smarf.
>
> > Hello.
> >
> > On 29/01/13 09:01, thomasg wrote:
> > > Whenever I see what used to be a fine plain text e-mail, being
> > > _converted_ by some terrible mail client to HTML I am frightened, too.
> > > :P
> >
> > Can anyone guess my feelings when I see mailthreads with some line or
> > even just one word at the top and the rest of the thread fully quoted
> > below? :)
> >
> > Mailing list etiquette is nothing EFL as a project has. :)
> >
> > regards
> > Stefan Schmidt
> >
> >
> >
> --
> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > MVPs and experts. ON SALE this month only -- learn more at:
> > http://p.sf.net/sfu/learnnow-d2d
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
>
>
> --
> - Codito, ergo sum - "I code, therefore I am" --
> The Rasterman (Carsten Haitzler)ras...@rasterman.com
>
>
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Phabricator test environment

2013-01-29 Thread Tom Hacohen
On 29/01/13 07:16, Cedric BAIL wrote:
> On Tue, Jan 29, 2013 at 3:52 PM, Jérémy Zurcher  wrote:
>> On Monday 28 January 2013  12:44, Alex-P. Natsios wrote :
>>> Now that i opened it again it opened relatively faster but in an
>>> editor thingy last time i tried (yesterday) it took quite a time for
>>> most of the Code Browser interface.
>>> Commit history listing, opening a file, navigating in code.. all took
>>> a few seconds and were barely rendering line by line here.
>>>
>>> On Mon, Jan 28, 2013 at 12:24 PM, Martin Jansa  
>>> wrote:
 On Mon, Jan 28, 2013 at 03:04:35AM +0100, Cedric BAIL wrote:
> On Mon, Jan 28, 2013 at 1:18 AM, Alex-P. Natsios  
> wrote:
>> My register issue with the captcha has disappeared and i finally was
>> able to make an account.

 I still had to edit local source of registration form and replace
 http:// with https:// in recaptcha URL.

>> The UI is pretty nice but can be confusing , same goes for some
>> linguistic choices for most terms (as also stated by David Seikel and
>> Davide Andreoli).
>> As stated by Jérémy Zurcher in another thread the code browser is
>> REALLY slow (damn.. sorry for arguing with you .. haven't tested it..
>> its slower than acceptable O.o).
>
> Uh ? I am not sure we are testing the same website ! The code browser
> is infinitely faster than what we have now and seems to give almost
> instant access. Maybe it is due to some network lag ? Where are you
> and what do you mean by really slow ? How long does it take for you to
> navigate to master efl/src/lib/eina/eina_file.c ? It took me 18s from
> the "Browse Repositories" and I feel like the bottleneck is my ability
> to click the link quickly.

 Here it was also relatively quick.
 2 minutes to find "Browser Repositories" :)
 and then 12s to naviage to efl/src/lib/eina/eina_file.c.

 Cheers,

 --
 Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com

>>>
>>>
>>>
>>> --
>>> Regards,
>>>
>>> Alex-P. Natsios
>>> (a.k.a Drakevr)
>>>
>>
>>
>> compare these 2.com, and navigate
>>
>> http://cgit.asynk.ch/e/tree/efl/src/lib/eina/eina_file.c
>> https://phab.enlightenment.org/diffusion/EFL/browse/master/src/lib/eina/eina_file.c
>
> It took me 15s to go to eina_file.c instead of 18s.
>
>> speed, signal/noise ratio, syntax coloration, diff options, easy access to 
>> branches ...
>> only git blame output is missing from cgit.
>
> syntax coloration is indeed something clearly missing from phab.
>
>> cgit.enlightenment.org is a really cheap and nice complementary tool to have,
>> usable by non-registred users too.
>
> Is it worth maintaining it ? That's our question, at the moment, it's
> a 3s and syntax coloration win from my point of view. Is that enough ?

Yeah, we should fix syntax highlighting, phabricator should have that as 
well, dunno what's wrong though.

--
Tom.



--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Naviframe looses current pushed Item when creating an inner window

2013-01-29 Thread ChunEon Park
now is it better? :) 
 

-Regards, Hermet- 
-Original Message-
From: "thomasg" 
To: "Enlightenment developer list"; 
Cc: 
Sent: 2013-01-29 (화) 18:01:41
Subject: Re: [E-devel] Naviframe looses current pushed Item when creating an 
inner window

Whenever I see what used to be a fine plain text e-mail, being
_converted_ by some terrible mail client to HTML I am frightened, too.
:P


On Tue, Jan 29, 2013 at 8:46 AM, ChunEon Park @naver.com> wrote:
>
> Whenever i see the "naviframe" in the mailing, im frightened.
>
> 
>
> -Regards, Hermet-
> -Original Message-
> From: "Michael Blumenkrantz"
> To: "Enlightenment developer list";
> Cc:
> Sent: 2013-01-29 (화) 16:36:49
> Subject: Re: [E-devel] Naviframe looses current pushed Item when creating an 
> inner window
>
> I disagree. IRC is far more fun than a mailing list.
>
> On Tue, Jan 29, 2013 at 7:34 AM, Jeff Hoogland @linux.com>wrote:
>
> > Not nearly as much fun Mike.
> >
> >
> > On Tue, Jan 29, 2013 at 1:31 AM, Michael Blumenkrantz <
> > michael.blumenkra...@gmail.com> wrote:
> >
> > > this is why we have irc: so you can avoid the embarrassment of writing
> > > mails like this one
> > >
> > > On Tue, Jan 29, 2013 at 6:48 AM, Jeff Hoogland @linux.com
> > > >wrote:
> > >
> > > > Ignore my previous email. I'm really bad at this whole programming
> > thing.
> > > >
> > > >
> > > > On Tue, Jan 29, 2013 at 12:30 AM, Jeff Hoogland <
> > jeffhoogl...@linux.com
> > > > >wrote:
> > > >
> > > > > I am running into an issue when creating an InnerWindow inside of a
> > > > window
> > > > > displaying a naviframe instance. The trouble is that once I
> > hide/delete
> > > > the
> > > > > inner window I've displayed the naviframe instance underneath looses
> > > the
> > > > > item it was displaying.
> > > > >
> > > > > Is this intended is there a way to stop it from happening? I suppose
> > I
> > > > can
> > > > > manually push the page I want displayed after I am done with my inner
> > > > > window - but this seems unnecessary.
> > > > >
> > > > > Here is a small code example that illustrates the issue ->
> > > > > https://github.com/JeffHoogland/esudo/blob/master/example.py
> > > > >
> > > > > The esudo instance is simply an inner window.
> > > > >
> > > > > --
> > > > > ~Jeff Hoogland //jeffhoogland.com/>
> > > > > Thoughts on Technology //jeffhoogland.blogspot.com/>, Tech
> > Blog
> > > > > Bodhi Linux //bodhilinux.com/>, Enlightenment for your Desktop
> > > > >
> > > >
> > > >
> > > >
> > > > --
> > > > ~Jeff Hoogland //jeffhoogland.com/>
> > > > Thoughts on Technology //jeffhoogland.blogspot.com/>, Tech Blog
> > > > Bodhi Linux //bodhilinux.com/>, Enlightenment for your Desktop
> > > >
> > > >
> > >
> > --
> > > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > > > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > > > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > > > MVPs and experts. ON SALE this month only -- learn more at:
> > > > http://p.sf.net/sfu/learnnow-d2d
> > > > ___
> > > > enlightenment-devel mailing list
> > > > enlightenment-devel@lists.sourceforge.net
> > > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > > >
> > >
> > >
> > --
> > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > > MVPs and experts. ON SALE this month only -- learn more at:
> > > http://p.sf.net/sfu/learnnow-d2d
> > > ___
> > > enlightenment-devel mailing list
> > > enlightenment-devel@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >
> >
> >
> >
> > --
> > ~Jeff Hoogland //jeffhoogland.com/>
> > Thoughts on Technology //jeffhoogland.blogspot.com/>, Tech Blog
> > Bodhi Linux //bodhilinux.com/>, Enlightenment for your Desktop
> >
> > --
> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > MVPs and experts. ON SALE this month only -- learn more at:
> > http://p.sf.net/sfu/learnnow-d2d
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> --
> Master Visual Studio, SharePoint, SQL, A

[E-devel] Futur access to e5 ressources

2013-01-29 Thread Bertrand Jacquin
Hi,

On e5 you (devs) will get access to some VMs using SSH on multiple
resources :

 - SVN (for the moment)
 - GIT
 - buildbots (linux, bsd, osx ...)
 - sandboxes to play with, build your own stuff
 - futur needs ...

At the moment we have different solution to let you access to all
theses VMs :

 - Using multiple TCP port, one for each VM.

 - Forcing client to use a special SSH client configuration option in
   ~/.ssh/config so you will be bumped by the main e5 router / load
 balancer to the right destination automatically.

 Host *.enlightenment.org
   ForwardAgent yes

I am more enthusiastic to use the second solution as it avoid to use
ugly URL and the second will need only one modification at the client
side.

Thanks for your reply and for what you see the more usable for every
day.

-- 
Beber


pgphLoDsZdmwV.pgp
Description: PGP signature
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Sound themes is there a way?

2013-01-29 Thread oeai
>
>
> On 27/01/13 08:52, Cedric BAIL wrote:
> On Mon, 28 Jan 2013 18:27:15 + Daniel Willmann
> said:

THankj00 4 d01n9 that
it's nice to know that something is happening

so here's a part of conversation in irc channel i hope they will not sue me as 
that was a public channel
this is what people actually wants to do with theme

---
12:34:14 - zmike: good thing e17 has already been released and we can focus on 
things which could support sound themes
12:34:15 - zmike: like e18
12:34:26 - raster: :)
12:34:31 - raster: well actually
12:34:41 - raster: we could slide them in alongside an actual theme
12:34:43 - raster: in edje files
12:34:52 - raster: based on signals/programs
12:35:07 - zmike: I think I will get some recording equipment from IT here and 
have the germans create a sound theme for us
12:35:09 - raster: so we can make your titllebar go "yehw' every time u 
click to move a window
12:35:22 - zmike: that's actually almost exactly what I was thinking
12:35:27 - cedric: :-D
12:35:33 - cedric: agreed
12:35:34 - raster: great minds...
12:35:38 - cedric: sounds like the best plan ever
12:35:39 - robert_kr: don't forget the "disable all sounds" button :)
12:35:42 - raster: even have it do random sounds
12:35:42 - cedric: nothing can go wrong
12:35:45 - raster: like "yeaaah"
12:35:52 - raster: "yipee"
12:35:55 - raster: "yay"
12:36:01 - zmike: switching desktops would be a great place for it
12:36:10 - zmike: we could have it say "switching to desktop #X"
12:36:16 - zmike: for all except some random number
12:36:18 - raster: and if u do the audio right u can set the middle "" 
vowel ping-pong loop
12:36:26 - raster: and u can apply a pitch envelope
12:36:38 - raster: so the faster you move your window the faster it plays back
12:36:38 - zmike: and then for switching to that desktop it can say NO, THAT'S 
MY SPECIAL DESKTOP!
12:36:39 - raster: ie
12:36:40 - raster: higher pitch
12:37:04 - zmike: that sounds like a tremendous idea
12:37:31 - cedric: raster: i think you broke the entry with your split grid 
patch
12:37:50 - raster: thats quite possible
12:38:04 - raster: i need to wor on this g2d thing
12:38:09 - raster: enouhg of terminology
12:42:37 - oeai: don't forget the pew pew pew and baaang
12:50:36 - oeai: well i wrote to dev team, expanding your idea - you can get 
the cpu load activity of every program and create the sinusoid from load peaks 
while this program is loading
12:52:57 - oeai: but really for me it would be nice to have an option of fade 
ins/outs and volume control for regular events
12:55:32 - oeai: so the sounds wouldnt just stop or crossing each other but 
earlier sounds could just fade out when new sounds fade in and if no other 
sounds are working then no fade in\out is using
12:57:28 - oeai: and the ability of using alsa or pulseaudio for example to 
send to different devices, but mostly - just to not use pulse when my system is 
using alsa
12:58:09 - oeai: well i'm on dev list so if you gonna do it ...
12:58:57 - robert_kr: +1 for lightsaber sound for starting evrything, typing 
and then launching an app
13:05:03 - oeai: well this is why i would like to have more than one sound for 
eny event - so you can have a combo and rar in the end ; )


and as for me - i've made already theme for freedesktop/gonme/kde
and i know other people that are just stuck not knowing how to import it into 
any os, so i've made some hacky-wacky installer that symlinks some needed parts
and for e1~ i'd like to have an ability of simple import of sounds out of 
kde/gtk theme probably by simlinking or converting.
BUT the better things should be done without knowing how others done this
so you can create your own better way of
the one of the problems that sound can be produced simultaneously for a lot of 
events at 1 second and this can produce an error - so you got to remmeber it 
when doing things - i thought that only first and last 3 sounds per second can 
be produced - so it wasn't hanging up the system
also you have to remember the hardware issue how much sounds at a time can run 
good bad and normal sound card and probably change this value too.

-- 
OEAI


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Futur access to e5 ressources

2013-01-29 Thread Cedric BAIL
Hello,

On Tue, Jan 29, 2013 at 7:15 PM, Bertrand Jacquin  wrote:
> On e5 you (devs) will get access to some VMs using SSH on multiple
> resources :
>
>  - SVN (for the moment)
>  - GIT
>  - buildbots (linux, bsd, osx ...)
>  - sandboxes to play with, build your own stuff
>  - futur needs ...
>
> At the moment we have different solution to let you access to all
> theses VMs :
>
>  - Using multiple TCP port, one for each VM.
>
>  - Forcing client to use a special SSH client configuration option in
>~/.ssh/config so you will be bumped by the main e5 router / load
>  balancer to the right destination automatically.
>
>  Host *.enlightenment.org
>ForwardAgent yes
>
> I am more enthusiastic to use the second solution as it avoid to use
> ugly URL and the second will need only one modification at the client
> side.
>
> Thanks for your reply and for what you see the more usable for every
> day.

The second one sounds much more fun and I am bad at remembering number anyway.
--
Cedric BAIL

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Futur access to e5 ressources

2013-01-29 Thread Tom Hacohen
On 29/01/13 10:15, Bertrand Jacquin wrote:
> Hi,
>
> On e5 you (devs) will get access to some VMs using SSH on multiple
> resources :
>
>   - SVN (for the moment)
>   - GIT
>   - buildbots (linux, bsd, osx ...)
>   - sandboxes to play with, build your own stuff
>   - futur needs ...
>
> At the moment we have different solution to let you access to all
> theses VMs :
>
>   - Using multiple TCP port, one for each VM.
>
>   - Forcing client to use a special SSH client configuration option in
> ~/.ssh/config so you will be bumped by the main e5 router / load
>balancer to the right destination automatically.
>
>Host *.enlightenment.org
>  ForwardAgent yes
>
> I am more enthusiastic to use the second solution as it avoid to use
> ugly URL and the second will need only one modification at the client
> side.
>
> Thanks for your reply and for what you see the more usable for every
> day.
>

Wow Beber, that's just misleading and one sided it's amazing.

First of all, you can set the specific port per machine in the ssh 
config, so it's really the same when it comes to convenience in that regard.
Important to mention is that when you'd want to connect to a specific 
host with agent forwarding you'd have to do:
"ssh t...@e5v.enlightenment.org ssh tasn@e5-phabricator1"
Yes, you'll have to remember internal hostnames and type everything 
twice. This obviously won't work nicely with scp, rsync and every other 
thing you might need when you interact with those servers.

Using ports on the other hand means you *don't have to* set the config 
when using such services, and more importantly, ForwardAgent is 
insecure. It essentially means whoever owns e.org owns everyone's 
access, which is *bad*. I don't want e.org to be able to use my 
credentials to log in to my personal server. The implications are just 
awful.

Also, it's not true that the second modification only requires one 
modification at the client side. The second modification also requires 
syncing access from all the servers to the main one, which is especially 
annoying in the case of gitolite. Also, this means giving everyone 
access to e5v, another thing we don't want.

The second approach is flawed in so many ways it's just amazing. We 
already talked about it in length, and I'm very disappointed to see you 
just decided to send this one sided mail.

--
Tom.

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Futur access to e5 ressources

2013-01-29 Thread Daniel Willmann
On 29/01/13 10:32, Cedric BAIL wrote:
> Hello,
> 
> On Tue, Jan 29, 2013 at 7:15 PM, Bertrand Jacquin 
> wrote:
>> At the moment we have different solution to let you access to all
>> theses VMs :
>>
>>  - Using multiple TCP port, one for each VM.
>>
>>  - Forcing client to use a special SSH client configuration option in
>>~/.ssh/config so you will be bumped by the main e5 router / load
>>  balancer to the right destination automatically.
>>
>>  Host *.enlightenment.org
>>ForwardAgent yes
>>
>> I am more enthusiastic to use the second solution as it avoid to use
>> ugly URL and the second will need only one modification at the client
>> side.
>>
>> Thanks for your reply and for what you see the more usable for every
>> day.
> 
> The second one sounds much more fun and I am bad at remembering number
> anyway.

I'm more in favour of having multiple IP addresses (or different ports).

The problems I have with agent forwarding are described here:
http://www.unixwiz.net/techtips/ssh-agent-forwarding.html#sec

This means for me I would only want to enable agent forwarding to
machines where I would generally be comfortable storing my private key.


Regards,
Daniel

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Phabricator test environment

2013-01-29 Thread Eduardo Lima (Etrunko)
On Tue, Jan 29, 2013 at 6:49 AM, Carsten Haitzler  wrote:
> On Tue, 29 Jan 2013 16:16:33 +0900 Cedric BAIL  said:
>
>> On Tue, Jan 29, 2013 at 3:52 PM, Jérémy Zurcher  wrote:
>> > On Monday 28 January 2013  12:44, Alex-P. Natsios wrote :
>> >> Now that i opened it again it opened relatively faster but in an
>> >> editor thingy last time i tried (yesterday) it took quite a time for
>> >> most of the Code Browser interface.
>> >> Commit history listing, opening a file, navigating in code.. all took
>> >> a few seconds and were barely rendering line by line here.
>> >>
>> >> On Mon, Jan 28, 2013 at 12:24 PM, Martin Jansa 
>> >> wrote:
>> >> > On Mon, Jan 28, 2013 at 03:04:35AM +0100, Cedric BAIL wrote:
>> >> >> On Mon, Jan 28, 2013 at 1:18 AM, Alex-P. Natsios 
>> >> >> wrote:
>> >> >> > My register issue with the captcha has disappeared and i finally was
>> >> >> > able to make an account.
>> >> >
>> >> > I still had to edit local source of registration form and replace
>> >> > http:// with https:// in recaptcha URL.
>> >> >
>> >> >> > The UI is pretty nice but can be confusing , same goes for some
>> >> >> > linguistic choices for most terms (as also stated by David Seikel and
>> >> >> > Davide Andreoli).
>> >> >> > As stated by Jérémy Zurcher in another thread the code browser is
>> >> >> > REALLY slow (damn.. sorry for arguing with you .. haven't tested it..
>> >> >> > its slower than acceptable O.o).
>> >> >>
>> >> >> Uh ? I am not sure we are testing the same website ! The code browser
>> >> >> is infinitely faster than what we have now and seems to give almost
>> >> >> instant access. Maybe it is due to some network lag ? Where are you
>> >> >> and what do you mean by really slow ? How long does it take for you to
>> >> >> navigate to master efl/src/lib/eina/eina_file.c ? It took me 18s from
>> >> >> the "Browse Repositories" and I feel like the bottleneck is my ability
>> >> >> to click the link quickly.
>> >> >
>> >> > Here it was also relatively quick.
>> >> > 2 minutes to find "Browser Repositories" :)
>> >> > and then 12s to naviage to efl/src/lib/eina/eina_file.c.
>> >> >
>> >> > Cheers,
>> >> >
>> >> > --
>> >> > Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com
>> >> >
>> >>
>> >>
>> >>
>> >> --
>> >> Regards,
>> >>
>> >> Alex-P. Natsios
>> >> (a.k.a Drakevr)
>> >>
>> >
>> >
>> > compare these 2.com, and navigate
>> >
>> > http://cgit.asynk.ch/e/tree/efl/src/lib/eina/eina_file.c
>> > https://phab.enlightenment.org/diffusion/EFL/browse/master/src/lib/eina/eina_file.c
>>
>> It took me 15s to go to eina_file.c instead of 18s.
>>
>> > speed, signal/noise ratio, syntax coloration, diff options, easy access to
>> > branches ... only git blame output is missing from cgit.
>>
>> syntax coloration is indeed something clearly missing from phab.
>>
>> > cgit.enlightenment.org is a really cheap and nice complementary tool to
>> > have, usable by non-registred users too.
>>
>> Is it worth maintaining it ? That's our question, at the moment, it's
>> a 3s and syntax coloration win from my point of view. Is that enough ?
>
> i say that its not worth it imho... one reason for choosing phab is that fact
> that we can sanely maintain it if need be... it's in php. most devs know php,
> and if they don't.. they are not writing c :)


Wait, does it means that I know PHP!? It's like the Matrix "I know
kung-fu" then. \o/

>
> --
> - Codito, ergo sum - "I code, therefore I am" --
> The Rasterman (Carsten Haitzler)ras...@rasterman.com
>
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



-- 
Eduardo de Barros Lima ◤✠◢
ebl...@gmail.com

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Columned List Widget?

2013-01-29 Thread Eduardo Lima (Etrunko)
On Mon, Jan 28, 2013 at 11:18 PM, Cedric BAIL  wrote:
> On Tue, Jan 29, 2013 at 3:17 AM, Gustavo Sverzut Barbieri
>  wrote:
>> On Mon, Jan 28, 2013 at 8:20 AM, Jeff Hoogland  
>> wrote:
>>> David,
>>>
>>> I've used the elementary table class a good bit in my playing with code and
>>> I'm fairly certain it doesn't offer any easy sorting/list like features for
>>> it's rows. Do evas or edje offer this?
>>
>> As discomfitor said, no.
>>
>> As I said before, did you consider doing one with genlist and better
>> thought GUI?
>>
>> See this mockup, I did it in few minutes so it's not too elaborated.
>> If you ask discomfitor he would show a big tooltip with the package
>> information instead of a popup :-D
>>
>> http://i.imgur.com/UvYEtO0.png
>
> Cool ! That was on my todo list for Arch. Maybe something on top of
> PackageKit to make it useful for everyone... What tool did you use to
> do your mockup btw ?

Of course this was done in some fancy Mac OSX tool, and as for if it
was indeed Gustavo who did it I don't even know what to say. :)
> --
> Cedric BAIL
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



-- 
Eduardo de Barros Lima ◤✠◢
ebl...@gmail.com

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Phabricator test environment

2013-01-29 Thread The Rasterman
On Tue, 29 Jan 2013 09:20:03 -0200 "Eduardo Lima (Etrunko)" 
said:

> On Tue, Jan 29, 2013 at 6:49 AM, Carsten Haitzler 
> wrote:
> > On Tue, 29 Jan 2013 16:16:33 +0900 Cedric BAIL  said:
> >
> >> On Tue, Jan 29, 2013 at 3:52 PM, Jérémy Zurcher  wrote:
> >> > On Monday 28 January 2013  12:44, Alex-P. Natsios wrote :
> >> >> Now that i opened it again it opened relatively faster but in an
> >> >> editor thingy last time i tried (yesterday) it took quite a time for
> >> >> most of the Code Browser interface.
> >> >> Commit history listing, opening a file, navigating in code.. all took
> >> >> a few seconds and were barely rendering line by line here.
> >> >>
> >> >> On Mon, Jan 28, 2013 at 12:24 PM, Martin Jansa 
> >> >> wrote:
> >> >> > On Mon, Jan 28, 2013 at 03:04:35AM +0100, Cedric BAIL wrote:
> >> >> >> On Mon, Jan 28, 2013 at 1:18 AM, Alex-P. Natsios
> >> >> >>  wrote:
> >> >> >> > My register issue with the captcha has disappeared and i finally
> >> >> >> > was able to make an account.
> >> >> >
> >> >> > I still had to edit local source of registration form and replace
> >> >> > http:// with https:// in recaptcha URL.
> >> >> >
> >> >> >> > The UI is pretty nice but can be confusing , same goes for some
> >> >> >> > linguistic choices for most terms (as also stated by David Seikel
> >> >> >> > and Davide Andreoli).
> >> >> >> > As stated by Jérémy Zurcher in another thread the code browser is
> >> >> >> > REALLY slow (damn.. sorry for arguing with you .. haven't tested
> >> >> >> > it.. its slower than acceptable O.o).
> >> >> >>
> >> >> >> Uh ? I am not sure we are testing the same website ! The code browser
> >> >> >> is infinitely faster than what we have now and seems to give almost
> >> >> >> instant access. Maybe it is due to some network lag ? Where are you
> >> >> >> and what do you mean by really slow ? How long does it take for you
> >> >> >> to navigate to master efl/src/lib/eina/eina_file.c ? It took me 18s
> >> >> >> from the "Browse Repositories" and I feel like the bottleneck is my
> >> >> >> ability to click the link quickly.
> >> >> >
> >> >> > Here it was also relatively quick.
> >> >> > 2 minutes to find "Browser Repositories" :)
> >> >> > and then 12s to naviage to efl/src/lib/eina/eina_file.c.
> >> >> >
> >> >> > Cheers,
> >> >> >
> >> >> > --
> >> >> > Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com
> >> >> >
> >> >>
> >> >>
> >> >>
> >> >> --
> >> >> Regards,
> >> >>
> >> >> Alex-P. Natsios
> >> >> (a.k.a Drakevr)
> >> >>
> >> >
> >> >
> >> > compare these 2.com, and navigate
> >> >
> >> > http://cgit.asynk.ch/e/tree/efl/src/lib/eina/eina_file.c
> >> > https://phab.enlightenment.org/diffusion/EFL/browse/master/src/lib/eina/eina_file.c
> >>
> >> It took me 15s to go to eina_file.c instead of 18s.
> >>
> >> > speed, signal/noise ratio, syntax coloration, diff options, easy access
> >> > to branches ... only git blame output is missing from cgit.
> >>
> >> syntax coloration is indeed something clearly missing from phab.
> >>
> >> > cgit.enlightenment.org is a really cheap and nice complementary tool to
> >> > have, usable by non-registred users too.
> >>
> >> Is it worth maintaining it ? That's our question, at the moment, it's
> >> a 3s and syntax coloration win from my point of view. Is that enough ?
> >
> > i say that its not worth it imho... one reason for choosing phab is that
> > fact that we can sanely maintain it if need be... it's in php. most devs
> > know php, and if they don't.. they are not writing c :)
> 
> 
> Wait, does it means that I know PHP!? It's like the Matrix "I know
> kung-fu" then. \o/

it is... :) tho tbh.. php is just C with $in front of variables.. and no
types... :) its that simple.. sou know it by "implication" of knowing c. :)
thus... "you know king-fu" :)


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Futur access to e5 ressources

2013-01-29 Thread Bertrand Jacquin
D'ar meurzh 29 a viz Genver 2013 e 11 eur 52, « Tom Hacohen » he deus skrivet :
> On 29/01/13 10:15, Bertrand Jacquin wrote:
> > Hi,
> >
> > On e5 you (devs) will get access to some VMs using SSH on multiple
> > resources :
> >
> >   - SVN (for the moment)
> >   - GIT
> >   - buildbots (linux, bsd, osx ...)
> >   - sandboxes to play with, build your own stuff
> >   - futur needs ...
> >
> > At the moment we have different solution to let you access to all
> > theses VMs :
> >
> >   - Using multiple TCP port, one for each VM.
> >
> >   - Forcing client to use a special SSH client configuration option in
> > ~/.ssh/config so you will be bumped by the main e5 router / load
> >  balancer to the right destination automatically.
> >
> >  Host *.enlightenment.org
> >ForwardAgent yes
> >
> > I am more enthusiastic to use the second solution as it avoid to use
> > ugly URL and the second will need only one modification at the client
> > side.
> >
> > Thanks for your reply and for what you see the more usable for every
> > day.
> 
> Wow Beber, that's just misleading and one sided it's amazing.
> 
> First of all, you can set the specific port per machine in the ssh 
> config, so it's really the same when it comes to convenience in that regard.
> Important to mention is that when you'd want to connect to a specific 
> host with agent forwarding you'd have to do:
> "ssh t...@e5v.enlightenment.org ssh tasn@e5-phabricator1"
> Yes, you'll have to remember internal hostnames and type everything 
> twice. This obviously won't work nicely with scp, rsync and every other 
> thing you might need when you interact with those servers.

Yes it does work nice, just read manual.

Yes, using one login for one destination can cause insecure access while
socket is owned (rwx) only by the login user while output tcp stream are
rejected by firewall rules (but this one is not a reason, I agree), and
that socket can be use to bump as root on another VM, but this is mainly
due to using one login for every developers needed for gitolite. In my
point of view it's a gitolite wrong design.

But, I'm OK to use multiple port if many people agree, I'm not closed to
this as THIS IS A PROBE.

> Using ports on the other hand means you *don't have to* set the config 
> when using such services, and more importantly, ForwardAgent is 
> insecure. It essentially means whoever owns e.org owns everyone's 
> access, which is *bad*. I don't want e.org to be able to use my 
> credentials to log in to my personal server. The implications are just 
> awful.

This is a probe ! You cannot be everybody point of view when it touch
every developers. I'm not telling which one is the right solution, that's a
probe !

> Also, it's not true that the second modification only requires one 
> modification at the client side. The second modification also requires 
> syncing access from all the servers to the main one, which is especially 
> annoying in the case of gitolite. Also, this means giving everyone 
> access to e5v, another thing we don't want.

This is a gilolite effect that does not want to play with sticky bit.

> The second approach is flawed in so many ways it's just amazing. We 
> already talked about it in length, and I'm very disappointed to see you 
> just decided to send this one sided mail.

It's not one sided I send a mail to you that I wanted to probe
developers. I expressed both solution I have in mind and give my point
of view.

We decided to have the less modification for users, I'm completely OK
with that.

I'm really tired discussing thing when people on other side try to
use fast and crap solutions just because you want it online without
thinking about the global solution, not only part by part.

You are free to tell me that you
handle/care all the things that remain on the todo list and you don't
need me. I'm completely OK with that. Really. You have hand everywhere.
Bref, I can gladly retire myself.

I always replied with technical solution to our issues and you are
always telling me that I'm not listening while it's not the case as I
just want to discuss things for a global approach.

I don't want to do my mourner so I stop there but you know what I'm
thinking.

-- 
Beber


pgpXfpGD0PoBp.pgp
Description: PGP signature
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: raster IN trunk/efl: . src/lib/edje

2013-01-29 Thread Daniel Juyung Seo
Thanks muchly!!

Daniel Juyung Seo (SeoZ)

On Tue, Jan 29, 2013 at 10:48 PM, Enlightenment SVN
 wrote:
> Log:
> fix edje cache miss
>
>
>
> Author:   raster
> Date: 2013-01-29 05:48:15 -0800 (Tue, 29 Jan 2013)
> New Revision: 83431
> Trac: http://trac.enlightenment.org/e/changeset/83431
>
> Modified:
>   trunk/efl/ChangeLog trunk/efl/NEWS trunk/efl/src/lib/edje/edje_cache.c
>
> Modified: trunk/efl/ChangeLog
> ===
> --- trunk/efl/ChangeLog 2013-01-29 10:47:56 UTC (rev 83430)
> +++ trunk/efl/ChangeLog 2013-01-29 13:48:15 UTC (rev 83431)
> @@ -1,3 +1,8 @@
> +2013-01-29  Carsten Haitzler (The Rasterman)
> +
> +* Fix cache miss bug when edje cache hash is null, but cache
> +list may have entries.
> +
>  2013-01-25  Jihoon Kim (jihoon)
>
> * edje entry : Remove ecore_imf_context_reset, cursor update in mouse 
> move event because it's useless.
> @@ -3,5 +8,4 @@
> * edje entry : move ecore_imf_context_cursor_position_set from mouse 
> down event to mouse up event
>
> -
>  2013-01-24  Sung W. Park (sung_)
>
>
> Modified: trunk/efl/NEWS
> ===
> --- trunk/efl/NEWS  2013-01-29 10:47:56 UTC (rev 83430)
> +++ trunk/efl/NEWS  2013-01-29 13:48:15 UTC (rev 83431)
> @@ -132,3 +132,5 @@
>  * Fixed x11 error sync issue with ecore_x_image_get()
>  * Fix evas gif loader to return the correct frame duration
>  * Prevent a crash even if an invalid object is swallowed into an edje 
> object.
> +* Fix cache mise when active edje hash is empty.
> +
>
> Modified: trunk/efl/src/lib/edje/edje_cache.c
> ===
> --- trunk/efl/src/lib/edje/edje_cache.c 2013-01-29 10:47:56 UTC (rev 83430)
> +++ trunk/efl/src/lib/edje/edje_cache.c 2013-01-29 13:48:15 UTC (rev 83431)
> @@ -318,7 +318,7 @@
> if (!_edje_file_hash)
>   {
> _edje_file_hash = eina_hash_string_small_new(NULL);
> -   goto open_new;
> +   goto find_list;
>   }
>
> edf = eina_hash_find(_edje_file_hash, file);
> @@ -333,7 +333,8 @@
> edf->references++;
> goto open;
>   }
> -
> +
> +find_list:
> EINA_LIST_FOREACH(_edje_file_cache, l, edf)
>   {
> if (!strcmp(edf->path, file))
>
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Columned List Widget?

2013-01-29 Thread Gustavo Sverzut Barbieri
On Mon, Jan 28, 2013 at 9:29 PM, Carsten Haitzler  wrote:
> On Mon, 28 Jan 2013 17:20:54 -0200 Gustavo Sverzut Barbieri
>  said:
>
>> On Mon, Jan 28, 2013 at 5:11 PM, Jeff Hoogland  
>> wrote:
>> > That idea works great for a package manager (something on my eventual TODO
>> > list in the far off future). However that is just one example of where a
>> > columned list was useful - I still don't think there is any better way to
>> > lay out a task manager which needs to be able to be sorted by PID/Process
>> > Name/CPU or RAM usage for applications.
>>
>> the task manager is a different problem as it has less rows to show,
>> not dozen thousand lines (usually). Then you can more easily do with
>> table + scroller.
>
> tho you may end up with a few thousand lines if you include threads... but
> then its unusable for users... so reality is people will only need a few
> hundred on a bad day... :)
>
>> There is no automatic "click header to sort", but it's easy to
>> implement. Maybe I can have a try and let you know.
>
> i just think this is a good opportunity to point out that - even *IF* you had
> to do a columned thing with a table with 10's of items... you CAN do it
> with a scroller+table+ manual sizing tweaks. you need to insert invisible
> rectangles into cells as sizing controls - if you want to manually size 
> things,
> otherwise widget content is going to be the only thing doing the controlling.
>
> the other thing you can do is monitor table x/y position with move callbacks
> and as the table moves around - compare its position with the canvas viewport
> and then as cell elements logically come into view, create widgets and pack
> them into those cells. when they go out of the viewport, delete them. this
> means you keep only an active set. if you are smart - you dont delete, you
> recycle and have a pool of "objects to re-use" so you re just MOVING them
> around the table as it scrolls. use invisible rects to "fill in rows/columns"
> or even multilpe rows/columns all at once so you have only a few rects for the
> region of the table outside the current canvas viewport, and these are just
> "holding" the table size together. the rest you fill in as needed, or
> remove/recycle. this offers speed, memory efficiency and "infinite scrolling"
> but HOW to handle this depends really on your exact use case, what kind of
> data/layout you have etc. etc.
>
> genlist is a "specific common case pre-packaged" version of the above for you.
> the problem is that it has grown out of all proportion and is abused heavily.
> when i wrote genlist i knew it was limited but covered a very common case, and
> that would save people time, BUT they could do the above if they got fussy and
> were willing to do just a little bit of extra work themselves.
>
> so i'm just putting this here as a "fyi/on the record" example of what is
> possible, if you bother to go to the effort. thus a table can be used and
> "logically" can hold 100's of items - every package you have and file and
> more, as you LIMIT the active set of objects just to what you can SEE (plus a
> little).

yeah, theory is all nice, but I gave it a try yesterday and it was not
a few minutes hack, thus I gave up :-)

The problem with table is that you'd have even more trouble to keep
the column headers aligned with the contents, which are in a scroller
and then you'd do all the manual work of sync table's cells with that
(you can have a first row of the table to be a reference, where on
move you always get the x position and move the headers accordingly,
but painful).

also you'd have to implement yourself the row selection... so maybe
I'll try again with genlist instead of table, just forcing the cell
contents to be of a given size.

--
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Columned List Widget?

2013-01-29 Thread Gustavo Sverzut Barbieri
On Tue, Jan 29, 2013 at 9:26 AM, Eduardo Lima (Etrunko)
 wrote:
> On Mon, Jan 28, 2013 at 11:18 PM, Cedric BAIL  wrote:
>> On Tue, Jan 29, 2013 at 3:17 AM, Gustavo Sverzut Barbieri
>>  wrote:
>>> On Mon, Jan 28, 2013 at 8:20 AM, Jeff Hoogland  
>>> wrote:
 David,

 I've used the elementary table class a good bit in my playing with code and
 I'm fairly certain it doesn't offer any easy sorting/list like features for
 it's rows. Do evas or edje offer this?
>>>
>>> As discomfitor said, no.
>>>
>>> As I said before, did you consider doing one with genlist and better
>>> thought GUI?
>>>
>>> See this mockup, I did it in few minutes so it's not too elaborated.
>>> If you ask discomfitor he would show a big tooltip with the package
>>> information instead of a popup :-D
>>>
>>> http://i.imgur.com/UvYEtO0.png
>>
>> Cool ! That was on my todo list for Arch. Maybe something on top of
>> PackageKit to make it useful for everyone... What tool did you use to
>> do your mockup btw ?
>
> Of course this was done in some fancy Mac OSX tool, and as for if it
> was indeed Gustavo who did it I don't even know what to say. :)

nah, I use macos but I don't bother doing dev stuff in it. I just
googled "gui mockup online tool" and it delivered:
http://creately.com/Online-UI-Mockups-and-Wireframes

i did not register, that is needed to save/export.. so I just did a
screenshot to send you the results :-)

--
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: tasn IN trunk/efl: doc src/lib/edje src/lib/eo src/lib/evas/canvas

2013-01-29 Thread Eduardo Lima (Etrunko)
On Tue, Jan 29, 2013 at 2:36 PM, Enlightenment SVN
 wrote:
> Log:
> Eo dbg: Use eina_value as the debug info type.
>
> Author:   tasn
> Date: 2013-01-29 08:36:01 -0800 (Tue, 29 Jan 2013)
> New Revision: 83443
> Trac: http://trac.enlightenment.org/e/changeset/83443
>
> Modified:
>   trunk/efl/doc/images.mk trunk/efl/src/lib/edje/edje_smart.c 
> trunk/efl/src/lib/eo/Eo.h trunk/efl/src/lib/eo/eo.c 
> trunk/efl/src/lib/evas/canvas/evas_object_image.c 
> trunk/efl/src/lib/evas/canvas/evas_object_main.c 
> trunk/efl/src/lib/evas/canvas/evas_object_text.c 
> trunk/efl/src/lib/evas/canvas/evas_object_textblock.c
>
> Modified: trunk/efl/doc/images.mk

Can someone fix this images.mk?!?

-- 
Eduardo de Barros Lima ◤✠◢
ebl...@gmail.com

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: tasn IN trunk/efl: doc src/lib/edje src/lib/eo src/lib/evas/canvas

2013-01-29 Thread Tom Hacohen
On 29/01/13 16:38, Eduardo Lima (Etrunko) wrote:
> On Tue, Jan 29, 2013 at 2:36 PM, Enlightenment SVN
>  wrote:
>> Log:
>> Eo dbg: Use eina_value as the debug info type.
>>
>> Author:   tasn
>> Date: 2013-01-29 08:36:01 -0800 (Tue, 29 Jan 2013)
>> New Revision: 83443
>> Trac: http://trac.enlightenment.org/e/changeset/83443
>>
>> Modified:
>>trunk/efl/doc/images.mk trunk/efl/src/lib/edje/edje_smart.c 
>> trunk/efl/src/lib/eo/Eo.h trunk/efl/src/lib/eo/eo.c 
>> trunk/efl/src/lib/evas/canvas/evas_object_image.c 
>> trunk/efl/src/lib/evas/canvas/evas_object_main.c 
>> trunk/efl/src/lib/evas/canvas/evas_object_text.c 
>> trunk/efl/src/lib/evas/canvas/evas_object_textblock.c
>>
>> Modified: trunk/efl/doc/images.mk
>
> Can someone fix this images.mk?!?
>

OH DAMN!!!
HOW DID I MISS THAT?! :(

Will revert in  a sec. I "git checkout" it so many times that I guess I 
forgot.

WTH is this anyway?

--
Tom.

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: tasn IN trunk/efl: doc src/lib/edje src/lib/eo src/lib/evas/canvas

2013-01-29 Thread Eduardo Lima (Etrunko)
On Tue, Jan 29, 2013 at 2:49 PM, Tom Hacohen  wrote:
> On 29/01/13 16:38, Eduardo Lima (Etrunko) wrote:
>>
>> On Tue, Jan 29, 2013 at 2:36 PM, Enlightenment SVN
>>  wrote:
>>>
>>> Log:
>>> Eo dbg: Use eina_value as the debug info type.
>>>
>>> Author:   tasn
>>> Date: 2013-01-29 08:36:01 -0800 (Tue, 29 Jan 2013)
>>> New Revision: 83443
>>> Trac: http://trac.enlightenment.org/e/changeset/83443
>>>
>>> Modified:
>>>trunk/efl/doc/images.mk trunk/efl/src/lib/edje/edje_smart.c
>>> trunk/efl/src/lib/eo/Eo.h trunk/efl/src/lib/eo/eo.c
>>> trunk/efl/src/lib/evas/canvas/evas_object_image.c
>>> trunk/efl/src/lib/evas/canvas/evas_object_main.c
>>> trunk/efl/src/lib/evas/canvas/evas_object_text.c
>>> trunk/efl/src/lib/evas/canvas/evas_object_textblock.c
>>>
>>> Modified: trunk/efl/doc/images.mk
>>
>>
>> Can someone fix this images.mk?!?
>>
>
> OH DAMN!!!
> HOW DID I MISS THAT?! :(
>
> Will revert in  a sec. I "git checkout" it so many times that I guess I
> forgot.
>
> WTH is this anyway?
>

A recent commit from raster also included it, and I don't have clue of
what it could possibly be.


-- 
Eduardo de Barros Lima ◤✠◢
ebl...@gmail.com

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: tasn IN trunk/efl: doc src/lib/edje src/lib/eo src/lib/evas/canvas

2013-01-29 Thread Iván Briano
On Tue, Jan 29, 2013 at 2:52 PM, Eduardo Lima (Etrunko)
 wrote:
> On Tue, Jan 29, 2013 at 2:49 PM, Tom Hacohen  wrote:
>> On 29/01/13 16:38, Eduardo Lima (Etrunko) wrote:
>>>
>>> On Tue, Jan 29, 2013 at 2:36 PM, Enlightenment SVN
>>>  wrote:

 Log:
 Eo dbg: Use eina_value as the debug info type.

 Author:   tasn
 Date: 2013-01-29 08:36:01 -0800 (Tue, 29 Jan 2013)
 New Revision: 83443
 Trac: http://trac.enlightenment.org/e/changeset/83443

 Modified:
trunk/efl/doc/images.mk trunk/efl/src/lib/edje/edje_smart.c
 trunk/efl/src/lib/eo/Eo.h trunk/efl/src/lib/eo/eo.c
 trunk/efl/src/lib/evas/canvas/evas_object_image.c
 trunk/efl/src/lib/evas/canvas/evas_object_main.c
 trunk/efl/src/lib/evas/canvas/evas_object_text.c
 trunk/efl/src/lib/evas/canvas/evas_object_textblock.c

 Modified: trunk/efl/doc/images.mk
>>>
>>>
>>> Can someone fix this images.mk?!?
>>>
>>
>> OH DAMN!!!
>> HOW DID I MISS THAT?! :(
>>
>> Will revert in  a sec. I "git checkout" it so many times that I guess I
>> forgot.
>>
>> WTH is this anyway?
>>
>
> A recent commit from raster also included it, and I don't have clue of
> what it could possibly be.
>

It's a test to see how attentive we are at the time of committing.

>
> --
> Eduardo de Barros Lima ◤✠◢
> ebl...@gmail.com
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: tasn IN trunk/efl: doc src/lib/edje src/lib/eo src/lib/evas/canvas

2013-01-29 Thread Gustavo Sverzut Barbieri
it's the complete list of doc files (images) that are needed to be
included in EXTRA_DIST. Did this to solve the compat problem with
other make and automake stop bitching about it.

it do generate the list and should just update if that changed. So
either the command to generate it is broken (it was broken, including
.svn files), or some file was added.

it should be kept in svn... if the command is broken, please fix it.
If there are new images, then commit the new file.

On Tue, Jan 29, 2013 at 2:52 PM, Eduardo Lima (Etrunko)
 wrote:
> On Tue, Jan 29, 2013 at 2:49 PM, Tom Hacohen  wrote:
>> On 29/01/13 16:38, Eduardo Lima (Etrunko) wrote:
>>>
>>> On Tue, Jan 29, 2013 at 2:36 PM, Enlightenment SVN
>>>  wrote:

 Log:
 Eo dbg: Use eina_value as the debug info type.

 Author:   tasn
 Date: 2013-01-29 08:36:01 -0800 (Tue, 29 Jan 2013)
 New Revision: 83443
 Trac: http://trac.enlightenment.org/e/changeset/83443

 Modified:
trunk/efl/doc/images.mk trunk/efl/src/lib/edje/edje_smart.c
 trunk/efl/src/lib/eo/Eo.h trunk/efl/src/lib/eo/eo.c
 trunk/efl/src/lib/evas/canvas/evas_object_image.c
 trunk/efl/src/lib/evas/canvas/evas_object_main.c
 trunk/efl/src/lib/evas/canvas/evas_object_text.c
 trunk/efl/src/lib/evas/canvas/evas_object_textblock.c

 Modified: trunk/efl/doc/images.mk
>>>
>>>
>>> Can someone fix this images.mk?!?
>>>
>>
>> OH DAMN!!!
>> HOW DID I MISS THAT?! :(
>>
>> Will revert in  a sec. I "git checkout" it so many times that I guess I
>> forgot.
>>
>> WTH is this anyway?
>>
>
> A recent commit from raster also included it, and I don't have clue of
> what it could possibly be.
>
>
> --
> Eduardo de Barros Lima ◤✠◢
> ebl...@gmail.com
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: tasn IN trunk/efl: doc src/lib/edje src/lib/eo src/lib/evas/canvas

2013-01-29 Thread The Rasterman
On Tue, 29 Jan 2013 14:52:50 -0200 "Eduardo Lima (Etrunko)" 
said:

> On Tue, Jan 29, 2013 at 2:49 PM, Tom Hacohen  wrote:
> > On 29/01/13 16:38, Eduardo Lima (Etrunko) wrote:
> >>
> >> On Tue, Jan 29, 2013 at 2:36 PM, Enlightenment SVN
> >>  wrote:
> >>>
> >>> Log:
> >>> Eo dbg: Use eina_value as the debug info type.
> >>>
> >>> Author:   tasn
> >>> Date: 2013-01-29 08:36:01 -0800 (Tue, 29 Jan 2013)
> >>> New Revision: 83443
> >>> Trac: http://trac.enlightenment.org/e/changeset/83443
> >>>
> >>> Modified:
> >>>trunk/efl/doc/images.mk trunk/efl/src/lib/edje/edje_smart.c
> >>> trunk/efl/src/lib/eo/Eo.h trunk/efl/src/lib/eo/eo.c
> >>> trunk/efl/src/lib/evas/canvas/evas_object_image.c
> >>> trunk/efl/src/lib/evas/canvas/evas_object_main.c
> >>> trunk/efl/src/lib/evas/canvas/evas_object_text.c
> >>> trunk/efl/src/lib/evas/canvas/evas_object_textblock.c
> >>>
> >>> Modified: trunk/efl/doc/images.mk
> >>
> >>
> >> Can someone fix this images.mk?!?
> >>
> >
> > OH DAMN!!!
> > HOW DID I MISS THAT?! :(
> >
> > Will revert in  a sec. I "git checkout" it so many times that I guess I
> > forgot.
> >
> > WTH is this anyway?
> >
> 
> A recent commit from raster also included it, and I don't have clue of
> what it could possibly be.

images.mk just keps getting modified very time you build... and without it..
nothing builds...


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Elm File Selector Multiple Files?

2013-01-29 Thread Davide Andreoli
2013/1/29 Jeff Hoogland 

> Is there a flag that allows the Elm file selector objects to allow the user
> to select multiple files before pressing OK?
>

no, sorry, that feature is not implemented
davemds


>
> --
> ~Jeff Hoogland 
> Thoughts on Technology , Tech Blog
> Bodhi Linux , Enlightenment for your Desktop
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Elm File Selector Multiple Files?

2013-01-29 Thread Jeff Hoogland
Was this idea rejected for some reason or is it just waiting for someone to
write it?


On Tue, Jan 29, 2013 at 12:50 PM, Davide Andreoli wrote:

> 2013/1/29 Jeff Hoogland 
>
> > Is there a flag that allows the Elm file selector objects to allow the
> user
> > to select multiple files before pressing OK?
> >
>
> no, sorry, that feature is not implemented
> davemds
>
>
> >
> > --
> > ~Jeff Hoogland 
> > Thoughts on Technology , Tech Blog
> > Bodhi Linux , Enlightenment for your Desktop
> >
> >
> --
> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > MVPs and experts. ON SALE this month only -- learn more at:
> > http://p.sf.net/sfu/learnnow-d2d
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>



-- 
~Jeff Hoogland 
Thoughts on Technology , Tech Blog
Bodhi Linux , Enlightenment for your Desktop
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Elm File Selector Multiple Files?

2013-01-29 Thread Michael Blumenkrantz
On Tue, 29 Jan 2013 13:18:36 -0600
Jeff Hoogland  wrote:

> Was this idea rejected for some reason or is it just waiting for someone to
> write it?
> 
> 
> On Tue, Jan 29, 2013 at 12:50 PM, Davide Andreoli 
> wrote:
> 
> > 2013/1/29 Jeff Hoogland 
> >
> > > Is there a flag that allows the Elm file selector objects to allow the
> > user
> > > to select multiple files before pressing OK?
> > >
> >
> > no, sorry, that feature is not implemented
> > davemds
> >
> >
> > >
> > > --
> > > ~Jeff Hoogland 
> > > Thoughts on Technology , Tech Blog
> > > Bodhi Linux , Enlightenment for your Desktop
> > >
> > >

fileselector is enough of a reject widget without anyone's help

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Eo del/unref question

2013-01-29 Thread Davide Andreoli
Hi all,
I'm working/studying Eo while trying to optimize the python bindings
and I have some problems deleting eo objects.

see this super simple example:
(pastebin.com/1C0dqdYA for a "colored" version)


#include 
#include 

void
my_win_del(void *data, Evas_Object *obj, void *event_info)
{
   elm_exit();
}

EAPI_MAIN int
elm_main(int argc, char **argv)
{
Evas_Object *win, *r;

win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
elm_win_title_set(win, "Elementary Tests");
evas_object_smart_callback_add(win, "delete,request", my_win_del, NULL);
evas_object_resize(win, 320, 320);
evas_object_show(win);

r = evas_object_rectangle_add(evas_object_evas_get(win));
evas_object_resize(r, 100, 100);
evas_object_show(r);

evas_object_del(r); // this one work as expected
// eo_del(r);   // this give a bad warnig
// eo_unref(r);// this cause an endless loop on elm_shutdown

elm_run();
elm_shutdown();

return 0;
}

ELM_MAIN()



The example simply create a rectangle and then delete it, the only working
way to delete the rect
seems to be the evas_object_del call (that work as expected)

Using eo_del() to delete the rect cause this warning:
ERR<3219>:eo lib/eo/eo.c:1306 _eo_unref() Object 0x21d9920 already deleted.
ERR<3219>:eo lib/eo/eo.c:1306 _eo_unref() Object 0x21d9920 already deleted.
as soon as you call eo_del()

While eo_unref() cause an endless loop on elm_shutdown with this warning
repeated forever:
CRI<3242>: lib/eo/eo.c:1081 eo_parent_set() *** Eina Magic Check Failed at
0x1a88f80 !!!
Input handle is wrong type
Expected: a186bc32 - Eo
Supplied: afda6798 - (unknown)
*** NAUGHTY PROGRAMMER!!!
*** SPANK SPANK SPANK!!!
*** Now go fix your code. Tut tut tut!


I'm doing something wrong? I'm misunderstanding something?

any help is appreciated

thanks
davemds
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Elm File Selector Multiple Files?

2013-01-29 Thread Davide Andreoli
2013/1/29 Jeff Hoogland 

> Was this idea rejected for some reason or is it just waiting for someone to
> write it?
>

just waiting someone to code it ;)


>
>
> On Tue, Jan 29, 2013 at 12:50 PM, Davide Andreoli  >wrote:
>
> > 2013/1/29 Jeff Hoogland 
> >
> > > Is there a flag that allows the Elm file selector objects to allow the
> > user
> > > to select multiple files before pressing OK?
> > >
> >
> > no, sorry, that feature is not implemented
> > davemds
> >
> >
> > >
> > > --
> > > ~Jeff Hoogland 
> > > Thoughts on Technology , Tech Blog
> > > Bodhi Linux , Enlightenment for your Desktop
> > >
> > >
> >
> --
> > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > > MVPs and experts. ON SALE this month only -- learn more at:
> > > http://p.sf.net/sfu/learnnow-d2d
> > > ___
> > > enlightenment-devel mailing list
> > > enlightenment-devel@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >
> >
> >
> --
> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > MVPs and experts. ON SALE this month only -- learn more at:
> > http://p.sf.net/sfu/learnnow-d2d
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
>
>
>
> --
> ~Jeff Hoogland 
> Thoughts on Technology , Tech Blog
> Bodhi Linux , Enlightenment for your Desktop
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] E17 + nouveau driver + second monitor

2013-01-29 Thread Davide Andreoli
hallo,
anyone using e17 with recent nouveau driver and 2 monitors?

I'm not able to configure the second monitor: every time I try to configure
the monitors layout (using the new randr config dialog) e crash badly, no
WSOD, no way to restore the environment, I need to unplug the power to
start again :(

Anyone have this issue? it's a know bug or I need to provide some bt?
(useless to say that gnome2 handle the monitors without any issue)

thanks
davemds
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E17 + nouveau driver + second monitor

2013-01-29 Thread Boris Faure
On 13-01-29 20:53, Davide Andreoli wrote:
> hallo,
> anyone using e17 with recent nouveau driver and 2 monitors?
> 
> I'm not able to configure the second monitor: every time I try to configure
> the monitors layout (using the new randr config dialog) e crash badly, no
> WSOD, no way to restore the environment, I need to unplug the power to
> start again :(
> 
> Anyone have this issue? it's a know bug or I need to provide some bt?
> (useless to say that gnome2 handle the monitors without any issue)
> 
> thanks
> davemds

Same issue here.
I've fixed a segfault I had when launching e after playing with the
randr settings module.

It's really sad that it's broken just before Fosdem when people will
need that feature. I'll use xrandr directly.

-- 
Boris Faure
Pointer Arithmetician

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eo del/unref question

2013-01-29 Thread Tom Hacohen
Don't use eo_del/unref as counterparts to the old API. Create the objects
with the new API if you would like to use them...
On 29 Jan 2013 19:37, "Davide Andreoli"  wrote:

> Hi all,
> I'm working/studying Eo while trying to optimize the python bindings
> and I have some problems deleting eo objects.
>
> see this super simple example:
> (pastebin.com/1C0dqdYA for a "colored" version)
>
>
> #include 
> #include 
>
> void
> my_win_del(void *data, Evas_Object *obj, void *event_info)
> {
>elm_exit();
> }
>
> EAPI_MAIN int
> elm_main(int argc, char **argv)
> {
> Evas_Object *win, *r;
>
> win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
> elm_win_title_set(win, "Elementary Tests");
> evas_object_smart_callback_add(win, "delete,request", my_win_del,
> NULL);
> evas_object_resize(win, 320, 320);
> evas_object_show(win);
>
> r = evas_object_rectangle_add(evas_object_evas_get(win));
> evas_object_resize(r, 100, 100);
> evas_object_show(r);
>
> evas_object_del(r); // this one work as expected
> // eo_del(r);   // this give a bad warnig
> // eo_unref(r);// this cause an endless loop on
> elm_shutdown
>
> elm_run();
> elm_shutdown();
>
> return 0;
> }
>
> ELM_MAIN()
>
>
>
> The example simply create a rectangle and then delete it, the only working
> way to delete the rect
> seems to be the evas_object_del call (that work as expected)
>
> Using eo_del() to delete the rect cause this warning:
> ERR<3219>:eo lib/eo/eo.c:1306 _eo_unref() Object 0x21d9920 already deleted.
> ERR<3219>:eo lib/eo/eo.c:1306 _eo_unref() Object 0x21d9920 already deleted.
> as soon as you call eo_del()
>
> While eo_unref() cause an endless loop on elm_shutdown with this warning
> repeated forever:
> CRI<3242>: lib/eo/eo.c:1081 eo_parent_set() *** Eina Magic Check Failed at
> 0x1a88f80 !!!
> Input handle is wrong type
> Expected: a186bc32 - Eo
> Supplied: afda6798 - (unknown)
> *** NAUGHTY PROGRAMMER!!!
> *** SPANK SPANK SPANK!!!
> *** Now go fix your code. Tut tut tut!
>
>
> I'm doing something wrong? I'm misunderstanding something?
>
> any help is appreciated
>
> thanks
> davemds
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Git repository layout - RFC

2013-01-29 Thread Ulisses Furquim
Hi,

On Mon, Jan 28, 2013 at 2:25 PM, Tom Hacohen  wrote:
>
> On 21/01/13 18:30, Daniel Willmann wrote:
> > We also started fixing the commit names (since Git uses real-name +
> > email instead of username). Please review the list at:
> >
> > http://trac.enlightenment.org/e/wiki/GIT_Migration_Authors
>
> Last chance to update it. We will run the final scripts tomorrow.

When? Has that happened already? Please lock SVN before that. :-)

--
Ulisses Furquim
ProFUSION embedded systems
http://profusion.mobi
Mobile: +55 19 9250 0942
Skype: ulissesffs

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eo del/unref question

2013-01-29 Thread Davide Andreoli
2013/1/29 Tom Hacohen 

> Don't use eo_del/unref as counterparts to the old API. Create the objects
> with the new API if you would like to use them...
>

Hi, thanks for the fast reply.

I have tried that approach but I have problems with some objects than,
for example elm_win:
if I do:
win = eo_add(ELM_OBJ_WIN_CLASS, NULL);

I get the error:
ERR<3716>:elementary elm_win.c:2979 _constructor() only custom constructor
can be used with 'elm_win' class

"custom constructor" is the old one right?
In that case I have to manage different delete cases for objs that support
eo and the ones that don't,
and I lost all the benefits of a single-delete-code for every objects :/

thanks
davemds



> On 29 Jan 2013 19:37, "Davide Andreoli"  wrote:
>
> > Hi all,
> > I'm working/studying Eo while trying to optimize the python bindings
> > and I have some problems deleting eo objects.
> >
> > see this super simple example:
> > (pastebin.com/1C0dqdYA for a "colored" version)
> >
> >
> > #include 
> > #include 
> >
> > void
> > my_win_del(void *data, Evas_Object *obj, void *event_info)
> > {
> >elm_exit();
> > }
> >
> > EAPI_MAIN int
> > elm_main(int argc, char **argv)
> > {
> > Evas_Object *win, *r;
> >
> > win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
> > elm_win_title_set(win, "Elementary Tests");
> > evas_object_smart_callback_add(win, "delete,request", my_win_del,
> > NULL);
> > evas_object_resize(win, 320, 320);
> > evas_object_show(win);
> >
> > r = evas_object_rectangle_add(evas_object_evas_get(win));
> > evas_object_resize(r, 100, 100);
> > evas_object_show(r);
> >
> > evas_object_del(r); // this one work as expected
> > // eo_del(r);   // this give a bad warnig
> > // eo_unref(r);// this cause an endless loop on
> > elm_shutdown
> >
> > elm_run();
> > elm_shutdown();
> >
> > return 0;
> > }
> >
> > ELM_MAIN()
> >
> >
> >
> > The example simply create a rectangle and then delete it, the only
> working
> > way to delete the rect
> > seems to be the evas_object_del call (that work as expected)
> >
> > Using eo_del() to delete the rect cause this warning:
> > ERR<3219>:eo lib/eo/eo.c:1306 _eo_unref() Object 0x21d9920 already
> deleted.
> > ERR<3219>:eo lib/eo/eo.c:1306 _eo_unref() Object 0x21d9920 already
> deleted.
> > as soon as you call eo_del()
> >
> > While eo_unref() cause an endless loop on elm_shutdown with this warning
> > repeated forever:
> > CRI<3242>: lib/eo/eo.c:1081 eo_parent_set() *** Eina Magic Check Failed
> at
> > 0x1a88f80 !!!
> > Input handle is wrong type
> > Expected: a186bc32 - Eo
> > Supplied: afda6798 - (unknown)
> > *** NAUGHTY PROGRAMMER!!!
> > *** SPANK SPANK SPANK!!!
> > *** Now go fix your code. Tut tut tut!
> >
> >
> > I'm doing something wrong? I'm misunderstanding something?
> >
> > any help is appreciated
> >
> > thanks
> > davemds
> >
> >
> --
> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > MVPs and experts. ON SALE this month only -- learn more at:
> > http://p.sf.net/sfu/learnnow-d2d
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Git repository layout - RFC

2013-01-29 Thread Tom Hacohen
Well, we aren't doing the switch yet. Probably early next week. But we are
prepping the git repos now (it takes time, a few days of actually
*running*).

We'll probably upload the repos to their final resting places tomorrow or
the day after, let them settle there for a week (while letting people play
with them),
and then remove the relevant dirs from svn (we aren't moving everything in
one go), and start using git. :)

--
Tom.


On Tue, Jan 29, 2013 at 8:03 PM, Ulisses Furquim wrote:

> Hi,
>
> On Mon, Jan 28, 2013 at 2:25 PM, Tom Hacohen 
> wrote:
> >
> > On 21/01/13 18:30, Daniel Willmann wrote:
> > > We also started fixing the commit names (since Git uses real-name +
> > > email instead of username). Please review the list at:
> > >
> > > http://trac.enlightenment.org/e/wiki/GIT_Migration_Authors
> >
> > Last chance to update it. We will run the final scripts tomorrow.
>
> When? Has that happened already? Please lock SVN before that. :-)
>
> --
> Ulisses Furquim
> ProFUSION embedded systems
> http://profusion.mobi
> Mobile: +55 19 9250 0942
> Skype: ulissesffs
>
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>



-- 
Tom.
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eo del/unref question

2013-01-29 Thread Tom Hacohen
No, custom constructor is not the old one.

You need to use:

#define elm_obj_win_constructor(name, type)
ELM_OBJ_WIN_ID(ELM_OBJ_WIN_SUB_ID_WIN_CONSTRUCTOR), EO_TYPECHECK(const
char *, name), EO_TYPECHECK(Elm_Win_Type, type)

>From elm_win.h.

And well, you should switch to Eo for all the objects. Please also talk to
Yakov in CC, as I believe he has already got Python bindings for Eo.


On Tue, Jan 29, 2013 at 9:18 PM, Davide Andreoli wrote:

> 2013/1/29 Tom Hacohen 
>
> > Don't use eo_del/unref as counterparts to the old API. Create the objects
> > with the new API if you would like to use them...
> >
>
> Hi, thanks for the fast reply.
>
> I have tried that approach but I have problems with some objects than,
> for example elm_win:
> if I do:
> win = eo_add(ELM_OBJ_WIN_CLASS, NULL);
>
> I get the error:
> ERR<3716>:elementary elm_win.c:2979 _constructor() only custom constructor
> can be used with 'elm_win' class
>
> "custom constructor" is the old one right?
> In that case I have to manage different delete cases for objs that support
> eo and the ones that don't,
> and I lost all the benefits of a single-delete-code for every objects :/
>
> thanks
> davemds
>
>
>
> > On 29 Jan 2013 19:37, "Davide Andreoli"  wrote:
> >
> > > Hi all,
> > > I'm working/studying Eo while trying to optimize the python bindings
> > > and I have some problems deleting eo objects.
> > >
> > > see this super simple example:
> > > (pastebin.com/1C0dqdYA for a "colored" version)
> > >
> > >
> > > #include 
> > > #include 
> > >
> > > void
> > > my_win_del(void *data, Evas_Object *obj, void *event_info)
> > > {
> > >elm_exit();
> > > }
> > >
> > > EAPI_MAIN int
> > > elm_main(int argc, char **argv)
> > > {
> > > Evas_Object *win, *r;
> > >
> > > win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
> > > elm_win_title_set(win, "Elementary Tests");
> > > evas_object_smart_callback_add(win, "delete,request", my_win_del,
> > > NULL);
> > > evas_object_resize(win, 320, 320);
> > > evas_object_show(win);
> > >
> > > r = evas_object_rectangle_add(evas_object_evas_get(win));
> > > evas_object_resize(r, 100, 100);
> > > evas_object_show(r);
> > >
> > > evas_object_del(r); // this one work as expected
> > > // eo_del(r);   // this give a bad warnig
> > > // eo_unref(r);// this cause an endless loop on
> > > elm_shutdown
> > >
> > > elm_run();
> > > elm_shutdown();
> > >
> > > return 0;
> > > }
> > >
> > > ELM_MAIN()
> > >
> > >
> > >
> > > The example simply create a rectangle and then delete it, the only
> > working
> > > way to delete the rect
> > > seems to be the evas_object_del call (that work as expected)
> > >
> > > Using eo_del() to delete the rect cause this warning:
> > > ERR<3219>:eo lib/eo/eo.c:1306 _eo_unref() Object 0x21d9920 already
> > deleted.
> > > ERR<3219>:eo lib/eo/eo.c:1306 _eo_unref() Object 0x21d9920 already
> > deleted.
> > > as soon as you call eo_del()
> > >
> > > While eo_unref() cause an endless loop on elm_shutdown with this
> warning
> > > repeated forever:
> > > CRI<3242>: lib/eo/eo.c:1081 eo_parent_set() *** Eina Magic Check Failed
> > at
> > > 0x1a88f80 !!!
> > > Input handle is wrong type
> > > Expected: a186bc32 - Eo
> > > Supplied: afda6798 - (unknown)
> > > *** NAUGHTY PROGRAMMER!!!
> > > *** SPANK SPANK SPANK!!!
> > > *** Now go fix your code. Tut tut tut!
> > >
> > >
> > > I'm doing something wrong? I'm misunderstanding something?
> > >
> > > any help is appreciated
> > >
> > > thanks
> > > davemds
> > >
> > >
> >
> --
> > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > > MVPs and experts. ON SALE this month only -- learn more at:
> > > http://p.sf.net/sfu/learnnow-d2d
> > > ___
> > > enlightenment-devel mailing list
> > > enlightenment-devel@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >
> >
> >
> --
> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > MVPs and experts. ON SALE this month only -- learn more at:
> > http://p.sf.net/sfu/learnnow-d2d
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps

Re: [E-devel] Eo del/unref question

2013-01-29 Thread Davide Andreoli
2013/1/29 Tom Hacohen 

> No, custom constructor is not the old one.
>
> You need to use:
>
> #define elm_obj_win_constructor(name, type)
> ELM_OBJ_WIN_ID(ELM_OBJ_WIN_SUB_ID_WIN_CONSTRUCTOR), EO_TYPECHECK(const
> char *, name), EO_TYPECHECK(Elm_Win_Type, type)
>

haa, ok,now i can create a window using:
win = eo_add_custom(ELM_OBJ_WIN_CLASS, NULL,
elm_obj_win_constructor("main", ELM_WIN_BASIC));

thanks, I will make more tests tomorrow...too tired now


>
> >From elm_win.h.
>
> And well, you should switch to Eo for all the objects. Please also talk to
> Yakov in CC, as I believe he has already got Python bindings for Eo.
>

Yakov: ping
are you working on py bindings? we are doing double work? whats your goal?



>
>
> On Tue, Jan 29, 2013 at 9:18 PM, Davide Andreoli  >wrote:
>
> > 2013/1/29 Tom Hacohen 
> >
> > > Don't use eo_del/unref as counterparts to the old API. Create the
> objects
> > > with the new API if you would like to use them...
> > >
> >
> > Hi, thanks for the fast reply.
> >
> > I have tried that approach but I have problems with some objects than,
> > for example elm_win:
> > if I do:
> > win = eo_add(ELM_OBJ_WIN_CLASS, NULL);
> >
> > I get the error:
> > ERR<3716>:elementary elm_win.c:2979 _constructor() only custom
> constructor
> > can be used with 'elm_win' class
> >
> > "custom constructor" is the old one right?
> > In that case I have to manage different delete cases for objs that
> support
> > eo and the ones that don't,
> > and I lost all the benefits of a single-delete-code for every objects :/
> >
> > thanks
> > davemds
> >
> >
> >
> > > On 29 Jan 2013 19:37, "Davide Andreoli" 
> wrote:
> > >
> > > > Hi all,
> > > > I'm working/studying Eo while trying to optimize the python bindings
> > > > and I have some problems deleting eo objects.
> > > >
> > > > see this super simple example:
> > > > (pastebin.com/1C0dqdYA for a "colored" version)
> > > >
> > > >
> > > > #include 
> > > > #include 
> > > >
> > > > void
> > > > my_win_del(void *data, Evas_Object *obj, void *event_info)
> > > > {
> > > >elm_exit();
> > > > }
> > > >
> > > > EAPI_MAIN int
> > > > elm_main(int argc, char **argv)
> > > > {
> > > > Evas_Object *win, *r;
> > > >
> > > > win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
> > > > elm_win_title_set(win, "Elementary Tests");
> > > > evas_object_smart_callback_add(win, "delete,request", my_win_del,
> > > > NULL);
> > > > evas_object_resize(win, 320, 320);
> > > > evas_object_show(win);
> > > >
> > > > r = evas_object_rectangle_add(evas_object_evas_get(win));
> > > > evas_object_resize(r, 100, 100);
> > > > evas_object_show(r);
> > > >
> > > > evas_object_del(r); // this one work as expected
> > > > // eo_del(r);   // this give a bad warnig
> > > > // eo_unref(r);// this cause an endless loop on
> > > > elm_shutdown
> > > >
> > > > elm_run();
> > > > elm_shutdown();
> > > >
> > > > return 0;
> > > > }
> > > >
> > > > ELM_MAIN()
> > > >
> > > >
> > > >
> > > > The example simply create a rectangle and then delete it, the only
> > > working
> > > > way to delete the rect
> > > > seems to be the evas_object_del call (that work as expected)
> > > >
> > > > Using eo_del() to delete the rect cause this warning:
> > > > ERR<3219>:eo lib/eo/eo.c:1306 _eo_unref() Object 0x21d9920 already
> > > deleted.
> > > > ERR<3219>:eo lib/eo/eo.c:1306 _eo_unref() Object 0x21d9920 already
> > > deleted.
> > > > as soon as you call eo_del()
> > > >
> > > > While eo_unref() cause an endless loop on elm_shutdown with this
> > warning
> > > > repeated forever:
> > > > CRI<3242>: lib/eo/eo.c:1081 eo_parent_set() *** Eina Magic Check
> Failed
> > > at
> > > > 0x1a88f80 !!!
> > > > Input handle is wrong type
> > > > Expected: a186bc32 - Eo
> > > > Supplied: afda6798 - (unknown)
> > > > *** NAUGHTY PROGRAMMER!!!
> > > > *** SPANK SPANK SPANK!!!
> > > > *** Now go fix your code. Tut tut tut!
> > > >
> > > >
> > > > I'm doing something wrong? I'm misunderstanding something?
> > > >
> > > > any help is appreciated
> > > >
> > > > thanks
> > > > davemds
> > > >
> > > >
> > >
> >
> --
> > > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > > > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills
> current
> > > > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > > > MVPs and experts. ON SALE this month only -- learn more at:
> > > > http://p.sf.net/sfu/learnnow-d2d
> > > > ___
> > > > enlightenment-devel mailing list
> > > > enlightenment-devel@lists.sourceforge.net
> > > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > > >
> > >
> > >
> >
> --
> > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > > MVC, Windows 8

Re: [E-devel] Phabricator test environment

2013-01-29 Thread Kim Woelders
On Fri, 25 Jan 2013 17:46:59 +0100, Tom Hacohen   
wrote:

> Hey guys,
>
> Daniel and I (with beber's help) have set up a phabricator instance on
> e5. You can either auth using your github account or just register (very
> ugly registration form) and give it a go.
>
> We have the efl repo and an efl project set up for you to play with.
>
> Address is https://phab.enlightenment.org (ignore the cert for the time
> being).
>
> Please try to test features, tell us what you think, and maybe even read
> a bit about phabricator to understand what you think we should do.
>
Hello,

Does this work yet? I seem to have been able to get myself registered, but  
I don't get any registration confirmation or any e-mails from the "Forgot  
Password / Email Login" page.

/Kim

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Phabricator test environment

2013-01-29 Thread Tom Hacohen
Yes it does work; Unfortunately not for everyone for some reason.
Could you try again now? I think I may have fixed it, not sure though.


On Tue, Jan 29, 2013 at 10:06 PM, Kim Woelders  wrote:

> On Fri, 25 Jan 2013 17:46:59 +0100, Tom Hacohen 
> wrote:
>
> > Hey guys,
> >
> > Daniel and I (with beber's help) have set up a phabricator instance on
> > e5. You can either auth using your github account or just register (very
> > ugly registration form) and give it a go.
> >
> > We have the efl repo and an efl project set up for you to play with.
> >
> > Address is https://phab.enlightenment.org (ignore the cert for the time
> > being).
> >
> > Please try to test features, tell us what you think, and maybe even read
> > a bit about phabricator to understand what you think we should do.
> >
> Hello,
>
> Does this work yet? I seem to have been able to get myself registered, but
> I don't get any registration confirmation or any e-mails from the "Forgot
> Password / Email Login" page.
>
> /Kim
>
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>



-- 
Tom.
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] e5: Buildbot slave migration

2013-01-29 Thread Bertrand Jacquin
Hi,

Enlightenment buildbot slave is now hosted on e5.

To remind you, public URL is : http://build.enlightenment.fr

For the moment the compiler is gcc 4.6.3, but we actually have the
following for amd64 :

 - gcc 3.3.6
 - gcc 4.3.6
 - gcc 4.4.7
 - gcc 4.5.4
 - gcc 4.6.3
 - gcc 4.7.2
 - icc 13.0 (with a valid license)
 - clang 3.2
 - PathScale EKOPath 5.0.0
 - tcc 0.9.25
 - pcc 1.1.0

It could fine is some time to get more builders chains that use all the
available compiler than can compiler EFL and Enlightenment code.

Cross compiler are also planned, but this will be delayed until other
compiler are in use.

e3 buildbot is now cleared and unused.

-- 
Beber


pgpp2suCMXr0K.pgp
Description: PGP signature
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Phabricator test environment

2013-01-29 Thread Bertrand Jacquin
On 2013-01-29 23:06, Kim Woelders wrote:
> On Fri, 25 Jan 2013 17:46:59 +0100, Tom Hacohen 
> 
> wrote:
>
>> Hey guys,
>>
>> Daniel and I (with beber's help) have set up a phabricator instance 
>> on
>> e5. You can either auth using your github account or just register 
>> (very
>> ugly registration form) and give it a go.
>>
>> We have the efl repo and an efl project set up for you to play with.
>>
>> Address is https://phab.enlightenment.org (ignore the cert for the 
>> time
>> being).
>>
>> Please try to test features, tell us what you think, and maybe even 
>> read
>> a bit about phabricator to understand what you think we should do.
>>
> Hello,
>
> Does this work yet? I seem to have been able to get myself 
> registered, but
> I don't get any registration confirmation or any e-mails from the 
> "Forgot
> Password / Email Login" page.

Bug in mail relay configuration. Fixed ! Thanks for report.

Could you try once more ?

Beber

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] e5: Buildbot URL migration

2013-01-29 Thread Bertrand Jacquin
Hi,

The public URL for buildbot is now http://build.enlightenment.org

While it's still hosted by e4 for the moment, you are redirected
internally by e5 to e4 until we haven't move buildbot master to e5. It's
transparent.

-- 
Beber


pgpuFR_QzvCkX.pgp
Description: PGP signature
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Git repository layout - RFC

2013-01-29 Thread The Rasterman
On Tue, 29 Jan 2013 21:33:45 + Tom Hacohen  said:

> Well, we aren't doing the switch yet. Probably early next week. But we are
> prepping the git repos now (it takes time, a few days of actually
> *running*).
> 
> We'll probably upload the repos to their final resting places tomorrow or
> the day after, let them settle there for a week (while letting people play
> with them),
> and then remove the relevant dirs from svn (we aren't moving everything in
> one go), and start using git. :)

i would suggest mid/late next week actually. :) considering the troupe(s) going
to fosdem...

> --
> Tom.
> 
> 
> On Tue, Jan 29, 2013 at 8:03 PM, Ulisses Furquim
> wrote:
> 
> > Hi,
> >
> > On Mon, Jan 28, 2013 at 2:25 PM, Tom Hacohen 
> > wrote:
> > >
> > > On 21/01/13 18:30, Daniel Willmann wrote:
> > > > We also started fixing the commit names (since Git uses real-name +
> > > > email instead of username). Please review the list at:
> > > >
> > > > http://trac.enlightenment.org/e/wiki/GIT_Migration_Authors
> > >
> > > Last chance to update it. We will run the final scripts tomorrow.
> >
> > When? Has that happened already? Please lock SVN before that. :-)
> >
> > --
> > Ulisses Furquim
> > ProFUSION embedded systems
> > http://profusion.mobi
> > Mobile: +55 19 9250 0942
> > Skype: ulissesffs
> >
> >
> > --
> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > MVPs and experts. ON SALE this month only -- learn more at:
> > http://p.sf.net/sfu/learnnow-d2d
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> 
> 
> 
> -- 
> Tom.
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> 


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: seoz IN trunk: devs/seoz efx/src/lib

2013-01-29 Thread Daniel Juyung Seo
Argg unintended code sneaked into this commit.
But i fixed this in 83453 anyway.
Shamed.

Daniel Juyung Seo (SeoZ)

On Wed, Jan 30, 2013 at 9:17 AM, Enlightenment SVN
 wrote:
> Log:
> efx efx_private.h: ecore evas is needed only for tests. tests already 
> includes Ecore_Evas.h.
>
> Author:   seoz
> Date: 2013-01-29 16:17:20 -0800 (Tue, 29 Jan 2013)
> New Revision: 83450
> Trac: http://trac.enlightenment.org/e/changeset/83450
>
> Modified:
>   trunk/devs/seoz/build.sh trunk/efx/src/lib/efx_private.h
>
> Modified: trunk/devs/seoz/build.sh
> ===
> --- trunk/devs/seoz/build.sh2013-01-29 19:55:42 UTC (rev 83449)
> +++ trunk/devs/seoz/build.sh2013-01-30 00:17:20 UTC (rev 83450)
> @@ -58,14 +58,10 @@
> if [ -f Makefile ]; then
> make clean distclean || true
> fi
> -   if [ -f build/Makefile ]; then
> -   cd build
> -   make clean distclean
> -   cd ..
> -   fi
> NOCONFIGURE=1 ./autogen.sh
> mkdir build -p
> pushd build
> +   rm -rf *
> ../configure --disable-doc --enable-fb --disable-tslib
> make 3>&1 1>&2 2>&3 | tee $LOG_WARN_TMP_FILE
> cat $LOG_WARN_TMP_FILE >> $LOG_WARN_FILE
>
> Modified: trunk/efx/src/lib/efx_private.h
> ===
> --- trunk/efx/src/lib/efx_private.h 2013-01-29 19:55:42 UTC (rev 83449)
> +++ trunk/efx/src/lib/efx_private.h 2013-01-30 00:17:20 UTC (rev 83450)
> @@ -9,7 +9,6 @@
>
>  #include 
>  #include 
> -#include 
>
>  #include "Efx.h"
>
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_d2d_jan
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Git repository layout - RFC

2013-01-29 Thread Lucas De Marchi
On Tue, Jan 29, 2013 at 7:33 PM, Tom Hacohen  wrote:
> Well, we aren't doing the switch yet. Probably early next week. But we are
> prepping the git repos now (it takes time, a few days of actually
> *running*).


sigh... days?  Are you running this remotely or on the same machine svn is in?

Another thing to consider to fixup the authors is actually running
git-filter-branch after the repo is converted. It should be much
shorter than "days".

I'd also like to ask to convert the commits coming from svn-git-am.py
script so the author in "Patch-by:" in the commit message turns into a
real author in the new repository. I tried to check this looking at
edbus dir (since I proxied lots of patches there), but most of it had
barbieri as the author since he moved the repo -- I think this problem
has already been discussed  and solved.

regards,
Lucas De Marchi

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: seoz trunk/devs/seoz

2013-01-29 Thread Daniel Juyung Seo
With this in-source-build, you can use my .vimrc script with  and .
http://trac.enlightenment.org/e/browser/trunk/devs/seoz/.vimrc

 is "make",
 is "sudo make install".

Thanks.

Daniel Juyung Seo (SeoZ)

On Wed, Jan 30, 2013 at 9:17 AM, Enlightenment SVN
 wrote:
> Log:
> devs/seoz build.sh: come back to in-source-build as of now. checking 
> build/Makefile and make clean/distclean didn't work well. i will make 
> out-of-source-build optional later.
>
> Author:   seoz
> Date: 2013-01-29 16:17:33 -0800 (Tue, 29 Jan 2013)
> New Revision: 83453
> Trac: http://trac.enlightenment.org/e/changeset/83453
>
> Modified:
>   trunk/devs/seoz/build.sh
>
> Modified: trunk/devs/seoz/build.sh
> ===
> --- trunk/devs/seoz/build.sh2013-01-30 00:17:30 UTC (rev 83452)
> +++ trunk/devs/seoz/build.sh2013-01-30 00:17:33 UTC (rev 83453)
> @@ -20,11 +20,13 @@
>  #set -x
>  shopt -s expand_aliases
>
> +# build options
>  unset LANG
>  export CFLAGS="-O2 -march=native -ffast-math -g3 -W -Wall -Wextra -mno-sse4" 
> # -Wshadow"
>  export CC="ccache gcc"
>  alias make='make -j6'
>
> +# list of packages
>  export BUILD_ELM_OPTION="PROTO/emap PROTO/elocation PROTO/libeweather"
>  export BUILD_CORE_EFL="evas_generic_loaders e_dbus expedite 
> $BUILD_ELM_OPTION elementary e"
>  export BUILD_PYTHON_BINDINGS="BINDINGS/python/python-evas 
> BINDINGS/python/python-ecore BINDINGS/python/python-elementary 
> BINDINGS/python/python-edje BINDINGS/python/python-emotion 
> BINDINGS/python/python-e_dbus"
> @@ -38,6 +40,7 @@
>  export BUILD_BROKEN="excessive enki espionnage FORMATTING/ecrustify 
> PROTO/enna-explorer E-MODULES-EXTRA/everything-shotgun 
> E-MODULES-EXTRA/comp-scale E-MODULES-EXTRA/elfe"
>  export BUILD_WITH_CMAKE="ecrire"
>
> +# configurations
>  PWD=`pwd`
>  LOG_WARN_FILE=$PWD"/warnings.txt"
>  LOG_WARN_TMP_FILE=$PWD"/warnings_tmp.txt"
> @@ -58,6 +61,25 @@
> if [ -f Makefile ]; then
> make clean distclean || true
> fi
> +   ./autogen.sh --disable-doc --enable-fb --disable-tslib
> +   make 3>&1 1>&2 2>&3 | tee $LOG_WARN_TMP_FILE
> +   cat $LOG_WARN_TMP_FILE >> $LOG_WARN_FILE
> +   rm $LOG_WARN_TMP_FILE
> +   sudo make install
> +   sudo ldconfig
> +   popd
> +}
> +
> +function build_efl_out_of_source()
> +{
> +   echo " "
> +   echo " EFL "
> +   pushd efl
> +   echo "" >> $LOG_WARN_FILE
> +   echo "[EFL]" >> $LOG_WARN_FILE
> +   if [ -f Makefile ]; then
> +   make clean distclean || true
> +   fi
> NOCONFIGURE=1 ./autogen.sh
> mkdir build -p
> pushd build
> @@ -72,7 +94,7 @@
> popd
>  }
>
> -function build()
> +function build_out_of_source()
>  {
> build_dir=$1
> autogen_option=$2
> @@ -104,7 +126,7 @@
> done
>  }
>
> -function build_in_source()
> +function build()
>  {
> build_dir=$1
> autogen_option=$2
> @@ -127,7 +149,6 @@
> done
>  }
>
> -
>  function build_cmake()
>  {
> build_dir=$1
> @@ -248,7 +269,7 @@
>  build "$BUILD_PYTHON_BINDINGS" "--prefix=/usr/local"
>  #build "$BUILD_CPP_BINDINGS"
>  build "$BUILD_E_MODULES $BUILD_ETC $BUILD_EXAMPLE "
> -build_in_source "$BUILD_IN_SOURCE"
> +build "$BUILD_IN_SOURCE"
>  build_game_prerequisites
>  build "$BUILD_GAMES"
>  build_cmake "$BUILD_WITH_CMAKE"
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_d2d_jan
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] E not compiling

2013-01-29 Thread Cedric BAIL
Hello everyone,

Some of you are experiencing an issue when trying to compile E. The
compiler is complaining about some missing field used somewhere in
e_border.c. This is due to the fact that you have an old Ecore_X.h
file in your include/ecore-1/ directory. Remove it and try again. EFL
does now install this header in include/ecore-x-1/ and ecore-x.pc does
provide the right information.

Have fun,
--
Cedric BAIL

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [e-users] E not compiling

2013-01-29 Thread Daniel Juyung Seo
Yes this happended to me and my colleagues this morning.
I fixed them locally but others also have to follow what cedric mentioned.
Thanks.

Daniel Juyung Seo (SeoZ)

On Wed, Jan 30, 2013 at 10:36 AM, Cedric BAIL  wrote:
> Hello everyone,
>
> Some of you are experiencing an issue when trying to compile E. The
> compiler is complaining about some missing field used somewhere in
> e_border.c. This is due to the fact that you have an old Ecore_X.h
> file in your include/ecore-1/ directory. Remove it and try again. EFL
> does now install this header in include/ecore-x-1/ and ecore-x.pc does
> provide the right information.
>
> Have fun,
> --
> Cedric BAIL
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_d2d_jan
> ___
> enlightenment-users mailing list
> enlightenment-us...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-users

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eo del/unref question

2013-01-29 Thread Gustavo Sverzut Barbieri
On Tuesday, January 29, 2013, Tom Hacohen wrote:

> Don't use eo_del/unref as counterparts to the old API. Create the objects
> with the new API if you would like to use them...


This is confusing at last




> On 29 Jan 2013 19:37, "Davide Andreoli"  wrote:
>
> > Hi all,
> > I'm working/studying Eo while trying to optimize the python bindings
> > and I have some problems deleting eo objects.
> >
> > see this super simple example:
> > (pastebin.com/1C0dqdYA for a "colored" version)
> >
> >
> > #include 
> > #include 
> >
> > void
> > my_win_del(void *data, Evas_Object *obj, void *event_info)
> > {
> >elm_exit();
> > }
> >
> > EAPI_MAIN int
> > elm_main(int argc, char **argv)
> > {
> > Evas_Object *win, *r;
> >
> > win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
> > elm_win_title_set(win, "Elementary Tests");
> > evas_object_smart_callback_add(win, "delete,request", my_win_del,
> > NULL);
> > evas_object_resize(win, 320, 320);
> > evas_object_show(win);
> >
> > r = evas_object_rectangle_add(evas_object_evas_get(win));
> > evas_object_resize(r, 100, 100);
> > evas_object_show(r);
> >
> > evas_object_del(r); // this one work as expected
> > // eo_del(r);   // this give a bad warnig
> > // eo_unref(r);// this cause an endless loop on
> > elm_shutdown
> >
> > elm_run();
> > elm_shutdown();
> >
> > return 0;
> > }
> >
> > ELM_MAIN()
> >
> >
> >
> > The example simply create a rectangle and then delete it, the only
> working
> > way to delete the rect
> > seems to be the evas_object_del call (that work as expected)
> >
> > Using eo_del() to delete the rect cause this warning:
> > ERR<3219>:eo lib/eo/eo.c:1306 _eo_unref() Object 0x21d9920 already
> deleted.
> > ERR<3219>:eo lib/eo/eo.c:1306 _eo_unref() Object 0x21d9920 already
> deleted.
> > as soon as you call eo_del()
> >
> > While eo_unref() cause an endless loop on elm_shutdown with this warning
> > repeated forever:
> > CRI<3242>: lib/eo/eo.c:1081 eo_parent_set() *** Eina Magic Check Failed
> at
> > 0x1a88f80 !!!
> > Input handle is wrong type
> > Expected: a186bc32 - Eo
> > Supplied: afda6798 - (unknown)
> > *** NAUGHTY PROGRAMMER!!!
> > *** SPANK SPANK SPANK!!!
> > *** Now go fix your code. Tut tut tut!
> >
> >
> > I'm doing something wrong? I'm misunderstanding something?
> >
> > any help is appreciated
> >
> > thanks
> > davemds
> >
> >
> --
> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> > MVPs and experts. ON SALE this month only -- learn more at:
> > http://p.sf.net/sfu/learnnow-d2d
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
>
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
>  



-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] bottomless evas

2013-01-29 Thread Cedric BAIL
On Mon, Jan 28, 2013 at 9:41 PM, Michael Blumenkrantz
 wrote:
> here's a fun bug:
>
> * create an evas
> * set an object to layer -100
> * call evas_object_lower() on a different object
> * your canvas no longer has a bottom object and stacking is destroyed

I must say I don't understand your problem. I tried what you described
in the example code attached and everything work as expected. Could
you try to explain what you are trying to achieve ?
--
Cedric BAIL
#include 

static int vx = +1;
static int vy = +2;

static int w = 1024;
static int h = 768;

static Eina_Bool
my_anim(void *data)
{
   Evas_Object *rect = data;
   Evas_Coord ox, oy, ow, oh;

   evas_object_geometry_get(rect, &ox, &oy, &ow, &oh);
   ox += vx;
   oy += vy;

   if (ox + ow > w)
 {
ox = w - ow;
vx = -vx;
 }
   else if (ox < 0)
 {
ox = 0;
vx = -vx;
 }
   if (oy + oh > h)
 {
oy = h - oh;
vy = -vy;
 }
   else if (oy < 0)
 {
oy = 0;
vy = -vy;
 }

   evas_object_move(rect, ox, oy);

   return EINA_TRUE;
}

static void
my_rect_click(void *data EINA_UNUSED, Evas *e EINA_UNUSED, Evas_Object *obj, void *event_info EINA_UNUSED)
{
   fprintf(stderr, "current layer: %i\n", evas_object_layer_get(obj));
   evas_object_lower(obj);
   fprintf(stderr, "LOWER %i !\n", evas_object_layer_get(obj));
}

static void
my_win_resize(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, void *event_info EINA_UNUSED)
{
   Evas_Object *below = data;

   evas_object_geometry_get(obj, NULL, NULL, &w, &h);
   evas_object_resize(below, w, h);
}

static void
my_win_del(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
{
   elm_exit();
}

EAPI_MAIN int
elm_main(int argc, char **argv)
{
   Evas_Object *win;
   Evas_Object *below;
   Evas_Object *rect;

   elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);

   win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
   elm_win_title_set(win, "Layer anarchy");
   evas_object_smart_callback_add(win, "delete,request", my_win_del, NULL);
   evas_object_resize(win, 1024, 768);

   below = evas_object_rectangle_add(win);
   evas_object_size_hint_weight_set(below, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
   evas_object_color_set(below, 255, 0, 0, 255);
   evas_object_resize(below, 1024, 768);
   evas_object_layer_set(below, -100);
   evas_object_show(below);

   rect = evas_object_rectangle_add(win);
   evas_object_move(rect, 50, 50);
   evas_object_resize(rect, 42, 42);
   evas_object_color_set(rect, 0, 255, 0, 255);
   evas_object_show(rect);

   evas_object_show(win);

   evas_object_event_callback_add(win, EVAS_CALLBACK_RESIZE, my_win_resize, below);
   evas_object_event_callback_add(rect, EVAS_CALLBACK_MOUSE_DOWN, my_rect_click, NULL);
   ecore_animator_add(my_anim, rect);

   elm_run();

   elm_shutdown();
   return 0;
}

ELM_MAIN()

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [Patch] fixed Ctxpopup _arrow_update

2013-01-29 Thread Bora Hwang
Dear all,

In elc_ctxpopup.c, there's something wrong when calculating the position of 
arrow.
According to the previous code, arrow cannot be shown in the right position
when it should not be displayed in the middle of the ctxpopup.

After the value and condition of the calculation are changed, 
user can put the arrow where he or she wants easily.
(As far as the position has appropriate value in the window)

Thanks.

elc_ctxpopup.patch.txt
Description: Binary data
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Columned List Widget?

2013-01-29 Thread David Seikel
On Mon, 28 Jan 2013 04:20:27 -0600 Jeff Hoogland
 wrote:

> David,

I was without power for a few days, cyclone in Australia, and the
remnants of it causing havoc.  One quarter of South East Queensland
(where I live) was without power since Sunday.

So I'm just catching up.

> I've used the elementary table class a good bit in my playing with
> code and I'm fairly certain it doesn't offer any easy sorting/list
> like features for it's rows. Do evas or edje offer this?

Looks like others discussed all of this.

> On Sat, Jan 26, 2013 at 4:36 AM, David Seikel 
> wrote:
> 
> > On Fri, 25 Jan 2013 16:28:32 + Michael Blumenkrantz
> >  wrote:
> >
> > > On Fri, 25 Jan 2013 14:26:22 -0200
> > > Gustavo Sverzut Barbieri  wrote:
> > >
> > > > On Fri, Jan 25, 2013 at 2:16 PM, Michael Blumenkrantz
> > > >  wrote:
> > > > > On Fri, 25 Jan 2013 14:11:47 -0200
> > > > > Gustavo Sverzut Barbieri  wrote:
> > > > >
> > > > >> On Fri, Jan 25, 2013 at 1:41 PM, Jeff Hoogland
> > > > >>  wrote:
> > > > >> > Is it possible to "link" multiple lists together so they
> > > > >> > scroll at the same time?
> > > > >>
> > > > >> you could simulate this (I do not recommend) by creating
> > > > >> your own gengrid item class and style. This style would
> > > > >> define multiple Edje parts, the cells for those columns.
> > > > >> These have fixed size (ie: 200px), or proportional size (ie:
> > > > >> 20%) or even be dynamically calculated and expand
> > > > >> horizontally based on some factor (the largest label?). In
> > > > >> the last case you'd have to go and call item.update() for
> > > > >> every item, so they can expand to the new maximum size.
> > > > >>
> > > > >> What I do recommend is you to look at every modern GUI and
> > > > >> none of those use these anymore. It's usually used for large
> > > > >> number of items, where the number of information can be
> > > > >> overwhelming. You better segment the information and plan
> > > > >> what to show. For instance, the package manager you sent
> > > > >> should do what it delegate to user... come on, show the
> > > > >> "installed version" and "available version"? Why not just an
> > > > >> icon with tri-state: installed and updated, installed and
> > > > >> outdated, uninstalled. Could even not be an icon, but a bg
> > > > >> color to make it easy to spot. If I were doing a package
> > > > >> manager, I'd as well merge similar packages with different
> > > > >> parts, as it's useless to have them in the main list, just
> > > > >> click to open more details (instead of show -dev, -dbg,
> > > > >> -examples, -doc... you just show package name, click and it
> > > > >> expand (or another window/popup/frame) show each element and
> > > > >> status.
> > > > >
> > > > > while I agree that it's misused in most cases, I still see no
> > > > > better alternative for a desktop music player gui. the
> > > > > ability to dynamically see/sort aligned rows containing
> > > > > artist/track/title does not seem to be replaceable.
> > > >
> > > > It's a matter of getting used. For instance, I'm using iTunes
> > > > (http://www.apple.com/itunes/whats-new/) and like the new GUI,
> > > > they still have that view as an options, and that's the view
> > > > when you choose "all music", but they have these other that are
> > > > nice to use:
> > > >
> > > >-
> > > >
> > http://images.apple.com/itunes/whats-new/images/redesigned_player_albumview.jpg
> > > > you click the album and it expands in line with the music.
> > > >-
> > > >
> > http://images.apple.com/itunes/whats-new/images/redesigned_player_bonusfeatures1.jpg
> > > > similar to the album, you click the artist and it will show
> > > > albums and top music.
> > > >- http://37signals.com/svn/images/itunes-album-view-large.jpg
> > > > previous album view, in list-like mode.
> > > >
> > > > The last one is more similar to a list, but as you can see it's
> > > > not a regular list, as some cells are expanded vertically
> > > > inside an album. So it's a custom widget/view as well.
> > > >
> > > > --
> > > > Gustavo Sverzut Barbieri
> > > > http://profusion.mobi embedded systems
> > > > --
> > > > MSN: barbi...@gmail.com
> > > > Skype: gsbarbieri
> > > > Mobile: +55 (19) 9225-2202
> > >
> > > hm that's kinda neat. I suppose I could see getting used to that,
> > > and it would look nice if I wanted something to show off, but I'd
> > > still prefer my extremely bland column-view for everyday use :/
> > >
> > >
> > --
> > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5,
> > > CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your
> > > skills current with LearnDevNow - 3,200 step-by-step video
> > > tutorials by Microsoft MVPs and experts. ON SALE this month only
> > > -- learn more at: http://p.sf.net/sfu/learnnow-d2d
> > > ___
> > > enlightenment-devel maili

Re: [E-devel] Columned List Widget?

2013-01-29 Thread David Seikel
On Mon, 28 Jan 2013 17:24:12 + Michael Blumenkrantz
 wrote:

> On Mon, 28 Jan 2013 15:18:39 -0200
> Gustavo Sverzut Barbieri  wrote:
> 
> > On Sat, Jan 26, 2013 at 8:36 AM, David Seikel 
> > wrote:
> > > On Fri, 25 Jan 2013 16:28:32 + Michael Blumenkrantz
> > >  wrote:
> > >
> > >> On Fri, 25 Jan 2013 14:26:22 -0200
> > >> Gustavo Sverzut Barbieri  wrote:
> > >>
> > >> > On Fri, Jan 25, 2013 at 2:16 PM, Michael Blumenkrantz
> > >> >  wrote:
> > >> > > On Fri, 25 Jan 2013 14:11:47 -0200
> > >> > > Gustavo Sverzut Barbieri  wrote:
> > >> > >
> > >> > >> On Fri, Jan 25, 2013 at 1:41 PM, Jeff Hoogland
> > >> > >>  wrote:
> > >> > >> > Is it possible to "link" multiple lists together so they
> > >> > >> > scroll at the same time?
> > >> > >>
> > >> > >> you could simulate this (I do not recommend) by creating
> > >> > >> your own gengrid item class and style. This style would
> > >> > >> define multiple Edje parts, the cells for those columns.
> > >> > >> These have fixed size (ie: 200px), or proportional size
> > >> > >> (ie: 20%) or even be dynamically calculated and expand
> > >> > >> horizontally based on some factor (the largest label?). In
> > >> > >> the last case you'd have to go and call item.update() for
> > >> > >> every item, so they can expand to the new maximum size.
> > >> > >>
> > >> > >> What I do recommend is you to look at every modern GUI and
> > >> > >> none of those use these anymore. It's usually used for
> > >> > >> large number of items, where the number of information can
> > >> > >> be overwhelming. You better segment the information and
> > >> > >> plan what to show. For instance, the package manager you
> > >> > >> sent should do what it delegate to user... come on, show
> > >> > >> the "installed version" and "available version"? Why not
> > >> > >> just an icon with tri-state: installed and updated,
> > >> > >> installed and outdated, uninstalled. Could even not be an
> > >> > >> icon, but a bg color to make it easy to spot. If I were
> > >> > >> doing a package manager, I'd as well merge similar packages
> > >> > >> with different parts, as it's useless to have them in the
> > >> > >> main list, just click to open more details (instead of show
> > >> > >> -dev, -dbg, -examples, -doc... you just show package name,
> > >> > >> click and it expand (or another window/popup/frame) show
> > >> > >> each element and status.
> > >> > >
> > >> > > while I agree that it's misused in most cases, I still see no
> > >> > > better alternative for a desktop music player gui. the
> > >> > > ability to dynamically see/sort aligned rows containing
> > >> > > artist/track/title does not seem to be replaceable.
> > >> >
> > >> > It's a matter of getting used. For instance, I'm using iTunes
> > >> > (http://www.apple.com/itunes/whats-new/) and like the new GUI,
> > >> > they still have that view as an options, and that's the view
> > >> > when you choose "all music", but they have these other that
> > >> > are nice to use:
> > >> >
> > >> >-
> > >> > http://images.apple.com/itunes/whats-new/images/redesigned_player_albumview.jpg
> > >> > you click the album and it expands in line with the music.
> > >> >-
> > >> > http://images.apple.com/itunes/whats-new/images/redesigned_player_bonusfeatures1.jpg
> > >> > similar to the album, you click the artist and it will show
> > >> > albums and top music.
> > >> >-
> > >> > http://37signals.com/svn/images/itunes-album-view-large.jpg
> > >> > previous album view, in list-like mode.
> > >> >
> > >> > The last one is more similar to a list, but as you can see
> > >> > it's not a regular list, as some cells are expanded vertically
> > >> > inside an album. So it's a custom widget/view as well.
> > >> >
> > >> > --
> > >> > Gustavo Sverzut Barbieri
> > >> > http://profusion.mobi embedded systems
> > >> > --
> > >> > MSN: barbi...@gmail.com
> > >> > Skype: gsbarbieri
> > >> > Mobile: +55 (19) 9225-2202
> > >>
> > >> hm that's kinda neat. I suppose I could see getting used to
> > >> that, and it would look nice if I wanted something to show off,
> > >> but I'd still prefer my extremely bland column-view for everyday
> > >> use :/
> > >>
> > > /me scratches his head.
> > >
> > > Er, that's a table, evas supports tables, edje supports tables,
> > > elementary supports tables.  Pffft
> > >
> > > Have you all vanished up your "we do things differently"
> > > arseholes so far that none of you recognised a plain old ordinary
> > > table?  No disrespect intended.  B-)
> > >
> > > BTW, tables are used on phones.  It's not something that is old
> > > fashioned and people are moving away from.  Tables have their good
> > > uses.  Try doing a spreadsheet without one.  Some popular file
> > > browsers use tables by default to.  E17 uses tables.
> > 
> > It's different. If you use a plain table inside a scroller, you'll
> > run out of memory quite soon with  package manager. It would create
> > dozen Evas_Object for each row

Re: [E-devel] Phabricator test environment

2013-01-29 Thread David Seikel
On Tue, 29 Jan 2013 21:04:27 +0900 Carsten Haitzler (The Rasterman)
 wrote:

> On Tue, 29 Jan 2013 09:20:03 -0200 "Eduardo Lima (Etrunko)"
>  said:
> 
> > On Tue, Jan 29, 2013 at 6:49 AM, Carsten Haitzler
> >  wrote:
> > > On Tue, 29 Jan 2013 16:16:33 +0900 Cedric BAIL
> > >  said:
> > >
> > >> On Tue, Jan 29, 2013 at 3:52 PM, Jérémy Zurcher
> > >>  wrote:
> > >> > On Monday 28 January 2013  12:44, Alex-P. Natsios wrote :
> > >> >> Now that i opened it again it opened relatively faster but in
> > >> >> an editor thingy last time i tried (yesterday) it took quite
> > >> >> a time for most of the Code Browser interface.
> > >> >> Commit history listing, opening a file, navigating in code..
> > >> >> all took a few seconds and were barely rendering line by line
> > >> >> here.
> > >> >>
> > >> >> On Mon, Jan 28, 2013 at 12:24 PM, Martin Jansa
> > >> >>  wrote:
> > >> >> > On Mon, Jan 28, 2013 at 03:04:35AM +0100, Cedric BAIL wrote:
> > >> >> >> On Mon, Jan 28, 2013 at 1:18 AM, Alex-P. Natsios
> > >> >> >>  wrote:
> > >> >> >> > My register issue with the captcha has disappeared and i
> > >> >> >> > finally was able to make an account.
> > >> >> >
> > >> >> > I still had to edit local source of registration form and
> > >> >> > replace http:// with https:// in recaptcha URL.
> > >> >> >
> > >> >> >> > The UI is pretty nice but can be confusing , same goes
> > >> >> >> > for some linguistic choices for most terms (as also
> > >> >> >> > stated by David Seikel and Davide Andreoli).
> > >> >> >> > As stated by Jérémy Zurcher in another thread the code
> > >> >> >> > browser is REALLY slow (damn.. sorry for arguing with
> > >> >> >> > you .. haven't tested it.. its slower than acceptable
> > >> >> >> > O.o).
> > >> >> >>
> > >> >> >> Uh ? I am not sure we are testing the same website ! The
> > >> >> >> code browser is infinitely faster than what we have now
> > >> >> >> and seems to give almost instant access. Maybe it is due
> > >> >> >> to some network lag ? Where are you and what do you mean
> > >> >> >> by really slow ? How long does it take for you to navigate
> > >> >> >> to master efl/src/lib/eina/eina_file.c ? It took me 18s
> > >> >> >> from the "Browse Repositories" and I feel like the
> > >> >> >> bottleneck is my ability to click the link quickly.
> > >> >> >
> > >> >> > Here it was also relatively quick.
> > >> >> > 2 minutes to find "Browser Repositories" :)
> > >> >> > and then 12s to naviage to efl/src/lib/eina/eina_file.c.
> > >> >> >
> > >> >> > Cheers,
> > >> >> >
> > >> >> > --
> > >> >> > Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com
> > >> >> >
> > >> >>
> > >> >>
> > >> >>
> > >> >> --
> > >> >> Regards,
> > >> >>
> > >> >> Alex-P. Natsios
> > >> >> (a.k.a Drakevr)
> > >> >>
> > >> >
> > >> >
> > >> > compare these 2.com, and navigate
> > >> >
> > >> > http://cgit.asynk.ch/e/tree/efl/src/lib/eina/eina_file.c
> > >> > https://phab.enlightenment.org/diffusion/EFL/browse/master/src/lib/eina/eina_file.c
> > >>
> > >> It took me 15s to go to eina_file.c instead of 18s.
> > >>
> > >> > speed, signal/noise ratio, syntax coloration, diff options,
> > >> > easy access to branches ... only git blame output is missing
> > >> > from cgit.
> > >>
> > >> syntax coloration is indeed something clearly missing from phab.
> > >>
> > >> > cgit.enlightenment.org is a really cheap and nice
> > >> > complementary tool to have, usable by non-registred users too.
> > >>
> > >> Is it worth maintaining it ? That's our question, at the moment,
> > >> it's a 3s and syntax coloration win from my point of view. Is
> > >> that enough ?
> > >
> > > i say that its not worth it imho... one reason for choosing phab
> > > is that fact that we can sanely maintain it if need be... it's in
> > > php. most devs know php, and if they don't.. they are not writing
> > > c :)
> > 
> > 
> > Wait, does it means that I know PHP!? It's like the Matrix "I know
> > kung-fu" then. \o/
> 
> it is... :) tho tbh.. php is just C with $in front of variables.. and
> no types... :) its that simple.. sou know it by "implication" of
> knowing c. :) thus... "you know king-fu" :)

Well, it's a C like language, there's lots of those.  The big
differences are in the libraries though, but at least C coders will be
familiar with the syntax.  Mostly.

On the other hand, you don't usually embed C source code inside HTML
and expect it to work.  B-)

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Naviframe looses current pushed Item when creating an inner window

2013-01-29 Thread David Seikel
I'll not mention the mixture of top

On Tue, 29 Jan 2013 09:27:59 + Michael Blumenkrantz
 wrote:

> ++
> 
> On Tue, Jan 29, 2013 at 9:24 AM, Carsten Haitzler
> wrote:
> 
> > On Tue, 29 Jan 2013 09:17:01 + Stefan Schmidt
> >  said:
> >
> > smarf.
> >
> > > Hello.
> > >
> > > On 29/01/13 09:01, thomasg wrote:
> > > > Whenever I see what used to be a fine plain text e-mail, being
> > > > _converted_ by some terrible mail client to HTML I am
> > > > frightened, too. :P
> > >
> > > Can anyone guess my feelings when I see mailthreads with some
> > > line or even just one word at the top and the rest of the thread
> > > fully quoted below? :)
> > >
> > > Mailing list etiquette is nothing EFL as a project has. :)
> > >
> > > regards
> > > Stefan Schmidt
> > >
> > >
> > >
> > --
> > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5,
> > > CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your
> > > skills current with LearnDevNow - 3,200 step-by-step video
> > > tutorials by Microsoft MVPs and experts. ON SALE this month only
> > > -- learn more at: http://p.sf.net/sfu/learnnow-d2d
> > > ___
> > > enlightenment-devel mailing list
> > > enlightenment-devel@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >
> >
> >
> > --
> > - Codito, ergo sum - "I code, therefore I am"
> > -- The Rasterman (Carsten Haitzler)
> > ras...@rasterman.com
> >
> >
> >
> > --
> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills
> > current with LearnDevNow - 3,200 step-by-step video tutorials by
> > Microsoft MVPs and experts. ON SALE this month only -- learn more
> > at: http://p.sf.net/sfu/learnnow-d2d
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> --
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills
> current with LearnDevNow - 3,200 step-by-step video tutorials by
> Microsoft MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

and bottom posting we get around here.  :-P

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: tasn IN trunk/efl: doc src/lib/edje src/lib/eo src/lib/evas/canvas

2013-01-29 Thread David Seikel
On Wed, 30 Jan 2013 02:47:52 +0900 Carsten Haitzler (The Rasterman)
 wrote:

> On Tue, 29 Jan 2013 14:52:50 -0200 "Eduardo Lima (Etrunko)"
>  said:
> 
> > On Tue, Jan 29, 2013 at 2:49 PM, Tom Hacohen
> >  wrote:
> > > On 29/01/13 16:38, Eduardo Lima (Etrunko) wrote:
> > >>
> > >> On Tue, Jan 29, 2013 at 2:36 PM, Enlightenment SVN
> > >>  wrote:
> > >>>
> > >>> Log:
> > >>> Eo dbg: Use eina_value as the debug info type.
> > >>>
> > >>> Author:   tasn
> > >>> Date: 2013-01-29 08:36:01 -0800 (Tue, 29 Jan 2013)
> > >>> New Revision: 83443
> > >>> Trac: http://trac.enlightenment.org/e/changeset/83443
> > >>>
> > >>> Modified:
> > >>>trunk/efl/doc/images.mk trunk/efl/src/lib/edje/edje_smart.c
> > >>> trunk/efl/src/lib/eo/Eo.h trunk/efl/src/lib/eo/eo.c
> > >>> trunk/efl/src/lib/evas/canvas/evas_object_image.c
> > >>> trunk/efl/src/lib/evas/canvas/evas_object_main.c
> > >>> trunk/efl/src/lib/evas/canvas/evas_object_text.c
> > >>> trunk/efl/src/lib/evas/canvas/evas_object_textblock.c
> > >>>
> > >>> Modified: trunk/efl/doc/images.mk
> > >>
> > >>
> > >> Can someone fix this images.mk?!?
> > >>
> > >
> > > OH DAMN!!!
> > > HOW DID I MISS THAT?! :(
> > >
> > > Will revert in  a sec. I "git checkout" it so many times that I
> > > guess I forgot.
> > >
> > > WTH is this anyway?
> > >
> > 
> > A recent commit from raster also included it, and I don't have clue
> > of what it could possibly be.
> 
> images.mk just keps getting modified very time you build... and
> without it.. nothing builds...

So basically it's a generated file?  How about someone fix up what
generates it, then keep it out of SVN please?

The .po files constantly conflicting in SVN is bad enough.

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Phabricator test environment

2013-01-29 Thread The Rasterman
On Wed, 30 Jan 2013 15:26:55 +1000 David Seikel  said:

> On Tue, 29 Jan 2013 21:04:27 +0900 Carsten Haitzler (The Rasterman)
>  wrote:
> 
> > On Tue, 29 Jan 2013 09:20:03 -0200 "Eduardo Lima (Etrunko)"
> >  said:
> > 
> > > On Tue, Jan 29, 2013 at 6:49 AM, Carsten Haitzler
> > >  wrote:
> > > > On Tue, 29 Jan 2013 16:16:33 +0900 Cedric BAIL
> > > >  said:
> > > >
> > > >> On Tue, Jan 29, 2013 at 3:52 PM, Jérémy Zurcher
> > > >>  wrote:
> > > >> > On Monday 28 January 2013  12:44, Alex-P. Natsios wrote :
> > > >> >> Now that i opened it again it opened relatively faster but in
> > > >> >> an editor thingy last time i tried (yesterday) it took quite
> > > >> >> a time for most of the Code Browser interface.
> > > >> >> Commit history listing, opening a file, navigating in code..
> > > >> >> all took a few seconds and were barely rendering line by line
> > > >> >> here.
> > > >> >>
> > > >> >> On Mon, Jan 28, 2013 at 12:24 PM, Martin Jansa
> > > >> >>  wrote:
> > > >> >> > On Mon, Jan 28, 2013 at 03:04:35AM +0100, Cedric BAIL wrote:
> > > >> >> >> On Mon, Jan 28, 2013 at 1:18 AM, Alex-P. Natsios
> > > >> >> >>  wrote:
> > > >> >> >> > My register issue with the captcha has disappeared and i
> > > >> >> >> > finally was able to make an account.
> > > >> >> >
> > > >> >> > I still had to edit local source of registration form and
> > > >> >> > replace http:// with https:// in recaptcha URL.
> > > >> >> >
> > > >> >> >> > The UI is pretty nice but can be confusing , same goes
> > > >> >> >> > for some linguistic choices for most terms (as also
> > > >> >> >> > stated by David Seikel and Davide Andreoli).
> > > >> >> >> > As stated by Jérémy Zurcher in another thread the code
> > > >> >> >> > browser is REALLY slow (damn.. sorry for arguing with
> > > >> >> >> > you .. haven't tested it.. its slower than acceptable
> > > >> >> >> > O.o).
> > > >> >> >>
> > > >> >> >> Uh ? I am not sure we are testing the same website ! The
> > > >> >> >> code browser is infinitely faster than what we have now
> > > >> >> >> and seems to give almost instant access. Maybe it is due
> > > >> >> >> to some network lag ? Where are you and what do you mean
> > > >> >> >> by really slow ? How long does it take for you to navigate
> > > >> >> >> to master efl/src/lib/eina/eina_file.c ? It took me 18s
> > > >> >> >> from the "Browse Repositories" and I feel like the
> > > >> >> >> bottleneck is my ability to click the link quickly.
> > > >> >> >
> > > >> >> > Here it was also relatively quick.
> > > >> >> > 2 minutes to find "Browser Repositories" :)
> > > >> >> > and then 12s to naviage to efl/src/lib/eina/eina_file.c.
> > > >> >> >
> > > >> >> > Cheers,
> > > >> >> >
> > > >> >> > --
> > > >> >> > Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com
> > > >> >> >
> > > >> >>
> > > >> >>
> > > >> >>
> > > >> >> --
> > > >> >> Regards,
> > > >> >>
> > > >> >> Alex-P. Natsios
> > > >> >> (a.k.a Drakevr)
> > > >> >>
> > > >> >
> > > >> >
> > > >> > compare these 2.com, and navigate
> > > >> >
> > > >> > http://cgit.asynk.ch/e/tree/efl/src/lib/eina/eina_file.c
> > > >> > https://phab.enlightenment.org/diffusion/EFL/browse/master/src/lib/eina/eina_file.c
> > > >>
> > > >> It took me 15s to go to eina_file.c instead of 18s.
> > > >>
> > > >> > speed, signal/noise ratio, syntax coloration, diff options,
> > > >> > easy access to branches ... only git blame output is missing
> > > >> > from cgit.
> > > >>
> > > >> syntax coloration is indeed something clearly missing from phab.
> > > >>
> > > >> > cgit.enlightenment.org is a really cheap and nice
> > > >> > complementary tool to have, usable by non-registred users too.
> > > >>
> > > >> Is it worth maintaining it ? That's our question, at the moment,
> > > >> it's a 3s and syntax coloration win from my point of view. Is
> > > >> that enough ?
> > > >
> > > > i say that its not worth it imho... one reason for choosing phab
> > > > is that fact that we can sanely maintain it if need be... it's in
> > > > php. most devs know php, and if they don't.. they are not writing
> > > > c :)
> > > 
> > > 
> > > Wait, does it means that I know PHP!? It's like the Matrix "I know
> > > kung-fu" then. \o/
> > 
> > it is... :) tho tbh.. php is just C with $in front of variables.. and
> > no types... :) its that simple.. sou know it by "implication" of
> > knowing c. :) thus... "you know king-fu" :)
> 
> Well, it's a C like language, there's lots of those.  The big
> differences are in the libraries though, but at least C coders will be
> familiar with the syntax.  Mostly.

the basic libraries are the same often too.. sprintf.. let's start there. a lot
of "libc" is there in php already... :) thats what i'm getting at. its not just
syntax.

> On the other hand, you don't usually embed C source code inside HTML
> and expect it to work.  B-)
> 
> -- 
> A big old stinking pile of genius that no one wants
> coz there are too many silver coated monkeys in the world.


-- 
- Codito, ergo sum - "I code, th

[E-devel] e17 default theme ... polishing

2013-01-29 Thread The Rasterman
i'd like to put this out there.

now e17 is out - i'm looking at POLISHING the default theme. over time that is.
what i am asking for here is INPUT as to what you think could be polished.. and
HOW - don't just complain. provide alternatives. and don't just say "it's
unreadable" as if we wanted purely readable it'd be only black and white with
no shades at all and everything massive so you can fit 2 icons on a screen and
2 lines of text. :) there is a compromise between readable/usable, practical
AND looking nice and being consistent. i want to polish off e17's theme before
i launch full on into fixing up elm.

so here is my current theme todo. if you have suggestions on these, please
chime in. if you can draw up your ideas - even roughly, even better!

e17 theme:
* ilist headers a bit "meh"
* text mouse pointer "meh"
* button image needs more resolution for gradient
* ilist/titlebar grdient image needs mroe vertical height for resolution
* radio/check items need more sizes for selection dot/cross for scaling
* init splash "meh"
* frames a bit "meh"
* bluez4 gadget ... "meh"
* randr needs nicer clone gfx
* lock screen needs panel holding entry box (and probably icon too?)
* comp needs styles for slide in with clip
* comp needs slide in without clip
* comp needs a map based "flip in" style

icons yes most icons were copied from old b&w or minimally worked on. i
don't really need comments on the icons - i know. ignore those for now. focus
on the rest. icons are a related, yet separate matter. comments please!
input! :)


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e5: Buildbot slave migration

2013-01-29 Thread The Rasterman
On Wed, 30 Jan 2013 00:27:47 +0100 Bertrand Jacquin  said:

this is good - though we'll need a collection of vm's for buildbot, not just
one as we need to test builds on many os's (and architectures eg 32 vs 64bit,
arm etc.), so just assume we'll get more vm's running a whole myriad of os's.

> Hi,
> 
> Enlightenment buildbot slave is now hosted on e5.
> 
> To remind you, public URL is : http://build.enlightenment.fr
> 
> For the moment the compiler is gcc 4.6.3, but we actually have the
> following for amd64 :
> 
>  - gcc 3.3.6
>  - gcc 4.3.6
>  - gcc 4.4.7
>  - gcc 4.5.4
>  - gcc 4.6.3
>  - gcc 4.7.2
>  - icc 13.0 (with a valid license)
>  - clang 3.2
>  - PathScale EKOPath 5.0.0
>  - tcc 0.9.25
>  - pcc 1.1.0
> 
> It could fine is some time to get more builders chains that use all the
> available compiler than can compiler EFL and Enlightenment code.
> 
> Cross compiler are also planned, but this will be delayed until other
> compiler are in use.
> 
> e3 buildbot is now cleared and unused.
> 
> -- 
> Beber


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e17 default theme ... polishing

2013-01-29 Thread P Purkayastha
On 01/30/2013 02:33 PM, Carsten Haitzler (The Rasterman) wrote:
> i'd like to put this out there.
>
> now e17 is out - i'm looking at POLISHING the default theme. over time that 
> is.
> what i am asking for here is INPUT as to what you think could be polished.. 
> and
> HOW - don't just complain. provide alternatives. and don't just say "it's
> unreadable" as if we wanted purely readable it'd be only black and white with
> no shades at all and everything massive so you can fit 2 icons on a screen and
> 2 lines of text. :) there is a compromise between readable/usable, practical
> AND looking nice and being consistent. i want to polish off e17's theme before
> i launch full on into fixing up elm.
>
> so here is my current theme todo. if you have suggestions on these, please
> chime in. if you can draw up your ideas - even roughly, even better!
>
> e17 theme:
> * ilist headers a bit "meh"
> * text mouse pointer "meh"
> * button image needs more resolution for gradient
> * ilist/titlebar grdient image needs mroe vertical height for resolution
> * radio/check items need more sizes for selection dot/cross for scaling
> * init splash "meh"
> * frames a bit "meh"
> * bluez4 gadget ... "meh"
> * randr needs nicer clone gfx
> * lock screen needs panel holding entry box (and probably icon too?)
> * comp needs styles for slide in with clip
> * comp needs slide in without clip
> * comp needs a map based "flip in" style

   * I would say that the graphics/animation for the mouse icon for 
resizing windows when we are close to the window border should be like 
the one from tiling module, instead of just being a blue square.

   * I am not using svn E, but I noted that E is now only composited. 
So, the label for ibar, ibox, tasks (on hover, and especially when using 
in icon-only mode), etc should be now outside the shelf so that it is 
not limited by the shelf size.



--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e17 default theme ... polishing

2013-01-29 Thread Michael Blumenkrantz
On Wed, Jan 30, 2013 at 7:19 AM, P Purkayastha  wrote:

> On 01/30/2013 02:33 PM, Carsten Haitzler (The Rasterman) wrote:
> > i'd like to put this out there.
> >
> > now e17 is out - i'm looking at POLISHING the default theme. over time
> that is.
> > what i am asking for here is INPUT as to what you think could be
> polished.. and
> > HOW - don't just complain. provide alternatives. and don't just say "it's
> > unreadable" as if we wanted purely readable it'd be only black and white
> with
> > no shades at all and everything massive so you can fit 2 icons on a
> screen and
> > 2 lines of text. :) there is a compromise between readable/usable,
> practical
> > AND looking nice and being consistent. i want to polish off e17's theme
> before
> > i launch full on into fixing up elm.
> >
> > so here is my current theme todo. if you have suggestions on these,
> please
> > chime in. if you can draw up your ideas - even roughly, even better!
> >
> > e17 theme:
> > * ilist headers a bit "meh"
> > * text mouse pointer "meh"
> > * button image needs more resolution for gradient
> > * ilist/titlebar grdient image needs mroe vertical height for resolution
> > * radio/check items need more sizes for selection dot/cross for scaling
> > * init splash "meh"
> > * frames a bit "meh"
> > * bluez4 gadget ... "meh"
> > * randr needs nicer clone gfx
> > * lock screen needs panel holding entry box (and probably icon too?)
> > * comp needs styles for slide in with clip
> > * comp needs slide in without clip
> > * comp needs a map based "flip in" style
>
>* I would say that the graphics/animation for the mouse icon for
> resizing windows when we are close to the window border should be like
> the one from tiling module, instead of just being a blue square.
>
>* I am not using svn E, but I noted that E is now only composited.
> So, the label for ibar, ibox, tasks (on hover, and especially when using
> in icon-only mode), etc should be now outside the shelf so that it is
> not limited by the shelf size.


you would be mistaken on this.
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e17 default theme ... polishing

2013-01-29 Thread Robert Krambovitis
> From: "Carsten Haitzler" 
> To: "e" , "e-users" 
> 
> Sent: Wednesday, January 30, 2013 8:33:14 AM
> Subject: [E-devel] e17 default theme ... polishing
> 
> i'd like to put this out there.
> 
> now e17 is out - i'm looking at POLISHING the default theme. over
> time that is.
> what i am asking for here is INPUT as to what you think could be
> polished.. and
> HOW - don't just complain. provide alternatives. and don't just say
> "it's
> unreadable" as if we wanted purely readable it'd be only black and
> white with
> no shades at all and everything massive so you can fit 2 icons on a
> screen and
> 2 lines of text. :) there is a compromise between readable/usable,
> practical
> AND looking nice and being consistent. i want to polish off e17's
> theme before
> i launch full on into fixing up elm.
> 
> so here is my current theme todo. if you have suggestions on these,
> please
> chime in. if you can draw up your ideas - even roughly, even better!
> 
> e17 theme:
> * ilist headers a bit "meh"
> * text mouse pointer "meh"
> * button image needs more resolution for gradient
> * ilist/titlebar grdient image needs mroe vertical height for
> resolution
> * radio/check items need more sizes for selection dot/cross for
> scaling
> * init splash "meh"
> * frames a bit "meh"
> * bluez4 gadget ... "meh"
> * randr needs nicer clone gfx
> * lock screen needs panel holding entry box (and probably icon too?)
> * comp needs styles for slide in with clip
> * comp needs slide in without clip
> * comp needs a map based "flip in" style
> 
> icons yes most icons were copied from old b&w or minimally worked
> on. i
> don't really need comments on the icons - i know. ignore those for
> now. focus
> on the rest. icons are a related, yet separate matter. comments
> please!
> input! :)

My personal thoughts :

- The "finished thumbnailing" animation it too much / long / crap. I think 
something more similar to the "gained focus" animation would be preferable.
- The default clock in digi mode is practically invisible when on lighter 
backgrounds. Just stating.
- The "start" module I think needs a more "start icon" look. No suggestions.
- Implement the color_classes.

.

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel