[E-devel] [announcement] ePeriodique 0.3.1

2012-06-24 Thread Jérôme Pinot
Hi,

I am pleased to announce here a new minor version of ePeriodique, the EFL
based periodic table of elements. This release adds new data (covalent
and Van der Walls radii), a russian translation, and few fixes in the
autotools files.

This version, like the 0.3, requires elementary 1.0 (and EFL 1.2).
Source and Slackware packages are available at:
http://eperiodique.sourceforge.net/ 

-- 
Jérôme Pinot
http://ngc891.blogdns.net/


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


Re: [E-devel] E SVN: cedric IN trunk/edje: . src/bin src/lib

2012-06-24 Thread Daniel Juyung Seo
Just curious.
What is the usecase of this feature?

Daniel Juyung Seo (SeoZ)

On Sun, Jun 24, 2012 at 10:23 PM, Enlightenment SVN
no-re...@enlightenment.org wrote:
 Log:
 edje: implement per part limit.


 Author:       cedric
 Date:         2012-06-24 06:23:37 -0700 (Sun, 24 Jun 2012)
 New Revision: 72767
 Trac:         http://trac.enlightenment.org/e/changeset/72767

 Modified:
  trunk/edje/ChangeLog trunk/edje/NEWS trunk/edje/src/bin/edje_cc_handlers.c 
 trunk/edje/src/lib/edje_calc.c trunk/edje/src/lib/edje_data.c 
 trunk/edje/src/lib/edje_private.h

 Modified: trunk/edje/ChangeLog
 ===
 --- trunk/edje/ChangeLog        2012-06-24 13:18:35 UTC (rev 72766)
 +++ trunk/edje/ChangeLog        2012-06-24 13:23:37 UTC (rev 72767)
 @@ -490,14 +490,18 @@

        * Add edje_object_access_part_list_get and acess flags in edc file.

 -2012-05-21 Carsten Haitzler (The Rasterman)
 +2012-06-21  Carsten Haitzler (The Rasterman)

         * Improve edje_cc slightly to use prefix for full path to
         embryo_cc. this still like before requires embryo and edje to share
         the same install prefix for edje_cc to work.

 -2012-06-12 Michael Bouchaud (yoz)
 +2012-06-12  Michael Bouchaud (yoz)

        * The aliases are now inherited from the targeted group
        * Aliases can be usable with edje programs, if the part is in the
        group
 +
 +2012-06-24  Cedric Bail
 +
 +       * Emit signal for flagged part when their size get to zero.

 Modified: trunk/edje/NEWS
 ===
 --- trunk/edje/NEWS     2012-06-24 13:18:35 UTC (rev 72766)
 +++ trunk/edje/NEWS     2012-06-24 13:23:37 UTC (rev 72767)
 @@ -10,6 +10,7 @@
     * Add SPACER part. This part are not putting anything into the canvas. So 
 lighter and faster to
     process (Use it to replace RECT part that are never visible and never 
 catch any event).
     * Add accessibility flags and API to retrieve the relevant part.
 +    * Emit signal when flagged part size get to zero.

  Improvements:
     * Allocate once and reuse Evas_Map.

 Modified: trunk/edje/src/bin/edje_cc_handlers.c
 ===
 --- trunk/edje/src/bin/edje_cc_handlers.c       2012-06-24 13:18:35 UTC (rev 
 72766)
 +++ trunk/edje/src/bin/edje_cc_handlers.c       2012-06-24 13:23:37 UTC (rev 
 72767)
 @@ -171,6 +171,7 @@
  static void st_collections_group_parts_part_description_source(void);
  static void st_collections_group_parts_part_description_state(void);
  static void st_collections_group_parts_part_description_visible(void);
 +static void st_collections_group_parts_part_description_limit(void);
  static void st_collections_group_parts_part_description_align(void);
  static void st_collections_group_parts_part_description_fixed(void);
  static void st_collections_group_parts_part_description_min(void);
 @@ -436,6 +437,7 @@
      {collections.group.parts.part.description.source, 
 st_collections_group_parts_part_description_source},
      {collections.group.parts.part.description.state, 
 st_collections_group_parts_part_description_state},
      {collections.group.parts.part.description.visible, 
 st_collections_group_parts_part_description_visible},
 +     {collections.group.parts.part.description.limit, 
 st_collections_group_parts_part_description_limit},
      {collections.group.parts.part.description.align, 
 st_collections_group_parts_part_description_align},
      {collections.group.parts.part.description.fixed, 
 st_collections_group_parts_part_description_fixed},
      {collections.group.parts.part.description.min, 
 st_collections_group_parts_part_description_min},
 @@ -2258,7 +2260,6 @@
    Edje_Pack_Element_Parser *pitem;
    Edje_Part_Description_Common *ed, *ed2;
    Edje_List_Foreach_Data fdata;
 -   Edje_String *es;
    Eina_List *l;
    char *parent_name;
    unsigned int i, j;
 @@ -4260,6 +4261,7 @@
      }

    ed-visible = 1;
 +   ed-limit = 0;
    ed-align.x = FROM_DOUBLE(0.5);
    ed-align.y = FROM_DOUBLE(0.5);
    ed-min.w = 0;
 @@ -4673,7 +4675,43 @@

    current_desc-visible = parse_bool(0);
  }
 +/**
 +    @page edcref
 +    @property
 +        limit
 +    @parameters
 +        [NONE, WIDTH, HEIGHT or BOTH]
 +    @effect
 +       Emit a signal when the part size change from zero or to a zero size
 +       ('limit,width,over', 'limit,width,zero'). By default no signal are
 +       emitted.
 +    @endproperty
 +*/
 +static void
 +st_collections_group_parts_part_description_limit(void)
 +{
 +   check_arg_count(1);

 +   current_desc-limit = parse_enum(0,
 +                                   NONE, 0,
 +                                   WIDTH, 1,
 +                                   HEIGHT, 2,
 +                                   BOTH, 3);
 +
 +   if (current_desc-limit)
 +     {
 +        Edje_Part_Collection *pc;
 +        int count;
 +
 +        pc = 

Re: [E-devel] E SVN: cedric IN trunk/edje: . src/bin src/lib

2012-06-24 Thread Cedric BAIL
On Sun, Jun 24, 2012 at 3:25 PM, Daniel Juyung Seo seojuyu...@gmail.com wrote:
 Just curious.
 What is the usecase of this feature?

Two of them :
- Doing the selection in terminology require to detect that it fit in
one two or more line to hide some of the rectangle.
- Doing the amsn2 effect, but by tacking scale and finger size into
account (something the previous attempt didn't and wasn't able to do).

In general hidding some part when the widget is to small.
-- 
Cedric BAIL

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


Re: [E-devel] E SVN: raster IN trunk/terminology: . data/themes src/bin

2012-06-24 Thread Gustavo Sverzut Barbieri
On Sun, Jun 24, 2012 at 3:39 AM, Enlightenment SVN
no-re...@enlightenment.org wrote:
 Log:
 move current options pane 1 level down and now its a controls pane
  with copy, paste and options. copy  paste use clipboard, not primary.

you didn't update mild theme... so it break :-/

as for CNP, did you see a commit of mine with lots of comments of
elm_cnp? I was trying to implement drop from other apps to terminology
and got crazy with the amount of errors it have :-( Even if you do not
get the commit, see the source file.

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

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


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

2012-06-24 Thread Michaël Bouchaud
oops, sorry :)

2012/6/24 Enlightenment SVN no-re...@enlightenment.org

 Log:
 edje: Resistance is futile. The B0rk.


 Author:   cedric
 Date: 2012-06-23 23:01:12 -0700 (Sat, 23 Jun 2012)
 New Revision: 72754
 Trac: http://trac.enlightenment.org/e/changeset/72754

 Modified:
  trunk/edje/src/bin/edje_cc_out.c

 Modified: trunk/edje/src/bin/edje_cc_out.c
 ===
 --- trunk/edje/src/bin/edje_cc_out.c2012-06-24 05:35:49 UTC (rev 72753)
 +++ trunk/edje/src/bin/edje_cc_out.c2012-06-24 06:01:12 UTC (rev 72754)
 @@ -2144,15 +2144,15 @@
   }
 else
   {
 - char *aliased;
 - aliased = eina_hash_find(part-pc-aliased, part-name);
 - if (!aliased)
 -   aliased = part-name;
 + char *alias;
 + alias = eina_hash_find(part-pc-alias, part-name);
 + if (!alias)
 +   alias = part-name;
  for (i = 0; i  part-pc-parts_count; ++i)
{
   ep = part-pc-parts[i];

 -  if ((ep-name)  (!strcmp(ep-name, aliased)))
 +  if ((ep-name)  (!strcmp(ep-name, alias)))
 {
handle_slave_lookup(part_slave_lookups, part-dest,
 ep-id);
*(part-dest) = ep-id;
 @@ -2162,8 +2162,8 @@

  if (i == part-pc-parts_count)
{
 -  ERR(%s: Error. Unable to find part name \%s\.,
 -  progname, part-name);
 +  ERR(%s: Error. Unable to find part name \%s\ needed
 in group '%s'.,
 +  progname, alias, part-pc-part);
   exit(-1);
}
   }



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




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


Re: [E-devel] [announcement] ePeriodique 0.3.1

2012-06-24 Thread Bruno Dilly
On Sun, Jun 24, 2012 at 6:51 AM, Jérôme Pinot ngc...@gmail.com wrote:
 Hi,

 I am pleased to announce here a new minor version of ePeriodique, the EFL
 based periodic table of elements. This release adds new data (covalent
 and Van der Walls radii), a russian translation, and few fixes in the
 autotools files.

 This version, like the 0.3, requires elementary 1.0 (and EFL 1.2).
 Source and Slackware packages are available at:
 http://eperiodique.sourceforge.net/

Hey, Jérôme,

I've watched the screencast, it looks really nice.

Congrats


 --
 Jérôme Pinot
 http://ngc891.blogdns.net/

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




-- 
Bruno Dilly
Senior Developer
ProFUSION embedded systems
http://profusion.mobi

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


Re: [E-devel] Debugging a Startup Applications Issue

2012-06-24 Thread Jeff Hoogland
Just a gentle nudge of other places I can stick debug messages (and what
they should output) into the E code to figure out what is going on here...

On Fri, Jun 22, 2012 at 5:00 PM, Christopher Michael cpmicha...@comcast.net
 wrote:

 Christopher Michael cpmicha...@comcast.net wrote:

 Jeff Hoogland jeffhoogl...@linux.com wrote:

 Also - the live CD can write to the home directory. It is all stored in
 memory basically - behaves the same as a normal user - never been an issue
 in the past.

 On Fri, Jun 22, 2012 at 1:41 PM, Jeff Hoogland jeffhoogl...@linux.com
 wrote:

  I've got 5 desktop files being generated in ~/.cache/efreet so I'm not
  sure that is the issue. I'll have to decompile the .eet files and compare
  them to my installed user I guess.
 
 
  On Fri, Jun 22, 2012 at 1:29 PM, Christopher Michael 
  cpmicha...@comcast.net wrote:
 
  Michael Blumenkrantz michael.blumenkra...@gmail.com wrote:
 
  On Fri, 22 Jun 2012 12:01:47 -0500
  Jeff Hoogland jeffhoogl...@linux.com wrote:
 
   OK so played around with my installed system and
   *_e_startup_event_cb*appears to be running there and thus my startup
   applications are working...
   Any ideas why this function might not be working with my live user?
  
   On Fri, Jun 22, 2012 at 11:49 AM, Jeff Hoogland 
 jeffhoogl...@linux.com
  wrote:
  
OK -
   
So, I'm having an issue with Enlightenment on my latest Bodhi disc -
  for
my live user no startup applications run when Enlightenment is
  started...
At the suggestion of Raster/Devilhorns I've started adding print
  commands
to the *e_startup.c*, but I still haven't pinned down the issue.
   
The path to the home directory in *e_startup* is being correctly
  saved to
the buf argument (it is showing the proper
/home/bodhi/.e/e/applications/startup/.order). Next I dropped a
 print
command into the *_e_startup_event_cb* to see if the desktop cache
 is
being set right (that is the next place I should look right?) And
  much to
my surprise that function doesn't seem to be getting run at E's
  startup.
Should that function be running or am I looking in the wrong place?
  Any
other ideas what I should be looking for that might be causing this
  issue?
   
The oddest part about the whole thing is that for my installed users
startup applications work 100% fine.
   
--
~Jeff Hoogland http://jeffhoogland.com/;;;
Thoughts on Technology http://jeffhoogland.blogspot.com/;;;, Tech
  Blog
Bodhi Linux http://bodhilinux.com/;;;, Enlightenment for your
 Desktop
   
   
  
  
 
  I added code which specifically disables the functionality upon
 detecting
  that
  you're using it. File a bug on trac and I'll get to it next year.
 
 _


 
  Live Security Virtual Conference
  Exclusive live event will cover all the ways today's security and
  threat landscape has changed and how IT managers can respond.
 Discussions
  will include endpoint security, mobile security and the latest in
 malware
  threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 _


 
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
 
  Hey Stu...be nice to Jeff or I will be forced to beat u with the trout
 :-P
 
  On a serious note, Jeff it could be that the efreet cache is not running
  because it is a live cd and efreet is thinking that it has no place to
  store it's cache of the desktop files (due to cd being read only). Its
  possible that efreet may need modifications to handle this. IIRC efreet
  stores its cache also in the user homedir (cant remember the exact
 path).
  Because the cd is RO it cannot write it :-( Efrret may need
 modification to
  store cache in a tmp dir.
 
  I could be totally off base here so take with a grain of saltbut
  certainly smells like that is the issue...
 
  Ping Seb (englebass) wrt efreet.
 
  Cheers
  Dh
  --
  Sent from my Android phone with K-9 Mail. Please excuse my brevity.
 
 _


  Live Security Virtual Conference
  Exclusive live event will cover all the ways today's security and
  threat landscape has changed and how IT managers can respond.
 Discussions
  will include endpoint security, mobile security and the latest in
 malware
  threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 _


  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
 
 
 
  --
  ~Jeff Hoogland http://jeffhoogland.com/;;
  Thoughts on Technology http://jeffhoogland.blogspot.com/;;, Tech Blog
  Bodhi Linux http://bodhilinux.com/;;, Enlightenment for your Desktop
 
 


 --
 ~Jeff Hoogland http://jeffhoogland.com/;;
 Thoughts on Technology 

Re: [E-devel] Debugging a Startup Applications Issue

2012-06-24 Thread cpmichael1
So the efreet cache is being generated thenHrmm, That means the 
_e_startup_event_cb should be getting reached then. If it is, then e_exec may 
be failing (for some unknown reason). You could add some printfs in e_startup 
(around line 65) to check the return of e_exec...something like: 


if (!(e_exec( NULL , desktop , NULL , NULL , NULL0 ))) 
printf(Failed to exec startup application: %s\n, desktop-name); 


Tho that is only going to tell you which app failed to start, not necessarily 
why, Add the above and see if e_exec is indeed failing. If so, we have to dig 
deeper. 


dh 

- Original Message -
From: Jeff Hoogland jeffhoogl...@linux.com 
To: Enlightenment developer list enlightenment-devel@lists.sourceforge.net 
Sent: Sunday, June 24, 2012 11:45:57 PM 
Subject: Re: [E-devel] Debugging a Startup Applications Issue 

Just a gentle nudge of other places I can stick debug messages (and what 
they should output) into the E code to figure out what is going on here... 

On Fri, Jun 22, 2012 at 5:00 PM, Christopher Michael cpmicha...@comcast.net 
 wrote: 

 Christopher Michael cpmicha...@comcast.net wrote: 
 
 Jeff Hoogland jeffhoogl...@linux.com wrote: 
 
 Also - the live CD can write to the home directory. It is all stored in 
 memory basically - behaves the same as a normal user - never been an issue 
 in the past. 
 
 On Fri, Jun 22, 2012 at 1:41 PM, Jeff Hoogland jeffhoogl...@linux.com 
 wrote: 
 
  I've got 5 desktop files being generated in ~/.cache/efreet so I'm not 
  sure that is the issue. I'll have to decompile the .eet files and compare 
  them to my installed user I guess. 
  
  
  On Fri, Jun 22, 2012 at 1:29 PM, Christopher Michael  
  cpmicha...@comcast.net wrote: 
  
  Michael Blumenkrantz michael.blumenkra...@gmail.com wrote: 
  
  On Fri, 22 Jun 2012 12:01:47 -0500 
  Jeff Hoogland jeffhoogl...@linux.com wrote: 
  
   OK so played around with my installed system and 
   *_e_startup_event_cb*appears to be running there and thus my startup 
   applications are working... 
   Any ideas why this function might not be working with my live user? 
   
   On Fri, Jun 22, 2012 at 11:49 AM, Jeff Hoogland  
 jeffhoogl...@linux.com 
  wrote: 
   
OK - 

So, I'm having an issue with Enlightenment on my latest Bodhi disc - 
  for 
my live user no startup applications run when Enlightenment is 
  started... 
At the suggestion of Raster/Devilhorns I've started adding print 
  commands 
to the *e_startup.c*, but I still haven't pinned down the issue. 

The path to the home directory in *e_startup* is being correctly 
  saved to 
the buf argument (it is showing the proper 
/home/bodhi/.e/e/applications/startup/.order). Next I dropped a 
 print 
command into the *_e_startup_event_cb* to see if the desktop cache 
 is 
being set right (that is the next place I should look right?) And 
  much to 
my surprise that function doesn't seem to be getting run at E's 
  startup. 
Should that function be running or am I looking in the wrong place? 
  Any 
other ideas what I should be looking for that might be causing this 
  issue? 

The oddest part about the whole thing is that for my installed users 
startup applications work 100% fine. 

-- 
~Jeff Hoogland http://jeffhoogland.com/;;; 
Thoughts on Technology http://jeffhoogland.blogspot.com/;;;, Tech 
  Blog 
Bodhi Linux http://bodhilinux.com/;;;, Enlightenment for your 
 Desktop 


   
   
  
  I added code which specifically disables the functionality upon 
 detecting 
  that 
  you're using it. File a bug on trac and I'll get to it next year. 
  
 _ 
 
 
  
  Live Security Virtual Conference 
  Exclusive live event will cover all the ways today's security and 
  threat landscape has changed and how IT managers can respond. 
 Discussions 
  will include endpoint security, mobile security and the latest in 
 malware 
  threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ 
 _ 
 
 
  
  enlightenment-devel mailing list 
  enlightenment-devel@lists.sourceforge.net 
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel 
  
  
  Hey Stu...be nice to Jeff or I will be forced to beat u with the trout 
 :-P 
  
  On a serious note, Jeff it could be that the efreet cache is not running 
  because it is a live cd and efreet is thinking that it has no place to 
  store it's cache of the desktop files (due to cd being read only). Its 
  possible that efreet may need modifications to handle this. IIRC efreet 
  stores its cache also in the user homedir (cant remember the exact 
 path). 
  Because the cd is RO it cannot write it :-( Efrret may need 
 modification to 
  store cache in a tmp dir. 
  
  I could be totally off base here so take with a grain of saltbut 
  certainly smells like that is the issue... 
  
  Ping Seb (englebass) wrt efreet. 
  

Re: [E-devel] E SVN: raster IN trunk/terminology: . data/themes src/bin

2012-06-24 Thread The Rasterman
On Sun, 24 Jun 2012 12:47:39 -0300 Gustavo Sverzut Barbieri
barbi...@profusion.mobi said:

 On Sun, Jun 24, 2012 at 3:39 AM, Enlightenment SVN
 no-re...@enlightenment.org wrote:
  Log:
  move current options pane 1 level down and now its a controls pane
   with copy, paste and options. copy  paste use clipboard, not primary.
 
 you didn't update mild theme... so it break :-/

correct. i am going to add even more changes in the coming week or so. each one
will break mild. i'm ignoring it until  the changes are done.:)

 as for CNP, did you see a commit of mine with lots of comments of
 elm_cnp? I was trying to implement drop from other apps to terminology
 and got crazy with the amount of errors it have :-( Even if you do not
 get the commit, see the source file.

i was readsing the src file and spotted 2 issues. 1 - widgets/objects given to
cnp calls are not tracked for deletion. bug waiting to happen. 2. there is no
way to know you LOST the selection from outside cnp (eg another process has
taken it). that i intend to fix this week.

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


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


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


Re: [E-devel] Debugging a Startup Applications Issue

2012-06-24 Thread Daniel Juyung Seo
Yes Jeff(Bodhi) is the first class advocate of E. We need to help him :)
On Jun 23, 2012 5:41 AM, Christopher Michael cpmicha...@comcast.net
wrote:

 Sebastian Dransfeld s...@tango.flipp.net wrote:

 On 06/22/2012 06:49 PM, Jeff Hoogland wrote:
  OK -
 
  So, I'm having an issue with Enlightenment on my latest Bodhi disc - for
 my
  live user no startup applications run when Enlightenment is started... At
  the suggestion of Raster/Devilhorns I've started adding print commands to
  the *e_startup.c*, but I still haven't pinned down the issue.
 
  The path to the home directory in *e_startup* is being correctly saved to
  the buf argument (it is showing the proper
  /home/bodhi/.e/e/applications/startup/.order). Next I dropped a print
  command into the *_e_startup_event_cb* to see if the desktop cache is
 being
  set right (that is the next place I should look right?) And much to my
  surprise that function doesn't seem to be getting run at E's startup.
  Should that function be running or am I looking in the wrong place? Any
  other ideas what I should be looking for that might be causing this
 issue?
 
  The oddest part about the whole thing is that for my installed users
  startup applications work 100% fine.
 

 If _e_startup_event_cb isn't called, then init should never finish
 (check the e_init_undone/e_init_done calls in e_startup).

 S.


 _

 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 _

 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


 Many thanks Seb :-) Wanted to get this sorted for Jef asapBodhi is a
 stabple in E workd (afai am concerned). They provide easy access to E and
 users love Bodhi (wrt reviews). So IMO we shoukd support them (Jeff) as
 much as we can !! Many thanks Seb for the help !!;-)

 BR
 Cheers
 Dh

 --
 Sent from my Android phone with K-9 Mail. Please excuse my brevity.

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

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


Re: [E-devel] [announcement] ePeriodique 0.3.1

2012-06-24 Thread woohyun
It's really cool :)  !


-Original Message-
From: Bruno Dillybdi...@profusion.mobi 
To: Enlightenment developer listenlightenment-devel@lists.sourceforge.net; 
e-usersenlightenment-us...@lists.sourceforge.net; 
Cc: 
Sent: 2012-06-25 (월) 07:42:10
Subject: Re: [E-devel] [announcement] ePeriodique 0.3.1

On Sun, Jun 24, 2012 at 6:51 AM, Jérôme Pinot ngc891@gmail.com wrote:
 Hi,

 I am pleased to announce here a new minor version of ePeriodique, the EFL
 based periodic table of elements. This release adds new data (covalent
 and Van der Walls radii), a russian translation, and few fixes in the
 autotools files.

 This version, like the 0.3, requires elementary 1.0 (and EFL 1.2).
 Source and Slackware packages are available at:
 http://eperiodique.sourceforge.net/

Hey, Jérôme,

I've watched the screencast, it looks really nice.

Congrats


 --
 Jérôme Pinot
 http://ngc891.blogdns.net/

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




-- 
Bruno Dilly
Senior Developer
ProFUSION embedded systems
http://profusion.mobi

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


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