Re: [E-devel] While running doxygen in ewl cvs

2005-08-18 Thread Paulo Jorge de Oliveira Cantante de Matos

Nathan Ingersoll said:
 Looks like this has been fixed in CVS.


Indeed, it seems to be corrected...

 On 8/17/05, Paulo Jorge de Oliveira Cantante de Matos
 [EMAIL PROTECTED] wrote:

 Got:

 Generating directory documentation...
 /root:1: Warning: Found unknown
 command
 `\defgtroup'

 Cheers,

 Paulo Matos

 --
 Paulo Jorge Matos - pocm at sat inesc-id pt
 Web: http://sat.inesc-id.pt/~pocm
 Computer and Software Engineering
 INESC-ID - SAT Group



 ---
 SF.Net email is Sponsored by the Better Software Conference 
 EXPO
 September 19-22, 2005 * San Francisco, CA * Development
 Lifecycle Practices
 Agile  Plan-Driven Development * Managing Projects  Teams *
 Testing  QA
 Security * Process Improvement  Measurement *
 http://www.sqe.com/bsce5sf
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel




-- 
Paulo Jorge Matos - pocm at sat inesc-id pt
Web: http://sat.inesc-id.pt/~pocm
Computer and Software Engineering
INESC-ID - SAT Group



---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Double Image Append EWL problem

2005-08-18 Thread Nathan Ingersoll
The problem is you're assuming that the window is a box, it's not. The
window gives widgets you pack in it whatever coords they ask for. So
you're basically getting a stack of lbox - separator - rbox all on
top of each other. Just put another box into the window and place the
other items in this box and it should work.

On 8/17/05, Paulo Jorge de Oliveira Cantante de Matos
[EMAIL PROTECTED] wrote:
 From the simple image viewer I tried to extend it to try to
 show the image twice, one on the left and one on the right
 separated by a ewl_separator but nothing happens. It shows
 exactly the same window as in the initial application. Here's
 the code:
 
 
 #include Ewl.h
 
 Ewl_Widget *main_win;
 Ewl_Widget *limage;
 Ewl_Widget *rimage;
 Ewl_Widget *lbox;
 Ewl_Widget *rbox;
 Ewl_Widget *sep;
 
 void
 __destroy_main_window(Ewl_Widget *main_win, void *ev_data, void
 *user_data)
 {
   ewl_widget_destroy(main_win);
   ewl_main_quit();
 
   return;
 }
 
 int main (int argc, char **argv)
 {
   if (argc  2) {
 fprintf(stderr, Usage: %s image\n, argv[0]);
 return 1;
   }
   ewl_init(argc, argv);
 
   main_win = ewl_window_new();
   ewl_window_title_set(EWL_WINDOW(main_win), EWL Double Image
 Viewer);
   ewl_callback_append(main_win, EWL_CALLBACK_DELETE_WINDOW,
   __destroy_main_window, NULL);
   ewl_object_minimum_size_set(EWL_OBJECT(main_win), 100, 100);
   ewl_widget_show(main_win);
 
   lbox = ewl_vbox_new();
   ewl_container_child_append(EWL_CONTAINER(main_win), lbox);
   ewl_widget_show(lbox);
 
   sep = ewl_vseparator_new();
   ewl_container_child_append(EWL_CONTAINER(main_win), sep);
   ewl_widget_show(sep);
 
   rbox = ewl_vbox_new();
   ewl_container_child_append(EWL_CONTAINER(main_win), rbox);
   ewl_widget_show(rbox);
 
   limage = ewl_image_new(argv[1], NULL);
   ewl_container_child_append(EWL_CONTAINER(lbox), limage);
   ewl_widget_show(limage);
 
   rimage = ewl_image_new(argv[1], NULL);
   ewl_container_child_append(EWL_CONTAINER(rbox), rimage);
   ewl_widget_show(rimage);
 
   ewl_main();
 
   return 0;
 }
 
 
 Any ideas?
 
 Cheers,
 --
 Paulo Jorge Matos - pocm at sat inesc-id pt
 Web: http://sat.inesc-id.pt/~pocm
 Computer and Software Engineering
 INESC-ID - SAT Group
 
 
 
 ---
 SF.Net email is Sponsored by the Better Software Conference  EXPO
 September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
 Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
 Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm and en_AU.utf8

2005-08-18 Thread Michael Jennings
On Monday, 15 August 2005, at 13:28:39 (+1000),
Dave Novakovic wrote:

 Hve been reccomended to submit a bug report to this email addie.
 
 Using locale en_AU.utf8 causes eterm to start very slowly, the whole 
 time it is loading it uses 100% cpu, and pretty much puts my system in 
 stop mode. With RiverRat's help i was able to make an alias to ignore 
 the locale for eterm, so im happy.  Just posting the bug to provide more 
 info if possible.
 
 I'm using eterm-0.9.3-r4 on gentoo, compiled from portage.
 
 xorg-x11-6.8.2-r2 for xorg.

I'd be willing to bet it's XLib and not Eterm causing this.

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 Touch passion when it comes your way.  It's rare enough as it is.
  Don't walk away when it calls you by name.
   -- Marcus Cole (Jason Carter), Babylon Five


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Why is CFbase.h a requirement for e17?

2005-08-18 Thread Trevor Fancher

On Aug 18, 2005, at 11:23 AM, Mike Russo wrote:

Perhaps I have been checking code out a leetle too soon, but I now  
get the following error when I go to build e17 (live cvs build from  
portage):


checking CFBase.h usability... no
checking CFBase.h presence... no
checking for CFBase.h... no
configure: error: Cannot find CoreFoundation headers and libraries.


This has been fixed to report a warning, rather than an error.  Try  
updating from cvs again.





It appears that CoreFoundation is some kind of Mac OS X library,  
no? I'm attaching my config.log file in any case.


--
Mike Russo
ReadQ Systems, Inc.
(212) 425 3680 x105


--
Trevor Fancher
http://trev0r.org/


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] emblem segfault starting up on athlon64

2005-08-18 Thread Rodolfo Hansen
Hello all, I get a segfault on starting up emblem.
i am currently running Gentoo-2005.1 on an AMD64 as a 64bit insall...

i didn't compile things with debugging symbols : /

Running gdb emblem i get:

(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread 46912569548304 (LWP 9279)]
WARNING: Weird line in resolv.conf: # Generated by dhcpcd for interface eth0

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 46912569548304 (LWP 9279)]
0x2c6dc63b in __imlib_amd64_copy_rgb_to_rgba ()
---Type return to continue, or q return to quit---
   from /usr/lib/libImlib2.so.1


with a back trace I get:

(gdb) bt
#0  0x2c6dc63b in __imlib_amd64_copy_rgb_to_rgba ()
   from /usr/lib/libImlib2.so.1
#1  0x2c6afc23 in __imlib_BlendImageToImage ()
   from /usr/lib/libImlib2.so.1
#2  0x2c6a5101 in imlib_create_cropped_scaled_image ()
   from /usr/lib/libImlib2.so.1
#3  0x2ace03de in epsilon_generate () from /usr/lib/libepsilon.so.0
#4  0x00402b91 in ?? ()
#5  0x00402ebf in ?? ()
#6  0x2bc8e4a1 in _ecore_event_call () from /usr/lib/libecore.so.1
#7  0x2bc91dc5 in _ecore_main_shutdown () from /usr/lib/libecore.so.1
#8  0x2bc92037 in ecore_main_loop_begin () from /usr/lib/libecore.so.1
#9  0x00403221 in ?? ()
#10 0x2e17e675 in __libc_start_main () from /lib/libc.so.6
#11 0x0040258a in ?? ()
#12 0x7fbfc888 in ?? ()
#13 0x001c in ?? ()
#14 0x0001 in ?? ()
#15 0x7fbfe7ce in ?? ()
... till:
#1787 0x in ?? ()




This is what I have in the registers:

(gdb) info reg
rax0x2c6dc610   46912525682192
rbx0x588fe0 5804000
rcx0x100256
rdx0x2aaab056d010   46912591286288
rsi0x5ad1f0 5951984
rdi0x2aaab056d010   46912591286288
rbp0x7fbf7f10   0x7fbf7f10
rsp0x7fbf7ef8   0x7fbf7ef8
r8 0x100256
r9 0x10 16
r100x100256
r110x100256
r120x0  0
r130x595330 5854000
r140x0  0
r150x5ad1f0 5951984
rip0x2c6dc63b   0x2c6dc63b
__imlib_amd64_copy_rgb_to_rgba+43
eflags 0x10202  66050
cs 0x33 51
ss 0x2b 43
ds 0x0  0
es 0x0  0


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Double Image Append EWL problem

2005-08-18 Thread dan sinclair
On Thu, 2005-08-18 at 01:58 +0100, Paulo Jorge de Oliveira Cantante de
Matos wrote:
 From the simple image viewer I tried to extend it to try to
 show the image twice, one on the left and one on the right
 separated by a ewl_separator but nothing happens. It shows
 exactly the same window as in the initial application. Here's
 the code:
 

It's generally better to make a box and pack that into the window and
then pack your widgets into the box. So, if you create an Ewl_Widget
*hbox; and then pack that into the window, and pack lbox, sep and rbox
in to this hbox it worked for me.

dan





---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


RE: Re: [E-devel] Double Image Append EWL problem

2005-08-18 Thread dan sinclair

 Also, if you only want to show the images, rbox and lbox are useless. If
 you want these boxes, maybe Ewl_Table is better.
 

I don't think the table has had much testing, so your results may vary in it's 
usage. Its probably easier to just pack into an hbox and go from there. (Or 
possibly a tree would work a bit better then a table)

dan







---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] edje_test_suit

2005-08-18 Thread DM

Very nice! And very handy!

:)

Thanks a lot!
Dan

Holger Hanrath wrote:


i made an edje test program it allows you to load and unload groups you
can run programs and you can zoom the edjes 


it can be found here http://home.arcor.de/efl-cvs/

regards Holger



---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


 





---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Frontend for enlightenment_remote

2005-08-18 Thread Colin Pitrat
Hi,
I was wondering if there is a frontend for enlightenment_remote using
ewl lib in developement. I know there is ebindings that use GTK and that
is supposed to do the same thing, but it doesn't seem to work, and
doesn't use ewls.

So if there is such a project, I'd like to contribute, else, i'm on the
way to begin one ;)

-- 
Colin Pitrat

http://www.framasoft.net/
Découvrez la signification du mot liberté.


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


RE: [E-devel] Frontend for enlightenment_remote

2005-08-18 Thread dan sinclair
 Hi,
 I was wondering if there is a frontend for enlightenment_remote using
 ewl lib in developement. I know there is ebindings that use GTK and that
 is supposed to do the same thing, but it doesn't seem to work, and
 doesn't use ewls.
 
 So if there is such a project, I'd like to contribute, else, i'm on the
 way to begin one ;)
 


The first step to this dosen't depend on the final widget library you use. It's 
just adding all of the damn entries to E_Lib. There are a lot more settings 
available in enlightenment_remote then are currently exposed through E_Lib.

So, you kinda have two ways to deal with this. Either a) start the config 
program and add the bindigns as necessary, which maybe the more sane way to do 
it. or b) blast through all of the bindings at once, then figure out the best 
way to do the config editor.

I've thought of this idea a few times, but just the number of bindings needed 
for E_Lib is scary.

I don't think ebindings is for the current e17.

dan








---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm and en_AU.utf8

2005-08-18 Thread Mike Frysinger
On Thursday 18 August 2005 10:33 am, Michael Jennings wrote:
 On Monday, 15 August 2005, at 13:28:39 (+1000),

 Dave Novakovic wrote:
  Hve been reccomended to submit a bug report to this email addie.
 
  Using locale en_AU.utf8 causes eterm to start very slowly, the whole
  time it is loading it uses 100% cpu, and pretty much puts my system in
  stop mode. With RiverRat's help i was able to make an alias to ignore
  the locale for eterm, so im happy.  Just posting the bug to provide more
  info if possible.
 
  I'm using eterm-0.9.3-r4 on gentoo, compiled from portage.
 
  xorg-x11-6.8.2-r2 for xorg.

 I'd be willing to bet it's XLib and not Eterm causing this.

hints on how to debug further ?
LC_ALL=en_US Eterm - OK
LC_ALL=en_US.UTF-8 Eterm - not OK

watching top shows that xfs is eating the CPU, not Eterm ...
-mike


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm and en_AU.utf8

2005-08-18 Thread Michael Jennings
On Thursday, 18 August 2005, at 15:44:59 (-0400),
Mike Frysinger wrote:

 hints on how to debug further ?
 LC_ALL=en_US Eterm - OK
 LC_ALL=en_US.UTF-8 Eterm - not OK
 
 watching top shows that xfs is eating the CPU, not Eterm ...

Try using non-ISO-10646 fonts.  I remember this having something to do
with loading the super-huge multibyte fonts all at once.  This was
supposed to have been corrected, but apparently not.

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 If God is for us, who can be against us?  No power on Earth
  Can take His love away.  -- DeGarmo and Key


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Window creation and maximizing order / timing issue? ( was Locks )

2005-08-18 Thread Daniel Kasak
After much mucking around with deleting config files and things, I've 
discovered that it wan't a 'lock' setting on any of my apps that was 
causing my maximizing issue. It seems to be an issue when creating a 
window, and maximizing it directly after.


I have exited E17, deleted my entire .e folder, and started again. Then, 
without *any* modification at all, I've run this code:


---

#!/usr/bin/perl

use Gtk2 -init;

sub startup {
  
   $window = Gtk2::Window-new;

   $window-signal_connect( destroy = sub { Gtk2-main_quit; } );
   $window-set_border_width(10);
  
   my $button = Gtk2::Button-new(Hello World);

   $window-add($button);
   $button-show;

   $window-show;
   $window-maximize;

}

{
   startup;
   Gtk2-main;
}

---

This demonstrates my problem. For me, the app starts with a small window 
in the top-left corner of the screen. The button thinks it's parent has 
been maximized, and only a very small portion of it is visible. At this 
point, the windows can't be resized ALT middle-click dragging ... as if 
it's already maximized. Clicking the maximize / restore button ( I'm not 
sure which one it's representing in this state ) makes all the window 
buttons ( ie minimize, restore, close ) disappear, and gives slight 
graphical corruption along the bottom  right edges of the window. At 
this point, ALT middle-click dragging can be used to resize the window, 
and once you make an adjustment, the window buttons return, and the 
window behaves normally.


However, I've found that if I modify the above code so that the 
$window-maximize line is immediately *before* the $window-show line, 
everything works perfectly. I will of course change all my code to 
maximize first and show later.


I have also seen behaviour like this ( show window first, then maximize 
) coming from other apps, particularly things like visualisation plugins 
for xmms, xine, and other cool graphical things.


--
Daniel Kasak
IT Developer
NUS Consulting Group
Level 5, 77 Pacific Highway
North Sydney, NSW, Australia 2060
T: (+61) 2 9922-7676 / F: (+61) 2 9922 7989
email: [EMAIL PROTECTED]
website: http://www.nusconsulting.com.au


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] elitaire 0.0.4

2005-08-18 Thread Peter Wehrfritz
Hi,

elitaire-0.0.4 is now available. Here is short list of what is changed:
* add native language support
* add configure and about windows = ewl deps
* remember configuration
* add thoughtful solitaire variante
* only borderless if the theme is supporting this
* new theme, namely simple
* removed hardcoded paths
* add undo

So if you are interessed, here you get it:  www.mowem.de/elitaire  

Have a lot of fun

peat

P.S. Sorry, I've used the asprintf() function, before I read that it
isn't very portable. I hope it is removed in the next version. But I
think on the most systems (GNU, *BSD, OSX) it should work.


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[e-devel] patch for e_util_app_edit comment field

2005-08-18 Thread ilLogict
 Hello!

 I'm attaching a patch for e_util_eapp_edit, which has a misspelling, causing
the comment field to be known as comments.

 Cheers!

-- 

  ilLogict


Website: http://illogict.online.fr
E-Mail:  [EMAIL PROTECTED]
AIM/NIM: illogict
Yahoo:   illogict
MSN: [EMAIL PROTECTED]
ICQ: #74274856

Infos:   E17 rocks!
 Le nettoyage de ligne, quelle chose efficace ! (1900-4700 @60dB)Index: eapp_edit_main.c
===
RCS file: /cvsroot/enlightenment/e17/apps/e_utils/src/bin/eapp_edit/eapp_edit_main.c,v
retrieving revision 1.18
diff -u -r1.18 eapp_edit_main.c
--- eapp_edit_main.c	6 Jul 2005 23:27:39 -	1.18
+++ eapp_edit_main.c	18 Aug 2005 15:27:26 -
@@ -17,7 +17,7 @@
 static void _eapp_edit_drag_start(Ewl_Widget * w, void *ev_data, void *user_data);
 static void _eapp_edit_drag_end(Ewl_Widget * w, void *ev_data, void *user_data);
 
-Ewl_Widget *name, *info, *comments, *exe, *wname, *wclass, *start, *wait;
+Ewl_Widget *name, *info, *comment, *exe, *wname, *wclass, *start, *wait;
 Ewl_Widget *icon, *dialog, *dialog_win, *main_win;
 
 char *file, *lang, *icon_file;
@@ -84,7 +84,7 @@
 
   _eapp_edit_write(ef, app/info/name, lang, name, 0);
   _eapp_edit_write(ef, app/info/generic, lang, info, 0);
-  _eapp_edit_write(ef, app/info/comments, lang, comments, 0);
+  _eapp_edit_write(ef, app/info/comment, lang, comment, 0);
   _eapp_edit_write(ef, app/info/exe, NULL, exe, 0);
   _eapp_edit_write(ef, app/window/name, NULL, wname, 0);
   _eapp_edit_write(ef, app/window/class, NULL, wclass, 0);
@@ -299,7 +299,7 @@
 
   name = _eapp_edit_read(ef, app/info/name, lang, App name, grid, 3, 0);
   info = _eapp_edit_read(ef, app/info/generic, lang, Generic info, grid, 4, 0);
-  comments = _eapp_edit_read(ef, app/info/comments, lang, Comments, grid, 5, 0);
+  comment = _eapp_edit_read(ef, app/info/comment, lang, Comment, grid, 5, 0);
   exe = _eapp_edit_read(ef, app/info/exe, NULL, Executable, grid, 6, 0);
   wname = _eapp_edit_read(ef, app/window/name, NULL, Window name, grid, 7, 0);
   wclass = _eapp_edit_read(ef, app/window/class, NULL, Window class, grid, 8, 0);


Re: [E-devel] Console permissions

2005-08-18 Thread Gregory Kriehn

Sebastian,

So...that would mean simply copying the

/etc/pam.d/gdm

file to

/etc/pam.d/entrance

and replacing it?

The contents of the two files are different.

I'm using Didier's repositories, which are direct, stable' builds from 
the current cvs directory...so yes...I would assume that I'm using the pam 
file from cvs, especially since the /etc/pam.d/entrance file exists.


Any clarity you could offer would be greatly appreciated!

Thanks,
Greg

On Wed, 17 Aug 2005, Sebastian Dransfeld wrote:


Date: Wed, 17 Aug 2005 04:14:04 +0200
From: Sebastian Dransfeld [EMAIL PROTECTED]
To: Gregory Kriehn [EMAIL PROTECTED]
Cc: enlightenment-devel@lists.sourceforge.net
Subject: Re: [E-devel] Console permissions

Gregory Kriehn wrote:
There seems to be a bug when logging into enlightenment via entrance with 
regard to console permissions for sound events.


Are you using the pam file from cvs? It doesn't honour fedora stuff like 
pam_console. You need to use the pam file from gdm/kdm whatever.


And if you are using an older entrance, then it's a real bug that is fixed in 
cvs.


Sebastian




---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel