Re: [E-devel] [Patch][Genlist] expanded_next_item set to NULL in _item_del

2012-03-27 Thread Daniel Juyung Seo
Thanks in SVN!
http://trac.enlightenment.org/e/changeset/69691

Daniel Juyung Seo (SeoZ)

On Wed, Mar 28, 2012 at 3:06 PM, chanwook jung  wrote:
> Dear all,
>
> I added one line to fix the bug at tree effect. If the item is equal to
> expanded_next_item, expanded_next_item set to NULL in _item_del
>
> Thanks,
> Joey
>
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] introducinggggggggggggggg

2012-03-27 Thread David Seikel
On Wed, 28 Mar 2012 01:31:25 -0400 Michael Blumenkrantz
 wrote:

> the exploratory email for my new potential project: some sort of evas
> effects library
> 
> such a library would basically be evas (NOT elm) bound to ecore
> animators in various ways, providing a simple api to do something like
> 
> effectapi_rotate(obj, EFFECTAPI_ROTATE_CW, 270, 3.0);
> 
> for a 270 degree clockwise rotation of any object animated over 3.0
> seconds

So this basically wraps map and timer?

> 1) name this potential library
>currently, I plan to pick the worst possible name I can think of:
>libefx (possibly with more x if this name is already
> taken). don't let this happen.

libefx works, possibly with more x if this name is already taken.  B-)

Which it is, a plugin for XMMS.  Google says that libefxx is not
taken, libeffx is taken, and libeflfx shows no hits at all.

-- 
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
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [Patch][Genlist] expanded_next_item set to NULL in _item_del

2012-03-27 Thread chanwook jung
Dear all,

I added one line to fix the bug at tree effect. If the item is equal to
expanded_next_item, expanded_next_item set to NULL in _item_del

Thanks,
Joey
Index: src/lib/elm_genlist.c
===
--- src/lib/elm_genlist.c	(revision 69689)
+++ src/lib/elm_genlist.c	(working copy)
@@ -862,6 +862,7 @@ _item_del(Elm_Gen_Item *it)
   it->wd->anchor_item = ELM_GEN_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
  }
if (it->wd->expanded_item == it) it->wd->expanded_item = NULL;
+   if (it->wd->expanded_next_item == it) it->wd->expanded_next_item = NULL;
if (it->parent)
  it->parent->item->items = eina_list_remove(it->parent->item->items, it);
if (it->item->swipe_timer) ecore_timer_del(it->item->swipe_timer);
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] introducinggggggggggggggg

2012-03-27 Thread Michael Blumenkrantz
the exploratory email for my new potential project: some sort of evas effects
library

such a library would basically be evas (NOT elm) bound to ecore
animators in various ways, providing a simple api to do something like

effectapi_rotate(obj, EFFECTAPI_ROTATE_CW, 270, 3.0);

for a 270 degree clockwise rotation of any object animated over 3.0 seconds


your job:
1) name this potential library
   currently, I plan to pick the worst possible name I can think of:
   libefx (possibly with more x if this name is already taken).
   don't let this happen.

2) types of effects people want
   the list so far: rotate, zoom, pan, flip

3) ???

send unrelated feedback to the tumblr

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Question][Windows] Shift/Alt/Ctrl key press operation

2012-03-27 Thread Vincent Torri
On Wed, Mar 28, 2012 at 4:23 AM, Kim Shinwoo  wrote:
> Dear All, Hello.
>
> Please review the previous patch first which is related with the WIN key.

it's already in svn :-)

> Even though there is no answer to the previous question, I have made
> and attached a patch to fire the mouse-up event when you hold down
> keys which make WM_CHAR and WM_SYSCHAR.
> Please review the patch and give any feedbacks. Thanks. ;)

hmm, you're talking about mouse up but the event is a keyboard one

Vincent

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: seoz trunk/elementary/src/examples

2012-03-27 Thread Vincent Torri
On Wed, Mar 28, 2012 at 2:51 AM, Enlightenment SVN
 wrote:
> Log:
> elm examples: Define __UNUSED__ when HAVE_CONFIG_H is not defined.

btw, config.h (here elementary_config.h) must always be the first
header to be included. It's not the case in the examples

Vincent

>
> Author:       seoz
> Date:         2012-03-27 17:51:57 -0700 (Tue, 27 Mar 2012)
> New Revision: 69678
> Trac:         http://trac.enlightenment.org/e/changeset/69678
>
> Modified:
>  trunk/elementary/src/examples/box_example_02.c 
> trunk/elementary/src/examples/bubble_example_01.c 
> trunk/elementary/src/examples/check_example_01.c 
> trunk/elementary/src/examples/colorselector_example_01.c 
> trunk/elementary/src/examples/efl_thread_1.c 
> trunk/elementary/src/examples/efl_thread_2.c 
> trunk/elementary/src/examples/efl_thread_3.c 
> trunk/elementary/src/examples/efl_thread_4.c 
> trunk/elementary/src/examples/efl_thread_5.c 
> trunk/elementary/src/examples/efl_thread_6.c 
> trunk/elementary/src/examples/efl_thread_win32_1.c 
> trunk/elementary/src/examples/efl_thread_win32_2.c 
> trunk/elementary/src/examples/efl_thread_win32_3.c 
> trunk/elementary/src/examples/efl_thread_win32_4.c 
> trunk/elementary/src/examples/flip_example_01.c 
> trunk/elementary/src/examples/glview_example_01.c 
> trunk/elementary/src/examples/hover_example_01.c 
> trunk/elementary/src/examples/hoversel_example_01.c 
> trunk/elementary/src/examples/label_example_01.c 
> trunk/elementary/src/examples/menu_example_01.c 
> trunk/elementary/src/examples/notify_example_01.c 
> trunk/elementary/src/examples/panel_example_01.c 
> trunk/elementary/src/examples/photocam_example_01.c 
> trunk/elementary/src/examples/radio_example_01.c 
> trunk/elementary/src/examples/scroller_example_01.c 
> trunk/elementary/src/examples/separator_example_01.c 
> trunk/elementary/src/examples/table_example_01.c 
> trunk/elementary/src/examples/table_example_02.c
>
> Modified: trunk/elementary/src/examples/box_example_02.c
> ===
> --- trunk/elementary/src/examples/box_example_02.c      2012-03-28 00:51:53 
> UTC (rev 69677)
> +++ trunk/elementary/src/examples/box_example_02.c      2012-03-28 00:51:57 
> UTC (rev 69678)
> @@ -1,3 +1,6 @@
> +//Compile with:
> +//gcc -g `pkg-config --cflags --libs elementary` box_example_02.c -o 
> box_example_02
> +
>  #include 
>  #ifdef HAVE_CONFIG_H
>  # include "elementary_config.h"
>
> Modified: trunk/elementary/src/examples/bubble_example_01.c
> ===
> --- trunk/elementary/src/examples/bubble_example_01.c   2012-03-28 00:51:53 
> UTC (rev 69677)
> +++ trunk/elementary/src/examples/bubble_example_01.c   2012-03-28 00:51:57 
> UTC (rev 69678)
> @@ -4,6 +4,8 @@
>  #include 
>  #ifdef HAVE_CONFIG_H
>  # include "elementary_config.h"
> +#else
> +# define __UNUSED__
>  #endif
>
>  void
>
> Modified: trunk/elementary/src/examples/check_example_01.c
> ===
> --- trunk/elementary/src/examples/check_example_01.c    2012-03-28 00:51:53 
> UTC (rev 69677)
> +++ trunk/elementary/src/examples/check_example_01.c    2012-03-28 00:51:57 
> UTC (rev 69678)
> @@ -4,6 +4,8 @@
>  #include 
>  #ifdef HAVE_CONFIG_H
>  # include "elementary_config.h"
> +#else
> +# define __UNUSED__
>  #endif
>
>  static void _print(void *data, Evas_Object *obj, void *event_info);
>
> Modified: trunk/elementary/src/examples/colorselector_example_01.c
> ===
> --- trunk/elementary/src/examples/colorselector_example_01.c    2012-03-28 
> 00:51:53 UTC (rev 69677)
> +++ trunk/elementary/src/examples/colorselector_example_01.c    2012-03-28 
> 00:51:57 UTC (rev 69678)
> @@ -4,6 +4,8 @@
>  #include 
>  #ifdef HAVE_CONFIG_H
>  # include "elementary_config.h"
> +#else
> +# define __UNUSED__
>  #endif
>
>  static void _change_color(void *data, Evas_Object *obj, void *event_info);
>
> Modified: trunk/elementary/src/examples/efl_thread_1.c
> ===
> --- trunk/elementary/src/examples/efl_thread_1.c        2012-03-28 00:51:53 
> UTC (rev 69677)
> +++ trunk/elementary/src/examples/efl_thread_1.c        2012-03-28 00:51:57 
> UTC (rev 69678)
> @@ -2,6 +2,11 @@
>  //gcc -o efl_thread_1 efl_thread_1.c -g `pkg-config --cflags --libs 
> elementary`
>  #include 
>  #include 
> +#ifdef HAVE_CONFIG_H
> +# include "elementary_config.h"
> +#else
> +# define __UNUSED__
> +#endif
>
>  static Evas_Object *win = NULL;
>  static Evas_Object *rect = NULL;
>
> Modified: trunk/elementary/src/examples/efl_thread_2.c
> ===
> --- trunk/elementary/src/examples/efl_thread_2.c        2012-03-28 00:51:53 
> UTC (rev 69677)
> +++ trunk/elementary/src/examples/efl_thread_2.c        2012-03-28 00:51:57 
> UTC (rev 69678)
> @@ -2,6 +2,11 @@
>  //gcc -o efl_thread_

Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread The Rasterman
On Tue, 27 Mar 2012 22:51:18 -0500 Jeff Hoogland  said:

well i mostly put bafflement towards the issue and scratched my head going
"wtf? how can this be?". the hup thing came to mind as a possible way e could
go thru an init process again...

> I'll try rebuilding E with that line commented out and see what happens -
> thanks for putting some thought towards the issues.
> 
> Love you E folks :)
> 
> On Tue, Mar 27, 2012 at 9:21 PM, Gustavo Sverzut Barbieri <
> barbi...@profusion.mobi> wrote:
> 
> > On Tue, Mar 27, 2012 at 10:46 PM, Lucas De Marchi
> >  wrote:
> > > On Tue, Mar 27, 2012 at 10:08 PM, Michael Blumenkrantz
> > >  wrote:
> > >> On Wed, 28 Mar 2012 09:45:59 +0900
> > >> Carsten Haitzler (The Rasterman)  wrote:
> > >>
> > >>> On Tue, 27 Mar 2012 20:38:39 -0400 Michael Blumenkrantz
> > >>>  said:
> > >>>
> > >>> > > > things you should investigate:
> > >>> > > > 1) why the initial bug report was entirely faulty and incomplete
> > >>> > > > 2) the results of sending a backtrace produced by running e17
> > compiled
> > >>> > > > with this really bad patch I've attached
> > >>> > > > 3) why I'm so hungry
> > >>> > > >
> > >>> > > > I am eagerly awaiting the results of your enquiries.
> > >>> > >
> > >>> > > good luck getting that bt while the system is shutting down :)
> > >>> >
> > >>> > he said it happened during logout, and it's likely that having gdb
> > attached
> > >>> > to an aborted process would prevent it from being killed
> > >>>
> > >>> actually he explicitly said its during shtudown/reboot.
> > >>>
> > >>> "Enabling E Notifications is causing a dbus error to come up upon
> > shutting
> > >>> down/rebooting."
> > >>>
> > >>
> > >> On Tue, 27 Mar 2012 19:15:51 -0500
> > >> Jeff Hoogland  wrote:
> > >>
> > >>> This is exactly the case - what should I investigate?
> > >>
> > >>> On Tue, Mar 27, 2012 at 7:14 PM, Michael Blumenkrantz <
> > michael.blumenkra...@gmail.com> wrote:
> >  if, however, you had said that this popup occurred every time e17
> > closed
> >  while
> >  using the module, then I would consider investigating further.
> > >>
> > >> I don't really care enough to argue about something inconsequential
> > like this,
> > >> so I'll stop here
> > >
> > > i.e. you lost.
> >
> > http://cdn.memegenerator.net/instances/400x/17262539.jpg
> > http://cdn.memegenerator.net/instances/400x/17263089.jpg
> >
> > for our tumblr :-D
> >
> >
> > --
> > Gustavo Sverzut Barbieri
> > http://profusion.mobi embedded systems
> > --
> > MSN: barbi...@gmail.com
> > Skype: gsbarbieri
> > Mobile: +55 (19) 9225-2202
> >
> 
> 
> 
> -- 
> ~Jeff Hoogland 
> Thoughts on Technology , Tech Blog
> Bodhi Linux , Enlightenment for your Desktop


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


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Jeff Hoogland
I'll try rebuilding E with that line commented out and see what happens -
thanks for putting some thought towards the issues.

Love you E folks :)

On Tue, Mar 27, 2012 at 9:21 PM, Gustavo Sverzut Barbieri <
barbi...@profusion.mobi> wrote:

> On Tue, Mar 27, 2012 at 10:46 PM, Lucas De Marchi
>  wrote:
> > On Tue, Mar 27, 2012 at 10:08 PM, Michael Blumenkrantz
> >  wrote:
> >> On Wed, 28 Mar 2012 09:45:59 +0900
> >> Carsten Haitzler (The Rasterman)  wrote:
> >>
> >>> On Tue, 27 Mar 2012 20:38:39 -0400 Michael Blumenkrantz
> >>>  said:
> >>>
> >>> > > > things you should investigate:
> >>> > > > 1) why the initial bug report was entirely faulty and incomplete
> >>> > > > 2) the results of sending a backtrace produced by running e17
> compiled
> >>> > > > with this really bad patch I've attached
> >>> > > > 3) why I'm so hungry
> >>> > > >
> >>> > > > I am eagerly awaiting the results of your enquiries.
> >>> > >
> >>> > > good luck getting that bt while the system is shutting down :)
> >>> >
> >>> > he said it happened during logout, and it's likely that having gdb
> attached
> >>> > to an aborted process would prevent it from being killed
> >>>
> >>> actually he explicitly said its during shtudown/reboot.
> >>>
> >>> "Enabling E Notifications is causing a dbus error to come up upon
> shutting
> >>> down/rebooting."
> >>>
> >>
> >> On Tue, 27 Mar 2012 19:15:51 -0500
> >> Jeff Hoogland  wrote:
> >>
> >>> This is exactly the case - what should I investigate?
> >>
> >>> On Tue, Mar 27, 2012 at 7:14 PM, Michael Blumenkrantz <
> michael.blumenkra...@gmail.com> wrote:
>  if, however, you had said that this popup occurred every time e17
> closed
>  while
>  using the module, then I would consider investigating further.
> >>
> >> I don't really care enough to argue about something inconsequential
> like this,
> >> so I'll stop here
> >
> > i.e. you lost.
>
> http://cdn.memegenerator.net/instances/400x/17262539.jpg
> http://cdn.memegenerator.net/instances/400x/17263089.jpg
>
> for our tumblr :-D
>
>
> --
> Gustavo Sverzut Barbieri
> http://profusion.mobi embedded systems
> --
> MSN: barbi...@gmail.com
> Skype: gsbarbieri
> Mobile: +55 (19) 9225-2202
>



-- 
~Jeff Hoogland 
Thoughts on Technology , Tech Blog
Bodhi Linux , Enlightenment for your Desktop
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] EET_DATA_DESCRIPTOR_ADD_BASIC_ARRAY variable length version.

2012-03-27 Thread David Seikel
On Wed, 28 Mar 2012 00:40:33 +1000 David Seikel 
wrote:

> On Tue, 27 Mar 2012 16:24:28 +0200 Cedric BAIL 
> wrote:
> 
> > On Tue, Mar 27, 2012 at 3:18 PM, David Seikel 
> > wrote:
> > > Oops, when we added EET_DATA_DESCRIPTOR_ADD_BASIC_ARRAY, we should
> > > have added a EET_DATA_DESCRIPTOR_ADD_BASIC_VAR_ARRAY version as
> > > well.
> > >
> > > If I remember, I did that.
> > 
> > I am not sure we handle in eet code more than a VAR_ARRAY_STRING,
> > but I may be wrong.
> 
> VAR_ARRAY handles sub types, but not basic types.  ARRAY handles sub
> types, but not basic types.  That's why BASIC_ARRAY was added, to be
> an array that handles basic types, but there was no addition of a
> VAR_ARRAY for basic types.
> 
> > > Is it too late to add that API, or does it not count since it's a
> > > macro?
> > 
> > If it's just a macro and all the code behind already work, then I am
> > fine. But I doubt it's the case.
> 
> I wrote a macro after I sent that email, and It seems to be working
> fine. I'll test it more after I wake up.  Time to sleep.

Been a busy morning, mostly in a meeting with the client that's paying
for this project I'm working on that needs this.

I'll test out my new macro now, and commit it later today if all goes
well.  Unless someone points out that I can't commit a new macro during
an API freeze.  Cedric seems to think it's fine to do so.  It's just a
variation on the existing macros, wrapping the existing function that
all the similar macros wrap.  Fairly trivial in fact.

-- 
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
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Docs on site out of date.

2012-03-27 Thread David Seikel
On Wed, 28 Mar 2012 08:41:00 +0900 Carsten Haitzler (The Rasterman)
 wrote:

> On Wed, 28 Mar 2012 00:36:18 +1000 David Seikel 
> said:
> 
> > On Tue, 27 Mar 2012 11:27:32 -0300 Gustavo Sverzut Barbieri
> >  wrote:
> > 
> > > On Tue, Mar 27, 2012 at 11:17 AM, Carsten Haitzler
> > >  wrote:
> > > > On Tue, 27 Mar 2012 22:43:08 +1000 David Seikel
> > > >  said:
> > > >
> > > > no one has updated the wiki in that time. yes. this is part of
> > > > our problem. too many different places that we put
> > > > documentation or just information. a lot of docs have moved to
> > > > the doxy generated ones to improve this (as it also sits within
> > > > the src too)
> > > >
> > > 
> > > Yes, the doxygen part evolved from being just api to big picture
> > > and all. Even the EDC reference was added. Then it makes sense to
> > > remove the wiki page, moving the missing bits to doxygen and
> > > making the wiki pages link to doxygen generated html.
> > 
> > The point I'm making is that it used to show the generated docs from
> > the About page, at least I'm pretty sure it did.  Now it's showing
> > the old wiki docs. Something changed?  If so, it should get changed
> > back.
> 
> it never showed the generated docs. we have no mechanism to generate
> content into the wiki... :) at BESt it linked to the generated
> docs. :)

Yes, it used to LINK to the docs.  Sheesh, it was a problem I pointed
out, it got fixed, why where people arguing semantics through out the
entire ordeal, and still arguing?  Pffft

It DID show (link, whatever) the generated docs, coz up until yesterday
I had been using those as a reference, and yesterday when I looked, I
got out of date docs.  Up until yesterday, telling google to search for
a specific EFL function would show the generated docs in the first
page of results, often the first one or two.  Yesterday the useful
results where a page or two down, AND 15 months out of date.  Yesterday
following links from the E front page got you to the 15 months out of
date docs.

I know it was showing the generated docs in the past, coz I checked
that on the release after I wrote lots of docs for edje Lua.  At the
time it was showing the new freshly releosed docs I had written.
Yesterday it showed edje Lua docs from 16 months ago, before the
functions I had documented where even written.

I saw a commit last night that seems to fix it, so I guess google will
catch up and everything will be good again.

-- 
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
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Question][Windows] Shift/Alt/Ctrl key press operation

2012-03-27 Thread Kim Shinwoo
Dear All, Hello.

Please review the previous patch first which is related with the WIN key.
Even though there is no answer to the previous question, I have made
and attached a patch to fire the mouse-up event when you hold down
keys which make WM_CHAR and WM_SYSCHAR.
Please review the patch and give any feedbacks. Thanks. ;)

Sincerely,
Shinwoo Kim.

2012/3/26 Kim Shinwoo :
> Oh.. sure, you are right. the Win key also needs the patch. - I have attached 
> -
>
> I have one more question.
>
> On the Ubuntu, when you hold down the Space key, then DOWN and UP
> event occur repeatedly
> even though only DOWN event occurs on the Windows.. So my question is
> as before...
>
> Should I modify the ecore_win32_event? or Should the application
> handle the case.?
> Please ENLIGHTEN me again.. Thanks!
>
> Sincerely,
> Shinwoo Kim.
>
> 2012/3/26 Vincent Torri :
>> On Mon, Mar 26, 2012 at 8:32 AM, Vincent Torri  
>> wrote:
>>> On Mon, Mar 26, 2012 at 7:29 AM, cnook  wrote:
 Thanks for your response.
 I have attached a patch upon  your comments.
 The meaning of bit 30(0x4000 in the patch) is as bellows
 "The previous key state. The value is 1 if the key is down before the
 message is sent, or it is 0 if the key is up."
 The Evas_CALLBACK_KEY_DOWN event will occur once even though you hold down
 Shift/Ctrl/Alt key, If  you keep the patch.
>>>
>>> in svn, thanks
>>>
>>
>> thinking of that, what about the Win key ?
>>
>> Vincent
>>
>> --
>> This SF email is sponsosred by:
>> Try Windows Azure free for 90 days Click Here
>> http://p.sf.net/sfu/sfd2d-msazure
>> ___
>> enlightenment-devel mailing list
>> enlightenment-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


ecore_win_event.fire.mouse.up.event.during.holding.down
Description: Binary data
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Gustavo Sverzut Barbieri
On Tue, Mar 27, 2012 at 10:46 PM, Lucas De Marchi
 wrote:
> On Tue, Mar 27, 2012 at 10:08 PM, Michael Blumenkrantz
>  wrote:
>> On Wed, 28 Mar 2012 09:45:59 +0900
>> Carsten Haitzler (The Rasterman)  wrote:
>>
>>> On Tue, 27 Mar 2012 20:38:39 -0400 Michael Blumenkrantz
>>>  said:
>>>
>>> > > > things you should investigate:
>>> > > > 1) why the initial bug report was entirely faulty and incomplete
>>> > > > 2) the results of sending a backtrace produced by running e17 compiled
>>> > > > with this really bad patch I've attached
>>> > > > 3) why I'm so hungry
>>> > > >
>>> > > > I am eagerly awaiting the results of your enquiries.
>>> > >
>>> > > good luck getting that bt while the system is shutting down :)
>>> >
>>> > he said it happened during logout, and it's likely that having gdb 
>>> > attached
>>> > to an aborted process would prevent it from being killed
>>>
>>> actually he explicitly said its during shtudown/reboot.
>>>
>>> "Enabling E Notifications is causing a dbus error to come up upon shutting
>>> down/rebooting."
>>>
>>
>> On Tue, 27 Mar 2012 19:15:51 -0500
>> Jeff Hoogland  wrote:
>>
>>> This is exactly the case - what should I investigate?
>>
>>> On Tue, Mar 27, 2012 at 7:14 PM, Michael Blumenkrantz 
>>>  wrote:
 if, however, you had said that this popup occurred every time e17 closed
 while
 using the module, then I would consider investigating further.
>>
>> I don't really care enough to argue about something inconsequential like 
>> this,
>> so I'll stop here
>
> i.e. you lost.

http://cdn.memegenerator.net/instances/400x/17262539.jpg
http://cdn.memegenerator.net/instances/400x/17263089.jpg

for our tumblr :-D


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

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Lucas De Marchi
On Tue, Mar 27, 2012 at 10:08 PM, Michael Blumenkrantz
 wrote:
> On Wed, 28 Mar 2012 09:45:59 +0900
> Carsten Haitzler (The Rasterman)  wrote:
>
>> On Tue, 27 Mar 2012 20:38:39 -0400 Michael Blumenkrantz
>>  said:
>>
>> > > > things you should investigate:
>> > > > 1) why the initial bug report was entirely faulty and incomplete
>> > > > 2) the results of sending a backtrace produced by running e17 compiled
>> > > > with this really bad patch I've attached
>> > > > 3) why I'm so hungry
>> > > >
>> > > > I am eagerly awaiting the results of your enquiries.
>> > >
>> > > good luck getting that bt while the system is shutting down :)
>> >
>> > he said it happened during logout, and it's likely that having gdb attached
>> > to an aborted process would prevent it from being killed
>>
>> actually he explicitly said its during shtudown/reboot.
>>
>> "Enabling E Notifications is causing a dbus error to come up upon shutting
>> down/rebooting."
>>
>
> On Tue, 27 Mar 2012 19:15:51 -0500
> Jeff Hoogland  wrote:
>
>> This is exactly the case - what should I investigate?
>
>> On Tue, Mar 27, 2012 at 7:14 PM, Michael Blumenkrantz 
>>  wrote:
>>> if, however, you had said that this popup occurred every time e17 closed
>>> while
>>> using the module, then I would consider investigating further.
>
> I don't really care enough to argue about something inconsequential like this,
> so I'll stop here

i.e. you lost.


Lucas De Marchi

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Michael Blumenkrantz
On Wed, 28 Mar 2012 09:45:59 +0900
Carsten Haitzler (The Rasterman)  wrote:

> On Tue, 27 Mar 2012 20:38:39 -0400 Michael Blumenkrantz
>  said:
> 
> > > > things you should investigate:
> > > > 1) why the initial bug report was entirely faulty and incomplete
> > > > 2) the results of sending a backtrace produced by running e17 compiled
> > > > with this really bad patch I've attached
> > > > 3) why I'm so hungry
> > > > 
> > > > I am eagerly awaiting the results of your enquiries.
> > > 
> > > good luck getting that bt while the system is shutting down :)
> > 
> > he said it happened during logout, and it's likely that having gdb attached
> > to an aborted process would prevent it from being killed
> 
> actually he explicitly said its during shtudown/reboot.
> 
> "Enabling E Notifications is causing a dbus error to come up upon shutting
> down/rebooting."
> 

On Tue, 27 Mar 2012 19:15:51 -0500
Jeff Hoogland  wrote:

> This is exactly the case - what should I investigate?

> On Tue, Mar 27, 2012 at 7:14 PM, Michael Blumenkrantz 
>  wrote:  
>> if, however, you had said that this popup occurred every time e17 closed
>> while
>> using the module, then I would consider investigating further.

I don't really care enough to argue about something inconsequential like this,
so I'll stop here

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH] ecrire:cfg.c,main.c malloc return checks

2012-03-27 Thread Bluezery
2012/3/27 Vikram Narayanan :
> On 3/27/2012 12:37 AM, Michael Blumenkrantz wrote:
>> On Tue, 27 Mar 2012 00:21:19 +0530
>> Vikram Narayanan  wrote:
>>
>>> In ecrire,
>>> Check return values of *alloc functions, though its unlikely to
>>> fail. There are chances though!
>>>
>>> Comments please.
>>>
>>> Thanks,
>>> Vikram
>>
>> efl applications typically don't bother checking return values on these
>> functions because you're fucked no matter what if they fail
>
> I don't understand your language.
> Even if its not necessary, it's a good programming practice to do it
> atleast for memory allocation functions.

Yeah, It's good practice to check return value of functions.
But malloc() is optimized in linux.  So it is not guaranteed to return
non-NULL even though it's availabe.
And discomfitor said that EFL typically do not  check it. I thinks
that it is because malloc() fail, whole things fail.


> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-- 
BRs,
Kim.

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread The Rasterman
On Tue, 27 Mar 2012 20:38:39 -0400 Michael Blumenkrantz
 said:

> > > things you should investigate:
> > > 1) why the initial bug report was entirely faulty and incomplete
> > > 2) the results of sending a backtrace produced by running e17 compiled
> > > with this really bad patch I've attached
> > > 3) why I'm so hungry
> > > 
> > > I am eagerly awaiting the results of your enquiries.
> > 
> > good luck getting that bt while the system is shutting down :)
> 
> he said it happened during logout, and it's likely that having gdb attached to
> an aborted process would prevent it from being killed

actually he explicitly said its during shtudown/reboot.

"Enabling E Notifications is causing a dbus error to come up upon shutting
down/rebooting."

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


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Michael Blumenkrantz
On Wed, 28 Mar 2012 09:36:41 +0900
Carsten Haitzler (The Rasterman)  wrote:

> On Tue, 27 Mar 2012 20:30:19 -0400 Michael Blumenkrantz
>  said:
> 
> > On Tue, 27 Mar 2012 19:15:51 -0500
> > Jeff Hoogland  wrote:
> > 
> > > This is exactly the case - what should I investigate?
> > > 
> > > On Tue, Mar 27, 2012 at 7:14 PM, Michael Blumenkrantz <
> > > michael.blumenkra...@gmail.com> wrote:
> > > 
> > > > On Tue, 27 Mar 2012 19:05:20 -0500
> > > > Jeff Hoogland  wrote:
> > > >
> > > > > Thats fine - I'll just comment this error message out of the E code at
> > > > > compile time then. It literally only pops up for half a second at shut
> > > > > down.
> > > > >
> > > > > It ONLY happens with the new E notification module though.
> > > > >
> > > > > It DOES NOT happen when using other notification daemons such as
> > > > notify-osd.
> > > > >
> > > > > That lead me to believe it was an E issue - if people here are of the
> > > > > opinion it is not that is fine.
> > > > >
> > > > > On Tue, Mar 27, 2012 at 6:59 PM, thomasg 
> > > > > wrote:
> > > > >
> > > > > > On Wed, Mar 28, 2012 at 01:56, Joel Madero 
> > > > wrote:
> > > > > > > As Jeff said, it's been pointed out by at least 10 or so people
> > > > > > > over
> > > > at
> > > > > > > Bodhi forums so it's not just my system. I'm experiencing it on
> > > > > > > three systems myself
> > > > > > >
> > > > > > > On Tue, Mar 27, 2012 at 3:01 PM, thomasg 
> > > > wrote:
> > > > > > >
> > > > > > >> On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland <
> > > > jeffhoogl...@linux.com>
> > > > > > >> wrote:
> > > > > > >> > E displays a popup notification that says something along the
> > > > lines
> > > > > > of:
> > > > > > >> >
> > > > > > >> > "Error during DBus init! Please check if
> > > > > > >> > dbus is correctly installed and running"
> > > > > > >> >
> > > > > > >> > As the system shuts down, it is harmless and the system still
> > > > quickly
> > > > > > >> shuts
> > > > > > >> > down (which is why it is hard to say exactly what the massage
> > > > says).
> > > > > > But
> > > > > > >> > many people have noticed it's occurrence.
> > > > > > >> >
> > > > > > >> > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> > > > > > >> > michael.blumenkra...@gmail.com> wrote:
> > > > > > >> >
> > > > > > >> >> On Tue, 27 Mar 2012 13:38:29 -0700
> > > > > > >> >> Joel Madero  wrote:
> > > > > > >> >>
> > > > > > >> >> > This has been confirmed by quite a few people over at Bodhi
> > > > Forums.
> > > > > > >> >> >
> > > > > > >> >> > Enabling E Notifications is causing a dbus error to come up
> > > > upon
> > > > > > >> shutting
> > > > > > >> >> > down/rebooting. The error reads:
> > > > > > >> >> >
> > > > > > >> >> > "Error during DBus init! Please check if
> > > > > > >> >> > dbus is correctly installed and running."
> > > > > > >> >> >
> > > > > > >> >> >
> > > > > > >> >> >
> > > > > > >> >> > The error flashes really fast, fast enough to where I
> > > > > > >> >> > haven't
> > > > been
> > > > > > >> able
> > > > > > >> >> to
> > > > > > >> >> > get the wording (another user posted the above). One of the
> > > > staff
> > > > > > >> over at
> > > > > > >> >> > bodhi forum thinks it's got to do with the e_modapi_init
> > > > function
> > > > > > >> >> >
> > > > > > >> >> >
> > > > > > >> >> > Joel
> > > > > > >> >>
> > > > > > >> >> define "is causing a dbus error to come up upon shutting
> > > > > > >> down/rebooting".
> > > > > > >> >>
> > > > > > >> >>
> > > > > > >> >>
> > > > > > >>
> > > > > >
> > > > --
> > > > > > >> >> This SF email is sponsosred by:
> > > > > > >> >> Try Windows Azure free for 90 days Click Here
> > > > > > >> >> http://p.sf.net/sfu/sfd2d-msazure
> > > > > > >> >> ___
> > > > > > >> >> 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
> > > > > > >> >
> > > > > > >>
> > > > > >
> > > > --
> > > > > > >> > This SF email is sponsosred by:
> > > > > > >> > Try Windows Azure free for 90 days Click Here
> > > > > > >> > http://p.sf.net/sfu/sfd2d-msazure
> > > > > > >> > ___
> > > > > > >> > enlightenment-devel mailing list
> > > > > > >> > enlightenment-devel@lists.sourceforge.net
> > > > > > >> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > > > > > >>
> > > > > > >> I'd assume your system shuts down the db

Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread The Rasterman
On Tue, 27 Mar 2012 20:30:19 -0400 Michael Blumenkrantz
 said:

> On Tue, 27 Mar 2012 19:15:51 -0500
> Jeff Hoogland  wrote:
> 
> > This is exactly the case - what should I investigate?
> > 
> > On Tue, Mar 27, 2012 at 7:14 PM, Michael Blumenkrantz <
> > michael.blumenkra...@gmail.com> wrote:
> > 
> > > On Tue, 27 Mar 2012 19:05:20 -0500
> > > Jeff Hoogland  wrote:
> > >
> > > > Thats fine - I'll just comment this error message out of the E code at
> > > > compile time then. It literally only pops up for half a second at shut
> > > > down.
> > > >
> > > > It ONLY happens with the new E notification module though.
> > > >
> > > > It DOES NOT happen when using other notification daemons such as
> > > notify-osd.
> > > >
> > > > That lead me to believe it was an E issue - if people here are of the
> > > > opinion it is not that is fine.
> > > >
> > > > On Tue, Mar 27, 2012 at 6:59 PM, thomasg  wrote:
> > > >
> > > > > On Wed, Mar 28, 2012 at 01:56, Joel Madero 
> > > wrote:
> > > > > > As Jeff said, it's been pointed out by at least 10 or so people over
> > > at
> > > > > > Bodhi forums so it's not just my system. I'm experiencing it on
> > > > > > three systems myself
> > > > > >
> > > > > > On Tue, Mar 27, 2012 at 3:01 PM, thomasg 
> > > wrote:
> > > > > >
> > > > > >> On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland <
> > > jeffhoogl...@linux.com>
> > > > > >> wrote:
> > > > > >> > E displays a popup notification that says something along the
> > > lines
> > > > > of:
> > > > > >> >
> > > > > >> > "Error during DBus init! Please check if
> > > > > >> > dbus is correctly installed and running"
> > > > > >> >
> > > > > >> > As the system shuts down, it is harmless and the system still
> > > quickly
> > > > > >> shuts
> > > > > >> > down (which is why it is hard to say exactly what the massage
> > > says).
> > > > > But
> > > > > >> > many people have noticed it's occurrence.
> > > > > >> >
> > > > > >> > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> > > > > >> > michael.blumenkra...@gmail.com> wrote:
> > > > > >> >
> > > > > >> >> On Tue, 27 Mar 2012 13:38:29 -0700
> > > > > >> >> Joel Madero  wrote:
> > > > > >> >>
> > > > > >> >> > This has been confirmed by quite a few people over at Bodhi
> > > Forums.
> > > > > >> >> >
> > > > > >> >> > Enabling E Notifications is causing a dbus error to come up
> > > upon
> > > > > >> shutting
> > > > > >> >> > down/rebooting. The error reads:
> > > > > >> >> >
> > > > > >> >> > "Error during DBus init! Please check if
> > > > > >> >> > dbus is correctly installed and running."
> > > > > >> >> >
> > > > > >> >> >
> > > > > >> >> >
> > > > > >> >> > The error flashes really fast, fast enough to where I haven't
> > > been
> > > > > >> able
> > > > > >> >> to
> > > > > >> >> > get the wording (another user posted the above). One of the
> > > staff
> > > > > >> over at
> > > > > >> >> > bodhi forum thinks it's got to do with the e_modapi_init
> > > function
> > > > > >> >> >
> > > > > >> >> >
> > > > > >> >> > Joel
> > > > > >> >>
> > > > > >> >> define "is causing a dbus error to come up upon shutting
> > > > > >> down/rebooting".
> > > > > >> >>
> > > > > >> >>
> > > > > >> >>
> > > > > >>
> > > > >
> > > --
> > > > > >> >> This SF email is sponsosred by:
> > > > > >> >> Try Windows Azure free for 90 days Click Here
> > > > > >> >> http://p.sf.net/sfu/sfd2d-msazure
> > > > > >> >> ___
> > > > > >> >> 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
> > > > > >> >
> > > > > >>
> > > > >
> > > --
> > > > > >> > This SF email is sponsosred by:
> > > > > >> > Try Windows Azure free for 90 days Click Here
> > > > > >> > http://p.sf.net/sfu/sfd2d-msazure
> > > > > >> > ___
> > > > > >> > enlightenment-devel mailing list
> > > > > >> > enlightenment-devel@lists.sourceforge.net
> > > > > >> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > > > > >>
> > > > > >> I'd assume your system shuts down the dbus daemon before E exits,
> > > thus
> > > > > >> E loses the socket connection and throws this error.
> > > > > >> I've never noticed it here.
> > > > > >>
> > > > > >>
> > > > > >>
> > > > >
> > > --
> > > > > >> This SF email is sponsosred by:
> > > > > >> Try Windows Azure free for 90 days Click Here
> > > > 

Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread The Rasterman
On Tue, 27 Mar 2012 19:05:20 -0500 Jeff Hoogland  said:

wait... i just had an idea... is something SENDING e a HUP signal during
shutdown? one of the shutdown scripts? sending e a HUP signal (killall -HUP
enlightenment) tells e to RESTART. (HUP is a common signal used for this -
telling daemons to restart and re-read their config etc.). if e is restarting
WHILE the os shuts down... THEN this makes sense as dbus may have exited by
then and notification cannot set up a new notification service (of course).

you can disable e's hup signal handling by commenting out line 254 in e_main.c
(where it adds an event handler for HUP signals) just comment out that "if"
block.

if it goes away now, then your problem is that someone/something is HUPping E
during shutdown... and THAT... is a shutdown script issue :)

> Thats fine - I'll just comment this error message out of the E code at
> compile time then. It literally only pops up for half a second at shut
> down.
> 
> It ONLY happens with the new E notification module though.
> 
> It DOES NOT happen when using other notification daemons such as notify-osd.
> 
> That lead me to believe it was an E issue - if people here are of the
> opinion it is not that is fine.
> 
> On Tue, Mar 27, 2012 at 6:59 PM, thomasg  wrote:
> 
> > On Wed, Mar 28, 2012 at 01:56, Joel Madero  wrote:
> > > As Jeff said, it's been pointed out by at least 10 or so people over at
> > > Bodhi forums so it's not just my system. I'm experiencing it on three
> > > systems myself
> > >
> > > On Tue, Mar 27, 2012 at 3:01 PM, thomasg  wrote:
> > >
> > >> On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland 
> > >> wrote:
> > >> > E displays a popup notification that says something along the lines
> > of:
> > >> >
> > >> > "Error during DBus init! Please check if
> > >> > dbus is correctly installed and running"
> > >> >
> > >> > As the system shuts down, it is harmless and the system still quickly
> > >> shuts
> > >> > down (which is why it is hard to say exactly what the massage says).
> > But
> > >> > many people have noticed it's occurrence.
> > >> >
> > >> > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> > >> > michael.blumenkra...@gmail.com> wrote:
> > >> >
> > >> >> On Tue, 27 Mar 2012 13:38:29 -0700
> > >> >> Joel Madero  wrote:
> > >> >>
> > >> >> > This has been confirmed by quite a few people over at Bodhi Forums.
> > >> >> >
> > >> >> > Enabling E Notifications is causing a dbus error to come up upon
> > >> shutting
> > >> >> > down/rebooting. The error reads:
> > >> >> >
> > >> >> > "Error during DBus init! Please check if
> > >> >> > dbus is correctly installed and running."
> > >> >> >
> > >> >> >
> > >> >> >
> > >> >> > The error flashes really fast, fast enough to where I haven't been
> > >> able
> > >> >> to
> > >> >> > get the wording (another user posted the above). One of the staff
> > >> over at
> > >> >> > bodhi forum thinks it's got to do with the e_modapi_init function
> > >> >> >
> > >> >> >
> > >> >> > Joel
> > >> >>
> > >> >> define "is causing a dbus error to come up upon shutting
> > >> down/rebooting".
> > >> >>
> > >> >>
> > >> >>
> > >>
> > --
> > >> >> This SF email is sponsosred by:
> > >> >> Try Windows Azure free for 90 days Click Here
> > >> >> http://p.sf.net/sfu/sfd2d-msazure
> > >> >> ___
> > >> >> 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
> > >> >
> > >>
> > --
> > >> > This SF email is sponsosred by:
> > >> > Try Windows Azure free for 90 days Click Here
> > >> > http://p.sf.net/sfu/sfd2d-msazure
> > >> > ___
> > >> > enlightenment-devel mailing list
> > >> > enlightenment-devel@lists.sourceforge.net
> > >> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >>
> > >> I'd assume your system shuts down the dbus daemon before E exits, thus
> > >> E loses the socket connection and throws this error.
> > >> I've never noticed it here.
> > >>
> > >>
> > >>
> > --
> > >> This SF email is sponsosred by:
> > >> Try Windows Azure free for 90 days Click Here
> > >> http://p.sf.net/sfu/sfd2d-msazure
> > >> ___
> > >> enlightenment-devel mailing list
> > >> enlightenment-devel@lists.sourceforge.net
> > >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >>
> > >
> > -

Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Joel Madero
For #1 I take blame for incomplete bug report, I'm trying to get more
involved and I try to include what I think is helpful. It's a learning
process and I hope you bare with me. Jeff has been slowly helping me be
more complete and accurate with my reporting.

for #3.well, stop emailing and start eating ;) problem solved

On Tue, Mar 27, 2012 at 5:30 PM, Carsten Haitzler wrote:

> On Tue, 27 Mar 2012 19:05:20 -0500 Jeff Hoogland 
> said:
>
> > Thats fine - I'll just comment this error message out of the E code at
> > compile time then. It literally only pops up for half a second at shut
> > down.
> >
> > It ONLY happens with the new E notification module though.
> >
> > It DOES NOT happen when using other notification daemons such as
> notify-osd.
> >
> > That lead me to believe it was an E issue - if people here are of the
> > opinion it is not that is fine.
>
> if you actually read the code in question.. its bitching during init of the
> notification module... so commenting it out means you will no longer get
> errors
> when e cant set up a notification daemon (someone else is a notification
> daemon
> already who knows). but its during *INIT* of the notification module.
>
> > On Tue, Mar 27, 2012 at 6:59 PM, thomasg  wrote:
> >
> > > On Wed, Mar 28, 2012 at 01:56, Joel Madero 
> wrote:
> > > > As Jeff said, it's been pointed out by at least 10 or so people over
> at
> > > > Bodhi forums so it's not just my system. I'm experiencing it on three
> > > > systems myself
> > > >
> > > > On Tue, Mar 27, 2012 at 3:01 PM, thomasg 
> wrote:
> > > >
> > > >> On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland <
> jeffhoogl...@linux.com>
> > > >> wrote:
> > > >> > E displays a popup notification that says something along the
> lines
> > > of:
> > > >> >
> > > >> > "Error during DBus init! Please check if
> > > >> > dbus is correctly installed and running"
> > > >> >
> > > >> > As the system shuts down, it is harmless and the system still
> quickly
> > > >> shuts
> > > >> > down (which is why it is hard to say exactly what the massage
> says).
> > > But
> > > >> > many people have noticed it's occurrence.
> > > >> >
> > > >> > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> > > >> > michael.blumenkra...@gmail.com> wrote:
> > > >> >
> > > >> >> On Tue, 27 Mar 2012 13:38:29 -0700
> > > >> >> Joel Madero  wrote:
> > > >> >>
> > > >> >> > This has been confirmed by quite a few people over at Bodhi
> Forums.
> > > >> >> >
> > > >> >> > Enabling E Notifications is causing a dbus error to come up
> upon
> > > >> shutting
> > > >> >> > down/rebooting. The error reads:
> > > >> >> >
> > > >> >> > "Error during DBus init! Please check if
> > > >> >> > dbus is correctly installed and running."
> > > >> >> >
> > > >> >> >
> > > >> >> >
> > > >> >> > The error flashes really fast, fast enough to where I haven't
> been
> > > >> able
> > > >> >> to
> > > >> >> > get the wording (another user posted the above). One of the
> staff
> > > >> over at
> > > >> >> > bodhi forum thinks it's got to do with the e_modapi_init
> function
> > > >> >> >
> > > >> >> >
> > > >> >> > Joel
> > > >> >>
> > > >> >> define "is causing a dbus error to come up upon shutting
> > > >> down/rebooting".
> > > >> >>
> > > >> >>
> > > >> >>
> > > >>
> > >
> --
> > > >> >> This SF email is sponsosred by:
> > > >> >> Try Windows Azure free for 90 days Click Here
> > > >> >> http://p.sf.net/sfu/sfd2d-msazure
> > > >> >> ___
> > > >> >> 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
> > > >> >
> > > >>
> > >
> --
> > > >> > This SF email is sponsosred by:
> > > >> > Try Windows Azure free for 90 days Click Here
> > > >> > http://p.sf.net/sfu/sfd2d-msazure
> > > >> > ___
> > > >> > enlightenment-devel mailing list
> > > >> > enlightenment-devel@lists.sourceforge.net
> > > >> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > > >>
> > > >> I'd assume your system shuts down the dbus daemon before E exits,
> thus
> > > >> E loses the socket connection and throws this error.
> > > >> I've never noticed it here.
> > > >>
> > > >>
> > > >>
> > >
> --
> > > >> This SF email is sponsosred by:
> > > >> Try Windows Azure free for 90 days Click Here
> > > >> http://p.sf.net/sfu/sfd2d-msazure
> > > >> ___
> > >

Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Michael Blumenkrantz
On Tue, 27 Mar 2012 19:15:51 -0500
Jeff Hoogland  wrote:

> This is exactly the case - what should I investigate?
> 
> On Tue, Mar 27, 2012 at 7:14 PM, Michael Blumenkrantz <
> michael.blumenkra...@gmail.com> wrote:
> 
> > On Tue, 27 Mar 2012 19:05:20 -0500
> > Jeff Hoogland  wrote:
> >
> > > Thats fine - I'll just comment this error message out of the E code at
> > > compile time then. It literally only pops up for half a second at shut
> > > down.
> > >
> > > It ONLY happens with the new E notification module though.
> > >
> > > It DOES NOT happen when using other notification daemons such as
> > notify-osd.
> > >
> > > That lead me to believe it was an E issue - if people here are of the
> > > opinion it is not that is fine.
> > >
> > > On Tue, Mar 27, 2012 at 6:59 PM, thomasg  wrote:
> > >
> > > > On Wed, Mar 28, 2012 at 01:56, Joel Madero 
> > wrote:
> > > > > As Jeff said, it's been pointed out by at least 10 or so people over
> > at
> > > > > Bodhi forums so it's not just my system. I'm experiencing it on three
> > > > > systems myself
> > > > >
> > > > > On Tue, Mar 27, 2012 at 3:01 PM, thomasg 
> > wrote:
> > > > >
> > > > >> On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland <
> > jeffhoogl...@linux.com>
> > > > >> wrote:
> > > > >> > E displays a popup notification that says something along the
> > lines
> > > > of:
> > > > >> >
> > > > >> > "Error during DBus init! Please check if
> > > > >> > dbus is correctly installed and running"
> > > > >> >
> > > > >> > As the system shuts down, it is harmless and the system still
> > quickly
> > > > >> shuts
> > > > >> > down (which is why it is hard to say exactly what the massage
> > says).
> > > > But
> > > > >> > many people have noticed it's occurrence.
> > > > >> >
> > > > >> > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> > > > >> > michael.blumenkra...@gmail.com> wrote:
> > > > >> >
> > > > >> >> On Tue, 27 Mar 2012 13:38:29 -0700
> > > > >> >> Joel Madero  wrote:
> > > > >> >>
> > > > >> >> > This has been confirmed by quite a few people over at Bodhi
> > Forums.
> > > > >> >> >
> > > > >> >> > Enabling E Notifications is causing a dbus error to come up
> > upon
> > > > >> shutting
> > > > >> >> > down/rebooting. The error reads:
> > > > >> >> >
> > > > >> >> > "Error during DBus init! Please check if
> > > > >> >> > dbus is correctly installed and running."
> > > > >> >> >
> > > > >> >> >
> > > > >> >> >
> > > > >> >> > The error flashes really fast, fast enough to where I haven't
> > been
> > > > >> able
> > > > >> >> to
> > > > >> >> > get the wording (another user posted the above). One of the
> > staff
> > > > >> over at
> > > > >> >> > bodhi forum thinks it's got to do with the e_modapi_init
> > function
> > > > >> >> >
> > > > >> >> >
> > > > >> >> > Joel
> > > > >> >>
> > > > >> >> define "is causing a dbus error to come up upon shutting
> > > > >> down/rebooting".
> > > > >> >>
> > > > >> >>
> > > > >> >>
> > > > >>
> > > >
> > --
> > > > >> >> This SF email is sponsosred by:
> > > > >> >> Try Windows Azure free for 90 days Click Here
> > > > >> >> http://p.sf.net/sfu/sfd2d-msazure
> > > > >> >> ___
> > > > >> >> 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
> > > > >> >
> > > > >>
> > > >
> > --
> > > > >> > This SF email is sponsosred by:
> > > > >> > Try Windows Azure free for 90 days Click Here
> > > > >> > http://p.sf.net/sfu/sfd2d-msazure
> > > > >> > ___
> > > > >> > enlightenment-devel mailing list
> > > > >> > enlightenment-devel@lists.sourceforge.net
> > > > >> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > > > >>
> > > > >> I'd assume your system shuts down the dbus daemon before E exits,
> > thus
> > > > >> E loses the socket connection and throws this error.
> > > > >> I've never noticed it here.
> > > > >>
> > > > >>
> > > > >>
> > > >
> > --
> > > > >> This SF email is sponsosred by:
> > > > >> Try Windows Azure free for 90 days Click Here
> > > > >> http://p.sf.net/sfu/sfd2d-msazure
> > > > >> ___
> > > > >> enlightenment-devel mailing list
> > > > >> enlightenment-devel@lists.sourceforge.net
> > > > >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > > > >>
> > > > >
> > > >
> > 

Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread The Rasterman
On Tue, 27 Mar 2012 13:38:29 -0700 Joel Madero  said:

> This has been confirmed by quite a few people over at Bodhi Forums.
> 
> Enabling E Notifications is causing a dbus error to come up upon shutting
> down/rebooting. The error reads:
> 
> "Error during DBus init! Please check if
> dbus is correctly installed and running."
> 
> The error flashes really fast, fast enough to where I haven't been able to
> get the wording (another user posted the above). One of the staff over at
> bodhi forum thinks it's got to do with the e_modapi_init function

i totally cannot fathom how that error appears on SHUTTING DOWN anything...
that function is called when the notification module is loaded and enabled (ie
when e starts or restarts). it is not called again unless you disable and
re-enable the notification module again. when e shuts down the machine all it
does is pop up a window (popup) saying "shutting down" and execute the shutdown
command via enlightenment_sys (that's it). it doesn't go disabling/re-enabling
modules. unless someone added a module that doesn't come with e that goes and
does that.

the guess that it has something to do with the dbus daemon having been killed
on shutdown before e is may have some merit - but i cannot see how THAT would
trigger this complaint - as notification module would need to be disabled then
re-enabled during shutdown after the dbus daemon went away.

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


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread The Rasterman
On Tue, 27 Mar 2012 19:05:20 -0500 Jeff Hoogland  said:

> Thats fine - I'll just comment this error message out of the E code at
> compile time then. It literally only pops up for half a second at shut
> down.
> 
> It ONLY happens with the new E notification module though.
> 
> It DOES NOT happen when using other notification daemons such as notify-osd.
> 
> That lead me to believe it was an E issue - if people here are of the
> opinion it is not that is fine.

if you actually read the code in question.. its bitching during init of the
notification module... so commenting it out means you will no longer get errors
when e cant set up a notification daemon (someone else is a notification daemon
already who knows). but its during *INIT* of the notification module.

> On Tue, Mar 27, 2012 at 6:59 PM, thomasg  wrote:
> 
> > On Wed, Mar 28, 2012 at 01:56, Joel Madero  wrote:
> > > As Jeff said, it's been pointed out by at least 10 or so people over at
> > > Bodhi forums so it's not just my system. I'm experiencing it on three
> > > systems myself
> > >
> > > On Tue, Mar 27, 2012 at 3:01 PM, thomasg  wrote:
> > >
> > >> On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland 
> > >> wrote:
> > >> > E displays a popup notification that says something along the lines
> > of:
> > >> >
> > >> > "Error during DBus init! Please check if
> > >> > dbus is correctly installed and running"
> > >> >
> > >> > As the system shuts down, it is harmless and the system still quickly
> > >> shuts
> > >> > down (which is why it is hard to say exactly what the massage says).
> > But
> > >> > many people have noticed it's occurrence.
> > >> >
> > >> > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> > >> > michael.blumenkra...@gmail.com> wrote:
> > >> >
> > >> >> On Tue, 27 Mar 2012 13:38:29 -0700
> > >> >> Joel Madero  wrote:
> > >> >>
> > >> >> > This has been confirmed by quite a few people over at Bodhi Forums.
> > >> >> >
> > >> >> > Enabling E Notifications is causing a dbus error to come up upon
> > >> shutting
> > >> >> > down/rebooting. The error reads:
> > >> >> >
> > >> >> > "Error during DBus init! Please check if
> > >> >> > dbus is correctly installed and running."
> > >> >> >
> > >> >> >
> > >> >> >
> > >> >> > The error flashes really fast, fast enough to where I haven't been
> > >> able
> > >> >> to
> > >> >> > get the wording (another user posted the above). One of the staff
> > >> over at
> > >> >> > bodhi forum thinks it's got to do with the e_modapi_init function
> > >> >> >
> > >> >> >
> > >> >> > Joel
> > >> >>
> > >> >> define "is causing a dbus error to come up upon shutting
> > >> down/rebooting".
> > >> >>
> > >> >>
> > >> >>
> > >>
> > --
> > >> >> This SF email is sponsosred by:
> > >> >> Try Windows Azure free for 90 days Click Here
> > >> >> http://p.sf.net/sfu/sfd2d-msazure
> > >> >> ___
> > >> >> 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
> > >> >
> > >>
> > --
> > >> > This SF email is sponsosred by:
> > >> > Try Windows Azure free for 90 days Click Here
> > >> > http://p.sf.net/sfu/sfd2d-msazure
> > >> > ___
> > >> > enlightenment-devel mailing list
> > >> > enlightenment-devel@lists.sourceforge.net
> > >> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >>
> > >> I'd assume your system shuts down the dbus daemon before E exits, thus
> > >> E loses the socket connection and throws this error.
> > >> I've never noticed it here.
> > >>
> > >>
> > >>
> > --
> > >> This SF email is sponsosred by:
> > >> Try Windows Azure free for 90 days Click Here
> > >> http://p.sf.net/sfu/sfd2d-msazure
> > >> ___
> > >> enlightenment-devel mailing list
> > >> enlightenment-devel@lists.sourceforge.net
> > >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >>
> > >
> > --
> > > This SF email is sponsosred by:
> > > Try Windows Azure free for 90 days Click Here
> > > http://p.sf.net/sfu/sfd2d-msazure
> > > ___
> > > enlightenment-devel mailing list
> > > enlightenment-devel@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> > Well, that probably leads to the conclusion that it is bodhi related 

Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Michael Blumenkrantz
On Tue, 27 Mar 2012 19:05:20 -0500
Jeff Hoogland  wrote:

> Thats fine - I'll just comment this error message out of the E code at
> compile time then. It literally only pops up for half a second at shut
> down.
> 
> It ONLY happens with the new E notification module though.
> 
> It DOES NOT happen when using other notification daemons such as notify-osd.
> 
> That lead me to believe it was an E issue - if people here are of the
> opinion it is not that is fine.
> 
> On Tue, Mar 27, 2012 at 6:59 PM, thomasg  wrote:
> 
> > On Wed, Mar 28, 2012 at 01:56, Joel Madero  wrote:
> > > As Jeff said, it's been pointed out by at least 10 or so people over at
> > > Bodhi forums so it's not just my system. I'm experiencing it on three
> > > systems myself
> > >
> > > On Tue, Mar 27, 2012 at 3:01 PM, thomasg  wrote:
> > >
> > >> On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland 
> > >> wrote:
> > >> > E displays a popup notification that says something along the lines
> > of:
> > >> >
> > >> > "Error during DBus init! Please check if
> > >> > dbus is correctly installed and running"
> > >> >
> > >> > As the system shuts down, it is harmless and the system still quickly
> > >> shuts
> > >> > down (which is why it is hard to say exactly what the massage says).
> > But
> > >> > many people have noticed it's occurrence.
> > >> >
> > >> > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> > >> > michael.blumenkra...@gmail.com> wrote:
> > >> >
> > >> >> On Tue, 27 Mar 2012 13:38:29 -0700
> > >> >> Joel Madero  wrote:
> > >> >>
> > >> >> > This has been confirmed by quite a few people over at Bodhi Forums.
> > >> >> >
> > >> >> > Enabling E Notifications is causing a dbus error to come up upon
> > >> shutting
> > >> >> > down/rebooting. The error reads:
> > >> >> >
> > >> >> > "Error during DBus init! Please check if
> > >> >> > dbus is correctly installed and running."
> > >> >> >
> > >> >> >
> > >> >> >
> > >> >> > The error flashes really fast, fast enough to where I haven't been
> > >> able
> > >> >> to
> > >> >> > get the wording (another user posted the above). One of the staff
> > >> over at
> > >> >> > bodhi forum thinks it's got to do with the e_modapi_init function
> > >> >> >
> > >> >> >
> > >> >> > Joel
> > >> >>
> > >> >> define "is causing a dbus error to come up upon shutting
> > >> down/rebooting".
> > >> >>
> > >> >>
> > >> >>
> > >>
> > --
> > >> >> This SF email is sponsosred by:
> > >> >> Try Windows Azure free for 90 days Click Here
> > >> >> http://p.sf.net/sfu/sfd2d-msazure
> > >> >> ___
> > >> >> 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
> > >> >
> > >>
> > --
> > >> > This SF email is sponsosred by:
> > >> > Try Windows Azure free for 90 days Click Here
> > >> > http://p.sf.net/sfu/sfd2d-msazure
> > >> > ___
> > >> > enlightenment-devel mailing list
> > >> > enlightenment-devel@lists.sourceforge.net
> > >> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >>
> > >> I'd assume your system shuts down the dbus daemon before E exits, thus
> > >> E loses the socket connection and throws this error.
> > >> I've never noticed it here.
> > >>
> > >>
> > >>
> > --
> > >> This SF email is sponsosred by:
> > >> Try Windows Azure free for 90 days Click Here
> > >> http://p.sf.net/sfu/sfd2d-msazure
> > >> ___
> > >> enlightenment-devel mailing list
> > >> enlightenment-devel@lists.sourceforge.net
> > >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >>
> > >
> > --
> > > This SF email is sponsosred by:
> > > Try Windows Azure free for 90 days Click Here
> > > http://p.sf.net/sfu/sfd2d-msazure
> > > ___
> > > enlightenment-devel mailing list
> > > enlightenment-devel@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> > Well, that probably leads to the conclusion that it is bodhi related :)
> >
> >
> > --
> > This SF email is sponsosred by:
> > Try Windows Azure free for 90 days Click Here
> > http://p.sf.net/sfu/sfd2d-msazure
> > ___
> > enlightenment-devel mailing li

Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Michael Blumenkrantz
On Tue, 27 Mar 2012 19:02:42 -0500
Jeff Hoogland  wrote:

> I guess that is just how Ubuntu shutdown order goes.
> 
> Is it decided then that this is an issue with the shutdown order and not an
> E-related thing?
> 
> On Tue, Mar 27, 2012 at 6:59 PM, Michael Blumenkrantz <
> michael.blumenkra...@gmail.com> wrote:
> 
> > On Tue, 27 Mar 2012 16:56:05 -0700
> > Joel Madero  wrote:
> >
> > > As Jeff said, it's been pointed out by at least 10 or so people over at
> > > Bodhi forums so it's not just my system. I'm experiencing it on three
> > > systems myself
> > >
> > > On Tue, Mar 27, 2012 at 3:01 PM, thomasg  wrote:
> > >
> > > > On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland 
> > > > wrote:
> > > > > E displays a popup notification that says something along the lines
> > of:
> > > > >
> > > > > "Error during DBus init! Please check if
> > > > > dbus is correctly installed and running"
> > > > >
> > > > > As the system shuts down, it is harmless and the system still quickly
> > > > shuts
> > > > > down (which is why it is hard to say exactly what the massage says).
> > But
> > > > > many people have noticed it's occurrence.
> > > > >
> > > > > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> > > > > michael.blumenkra...@gmail.com> wrote:
> > > > >
> > > > >> On Tue, 27 Mar 2012 13:38:29 -0700
> > > > >> Joel Madero  wrote:
> > > > >>
> > > > >> > This has been confirmed by quite a few people over at Bodhi
> > Forums.
> > > > >> >
> > > > >> > Enabling E Notifications is causing a dbus error to come up upon
> > > > shutting
> > > > >> > down/rebooting. The error reads:
> > > > >> >
> > > > >> > "Error during DBus init! Please check if
> > > > >> > dbus is correctly installed and running."
> > > > >> >
> > > > >> >
> > > > >> >
> > > > >> > The error flashes really fast, fast enough to where I haven't been
> > > > able
> > > > >> to
> > > > >> > get the wording (another user posted the above). One of the staff
> > > > over at
> > > > >> > bodhi forum thinks it's got to do with the e_modapi_init function
> > > > >> >
> > > > >> >
> > > > >> > Joel
> > > > >>
> > > > >> define "is causing a dbus error to come up upon shutting
> > > > down/rebooting".
> > > > >>
> > > > >>
> > > > >>
> > > >
> > --
> > > > >> This SF email is sponsosred by:
> > > > >> Try Windows Azure free for 90 days Click Here
> > > > >> http://p.sf.net/sfu/sfd2d-msazure
> > > > >> ___
> > > > >> 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
> > > > >
> > > >
> > --
> > > > > This SF email is sponsosred by:
> > > > > Try Windows Azure free for 90 days Click Here
> > > > > http://p.sf.net/sfu/sfd2d-msazure
> > > > > ___
> > > > > enlightenment-devel mailing list
> > > > > enlightenment-devel@lists.sourceforge.net
> > > > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > > >
> > > > I'd assume your system shuts down the dbus daemon before E exits, thus
> > > > E loses the socket connection and throws this error.
> > > > I've never noticed it here.
> > > >
> >
> > imo your distro probably shouldn't shut down essential system services
> > before
> > the system is done using them
> >
> >
> > --
> > This SF email is sponsosred by:
> > Try Windows Azure free for 90 days Click Here
> > http://p.sf.net/sfu/sfd2d-msazure
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >

I've never seen this, and I've broken every part of my system in every way
imaginable, so I'm gonna say that it's probably distro-related.

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Jeff Hoogland
Thats fine - I'll just comment this error message out of the E code at
compile time then. It literally only pops up for half a second at shut
down.

It ONLY happens with the new E notification module though.

It DOES NOT happen when using other notification daemons such as notify-osd.

That lead me to believe it was an E issue - if people here are of the
opinion it is not that is fine.

On Tue, Mar 27, 2012 at 6:59 PM, thomasg  wrote:

> On Wed, Mar 28, 2012 at 01:56, Joel Madero  wrote:
> > As Jeff said, it's been pointed out by at least 10 or so people over at
> > Bodhi forums so it's not just my system. I'm experiencing it on three
> > systems myself
> >
> > On Tue, Mar 27, 2012 at 3:01 PM, thomasg  wrote:
> >
> >> On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland 
> >> wrote:
> >> > E displays a popup notification that says something along the lines
> of:
> >> >
> >> > "Error during DBus init! Please check if
> >> > dbus is correctly installed and running"
> >> >
> >> > As the system shuts down, it is harmless and the system still quickly
> >> shuts
> >> > down (which is why it is hard to say exactly what the massage says).
> But
> >> > many people have noticed it's occurrence.
> >> >
> >> > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> >> > michael.blumenkra...@gmail.com> wrote:
> >> >
> >> >> On Tue, 27 Mar 2012 13:38:29 -0700
> >> >> Joel Madero  wrote:
> >> >>
> >> >> > This has been confirmed by quite a few people over at Bodhi Forums.
> >> >> >
> >> >> > Enabling E Notifications is causing a dbus error to come up upon
> >> shutting
> >> >> > down/rebooting. The error reads:
> >> >> >
> >> >> > "Error during DBus init! Please check if
> >> >> > dbus is correctly installed and running."
> >> >> >
> >> >> >
> >> >> >
> >> >> > The error flashes really fast, fast enough to where I haven't been
> >> able
> >> >> to
> >> >> > get the wording (another user posted the above). One of the staff
> >> over at
> >> >> > bodhi forum thinks it's got to do with the e_modapi_init function
> >> >> >
> >> >> >
> >> >> > Joel
> >> >>
> >> >> define "is causing a dbus error to come up upon shutting
> >> down/rebooting".
> >> >>
> >> >>
> >> >>
> >>
> --
> >> >> This SF email is sponsosred by:
> >> >> Try Windows Azure free for 90 days Click Here
> >> >> http://p.sf.net/sfu/sfd2d-msazure
> >> >> ___
> >> >> 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
> >> >
> >>
> --
> >> > This SF email is sponsosred by:
> >> > Try Windows Azure free for 90 days Click Here
> >> > http://p.sf.net/sfu/sfd2d-msazure
> >> > ___
> >> > enlightenment-devel mailing list
> >> > enlightenment-devel@lists.sourceforge.net
> >> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >>
> >> I'd assume your system shuts down the dbus daemon before E exits, thus
> >> E loses the socket connection and throws this error.
> >> I've never noticed it here.
> >>
> >>
> >>
> --
> >> This SF email is sponsosred by:
> >> Try Windows Azure free for 90 days Click Here
> >> http://p.sf.net/sfu/sfd2d-msazure
> >> ___
> >> enlightenment-devel mailing list
> >> enlightenment-devel@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >>
> >
> --
> > This SF email is sponsosred by:
> > Try Windows Azure free for 90 days Click Here
> > http://p.sf.net/sfu/sfd2d-msazure
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
> Well, that probably leads to the conclusion that it is bodhi related :)
>
>
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> 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
--

Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Joel Madero
Now that it's been pointed out I remember vaguely reading a critical piece
against Ubuntu for decreasing shutdown times by using some method that
shuts down services incorrectly.

On Tue, Mar 27, 2012 at 5:02 PM, Jeff Hoogland wrote:

> I guess that is just how Ubuntu shutdown order goes.
>
> Is it decided then that this is an issue with the shutdown order and not an
> E-related thing?
>
> On Tue, Mar 27, 2012 at 6:59 PM, Michael Blumenkrantz <
> michael.blumenkra...@gmail.com> wrote:
>
> > On Tue, 27 Mar 2012 16:56:05 -0700
> > Joel Madero  wrote:
> >
> > > As Jeff said, it's been pointed out by at least 10 or so people over at
> > > Bodhi forums so it's not just my system. I'm experiencing it on three
> > > systems myself
> > >
> > > On Tue, Mar 27, 2012 at 3:01 PM, thomasg 
> wrote:
> > >
> > > > On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland  >
> > > > wrote:
> > > > > E displays a popup notification that says something along the lines
> > of:
> > > > >
> > > > > "Error during DBus init! Please check if
> > > > > dbus is correctly installed and running"
> > > > >
> > > > > As the system shuts down, it is harmless and the system still
> quickly
> > > > shuts
> > > > > down (which is why it is hard to say exactly what the massage
> says).
> > But
> > > > > many people have noticed it's occurrence.
> > > > >
> > > > > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> > > > > michael.blumenkra...@gmail.com> wrote:
> > > > >
> > > > >> On Tue, 27 Mar 2012 13:38:29 -0700
> > > > >> Joel Madero  wrote:
> > > > >>
> > > > >> > This has been confirmed by quite a few people over at Bodhi
> > Forums.
> > > > >> >
> > > > >> > Enabling E Notifications is causing a dbus error to come up upon
> > > > shutting
> > > > >> > down/rebooting. The error reads:
> > > > >> >
> > > > >> > "Error during DBus init! Please check if
> > > > >> > dbus is correctly installed and running."
> > > > >> >
> > > > >> >
> > > > >> >
> > > > >> > The error flashes really fast, fast enough to where I haven't
> been
> > > > able
> > > > >> to
> > > > >> > get the wording (another user posted the above). One of the
> staff
> > > > over at
> > > > >> > bodhi forum thinks it's got to do with the e_modapi_init
> function
> > > > >> >
> > > > >> >
> > > > >> > Joel
> > > > >>
> > > > >> define "is causing a dbus error to come up upon shutting
> > > > down/rebooting".
> > > > >>
> > > > >>
> > > > >>
> > > >
> >
> --
> > > > >> This SF email is sponsosred by:
> > > > >> Try Windows Azure free for 90 days Click Here
> > > > >> http://p.sf.net/sfu/sfd2d-msazure
> > > > >> ___
> > > > >> 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
> > > > >
> > > >
> >
> --
> > > > > This SF email is sponsosred by:
> > > > > Try Windows Azure free for 90 days Click Here
> > > > > http://p.sf.net/sfu/sfd2d-msazure
> > > > > ___
> > > > > enlightenment-devel mailing list
> > > > > enlightenment-devel@lists.sourceforge.net
> > > > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > > >
> > > > I'd assume your system shuts down the dbus daemon before E exits,
> thus
> > > > E loses the socket connection and throws this error.
> > > > I've never noticed it here.
> > > >
> >
> > imo your distro probably shouldn't shut down essential system services
> > before
> > the system is done using them
> >
> >
> >
> --
> > This SF email is sponsosred by:
> > Try Windows Azure free for 90 days Click Here
> > http://p.sf.net/sfu/sfd2d-msazure
> > ___
> > 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
>
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
---

Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Jeff Hoogland
I guess that is just how Ubuntu shutdown order goes.

Is it decided then that this is an issue with the shutdown order and not an
E-related thing?

On Tue, Mar 27, 2012 at 6:59 PM, Michael Blumenkrantz <
michael.blumenkra...@gmail.com> wrote:

> On Tue, 27 Mar 2012 16:56:05 -0700
> Joel Madero  wrote:
>
> > As Jeff said, it's been pointed out by at least 10 or so people over at
> > Bodhi forums so it's not just my system. I'm experiencing it on three
> > systems myself
> >
> > On Tue, Mar 27, 2012 at 3:01 PM, thomasg  wrote:
> >
> > > On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland 
> > > wrote:
> > > > E displays a popup notification that says something along the lines
> of:
> > > >
> > > > "Error during DBus init! Please check if
> > > > dbus is correctly installed and running"
> > > >
> > > > As the system shuts down, it is harmless and the system still quickly
> > > shuts
> > > > down (which is why it is hard to say exactly what the massage says).
> But
> > > > many people have noticed it's occurrence.
> > > >
> > > > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> > > > michael.blumenkra...@gmail.com> wrote:
> > > >
> > > >> On Tue, 27 Mar 2012 13:38:29 -0700
> > > >> Joel Madero  wrote:
> > > >>
> > > >> > This has been confirmed by quite a few people over at Bodhi
> Forums.
> > > >> >
> > > >> > Enabling E Notifications is causing a dbus error to come up upon
> > > shutting
> > > >> > down/rebooting. The error reads:
> > > >> >
> > > >> > "Error during DBus init! Please check if
> > > >> > dbus is correctly installed and running."
> > > >> >
> > > >> >
> > > >> >
> > > >> > The error flashes really fast, fast enough to where I haven't been
> > > able
> > > >> to
> > > >> > get the wording (another user posted the above). One of the staff
> > > over at
> > > >> > bodhi forum thinks it's got to do with the e_modapi_init function
> > > >> >
> > > >> >
> > > >> > Joel
> > > >>
> > > >> define "is causing a dbus error to come up upon shutting
> > > down/rebooting".
> > > >>
> > > >>
> > > >>
> > >
> --
> > > >> This SF email is sponsosred by:
> > > >> Try Windows Azure free for 90 days Click Here
> > > >> http://p.sf.net/sfu/sfd2d-msazure
> > > >> ___
> > > >> 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
> > > >
> > >
> --
> > > > This SF email is sponsosred by:
> > > > Try Windows Azure free for 90 days Click Here
> > > > http://p.sf.net/sfu/sfd2d-msazure
> > > > ___
> > > > enlightenment-devel mailing list
> > > > enlightenment-devel@lists.sourceforge.net
> > > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >
> > > I'd assume your system shuts down the dbus daemon before E exits, thus
> > > E loses the socket connection and throws this error.
> > > I've never noticed it here.
> > >
>
> imo your distro probably shouldn't shut down essential system services
> before
> the system is done using them
>
>
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> 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
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread thomasg
On Wed, Mar 28, 2012 at 01:56, Joel Madero  wrote:
> As Jeff said, it's been pointed out by at least 10 or so people over at
> Bodhi forums so it's not just my system. I'm experiencing it on three
> systems myself
>
> On Tue, Mar 27, 2012 at 3:01 PM, thomasg  wrote:
>
>> On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland 
>> wrote:
>> > E displays a popup notification that says something along the lines of:
>> >
>> > "Error during DBus init! Please check if
>> > dbus is correctly installed and running"
>> >
>> > As the system shuts down, it is harmless and the system still quickly
>> shuts
>> > down (which is why it is hard to say exactly what the massage says). But
>> > many people have noticed it's occurrence.
>> >
>> > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
>> > michael.blumenkra...@gmail.com> wrote:
>> >
>> >> On Tue, 27 Mar 2012 13:38:29 -0700
>> >> Joel Madero  wrote:
>> >>
>> >> > This has been confirmed by quite a few people over at Bodhi Forums.
>> >> >
>> >> > Enabling E Notifications is causing a dbus error to come up upon
>> shutting
>> >> > down/rebooting. The error reads:
>> >> >
>> >> > "Error during DBus init! Please check if
>> >> > dbus is correctly installed and running."
>> >> >
>> >> >
>> >> >
>> >> > The error flashes really fast, fast enough to where I haven't been
>> able
>> >> to
>> >> > get the wording (another user posted the above). One of the staff
>> over at
>> >> > bodhi forum thinks it's got to do with the e_modapi_init function
>> >> >
>> >> >
>> >> > Joel
>> >>
>> >> define "is causing a dbus error to come up upon shutting
>> down/rebooting".
>> >>
>> >>
>> >>
>> --
>> >> This SF email is sponsosred by:
>> >> Try Windows Azure free for 90 days Click Here
>> >> http://p.sf.net/sfu/sfd2d-msazure
>> >> ___
>> >> 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
>> >
>> --
>> > This SF email is sponsosred by:
>> > Try Windows Azure free for 90 days Click Here
>> > http://p.sf.net/sfu/sfd2d-msazure
>> > ___
>> > enlightenment-devel mailing list
>> > enlightenment-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>
>> I'd assume your system shuts down the dbus daemon before E exits, thus
>> E loses the socket connection and throws this error.
>> I've never noticed it here.
>>
>>
>> --
>> This SF email is sponsosred by:
>> Try Windows Azure free for 90 days Click Here
>> http://p.sf.net/sfu/sfd2d-msazure
>> ___
>> enlightenment-devel mailing list
>> enlightenment-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Well, that probably leads to the conclusion that it is bodhi related :)

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Michael Blumenkrantz
On Tue, 27 Mar 2012 16:56:05 -0700
Joel Madero  wrote:

> As Jeff said, it's been pointed out by at least 10 or so people over at
> Bodhi forums so it's not just my system. I'm experiencing it on three
> systems myself
> 
> On Tue, Mar 27, 2012 at 3:01 PM, thomasg  wrote:
> 
> > On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland 
> > wrote:
> > > E displays a popup notification that says something along the lines of:
> > >
> > > "Error during DBus init! Please check if
> > > dbus is correctly installed and running"
> > >
> > > As the system shuts down, it is harmless and the system still quickly
> > shuts
> > > down (which is why it is hard to say exactly what the massage says). But
> > > many people have noticed it's occurrence.
> > >
> > > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> > > michael.blumenkra...@gmail.com> wrote:
> > >
> > >> On Tue, 27 Mar 2012 13:38:29 -0700
> > >> Joel Madero  wrote:
> > >>
> > >> > This has been confirmed by quite a few people over at Bodhi Forums.
> > >> >
> > >> > Enabling E Notifications is causing a dbus error to come up upon
> > shutting
> > >> > down/rebooting. The error reads:
> > >> >
> > >> > "Error during DBus init! Please check if
> > >> > dbus is correctly installed and running."
> > >> >
> > >> >
> > >> >
> > >> > The error flashes really fast, fast enough to where I haven't been
> > able
> > >> to
> > >> > get the wording (another user posted the above). One of the staff
> > over at
> > >> > bodhi forum thinks it's got to do with the e_modapi_init function
> > >> >
> > >> >
> > >> > Joel
> > >>
> > >> define "is causing a dbus error to come up upon shutting
> > down/rebooting".
> > >>
> > >>
> > >>
> > --
> > >> This SF email is sponsosred by:
> > >> Try Windows Azure free for 90 days Click Here
> > >> http://p.sf.net/sfu/sfd2d-msazure
> > >> ___
> > >> 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
> > >
> > --
> > > This SF email is sponsosred by:
> > > Try Windows Azure free for 90 days Click Here
> > > http://p.sf.net/sfu/sfd2d-msazure
> > > ___
> > > enlightenment-devel mailing list
> > > enlightenment-devel@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> > I'd assume your system shuts down the dbus daemon before E exits, thus
> > E loses the socket connection and throws this error.
> > I've never noticed it here.
> >

imo your distro probably shouldn't shut down essential system services before
the system is done using them

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Joel Madero
As Jeff said, it's been pointed out by at least 10 or so people over at
Bodhi forums so it's not just my system. I'm experiencing it on three
systems myself

On Tue, Mar 27, 2012 at 3:01 PM, thomasg  wrote:

> On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland 
> wrote:
> > E displays a popup notification that says something along the lines of:
> >
> > "Error during DBus init! Please check if
> > dbus is correctly installed and running"
> >
> > As the system shuts down, it is harmless and the system still quickly
> shuts
> > down (which is why it is hard to say exactly what the massage says). But
> > many people have noticed it's occurrence.
> >
> > On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> > michael.blumenkra...@gmail.com> wrote:
> >
> >> On Tue, 27 Mar 2012 13:38:29 -0700
> >> Joel Madero  wrote:
> >>
> >> > This has been confirmed by quite a few people over at Bodhi Forums.
> >> >
> >> > Enabling E Notifications is causing a dbus error to come up upon
> shutting
> >> > down/rebooting. The error reads:
> >> >
> >> > "Error during DBus init! Please check if
> >> > dbus is correctly installed and running."
> >> >
> >> >
> >> >
> >> > The error flashes really fast, fast enough to where I haven't been
> able
> >> to
> >> > get the wording (another user posted the above). One of the staff
> over at
> >> > bodhi forum thinks it's got to do with the e_modapi_init function
> >> >
> >> >
> >> > Joel
> >>
> >> define "is causing a dbus error to come up upon shutting
> down/rebooting".
> >>
> >>
> >>
> --
> >> This SF email is sponsosred by:
> >> Try Windows Azure free for 90 days Click Here
> >> http://p.sf.net/sfu/sfd2d-msazure
> >> ___
> >> 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
> >
> --
> > This SF email is sponsosred by:
> > Try Windows Azure free for 90 days Click Here
> > http://p.sf.net/sfu/sfd2d-msazure
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
> I'd assume your system shuts down the dbus daemon before E exits, thus
> E loses the socket connection and throws this error.
> I've never noticed it here.
>
>
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Docs on site out of date.

2012-03-27 Thread The Rasterman
On Wed, 28 Mar 2012 00:36:18 +1000 David Seikel  said:

> On Tue, 27 Mar 2012 11:27:32 -0300 Gustavo Sverzut Barbieri
>  wrote:
> 
> > On Tue, Mar 27, 2012 at 11:17 AM, Carsten Haitzler
> >  wrote:
> > > On Tue, 27 Mar 2012 22:43:08 +1000 David Seikel 
> > > said:
> > >
> > > no one has updated the wiki in that time. yes. this is part of our
> > > problem. too many different places that we put documentation or
> > > just information. a lot of docs have moved to the doxy generated
> > > ones to improve this (as it also sits within the src too)
> > >
> > 
> > Yes, the doxygen part evolved from being just api to big picture and
> > all. Even the EDC reference was added. Then it makes sense to remove
> > the wiki page, moving the missing bits to doxygen and making the wiki
> > pages link to doxygen generated html.
> 
> The point I'm making is that it used to show the generated docs from
> the About page, at least I'm pretty sure it did.  Now it's showing the
> old wiki docs. Something changed?  If so, it should get changed back.

it never showed the generated docs. we have no mechanism to generate content
into the wiki... :) at BESt it linked to the generated docs. :)

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


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread thomasg
On Tue, Mar 27, 2012 at 23:52, Jeff Hoogland  wrote:
> E displays a popup notification that says something along the lines of:
>
> "Error during DBus init! Please check if
> dbus is correctly installed and running"
>
> As the system shuts down, it is harmless and the system still quickly shuts
> down (which is why it is hard to say exactly what the massage says). But
> many people have noticed it's occurrence.
>
> On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
> michael.blumenkra...@gmail.com> wrote:
>
>> On Tue, 27 Mar 2012 13:38:29 -0700
>> Joel Madero  wrote:
>>
>> > This has been confirmed by quite a few people over at Bodhi Forums.
>> >
>> > Enabling E Notifications is causing a dbus error to come up upon shutting
>> > down/rebooting. The error reads:
>> >
>> > "Error during DBus init! Please check if
>> > dbus is correctly installed and running."
>> >
>> >
>> >
>> > The error flashes really fast, fast enough to where I haven't been able
>> to
>> > get the wording (another user posted the above). One of the staff over at
>> > bodhi forum thinks it's got to do with the e_modapi_init function
>> >
>> >
>> > Joel
>>
>> define "is causing a dbus error to come up upon shutting down/rebooting".
>>
>>
>> --
>> This SF email is sponsosred by:
>> Try Windows Azure free for 90 days Click Here
>> http://p.sf.net/sfu/sfd2d-msazure
>> ___
>> 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
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

I'd assume your system shuts down the dbus daemon before E exits, thus
E loses the socket connection and throws this error.
I've never noticed it here.

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Jeff Hoogland
E displays a popup notification that says something along the lines of:

"Error during DBus init! Please check if
dbus is correctly installed and running"

As the system shuts down, it is harmless and the system still quickly shuts
down (which is why it is hard to say exactly what the massage says). But
many people have noticed it's occurrence.

On Tue, Mar 27, 2012 at 4:19 PM, Michael Blumenkrantz <
michael.blumenkra...@gmail.com> wrote:

> On Tue, 27 Mar 2012 13:38:29 -0700
> Joel Madero  wrote:
>
> > This has been confirmed by quite a few people over at Bodhi Forums.
> >
> > Enabling E Notifications is causing a dbus error to come up upon shutting
> > down/rebooting. The error reads:
> >
> > "Error during DBus init! Please check if
> > dbus is correctly installed and running."
> >
> >
> >
> > The error flashes really fast, fast enough to where I haven't been able
> to
> > get the wording (another user posted the above). One of the staff over at
> > bodhi forum thinks it's got to do with the e_modapi_init function
> >
> >
> > Joel
>
> define "is causing a dbus error to come up upon shutting down/rebooting".
>
>
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> 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
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Michael Blumenkrantz
On Tue, 27 Mar 2012 13:38:29 -0700
Joel Madero  wrote:

> This has been confirmed by quite a few people over at Bodhi Forums.
> 
> Enabling E Notifications is causing a dbus error to come up upon shutting
> down/rebooting. The error reads:
> 
> "Error during DBus init! Please check if
> dbus is correctly installed and running."
> 
> 
> 
> The error flashes really fast, fast enough to where I haven't been able to
> get the wording (another user posted the above). One of the staff over at
> bodhi forum thinks it's got to do with the e_modapi_init function
> 
> 
> Joel

define "is causing a dbus error to come up upon shutting down/rebooting".

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [BUG REPORT] Ibus Error Caused By E Notifications

2012-03-27 Thread Joel Madero
This has been confirmed by quite a few people over at Bodhi Forums.

Enabling E Notifications is causing a dbus error to come up upon shutting
down/rebooting. The error reads:

"Error during DBus init! Please check if
dbus is correctly installed and running."



The error flashes really fast, fast enough to where I haven't been able to
get the wording (another user posted the above). One of the staff over at
bodhi forum thinks it's got to do with the e_modapi_init function


Joel
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Fwd: E SVN: discomfitor trunk/web/www/p/download

2012-03-27 Thread Simon
On 03/26/2012 10:18 AM, Simon Lees wrote:
>
>
>  Original Message 
> Subject:  E SVN: discomfitor trunk/web/www/p/download
> Date: Mon, 26 Mar 2012 07:38:01 +1030
> From: Enlightenment SVN 
> Reply-To: enlightenment-devel@lists.sourceforge.net 
> 
> To:   enlightenment-...@lists.sourceforge.net 
> 
>
>
>
> Log:
> apparently this fedora repo is dead
>
>
> Author:   discomfitor
> Date: 2012-03-25 14:08:01 -0700 (Sun, 25 Mar 2012)
> New Revision: 69620
> Trac:http://trac.enlightenment.org/e/changeset/69620
>
> Modified:
>trunk/web/www/p/download/en-body
>
> Modified: trunk/web/www/p/download/en-body
> ===
> --- trunk/web/www/p/download/en-body  2012-03-25 19:15:44 UTC (rev 69619)
> +++ trunk/web/www/p/download/en-body  2012-03-25 21:08:01 UTC (rev 69620)
> @@ -201,7 +201,6 @@
>
> Debian
>  href="https://launchpad.net/~hannes-janetzek/+archive/enlightenment-svn";>Ubuntu
> -http://sps.nus.edu.sg/~didierbe";>Fedora
>  href="http://wiki.archlinux.org/index.php/E17";>ArchLinux
>  href="http://overlays.gentoo.org/dev/vapier/wiki/enlightenment";>Gentoo
> http://slacke17.sourceforge.net";>Slackware
>
>
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>
Hi all,
I've been using this opensuse repo for a few months without any issues 
maybe its worth adding.
http://download.opensuse.org/repositories/X11:/Enlightenment:/Nightly/
Cheers
Simon

--

http://simotek.net/tech
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Docs on site out of date.

2012-03-27 Thread Jonas M. Gastal
On Wednesday 28 March 2012 00:36:18 David Seikel wrote:
> The point I'm making is that it used to show the generated docs from
> the About page, at least I'm pretty sure it did.  Now it's showing the
> old wiki docs. Something changed?  If so, it should get changed back.

Well, I'm not aware that it previously linked to the generated docs, but I'm 
going to make it link there regardless. Commit should hit SVN in a few 
minutes.

Gastal

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] EET_DATA_DESCRIPTOR_ADD_BASIC_ARRAY variable length version.

2012-03-27 Thread David Seikel
On Tue, 27 Mar 2012 16:24:28 +0200 Cedric BAIL 
wrote:

> On Tue, Mar 27, 2012 at 3:18 PM, David Seikel 
> wrote:
> > Oops, when we added EET_DATA_DESCRIPTOR_ADD_BASIC_ARRAY, we should
> > have added a EET_DATA_DESCRIPTOR_ADD_BASIC_VAR_ARRAY version as
> > well.
> >
> > If I remember, I did that.
> 
> I am not sure we handle in eet code more than a VAR_ARRAY_STRING, but
> I may be wrong.

VAR_ARRAY handles sub types, but not basic types.  ARRAY handles sub
types, but not basic types.  That's why BASIC_ARRAY was added, to be
an array that handles basic types, but there was no addition of a
VAR_ARRAY for basic types.

> > Is it too late to add that API, or does it not count since it's a
> > macro?
> 
> If it's just a macro and all the code behind already work, then I am
> fine. But I doubt it's the case.

I wrote a macro after I sent that email, and It seems to be working
fine. I'll test it more after I wake up.  Time to sleep.

-- 
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
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Docs on site out of date.

2012-03-27 Thread David Seikel
On Tue, 27 Mar 2012 11:27:32 -0300 Gustavo Sverzut Barbieri
 wrote:

> On Tue, Mar 27, 2012 at 11:17 AM, Carsten Haitzler
>  wrote:
> > On Tue, 27 Mar 2012 22:43:08 +1000 David Seikel 
> > said:
> >
> > no one has updated the wiki in that time. yes. this is part of our
> > problem. too many different places that we put documentation or
> > just information. a lot of docs have moved to the doxy generated
> > ones to improve this (as it also sits within the src too)
> >
> 
> Yes, the doxygen part evolved from being just api to big picture and
> all. Even the EDC reference was added. Then it makes sense to remove
> the wiki page, moving the missing bits to doxygen and making the wiki
> pages link to doxygen generated html.

The point I'm making is that it used to show the generated docs from
the About page, at least I'm pretty sure it did.  Now it's showing the
old wiki docs. Something changed?  If so, it should get changed back.

-- 
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
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Docs on site out of date.

2012-03-27 Thread Gustavo Sverzut Barbieri
On Tue, Mar 27, 2012 at 11:17 AM, Carsten Haitzler  wrote:
> On Tue, 27 Mar 2012 22:43:08 +1000 David Seikel  said:
>
> no one has updated the wiki in that time. yes. this is part of our problem.
> too many different places that we put documentation or just information. a lot
> of docs have moved to the doxy generated ones to improve this (as it also sits
> within the src too)
>

Yes, the doxygen part evolved from being just api to big picture and
all. Even the EDC reference was added. Then it makes sense to remove
the wiki page, moving the missing bits to doxygen and making the wiki
pages link to doxygen generated html.


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

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] EET_DATA_DESCRIPTOR_ADD_BASIC_ARRAY variable length version.

2012-03-27 Thread Cedric BAIL
On Tue, Mar 27, 2012 at 3:18 PM, David Seikel  wrote:
> Oops, when we added EET_DATA_DESCRIPTOR_ADD_BASIC_ARRAY, we should
> have added a EET_DATA_DESCRIPTOR_ADD_BASIC_VAR_ARRAY version as well.
>
> If I remember, I did that.

I am not sure we handle in eet code more than a VAR_ARRAY_STRING, but
I may be wrong.

> Is it too late to add that API, or does it not count since it's a macro?

If it's just a macro and all the code behind already work, then I am
fine. But I doubt it's the case.
-- 
Cedric BAIL

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Docs on site out of date.

2012-03-27 Thread The Rasterman
On Tue, 27 Mar 2012 22:43:08 +1000 David Seikel  said:

no one has updated the wiki in that time. yes. this is part of our problem.
too many different places that we put documentation or just information. a lot
of docs have moved to the doxy generated ones to improve this (as it also sits
within the src too)

> On Tue, 27 Mar 2012 08:58:25 -0300 "Jonas M. Gastal"
>  wrote:
> 
> > On Tuesday 27 March 2012 20:42:46 David Seikel wrote:
> > > I'm looking at the edje docs on the web site, they are from 15 or 16
> > > months ago.  WTF?
> > 
> > Says on the bottom right corner of the page:
> > "Docs generated Mon Mar 26 2012 00:28:07"
> > What makes you say the docs are old?
> 
> Starting from http://www.enlightenment.org/ click on the About button,
> or pretty much any of the links on the left hand side.
> 
> http://www.enlightenment.org/p.php?p=about&l=en
> 
> On the About page, in the centre list of EFL components, click on Edje.
> 
> http://trac.enlightenment.org/e/wiki/Edje
> 
> Right up the top it says "Last modified 15 months ago".  The Lua link
> shows the outdated docs for the ancient Lua that went away last year,
> which says at the top of the page "Last modified 16 months ago".
> 
> http://trac.enlightenment.org/e/wiki/EdjeScriptingLua
> 
> Looks like the ancient trac wiki, not the generated docs.
> 
> -- 
> 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, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] EET_DATA_DESCRIPTOR_ADD_BASIC_ARRAY variable length version.

2012-03-27 Thread David Seikel
Oops, when we added EET_DATA_DESCRIPTOR_ADD_BASIC_ARRAY, we should
have added a EET_DATA_DESCRIPTOR_ADD_BASIC_VAR_ARRAY version as well.

If I remember, I did that.

Is it too late to add that API, or does it not count since it's a macro?

-- 
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
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Docs on site out of date.

2012-03-27 Thread David Seikel
On Tue, 27 Mar 2012 08:58:25 -0300 "Jonas M. Gastal"
 wrote:

> On Tuesday 27 March 2012 20:42:46 David Seikel wrote:
> > I'm looking at the edje docs on the web site, they are from 15 or 16
> > months ago.  WTF?
> 
> Says on the bottom right corner of the page:
> "Docs generated Mon Mar 26 2012 00:28:07"
> What makes you say the docs are old?

Starting from http://www.enlightenment.org/ click on the About button,
or pretty much any of the links on the left hand side.

http://www.enlightenment.org/p.php?p=about&l=en

On the About page, in the centre list of EFL components, click on Edje.

http://trac.enlightenment.org/e/wiki/Edje

Right up the top it says "Last modified 15 months ago".  The Lua link
shows the outdated docs for the ancient Lua that went away last year,
which says at the top of the page "Last modified 16 months ago".

http://trac.enlightenment.org/e/wiki/EdjeScriptingLua

Looks like the ancient trac wiki, not the generated docs.

-- 
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
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Docs on site out of date.

2012-03-27 Thread Jonas M. Gastal
On Tuesday 27 March 2012 20:42:46 David Seikel wrote:
> I'm looking at the edje docs on the web site, they are from 15 or 16
> months ago.  WTF?

Says on the bottom right corner of the page:
"Docs generated Mon Mar 26 2012 00:28:07"
What makes you say the docs are old?

Gastal

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Docs on site out of date.

2012-03-27 Thread David Seikel
I'm looking at the edje docs on the web site, they are from 15 or 16
months ago.  WTF?

-- 
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
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel