Re: [E-devel] shelf contents

2006-08-27 Thread Massimo Maiurana
Massimo Maiurana, il 26/08/2006 21:59, scrisse: I even tried to restart E without any luck. I'll try to shutdown X and restart to see what happens. ok, I tried to shutdown X and restart, but nothing changed. I then tried to exit from E, manually nuke my config and (sigh) restore my usual

[E-devel] Entranced does not start entrance properly

2006-08-27 Thread Eugen Minciu
Hi, I have an issue with running entranced. I have a Debian 3.1 Testing box with XOrg 7.0.0 running. I've compiled Entrance sucessfully but running entranced (either directly, or from /etc/init.d/entrace) does not start entrance itself. When I run entranced, X starts but entrance does not

Re: [E-devel] Entranced does not start entrance properly

2006-08-27 Thread Eugen Minciu
On Sun, 27 Aug 2006 14:39:45 +0300 Eugen Minciu [EMAIL PROTECTED] wrote: Sorry, I ran the debug again. It isn't corrupted. There was a \000 at the end of the string like there should have been, it was just gdb printing more data beyond that \000 The command that get executed is:

Re: [E-devel] E CVS: apps/e titan

2006-08-27 Thread brian . mattern
On Sun, Aug 27, 2006 at 01:33:19AM -0400, Enlightenment CVS wrote: Enlightenment CVS committal Author : titan Project : e17 Module : apps/e Dir : e17/apps/e/src/bin Modified Files: e_eap_editor.c Log Message: Bad titan! Bad Bad Bad titan! No cookie! Fix the seg I

Re: [E-devel] E CVS: apps/e titan

2006-08-27 Thread Stephen Houston
It might be. Eap editor has issues at the moment. That was just me trying to work in a way to close the fsel if eap editor closes, and if (fsel_dia) was always true even if the dialog wasn't visible.. so instead I did if(fsel) which is only true if the fsel is open. On 8/27/06, [EMAIL PROTECTED]

Re: [E-devel] Entranced does not start entrance properly

2006-08-27 Thread Eugen Minciu
On Sun, 27 Aug 2006 14:50:24 +0300 Eugen Minciu [EMAIL PROTECTED] wrote: I found out what was causing the problem. Just like it says in the code. /* FIXME: need to parse command and NOT go thru /bin/sh */ /* why? some /bin/sh's wont pass on this SIGUSR1 thing... */ apparenty dash

Re: [E-devel] Entranced does not start entrance properly

2006-08-27 Thread Eugen Minciu
Fixed it. Here's a patch that runs /bin/bash first. If that doesn't work execl should return so the next line should run after that ( execl(/bin/sh, ...) I also found the same issue when entrace starts the session. The same fix finally got everything working corectly. BTW, I'm new to this

Re: [E-devel] Entranced does not start entrance properly

2006-08-27 Thread Kevin Brosius
Eugen Minciu wrote: Fixed it. Here's a patch that runs /bin/bash first. If that doesn't work execl should return so the next line should run after that ( execl(/bin/sh, ...) I also found the same issue when entrace starts the session. The same fix finally got everything working

Re: [E-devel] Entranced does not start entrance properly

2006-08-27 Thread Justin Patrin
On 8/27/06, Eugen Minciu [EMAIL PROTECTED] wrote: Fixed it. Here's a patch that runs /bin/bash first. If that doesn't work execl should return so the next line should run after that ( execl(/bin/sh, ...) I also found the same issue when entrace starts the session. The same fix finally

Re: [E-devel] Entranced does not start entrance properly

2006-08-27 Thread The Rasterman
On Sun, 27 Aug 2006 19:13:25 +0300 Eugen Minciu [EMAIL PROTECTED] babbled: Fixed it. Here's a patch that runs /bin/bash first. If that doesn't work execl should return so the next line should run after that ( execl(/bin/sh, ...) I also found the same issue when entrace starts the

[E-devel] New patch for entranced and entrance

2006-08-27 Thread Eugen Minciu
Here's a new patch for entranced and entrance. This time I did what the comment suggested in both places. I used strtok and parsed directly into a char ** which then gets run by execv/execvp. If my code strikes you as ugly (I'm not sure if it should) be sure to tell me what I did wrong and

Re: [E-devel] New patch for entranced and entrance

2006-08-27 Thread Essien Ita Essien
Eugen Minciu wrote: On Sun, 27 Aug 2006 22:30:58 +0300 Eugen Minciu [EMAIL PROTECTED] wrote: Sorry, it seems that if I use this I get some issues within e. If I try to start an application from the run command thingie, it will tell me that the application failed to start. I'll try to see

Re: [E-devel] New patch for entranced and entrance

2006-08-27 Thread Eugen Minciu
On Sun, 27 Aug 2006 22:36:31 +0300 Eugen Minciu [EMAIL PROTECTED] wrote: I've figured out what causes the problem, but I don't know how to fix it this time. This happens because once I replace the execl() call in entrance_session_start_user_session, the environment variables for the user are

Re: [E-devel] New patch for entranced and entrance

2006-08-27 Thread Eugen Minciu
On Sun, 27 Aug 2006 23:49:40 +0100 Essien Ita Essien [EMAIL PROTECTED] wrote: Indeed. But it seems that just passing the environ pointer to an execve() call is not sufficient. What bash -l does is invoke /etc/profile ~/.bash_profile etc. So I need a way to parse those files (at least from a

[E-devel] winter theme update

2006-08-27 Thread brian . mattern
I put up a version of winter that works with the recent theme changes at http://rephorm.com/files/winter/winter-e17.edj If you use this, and notice any bugs, let me know. Also, for other themers out there, i fixed the border theme/code to use e.swallow.client instead of e.client (as the map file

Re: [E-devel] New patch for entranced and entrance

2006-08-27 Thread Eugen Minciu
On Sun, 27 Aug 2006 23:22:38 +0300 Eugen Minciu [EMAIL PROTECTED] wrote: And finally, I've got it. The problem was in entrance_auth_setup_environment() which called clearenv(). For some reasong calling getenv() there did not return the path either. So I added an extra parameter, const char