Title: gdc on linux-client Post by: . on November 23, 2007, 03:45:16 pm Problems:
1. Values in an inactive table (DISPLAY ARRAY arr1 TO s_arr BEFORE DISPLAY EXIT DISPLAY END DISPLAY) are not readable. Color is very lightgrey (under win-client it's darkgrey) 2. Shortcut System has same problems like MAC I can't start two programms from comandline with $PATHGDCBIN/gdc -S Syncframe. I need $PATHGDCBIN/gdc -n -X -S Syncframe. In this Case I must set password for each call if I use SSH2 3. It seems that 'saved' password is not ok. Request: 1. SSH with Key-Authorised with dsa-key 2. Style-Attribute for inactive tables. Question: Which login use 'local connection'? Title: Re: gdc on linux-client Post by: Lionel F. on November 26, 2007, 11:42:48 am Hello Herbert,
Before answering your questions: - what versions are you running ? - is this lnxlc22 or kde33 version ? - what is your distribution, which version ? - what is your Window Manager and which version ? Problems: 1. Values in an inactive table (DISPLAY ARRAY arr1 TO s_arr BEFORE DISPLAY EXIT DISPLAY END DISPLAY) are not readable. Color is very lightgrey (under win-client it's darkgrey) Actually, we simply use the system style to draw inactive items. If I look at another application on KDE, inactive items are also light-greyed. 2. Shortcut System has same problems like MAC I can't start two programms from comandline with $PATHGDCBIN/gdc -S Syncframe. I need $PATHGDCBIN/gdc -n -X -S Syncframe. In this Case I must set password for each call if I use SSH2 This is indeed not an expected behavior. I referenced the problem in our database: bz.#8935 => "gdc -S" doesn't work when other GDC already running. The information has been transmitted to the development team. 3. It seems that 'saved' password is not ok. I don't reproduce the problem on my side. May I ask you to provide me more details? Request: 1. SSH with Key-Authorised with dsa-key If you use an SSH connection, you can specify an ssh key private file that contains the login information (second screen when you're creating a SSH shortcut). The file format must use the PuTTY format and can be generated using PuTTY tools (Putty Key Generator). 2. Style-Attribute for inactive tables. You can use the pseudo-selector "inactive" in order to apply styles on inactive widgets. e.g: <Style name="Table:inactive"> <StyleAttribute name="backgroundColor" value="yellow" /> <StyleAttribute name="textColor" value="black" /> </Style> This is also a workaround for your first problem (with inactive tables which are not readable) Question: Which login use 'local connection'? The user who has launched the GDC. Don't hesitate to get back to me if you need further information. Best regards. |