[E-devel] Textblock and Module.desktop changes

2008-08-31 Thread Toma
Hey all,
Looking at the module.desktop files, I see a common mislabel of the
title as a highlight. Heres an example...

Comment=The E17 File ManagerE17's
integrated file manager.Under Construction!

Here we have the hilight used for the module title AND the part of the
text that needs a hilight. The result is nasty. Im fixing up the
'Title' tag for the text block by removing the '/n /n' from the
.

So the correct usage would be ...
Comment=The E17 File ManagerE17's integrated file
manager.Under Construction!
Leaving the result in the following image.
http://members.iinet.net.au/~haste/e17/textblock.png

The hilight colours will probably change and the idea of adding an
'urgent=' style is considered. It will be used for things like battery
popup or other warnings (eg. Dont run First Run Wizard).
Ill happily go through and change all the module.desktop.in files to
used this method if everyone is pleased.
Toma

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] new thumbnailing spec (from xdg)

2008-08-31 Thread Nick Hughart
Vincent Torri wrote:
> Hey,
>
> it seems that a new spec about thumbnailing is about to born
>   
Sounds like an extension of the current spec.  It sounds like it will 
just be the addition of a standard daemon that listens for thumbnail 
requests via DBUS.  Pretty much what was done with epsilon_thumbd afaik, 
but using a DBUS interface.  Sounds uninteresting unless they plan on 
modifying the thumbnail spec itself to be more flexible like others have 
wanted it to be.
> see
>
> https://bugs.freedesktop.org/show_bug.cgi?id=17376
>
> maybe it would be interesting to follow the discussion, and even 
> participate to it.
>
> Vincent
>
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
> Build the coolest Linux based applications with Moblin SDK & win great prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>   


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: morlenxus trunk/entrance/src/client

2008-08-31 Thread Sebastian Dransfeld
[EMAIL PROTECTED] wrote:
> Author:   morlenxus
> Date: 2008-08-30 15:38:34 -0700 (Sat, 30 Aug 2008)
> New Revision: 35754
> 
> Modified:
>   trunk/entrance/src/client/entrance_session.c 
> Log:
> 
> pam_ssh patch by Joerg
> 
> 
> Modified: trunk/entrance/src/client/entrance_session.c
> ===
> --- trunk/entrance/src/client/entrance_session.c  2008-08-30 22:34:26 UTC 
> (rev 35753)
> +++ trunk/entrance/src/client/entrance_session.c  2008-08-30 22:38:34 UTC 
> (rev 35754)
> @@ -450,6 +450,8 @@
>  #ifdef HAVE_PAM
> if (e->config->auth == ENTRANCE_USE_PAM)
> {
> +  char **pamenv, **envitem;
> +
>/* Tell PAM that session has begun */
>if (pam_open_session(e->auth->pam.handle, 0) != PAM_SUCCESS)
>{
> @@ -461,6 +463,18 @@
>  return;
>   }
>}
> +
> +  if ((pamenv = pam_getenvlist(e->auth->pam.handle)) != NULL)
> +  {
> + for (envitem = pamenv; *envitem; envitem++)
> + {
> +   putenv(*envitem);
> +   free(*envitem);

According to how putenv works, you can't free memory passed to it.

Sebastian

> + }
> +
> + free(pamenv);
> + }
> +
>syslog(LOG_INFO, "Opened PAM session. %s : %s.", e->auth->pw->pw_name,
>   e->display);
> }
> 
> 
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
> Build the coolest Linux based applications with Moblin SDK & win great prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> enlightenment-svn mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] new thumbnailing spec (from xdg)

2008-08-31 Thread Vincent Torri

Hey,

it seems that a new spec about thumbnailing is about to born

see

https://bugs.freedesktop.org/show_bug.cgi?id=17376

maybe it would be interesting to follow the discussion, and even 
participate to it.

Vincent

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2008-08-31 Thread The Rasterman
On Sun, 31 Aug 2008 09:21:00 +0200 Sebastian Dransfeld
<[EMAIL PROTECTED]> babbled:

> What's the difference between connman and NetworkManager?

connman was a lighter/clreaner nm-like backend written by intel for moblin...
but now they have done a networkmanager on us and .. completely change api
again.

i'm going to poke at exalt.


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2008-08-31 Thread Sebastian Dransfeld
What's the difference between connman and NetworkManager?

Sebastian


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel