Re: [E-devel] gnome-terminal Edit Current Profile window

2008-06-24 Thread Ag. System Administrator


Carsten Haitzler (The Rasterman) wrote:
 On Tue, 24 Jun 2008 15:02:45 +1000 Ben Martin [EMAIL PROTECTED]
 babbled:
 
 On Tue, 2008-06-24 at 02:33 +1000, Carsten Haitzler wrote:
 On Sun, 15 Jun 2008 20:51:59 +1000 Ben Martin
 [EMAIL PROTECTED] babbled:

 Hi,
   I'm wondering if anyone else has issues opening the Edit Current
 Profile window of gnome-terminal when running E17? The behaviour I am
 getting is sometimes the properties window does not open, and when it
 does sometimes you can not properly manage or close it. I'm not sure
 what g-t would be doing that is so wonderful for this window...
 works reliably for me all the time? :/

 $ rpm -qf /usr/bin/gnome-terminal
 gnome-terminal-2.22.2-1.fc9.x86_64

 e17 version 0.16.990.043 (from about dialog) 
 pulled from cvs.enlightenment.org:/cvs/e

 
 here:
 ii  gnome-terminal 2.22.1-0ubuntu2
   
 
 so give or take - not far off...
 

here is gnome-terminal-2.16.0-3.el5



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] language module fix - dont unload all modules on restart

2007-06-07 Thread Ag. System Administrator
Hi!

Thanks! It fixed the no-modules-on-restart issue!
Goood ;)

Thanks,
Dan

Hannes Janetzek wrote:
 The langugage module causes that all modules will become unloaded on
 restart. it seems that this is directly caused by the call to
 e_config_save() in e_mod_keybindings. this is not needed anyway as the
 keybinding is still stored without this.
 
 
 --
 Hannes 'jeffdameth' Janetzek
 
 
 
 
 -
 This SF.net email is sponsored by DB2 Express
 Download DB2 Express C - the FREE version of DB2 express and take
 control of your XML. No limits. Just data. Click to get it now.
 http://sourceforge.net/powerbar/db2/
 
 
 
 
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] The module list is not correctly remembered upon restart

2007-05-31 Thread Ag. System Administrator
And again, Hi!

I've spotted some dumbness and errors in my load modules script.
I still don't understand how it was working ;) Fixed.
If somebody still interested in this, it should be like this:

# modules load part
MODULES=alarm clock cpu deskshow dropshadow forecasts ibar ibox 
language mail mem net news pager screenshot slideshow start taskbar 
tclock mixer uptime weather moon winselector
TMPF=/tmp/e_mod_load
$ER -module-list|grep ENABLED  $TMPF

for m in $MODULES; do
  [ ! -z `grep $m $TMPF` ] || $ER -module-load $m
  [ `grep $m $TMPF|grep -c ENABLED 1` -gt 0 ] || $ER -module-enable $m
done
rm -f $TMPF

Thanks,
Dan

Carsten Haitzler (The Rasterman) wrote:
 On Thu, 31 May 2007 14:16:50 +0300 Ag. System Administrator
 [EMAIL PROTECTED] babbled:
 
 no screenshots attached.
 
 Hi!

 Sorry for huge mail.

 Carsten Haitzler (The Rasterman) wrote:
 On Wed, 30 May 2007 21:22:14 +0300 Ag. System Administrator
 [EMAIL PROTECTED] babbled:

 i have yet to see anything like this... ? :/
 See attached screenshots.

 e_before_rest.png - as it looks when E loaded first time.
 e_after_rest.png - as it looks after restart (from menu)
 e_after_restart_module_load.png - as it looks after load and enabling 
 missing modules.

 This is the script i use to load and enable them again:

 #!/bin/bash
 ER=enlightenment_remote

 # some removed: bling
 MODULES=alarm clock cpu deskshow dropshadow forecasts ibar ibox 
 language mail mem net news pager screenshot slideshow start taskbar 
 tclock mixer uptime weather moon winselector
 mreply=`$ER -module-list|grep -c ENABLED`

 for m in $MODULES; do
   [ ! -z `echo $mreply|grep $m` ] || $ER -module-load $m
   [ `echo $mreply|grep $m|grep -c ENABLED 1` -gt 0 ] || $ER 
 -module-enable $m
 done


 also, look at language module screenshot - no languages at all :(((


 Also, not related to this issue, another crazy thing. Imagine situation,
 when you have couple of terminal windows open, and E crashed (for reason 
 or not). On restart, E_IPC_SOCKET will get new value, but on opened 
 terminals it will stay with old value (thus making them unusable for 
 enlightenment_remote utility). Might be we should find another way to
 pass socket name and location to enlightenment_remote?
 this can't be. the socket name is the display (doesn't change) and pid. pid
 also does not change, if e is catching its crash (white box of death). are
 you
 E_IPC_SOCKET does not change in case if E catch his crash. And in case 
 of glibc detected bla-bla-bla this is the case. Ok, i got it ;)

 launching e via some other mechanism that restarts e instead of e handling
 it?
 I running E this way:

 $ xinit

 then, in teminal window opened, i run ~/e

 --- ~/e ---

 #!/bin/bash

 export PATH=/opt/e17/bin:/opt/e17/sbin:$PATH

 #this is needed for apps that use fake transparency
 #Esetroot -scale /usr/share/backgrounds/images/space/marsglobe1.jpg 
 #and finally start E17
 /opt/e17/bin/enlightenment_start

 

 Well, i guess, that i should use entrance(d) and Co.


 Thanks,
 Dan

 
 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] The module list is not correctly remembered upon restart

2007-05-31 Thread Ag. System Administrator
The problem is, that on restart E losing somehow all his modules.
And when i load and reenable them, their order is messed up.

My E is fresh install from CVS, on fresh Centos5 x86_64.

I can reproduce this behavior on my system by going to main menu, and do 
reload. Then i see some artifacts in clock area (like many instances of 
gadgets, frozen in move). Then E restarts, and i will see some modules 
(volume, tclock, moon, pager), or no modules at all.

Here is a test i did. Two restarts. 1 minute difference.

Starting module set:

$ enlightenment_remote -module-list
REPLY - BEGIN
REPLY: mail ENABLED 1
REPLY: mem ENABLED 1
REPLY: net ENABLED 1
REPLY: news ENABLED 1
REPLY: pager ENABLED 1
REPLY: screenshot ENABLED 1
REPLY: slideshow ENABLED 1
REPLY: start ENABLED 1
REPLY: taskbar ENABLED 1
REPLY: tclock ENABLED 1
REPLY: mixer ENABLED 1
REPLY: uptime ENABLED 1
REPLY: weather ENABLED 1
REPLY: moon ENABLED 1
REPLY: winselector ENABLED 1
REPLY: alarm ENABLED 1
REPLY: cpu ENABLED 1
REPLY: deskshow ENABLED 1
REPLY: dropshadow ENABLED 1
REPLY: forecasts ENABLED 1
REPLY: ibar ENABLED 1
REPLY: ibox ENABLED 1
REPLY: language ENABLED 1
REPLY - END


After 1st restart:

$ enlightenment_remote -module-list
REPLY - BEGIN
REPLY: mail ENABLED 1
REPLY: mem ENABLED 1
REPLY: net ENABLED 1
REPLY: news ENABLED 1
REPLY: pager ENABLED 1
REPLY: screenshot ENABLED 1
REPLY: slideshow ENABLED 1
REPLY: start ENABLED 1
REPLY: taskbar ENABLED 1
REPLY: tclock ENABLED 1
REPLY: mixer ENABLED 1
REPLY: uptime ENABLED 1
REPLY: weather ENABLED 1
REPLY: moon ENABLED 1
REPLY: winselector ENABLED 1
REPLY - END

Now, i re-enable all modules again, and after 2nd restart:

$ enlightenment_remote -module-list
REPLY - BEGIN
REPLY - END

The shelves is in place, because when i reload and re-enable modules, 
they all come to their shelves. Not always in same order they was before.


That's the best description i can give you in English :)

Ill try to look into the code, but as i'm not programmer, not sure ill 
find something. But, who knows... :)

Thanks,
Dan


Carsten Haitzler (The Rasterman) wrote:
 On Thu, 31 May 2007 14:31:05 +0300 Ag. System Administrator
 [EMAIL PROTECTED] babbled:
 
 well the problem is i don't see the problem. the modules enabled stay the same
 for me. i don't lose or gain them. they stay in the same position. :( i need 
 to
 know how to reproduce it.
 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] The module list is not correctly remembered upon restart

2007-05-31 Thread Ag. System Administrator
Hi All!

David Seikel wrote:
 On Thu, 31 May 2007 18:15:27 +0200 Nikolas Arend
 [EMAIL PROTECTED] wrote:
 
 Well, I'm not sure whether this is actually related, but I reported 
 about problems with the language module (not yet fixed afaik). Its 
 .desktop file wasn't up-to-date and therefore it wasn't even loaded. 
 After modifying the .desktop file it loaded, could be enabled, and 
 indeed showed up in the respective shelf. But after restarting e17,
 all modules were disabled and I end up with empty shelves. I see that 
 language is in the list above, so maybe there's some connection.
 
 Try leaving the language module disabled, or even uninstalling it from
 your system and see if there is still a problem.

No problem anymore...
Well, so we found that cause for bad behavior was language module! Die! ;)

 
 I recently fixed up the .desktop file for the language and all other
 e_modules modules.  The language module may have bit rotted while
 it's .desktop file was out of date and so no one noticed.
 

Thanks a lot!
Dan

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] The module list is not correctly remembered upon restart

2007-05-30 Thread Ag. System Administrator
Hi!

Yes, i can confirm this. After manual restart (from menu), sometimes 
they disappears completely, sometimes just part of them. If i re-enable 
them, the order is messed up. No idea why this going such way.

Also, not related to this issue, another crazy thing. Imagine situation,
when you have couple of terminal windows open, and E crashed (for reason 
or not). On restart, E_IPC_SOCKET will get new value, but on opened 
terminals it will stay with old value (thus making them unusable for 
enlightenment_remote utility). Might be we should find another way to
pass socket name and location to enlightenment_remote?

Thanks,
Dan

Виктор Кожухаров wrote:
 Can anyone else reproduce this? It seems that for some time (I'd say
 about a month), the list of modules is not saved correctly in e.cfg when
 restarting with the ctrl+alt+end combo (or related menu item). I didn't
 have time to dig too deeply into this, but what I've found is that e.cfg
 already contains a smaller number of modules when it is read after the
 restart. And the modules that dissapear (are not enabled) are either
 all, or at least a lot of them (but there doesn't seem to be any
 consistency). When exiting enlightenment, the module list is saved
 correctly. Also, when restarting right after enlightenment has started,
 the list is also saved correctly. 
 
 Perhaps someone who has some spare free time can look into this :)
 
 
 
 
 -
 This SF.net email is sponsored by DB2 Express
 Download DB2 Express C - the FREE version of DB2 express and take
 control of your XML. No limits. Just data. Click to get it now.
 http://sourceforge.net/powerbar/db2/
 
 
 
 
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Misstyped word

2007-01-14 Thread Ag. System Administrator
Michael Jennings wrote:

On Saturday, 13 January 2007, at 22:41:04 (+0200),
Ag. System Administrator wrote:

  

After i've translated 95% of them i should stop?



Yes, you should...but then you never should've started. :)
  

Too late :)

Language names are not subject to translation; they should appear in
native form.  To do otherwise would defeat the purpose of natural
language support.  Imagine having to learn the name of your native
language in EVERY OTHER LANGUAGE.  That would be silly.

Michael

  

So, anyone want to remove these names from _() macros?

Thanks,
Dan

PS: untill then, ru.po as of 13.01.07, is translated at the best ;)


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Misstyped word

2007-01-13 Thread Ag. System Administrator
Hell! Never though.

And from the point of translation - double hell
There is languages i have no idea how they called in Russian...

Thanks,
Dan

Brian Mattern wrote:

its 'Tyap', the name of the 'kcg' locale (of Nigeria)

rephorm


On Sat, Jan 13, 2007 at 03:00:59AM +0200, Ag. System Administrator wrote:
  

Hi,

just small typo at e/src/bin/e_int_config_intl.c:188
Written Tyep, should be Type

:)


Thanks,
Dan

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel




-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


  



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Misstyped word

2007-01-12 Thread Ag. System Administrator
Hi,

just small typo at e/src/bin/e_int_config_intl.c:188
Written Tyep, should be Type

:)


Thanks,
Dan

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] edje_editor: first snapshot!

2007-01-02 Thread Ag. System Administrator
DaveMDS wrote:

...
  

cut

PS: the program need glib2 to run and complile.
This is because I have started the project with a
gtk interface. And I have made intensive use of gstring.
Hope I will make a version without glib in a short time.

  

Hope i will try it then! ;)
Requirements are to high now (at least for my system).

Just for curiosity, i've searched that glib2 version .rpm for FC3 x86_64
- none found.
Found .srpm (it even compiles!), but too much things depends on old glib2.

So, waiting for next release :)

Thanks a lot for your work, peoples need it!

Happy New Year!

Dan





-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e17 screen lock

2006-12-12 Thread Ag. System Administrator
Hi,

Can confirm, sometimes it is impossible to unlock screen.  CentOS 4.3 i386.
It's looks like focus is still remains at main screen windows layer,
because Alt-Tab is moving mouse on windows.
You see Enter your password but all input goes to last selected window :(
But i can't reproduce it on home pc, FC3 x86_64.

Thanks,
Dan

Nikolas Arend wrote:

Aleksej Struk wrote:
  

Both PAM services that you've listed uses common-auth service. I do
not have such service on my gentoo machine. I suspect thatit is called
system-auth and is configured as follows:


auth   required pam_env.so
auth   sufficient   pam_unix.so likeauth nullok
auth   required pam_deny.so

accountrequired pam_unix.so

password   required pam_cracklib.so difok=2 minlen=8 dcredit=2
ocredit=2 retry=3
password   sufficient   pam_unix.so nullok md5 shadow use_authtok
password   required pam_deny.so

sessionrequired pam_limits.so
sessionrequired pam_unix.so

Does your common-auth is similar to that I've listed above 



Mine looks like

cat /etc/pam.d/common-auth
#
# /etc/pam.d/common-auth - authentication settings common to all services
#
# This file is included from other service-specific PAM config files,
# and should contain a list of the authentication modules that define
# the central authentication scheme for use on the system
# (e.g., /etc/shadow, LDAP, Kerberos, etc.).  The default is to use the
# traditional Unix authentication mechanisms.
#
authrequiredpam_env.so
authrequiredpam_unix2.so


This is what else resides in /etc/pam.d/:

ls -l /etc/pam.d | grep ^-r | sed 's/^.* //g'
atd
chage
chfn
chsh
common-account
common-auth
common-password
common-session
crond
cups
enlightenment
entrance
gdm
gdm-autologin
gnome-passwd
gnome-screensaver
gnomesu-pam
imap
login
netatalk
other
passwd
pop
pop3
ppp
quagga
radiusd
rpasswd
samba
shadow
smtp
squid
sshd
su
sudo
useradd
vlock
vsftpd
xdm
xdm-np
xlock
xscreensaver


Although I'm developing software myself and are relatively familiar with 
*nices and system administration, I have to admit that I never cared to get 
deeper into the whole pam stuff (I never had problems with Fedora in this 
respect). So please be patient with me.

Thanks,  Nick.

  



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] stocks module

2006-03-15 Thread Ag. System Administrator
Hi!

This module is good thing!
But this is what i spotted:

1. It seems, that switching from Follow to Basic (and reverse) not always works.
2. Also switching between Simple, Normal and Detailed not always works.
3. The Current Value in Follow mode (and in Basic too) is not changed 
properly if there incorrect data returned from
yahoo.

Eg. if i choose Nvidia - value is 49.35 (curently), then let say i choose 
Zone4Play (zfpi.ob) then display will show
value of Nvidia (49.35)

But issue 3 is not your fault. For some reason there is format differencies 
returned by yahoo:

lynx -source finance.yahoo.com/d/quotes.csv?f=k1c6poghjkj4s=nvda
Mar 14 - b49.35/b,+1.39,49.29,N/A,N/A,N/A,20.92,50.72,453.2M

lynx -source finance.yahoo.com/d/quotes.csv?f=k1c6poghjkj4s=zfpi.ob
iMar 14/i - bi0.70/i/b,0.00,0.70,N/A,N/A,N/A,0.35,1.84,-3.5M

lynx -source finance.yahoo.com/d/quotes.csv?f=k1c6poghjkj4s=yhoo
Mar 14 - b31.05/b,+0.90,30.99,N/A,N/A,N/A,29.75,43.66,1.686B

Really weird ;) Might be you want implement some check for data returned...

Except this - all perfect! Thanks for usefull module!

Dan


Joan Ribas Lekerika wrote:
 Hi,
 
 here you are a new version of the stocks module. In this case colors to
 show the positive or negative change has been enabled (welcome to the
 color era)
 
 By the way .. Could anyone do the module available from the get-e?
 
 
 thank you and good luck
 
 
 


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] stocks module

2006-03-15 Thread Ag. System Administrator
Hi again!


For issue n. 3 the fix is trivial - just change k1c6poghjkj4 to lc6poghjkj4


Also, is it possible to store stocks.xml in different place? (so make install 
will not overwrite my config)


Thanks,
Dan


Ag. System Administrator wrote:
 Hi!
 
 This module is good thing!
 But this is what i spotted:
 
 1. It seems, that switching from Follow to Basic (and reverse) not always 
 works.
 2. Also switching between Simple, Normal and Detailed not always works.
 3. The Current Value in Follow mode (and in Basic too) is not changed 
 properly if there incorrect data returned from
 yahoo.
 
 Eg. if i choose Nvidia - value is 49.35 (curently), then let say i choose 
 Zone4Play (zfpi.ob) then display will show
 value of Nvidia (49.35)
 
 But issue 3 is not your fault. For some reason there is format differencies 
 returned by yahoo:
 
 lynx -source finance.yahoo.com/d/quotes.csv?f=k1c6poghjkj4s=nvda
 Mar 14 - b49.35/b,+1.39,49.29,N/A,N/A,N/A,20.92,50.72,453.2M
 
 lynx -source finance.yahoo.com/d/quotes.csv?f=k1c6poghjkj4s=zfpi.ob
 iMar 14/i - bi0.70/i/b,0.00,0.70,N/A,N/A,N/A,0.35,1.84,-3.5M
 
 lynx -source finance.yahoo.com/d/quotes.csv?f=k1c6poghjkj4s=yhoo
 Mar 14 - b31.05/b,+0.90,30.99,N/A,N/A,N/A,29.75,43.66,1.686B
 
 Really weird ;) Might be you want implement some check for data returned...
 
 Except this - all perfect! Thanks for usefull module!
 
 Dan
 
 
 Joan Ribas Lekerika wrote:
 
Hi,

here you are a new version of the stocks module. In this case colors to
show the positive or negative change has been enabled (welcome to the
color era)

By the way .. Could anyone do the module available from the get-e?


thank you and good luck



 
 
 
 ---
 This SF.Net email is sponsored by xPML, a groundbreaking scripting language
 that extends applications into web and mobile media. Attend the live webcast
 and join the prime developer group breaking into this new coding territory!
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
 


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] stocks module

2006-03-02 Thread Ag. System Administrator
Hohoho


Thanks a lot!!!

Dan


Joan Ribas Lekerika wrote:
 Hi,
 
 Here you are a little module that shows the quotes of the configured
 stocks. Instructions about how to setup it are in the README file
 
 The module is also available from http://www.pon-e.org (E17 web in Spanish)
 
 Cheers
 
 Joan Ribas
 
 
 


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Re: [e-users] off on holidays

2005-12-21 Thread Ag. System Administrator
Carsten Haitzler (The Rasterman) wrote:

 anyway - everyone, have a merry merry christmas and a happy new year. don't
 drink too much (more than 3 bottles of wine for dinner - for yourself. it will
 hurt the next day. trust me.) :)
 

:)

Have lot of fun!

BTW, 3 bottles of wine is not enought for average russian ;)

Merry Christmas!

Thanks,
Dan


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E xgettext

2005-10-20 Thread Ag. System Administrator
Hi!

Thank you for reply. The point here is to make some sort of universality for 
all distros (as i understand it).
if it works on FC3 (even newer version of gettext) - there should be no reason 
to not work with older versions of gettext.
Of course, as workarround, i can install new gettext, but i preffer to stick 
with official RHAS3 rpms (because of up2date).

Have fun,
Dan


Mathew Schofield wrote:
 I had that same problem on FreeBSD. For some wierd reason, reinstalling
 gettext fixed it.
  
 So, try re-installing... ;-)
 
 -- 
 Thank You
 Mathew Schofield
 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] E xgettext

2005-10-19 Thread Ag. System Administrator
Hi!

Just noticed something weird in autogen.sh script in apps/e:


FC3:

$ xgettext -n -C -d enlightenment -p po --copyright-holder=Enlightenment 
development team --foreign-user
--msgid-bugs-address=enlightenment-devel@lists.sourceforge.net -k -k_ -kd_ 
--from-code=UTF-8 -o enlightenment.pot
`find . -name *.[ch] -print`

$ xgettext -V
xgettext (GNU gettext-tools) 0.14.1


As you can see, all is OK. Now,

RHAS3:

$ xgettext -n -C -d enlightenment -p po --copyright-holder=Enlightenment 
development team --foreign-user
--msgid-bugs-address=enlightenment-devel@lists.sourceforge.net -k -k_ -kd_ 
--from-code=UTF-8 -o enlightenment.pot
`find . -name *.[ch] -print`
xgettext: unrecognized option [EMAIL PROTECTED]'
Try `xgettext --help' for more information.

$ xgettext -V
xgettext (GNU gettext) 0.11.4


Weird!

Red Hat Network have 0.14.x rpm only for RHAS4 (and there is unsatisfied 
dependencies to compile gettext 0.14.x on RHAS3)

My suggestion is to remove or make optional these options inside autogen.sh:

--from-code=UTF-8 and 
--msgid-bugs-address=enlightenment-devel@lists.sourceforge.net

100% it can live without --msgid-bugs-address but not sure about --from-code.

Ideas?

Thanks,
Dan


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Ecore ...

2005-10-16 Thread Ag. System Administrator
Hi!

Something weird after last CVS updates:

 gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../src/lib/ecore 
-I../../../src/lib/ecore -D_REENTRANT
-I/usr/include/directfb -I/opt/e17/include -I/opt/
e17/include -L/opt/e17/lib -Wall -MT ecore_directfb.lo -MD -MP -MF 
.deps/ecore_directfb.Tpo -c ecore_directfb.c  -fPIC
-DPIC -o .libs/ecore_directfb.o
In file included from ecore_directfb.c:4:
ecore_directfb_keys.h:144: error: `DIKS_CURSOR_LEFT_UP' undeclared here (not in 
a function)
ecore_directfb_keys.h:144: error: initializer element is not constant
ecore_directfb_keys.h:144: error: (near initialization for 
`_ecore_directfb_key_symbols[119].keycode')
ecore_directfb_keys.h:144: error: initializer element is not constant
ecore_directfb_keys.h:144: error: (near initialization for 
`_ecore_directfb_key_symbols[119]')
ecore_directfb_keys.h:145: error: `DIKS_CURSOR_LEFT_DOWN' undeclared here (not 
in a function)
ecore_directfb_keys.h:145: error: initializer element is not constant
ecore_directfb_keys.h:145: error: (near initialization for 
`_ecore_directfb_key_symbols[120].keycode')
ecore_directfb_keys.h:145: error: initializer element is not constant
ecore_directfb_keys.h:145: error: (near initialization for 
`_ecore_directfb_key_symbols[120]')
ecore_directfb_keys.h:146: error: `DIKS_CURSOR_UP_RIGHT' undeclared here (not 
in a function)
ecore_directfb_keys.h:146: error: initializer element is not constant
ecore_directfb_keys.h:146: error: (near initialization for 
`_ecore_directfb_key_symbols[121].keycode')
ecore_directfb_keys.h:146: error: initializer element is not constant
ecore_directfb_keys.h:146: error: (near initialization for 
`_ecore_directfb_key_symbols[121]')
ecore_directfb_keys.h:147: error: `DIKS_CURSOR_DOWN_RIGHT' undeclared here (not 
in a function)
ecore_directfb_keys.h:147: error: initializer element is not constant
 skipped a little 
ecore_directfb.c: In function `ecore_directfb_window_cursor_show':
ecore_directfb.c:585: error: `DSPF_A1' undeclared (first use in this function)
ecore_directfb.c:585: error: (Each undeclared identifier is reported only once
ecore_directfb.c:585: error: for each function it appears in.)
ecore_directfb.c: In function `ecore_directfb_window_fullscreen_set':
ecore_directfb.c:635: error: structure has no member named 
`CreateFileDescriptor'
ecore_directfb.c: In function `ecore_directfb_init':
ecore_directfb.c:677: error: structure has no member named 
`CreateFileDescriptor'
ecore_directfb.c: At top level:
ecore_directfb.c:38: warning: '_ecore_directfb_event_fd_handler' declared 
`static' but never defined
make[4]: *** [ecore_directfb.lo] Error 1
make[4]: Leaving directory `/opt/DEVEL/e17/libs/ecore/src/lib/ecore_directfb'
make[3]: *** [all-recursive] Error 1


did grep -r on /opt/DEVEL/e17/ - no DIKS_CURSOR_

Ideas?


Thanks,
Dan


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] text weirdness

2005-09-21 Thread Ag. System Administrator
Hi!

Noticed couple days ago, all russian characters in all About boxes (and also 
in Exit dialog) shown as boxes.
It happens only in mentioned places, menus and other stuff is ok. As i think it 
somehow related to tb2.

Thanks,
Dan


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Elation and NULL

2005-09-07 Thread Ag. System Administrator
Hi All!


Just simple hack for those, who have elation die on compilation with message 
like 'NULL' is undeclared...

Go to elation/src/bin/ and add this to Elation.h :


#include stddef.h

or

#undef NULL
#if defined(__cplusplus)
#define NULL 0
#else
#define NULL ((void *)0)
#endif


;)

PS: hope sebastid will fix that soon ;)

Thanks,
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] Elation and NULL

2005-09-07 Thread Ag. System Administrator


Vincent Torri wrote:
 
 On Wed, 7 Sep 2005, Ag. System Administrator wrote:
 
 
Hi All!


Just simple hack for those, who have elation die on compilation with message 
like 'NULL' is undeclared...

Go to elation/src/bin/ and add this to Elation.h :


#include stddef.h

or

#undef NULL
#if defined(__cplusplus)
#define NULL 0
#else
#define NULL ((void *)0)
#endif

 
 
 AFAIK, this thing only happens in C++, not in C. In C++, NULL is indeed
 declared in stddef.h.
 
 Vincent
 
 

:)

I'm not a programmer... Just did some grep on includes...
Anyway, that include fixed my problem...

Thanks,
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] I[nformation]: evolume-0.0.7 release.

2005-08-04 Thread Ag. System Administrator
Nce ;)

Works like a charm :)

Thanks a lot,
Dan

Pavel Boldin wrote:
 Hi all, now you can get version 0.0.7:
 
 http://rec0.rec.smr.ru/davinchi/public/e17/evolume-0.0.7.tar.bz2
 
 86f473a459940708821ba859117a1673  evolume-0.0.7.tar.bz2
 
 ChangeLog:
 0. maked virtualization code.
 1. new, improved version of mute code
 2. some code cleanups.
 
 PS: I think now it can go in CVS. ;)
 
 PPS: edje-patch in patches/ direcotory differs with edje patch in this
 maillist.
 NOTE: that edje-patch is distributed under BSD license.
 
 --
 
 Pavel Boldin aka davinchi. mail-to: ldavinchi /at\ inbox _dot_ ru
 ZU - Zagovor Unixoidov. SSAU 303.
 

---
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] I: evolume-0.0.3 `released'

2005-07-18 Thread Ag. System Administrator
Heya!

Boldin Pavel wrote:
 You may get new version there:
 http://rec0.rec.smr.ru/davinchi/public/e17/evolume-0.0.3.tar.bz2
 
 7be18dcabf9d445954642690f5f28669  evolume-0.0.3.tar.bz2
 
 
 Sun Jul 17 22:19:59 2005 Boldin Pavel [EMAIL PROTECTED]
* src/module/*.c src/lib/e_mixer.h: modified to support per-face
configuration, not yet tested, but seems to be correctly than old
way of configuration.
Thanks to Ag. System Administrator.
 

Tested now! ;) Works as expected. Thanks a lot!

 PS: patches, beer and juice to mail boldin [dot] pavel [at] gmail [dot] com
 

/send (beer-(5L)) (from-(me)) (to-(pavel))

;)

Dan


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] I: prerelease version of evolume plugin.

2005-07-10 Thread Ag. System Administrator
Heya!

Checked your plugin again - same results.
Let me describe problem again (step step)

Load plugin (not enabled yet)
Enable plugin - Evolume shows on 2 displays
Edit channels on right display (disable-line in, cd, etc...)
Right display show all controls (except switched off), Left display show all 
controls.
restart e
Left display now show config from right (with disabled line-in, cd, etc...), 
right display have config from left display
(all controls enabled)


Unfortunatelly, can't provide patch - i'm not a programmer ;)


Hack skipped - screens glued together ;)


PS: Unixoidy vseh stran - ob'edinaytes... Budem mochit' M$  ;)

Boldin Pavel wrote:
 Ag. System Administrator wrote:
 
 Right screen - only Master, PCM, CD, Line is on
 Left screen - all on
  

 sorry, unable to reproduce.
 (i create 2 faces on same container, but don't see configure swapping).
 if it reproduced on your machine possibly you make patch and send it to me?
 
 HACK: try to swap screens :)
 


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] I: prerelease version of evolume plugin.

2005-07-07 Thread Ag. System Administrator
Heya!

Well, i've checken new version, it works (not so as expected, but better ;)
Now the situation is slightly different:

it saves config per screen (right), but for the wrong screen. Eg:

Right screen - only Master, PCM, CD, Line is on
Left screen - all on

After restart of E17, left screen will have config from right screen, and right 
- from left...

As i see, you are so near to solve this ;)

Btw, might be good idea to save config and volume params after any change?


Thanks,
Dan

Boldin Pavel wrote:
 Ag. System Administrator wrote:
 
 Hi Pavel!
  

 hi
 
 Thanks, great plugin! ;)
  

 i just happy :)
 
 Probably, it will be good idea to save config (of channels shown) for
 each container.
  

 sorry, i dont think about this before (and remove all per-container
 configurations from code)
 
 skipped/
 
 try http://rec0.rec.smr.ru/davinchi/public/e17/evolume-0.0.2.tar.bz2
 and say me if it works, espacially if it not work!
 (i can't test it at home)
 
 Thanks,
 Dan

  

 


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] I: prerelease version of evolume plugin.

2005-07-05 Thread Ag. System Administrator
Hi!

Do i miss something? Or edje_cc should be patched by some patch?



../../../data/themes/default/volume.edj
/opt/e17/bin/edje_cc: Opening /tmp/edje_cc.edc-tmp-04azJ1 for input
/opt/e17/bin/edje_cc: Parsing input file
/opt/e17/bin/edje_cc: Error. groups/mixer_entry.edc:35 unhandled keyword events
make[4]: *** [volume.edj] Error 255



Thank You,
Dan

Boldin Pavel wrote:
 Hi.
 
 There you may get new version of evolume plugin.
 
 http://rec0.rec.smr.ru/davinchi/public/e17/evolume-0.0.1.tar.bz2
 
 d8cebd8f47c6d0b956311aa5110639e3  evolume-0.0.1.tar.bz2
 
 
 TODO: Add virtualization support for e_mixer (now works only with ALSA).
 Make design (own, not from monitor module, as now).
 *NEED ICON!
 


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[Fwd: Re: [E-devel] I: prerelease version of evolume plugin.]

2005-07-05 Thread Ag. System Administrator
---BeginMessage---
You need to patch edje with patch attach in previous Boldin's mail last night :
[E-devel] Edje patch again.

On 7/5/05, Ag. System Administrator [EMAIL PROTECTED] wrote:
 Hi!
 
 Do i miss something? Or edje_cc should be patched by some patch?
 
 
 
 ../../../data/themes/default/volume.edj
 /opt/e17/bin/edje_cc: Opening /tmp/edje_cc.edc-tmp-04azJ1 for input
 /opt/e17/bin/edje_cc: Parsing input file
 /opt/e17/bin/edje_cc: Error. groups/mixer_entry.edc:35 unhandled keyword 
 events
 make[4]: *** [volume.edj] Error 255
 
 
 
 Thank You,
 Dan
 
 Boldin Pavel wrote:
  Hi.
 
  There you may get new version of evolume plugin.
 
  http://rec0.rec.smr.ru/davinchi/public/e17/evolume-0.0.1.tar.bz2
 
  d8cebd8f47c6d0b956311aa5110639e3  evolume-0.0.1.tar.bz2
 
 
  TODO: Add virtualization support for e_mixer (now works only with ALSA).
  Make design (own, not from monitor module, as now).
  *NEED ICON!
 
 
 
 ---
 SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
 from IBM. Find simple to follow Roadmaps, straightforward articles,
 informative Webcasts and more! Get everything you need to get up to
 speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 


-- 
Beber
[EMAIL PROTECTED]


---End Message---


Re: [E-devel] A little EFL run app dialog - Patch

2005-06-14 Thread Ag. System Administrator
Hello!


Thanks, it rulez!! ;))

Only question: is it possible to add any option to disable such friendly 
moving? ;)


Thanks,
Dan

Jonathan Schmidt wrote:
 Hello,
 
 here is a little patch for exige that moves the window under the mouse
 pointer so that people that doesn't use mouse click focus policy can
 type something in the text box right away. It is useful if you use a key
 binding to open exige.
 
 Plus, the patch remove the Emotion.h include that is not needed (I
 think) for that project.
 
 Here is a possible key binding for exige :
 
 enlightenment_remote -binding-key-add ANY p CTRL|ALT 0 exec
 exige
 
 Jonathan
 
 On Sun, 2005-06-05 at 00:52 +0200, Mathieu Lamar wrote:
 
Hello, 
I wrote a little EFL run application dialog
http://www.deviantart.com/deviation/19072694/
Here is its source code.
It's just a start.

Regards
Mathieu Lamar.




diff -Naur exige (copy)/src/exg_gui.c exige/src/exg_gui.c
--- exige (copy)/src/exg_gui.c2005-06-04 18:22:26.0 -0400
+++ exige/src/exg_gui.c   2005-06-05 09:16:01.0 -0400
@@ -60,6 +60,8 @@
 exg_window_geometry_set(Exige *exg)
 {
 Evas_Coord w,h;
+ int mouse_x = 0, mouse_y = 0;
+ Ecore_X_Window x_win = ecore_evas_software_x11_window_get(exg-ee);
  
 edje_object_size_min_get(exg-gui, w, h);
 ecore_evas_resize(exg-ee, w, h);
@@ -68,6 +70,10 @@
 ecore_evas_size_max_set(exg-ee,w,h);
 
 ecore_evas_show(exg-ee);
+
+ /* get the coords. of the mouse */
+ ecore_x_pointer_xy_get(x_win, mouse_x, mouse_y);
+ ecore_evas_move(exg-ee, mouse_x-(w/2), mouse_y-(h/2));

 evas_object_move(exg-gui,0,0);
 evas_object_resize(exg-gui,w,h);
diff -Naur exige (copy)/src/Exige.h exige/src/Exige.h
--- exige (copy)/src/Exige.h  2005-06-05 09:18:50.0 -0400
+++ exige/src/Exige.h 2005-06-05 09:16:39.0 -0400
@@ -7,7 +7,6 @@
 #include Ecore_Evas.h
 #include Esmart/Esmart_Text_Entry.h
 #include Edje.h
-#include Emotion.h
 #include Ecore_Config.h
 #include config.h
 


---
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.  
Play to win an NEC 61 plasma display: http://www.necitguy.com/?r=20
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2005-05-03 Thread Ag. System Administrator
Hi!

Here is situation:

enlightenment_remote -lang-set ru_RU

All translated texts are in russian, except modules menu (only!)

If i do enlightenment_remote -restart after -lang-set, then all texts is ok.

Now, if i do:

enlightenment_remote -lang-list

then all translated texts is reverted to english, except modules menu (only)

I understand, that all this system is not completed at all, but i hope my 
report might be usefull
for correct work of this feature.


Thanks guys! You doing GREAT work!

PS: Too bad that i'm not coder ;)



Best regards,
Dan

enlightenment-cvs@lists.sourceforge.net wrote:
 Enlightenment CVS committal
 
 Author  : raster
 Project : e17
 Module  : apps/e
 
 Dir : e17/apps/e
 
 
 Modified Files:
   TODO 
 
 
 Log Message:
 
 
 you can change language on the fly by enlightenment_remote and it saves the
 settings etc. lists available languages etc. etc. works nicely here...
 
 ===
 RCS file: /cvsroot/enlightenment/e17/apps/e/TODO,v
 retrieving revision 1.101
 retrieving revision 1.102
 diff -u -3 -r1.101 -r1.102
 --- TODO  2 May 2005 15:21:14 -   1.101
 +++ TODO  3 May 2005 08:06:47 -   1.102
 @@ -55,6 +55,7 @@
  
  These are in no particular order:
  
 +* if module can't load (error) u cant unload... save module list if any 
 module doesnt load proprly so it wont be there next time.
  * dropshadow screws up when shadow becomes too thin (and transitions to 
 different mode) and back.
  * mplayer fullscreen screws up (reparenting issues)
  * check window max size. if  size of zone (or maximisation area) disallow 
 maximising and tell border edje object (via signals) to somehow disable the 
 maximise buttons :) (and remove from the menu)
 
 
 
 
 ---
 This SF.Net email is sponsored by: NEC IT Guy Games.
 Get your fingers limbered up and give it your best shot. 4 great events, 4
 opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
 win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
 ___
 enlightenment-cvs mailing list
 enlightenment-cvs@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
 
 


---
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Strange SegFault on e17 startup

2005-03-21 Thread Ag. System Administrator
:)
(B
(BCarsten Haitzler (The Rasterman) wrote:
(B On Mon, 21 Mar 2005 12:33:05 +0200 "Ag. System Administrator"
(B [EMAIL PROTECTED] babbled:
(B 
(B 
(BGood time of day!
(B
(BCarsten Haitzler (The Rasterman) wrote:
(B
(BOn Thu, 17 Mar 2005 17:48:28 +0200 "Ag. System Administrator"
(B[EMAIL PROTECTED] babbled:
(B
(B
(B
(BHi again!
(B
(BI'm attaching gdb session dump as you requested. E17 and stuff was compiled
(B
(Bwith -g.
(B
(B
(BAs i see it, this segv somehow belong to X, because last lines in gdb output
(B
(Bwas:
(B
(Bthats possible - or your stack is screwed so badly that the backtrace is
(Buseless.
(Bdid you recompile e17, evas, ecore, eet, embryo and edje with CFLAGS=-g ?
(B
(B
(Byes
(B
(B
(Bcd eet
(Bmake clean distclean
(Bexport CFLAGS=-g
(B./configure
(Bmake
(Bmake install
(B
(Betc.
(B?
(B
(Byes
(B
(B
(Bthen run e17 under gdb?
(B
(Bgdb enlightenment
(B...
(Brun
(B
(B
(Bcan't do run - it will freeze X
(B
(B
(Bthen when/if it dies use these gdb commands:
(B
(Bbt
(Bl
(B
(Bsame here, when X freezed, i can't do nothing...
(B 
(B 
(B consoles!
(B 
(B
(BThanks ;)
(B
(B 
(Bwhen u see the listing and the segv it will say it died on a line. there
(B 
(B will be
(B 
(Bvariabled. sometimes like:
(B
(Bif (!strcmp(string, "blah")) obj-blah = 1;
(B
(Bthen print out all the variables
(B
(Bp string
(Bp obj
(B
(Bif its a pointer variable u can print out what it points to (the entire
(B 
(B struct)
(B 
(Bp *obj
(Bfor example
(B
(Bbasically look at the code there, match it up with the src and dump a bunch
(B 
(B of
(B 
(Bvariables (if you can) and then we have some info to work with. :) the bt
(B 
(B above
(B 
(Blooks like the stack is corrupt though - but make sure u compiled everything
(B 
(B of
(B 
(Befl with gdb debugginng so we can check as much as possible
(B
(B
(Bi did additional searches, and what i found is that problems starts in
(B 
(B ecore_x_window_size_get(root, w, h);
(B 
(BFrom there called ecore_x_drawable_geometry_get, then last successfull step
(B 
(B was before function that located in
(B 
(Becore_x.c on line 722. (if (!XGetGeometry... blah blah blah...)
(BIf i enter this function - X is freezed.
(BI think is REALLY Xorg problem, i don't know what they did with xlibs, but
(B 
(B XGetGeometry - this is what causing my problem.
(B 
(B i don't know.. but.. consoles! those vt's outside of x! :) use them! :)
(B 
(B 
(B
(B
(Bwell, here it is:
(B
(BProgram received signal SIGSEGV, Segmentation fault.
(B[Switching to Thread -1208441120 (LWP 7021)]
(B0x080579fc in e_zone_current_get (con=0x8c030b8) at e_zone.c:193
(B193return (E_Zone *)l-data;
(B(gdb) l
(B188   zone-x, zone-y, zone-w, zone-h))
(B189return zone;
(B190   }
(B191  }
(B192l = con-zones;
(B193return (E_Zone *)l-data;
(B194 }
(B195
(B196 void
(B197 e_zone_bg_reconfigure(E_Zone *zone)
(B(gdb) p l
(B$2 = (Evas_List *) 0x0
(B(gdb) p con-zones
(B$3 = (Evas_List *) 0x0
(B(gdb) p (E_Zone *)l-data
(BCannot access memory at address 0x0
(B(gdb) p l-data
(BCannot access memory at address 0x0
(B(gdb) p *l
(BCannot access memory at address 0x0
(B
(BI'm not big guru of gdb, so my knoweledge limited here... Something more to run?
(B
(BMight be i'm wrong, but this what i have until now... I"ll try to downgrade X
(B 
(B and xlibs, might be it will help.
(B 
(B
(B
(BThanks,
(BDan
(B
(B
(B---
(BSF email is sponsored by - The IT Product Guide
(BRead honest  candid reviews on hundreds of IT Products from real users.
(BDiscover which products truly live up to the hype. Start reading now.
(Bhttp://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
(B___
(Benlightenment-devel mailing list
(Benlightenment-devel@lists.sourceforge.net
(Bhttps://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Re: [E-devel] Strange SegFault on e17 startup

2005-03-17 Thread Ag. System Administrator
Hi again!
(B
(BI'm attaching gdb session dump as you requested. E17 and stuff was compiled 
(Bwith -g.
(B
(BAs i see it, this segv somehow belong to X, because last lines in gdb output 
(Bwas:
(B
(B0x003e502b in XUnlockDisplay () from /usr/X11R6/lib/libX11.so.6
(B0x003a2780 in ?? () from /usr/X11R6/lib/libX11.so.6
(B0x00c05440 in write () from /lib/tls/libpthread.so.0
(B0x00c05448 in write () from /lib/tls/libpthread.so.0
(B0x00c0544a in __write_nocancel () from /lib/tls/libpthread.so.0
(B0x00c0544b in __write_nocancel () from /lib/tls/libpthread.so.0
(B0x00c0544f in __write_nocancel () from /lib/tls/libpthread.so.0
(B0x00c05453 in __write_nocancel () from /lib/tls/libpthread.so.0
(B0x00c05457 in __write_nocancel () from /lib/tls/libpthread.so.0
(B0x00c0545c in __write_nocancel () from /lib/tls/libpthread.so.0
(B0x002597a0 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2
(B0x002597a2 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2
(B
(BAny ideas? More tests to run?
(B
(BThanks,
(BDan
(B
(BCarsten Haitzler (The Rasterman) wrote:
(B On Wed, 16 Mar 2005 12:43:27 +0200 "Ag. System Administrator"
(B [EMAIL PROTECTED] babbled:
(B 
(B 
(BHi List!
(B
(BAfter
(B 
(B "don't-know-exactly-what-i-did-but-think-it-was-kernel-update-or-xorg-libs-upda
(B te" e17 segfaults on startup...
(B 
(BRecompilation from CVS does not help, removing e17 and building all from
(B 
(B scratch not help also :(
(B 
(BThis is what i get:
(B
(BWARNING: not a utf8 locale!
(B##- NEW CLIENT 0x400027
(B##- ON MAP CLIENT 0x400027 SIZE 484x316
(B##- FIRST MAP
(B SEGMENTATION FAULT 
(B Printing Backtrace... *
(B
(B/opt/e17/bin/enlightenment(e_sigseg_act+0x45)[0x807370d]
(B/lib/tls/libpthread.so.0[0xc068d8]
(B/opt/e17/bin/enlightenment(e_border_new+0x790)[0x8058dcd]
(B/opt/e17/bin/enlightenment(e_manager_manage_windows+0x249)[0x80538b8]
(B/opt/e17/bin/enlightenment[0x8052d27]
(B/opt/e17/bin/enlightenment(main+0x6c1)[0x80524b1]
(B/lib/tls/libc.so.6(__libc_start_main+0xe3)[0x790e33]
(B/opt/e17/bin/enlightenment[0x8051d69]
(B 
(B 
(B not much i can do there. can you attach a full gdb session and make sure e17,
(B evas, ecore, edje, embryo, eet are all compiled with gdb debugging? 
(B (CFLAGS=-g)
(B ?
(B 
(B 
(Band i get shell back...
(B
(BIf i try to run it under strace -F -f, it stops somewhere after cursor.png is
(B 
(B loaded,
(B 
(Band process cannot be aborted with Ctrl-C. Last lines of strace says:
(B
(Bopen("/proc/cpuinfo", O_RDONLY) = 8
(Bfstat64(8, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
(Bmmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
(B 
(B 0xb7cad000
(B 
(Bread(8, "processor\t: 0\nvendor_id\t: Genuin"..., 15360) = 420
(Bread(8, "", 15360)  = 0
(Bclose(8)= 0
(Bmunmap(0xb7cad000, 4096)= 0
(Bwrite(6, "\20\0\t\0\33\0\0\0__EVAS_PERF_ENGINE_SOFTW"..., 36) = 36
(Bread(6, "\1\0\244\0\0\0\0\0X\1\0\0\0\0\0\0\1\0\0\0\33\0\0\0X\373"..., 32) = 32
(Bwrite(6, "[EMAIL PROTECTED]", 24) = 24
(Bread(6, "\1\0\245\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\0"..., 32) = 32
(Bwritev(6, [{"b\0\4\0\7\0\0\0", 8}, {"MIT-SHM", 7}, {"\0", 1}], 3) = 16
(Bread(6, "\1\0\246\0\0\0\0\0\1\224_\252\0\0\0\0\1\0\0\0\33\0\0\0"..., 32) = 32
(Bshmget(IPC_PRIVATE, 512, IPC_CREAT|0777) = 1736015873
(Bshmat(1736015873, 0, 0) = 0xb7cad000
(Bwrite(6, "+\0\1\0", 4)  = 4
(Bread(6, "\1\0\247\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\33\0\0\0X\373"..., 32) =
(B 
(B 32
(B 
(Bwrite(6, "\224\1\4\0\6\0`\0\1\200yg\0\0\0\0+\0\1\0", 20) = 20
(Bread(6, "\1\0\251\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0X\373"..., 32) =
(B 
(B 32
(B 
(Bwrite(6, "+\1\1\0", 4)  = 4
(Bread(6, "\1\0\252\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\33\0\0\0X\373"..., 32) =
(B 
(B 32
(B 
(Bshmdt(0xb7cad000)   = 0
(Bshmctl(1736015873, IPC_64|IPC_RMID, 0)  = 0
(Bshmget(IPC_PRIVATE, 4, IPC_CREAT|0777)  = 1736048646
(Bshmat(1736048646, 0, 0) = 0xb7cad000
(Bwrite(6, "\224\2\2\0\6\0`\0+\200\1\0", 12) = 12
(Bread(6, "\1\0\254\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0X\373"..., 32) =
(B 
(B 32
(B 
(Bwrite(6, "\224\1\4\0\7\0`\0\6\0zg\0\0\0\0+\0\1\0", 20
(B
(BAny ideas?
(B
(BI'm runing FC3 with:
(B2.6.10-1.770_14 kernel,
(Bglibc-2.3.4-2,
(Bxorg-x11-Mesa-libGL-6.8.1-12.FC3.21_1,
(Bxorg-x11-Mesa-libGLU-6.8.1-12.FC3.21_1,
(Bxorg-x11-libs-6.8.1-12.FC3.21_1
(Bxorg-x11-devel-6.8.1-12.FC3.21_1
(B
(BThanks a lot,
(BDan
(B
(BPS: E17 Team, you doing GREAT work! I'm using E17 at home almost 4th month
(B 
(B (even it's devel) - COOL! ;)))
(B 
(B but you got a segv! BAD! :(
(B 
(B 
(B--

[E-devel] Strange SegFault on e17 startup

2005-03-16 Thread Ag. System Administrator
Hi List!
After 
don't-know-exactly-what-i-did-but-think-it-was-kernel-update-or-xorg-libs-update
 e17 segfaults on startup...
Recompilation from CVS does not help, removing e17 and building all from 
scratch not help also :(
This is what i get:
WARNING: not a utf8 locale!
##- NEW CLIENT 0x400027
##- ON MAP CLIENT 0x400027 SIZE 484x316
##- FIRST MAP
 SEGMENTATION FAULT 
 Printing Backtrace... *
/opt/e17/bin/enlightenment(e_sigseg_act+0x45)[0x807370d]
/lib/tls/libpthread.so.0[0xc068d8]
/opt/e17/bin/enlightenment(e_border_new+0x790)[0x8058dcd]
/opt/e17/bin/enlightenment(e_manager_manage_windows+0x249)[0x80538b8]
/opt/e17/bin/enlightenment[0x8052d27]
/opt/e17/bin/enlightenment(main+0x6c1)[0x80524b1]
/lib/tls/libc.so.6(__libc_start_main+0xe3)[0x790e33]
/opt/e17/bin/enlightenment[0x8051d69]
and i get shell back...
If i try to run it under strace -F -f, it stops somewhere after cursor.png is 
loaded,
and process cannot be aborted with Ctrl-C. Last lines of strace says:
open(/proc/cpuinfo, O_RDONLY) = 8
fstat64(8, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7cad000
read(8, processor\t: 0\nvendor_id\t: Genuin..., 15360) = 420
read(8, , 15360)  = 0
close(8)= 0
munmap(0xb7cad000, 4096)= 0
write(6, \20\0\t\0\33\0\0\0__EVAS_PERF_ENGINE_SOFTW..., 36) = 36
read(6, \1\0\244\0\0\0\0\0X\1\0\0\0\0\0\0\1\0\0\0\33\0\0\0X\373..., 32) = 32
write(6, [EMAIL PROTECTED], 24) = 24
read(6, \1\0\245\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\0..., 32) = 32
writev(6, [{b\0\4\0\7\0\0\0, 8}, {MIT-SHM, 7}, {\0, 1}], 3) = 16
read(6, \1\0\246\0\0\0\0\0\1\224_\252\0\0\0\0\1\0\0\0\33\0\0\0..., 32) = 32
shmget(IPC_PRIVATE, 512, IPC_CREAT|0777) = 1736015873
shmat(1736015873, 0, 0) = 0xb7cad000
write(6, +\0\1\0, 4)  = 4
read(6, \1\0\247\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\33\0\0\0X\373..., 32) = 32
write(6, \224\1\4\0\6\0`\0\1\200yg\0\0\0\0+\0\1\0, 20) = 20
read(6, \1\0\251\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0X\373..., 32) = 32
write(6, +\1\1\0, 4)  = 4
read(6, \1\0\252\0\0\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\33\0\0\0X\373..., 32) = 32
shmdt(0xb7cad000)   = 0
shmctl(1736015873, IPC_64|IPC_RMID, 0)  = 0
shmget(IPC_PRIVATE, 4, IPC_CREAT|0777)  = 1736048646
shmat(1736048646, 0, 0) = 0xb7cad000
write(6, \224\2\2\0\6\0`\0+\200\1\0, 12) = 12
read(6, \1\0\254\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0X\373..., 32) = 32
write(6, \224\1\4\0\7\0`\0\6\0zg\0\0\0\0+\0\1\0, 20
Any ideas?
I'm runing FC3 with:
2.6.10-1.770_14 kernel,
glibc-2.3.4-2,
xorg-x11-Mesa-libGL-6.8.1-12.FC3.21_1,
xorg-x11-Mesa-libGLU-6.8.1-12.FC3.21_1,
xorg-x11-libs-6.8.1-12.FC3.21_1
xorg-x11-devel-6.8.1-12.FC3.21_1
Thanks a lot,
Dan
PS: E17 Team, you doing GREAT work! I'm using E17 at home almost 4th month 
(even it's devel) - COOL! ;)))
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] edje_cc weirdness

2004-12-01 Thread Ag. System Administrator
Hi E17 developers!
First of all - REALLY BG THANKS! You doing great work! Hope to see e17 soon 
;)
I'm trying to compile CVS's ewl, and some weird things happens:
make
(cd ../../data/themes ; edje_cc -v -id ../../data/themes/default/bits/images 
default.edc ../../data/themes/default.eet)
edje_cc: Opening /tmp/edje_cc.edc-tmp-WAqHWs for input
edje_cc: Parsing input file
edje_cc: Error. default/bits/button-groups.edc:15 unhandled keyword border
make: *** [default.eet] Error 255
Every .edc file that have border keyword in it - fails :(
Any ideas?
Thank you,
Dan
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
enlightenment-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel