[Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Melchior FRANZ
* Gerard Robin -- Monday 13 June 2005 16:32: Le lundi 13 juin 2005 à 15:16 +0100, Vivian Meazza a écrit : --prop:/sim/rendering/clouds3d-enable=1 --prop:/sim/rendering/clouds3d-cache-size=4096 Does not work the program overload the data. I have since a long time

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Gerard Robin
Le lundi 13 juin 2005 16:58 +0200, Melchior FRANZ a crit : * Gerard Robin -- Monday 13 June 2005 16:32: Le lundi 13 juin 2005 15:16 +0100, Vivian Meazza a crit : --prop:/sim/rendering/clouds3d-enable=1 --prop:/sim/rendering/clouds3d-cache-size=4096 Does not work the program overload

[Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Melchior FRANZ
* Gerard Robin -- Monday 13 June 2005 17:21: 2/ with .fgfsrc --config=$FG_HOME/.fgfs/preferences.xml i get the message: Error loading config file: Failed to open file at $FG_HOME/.fgfs/preferences.xml Shell variables aren't expanded in the config file (AFAIK). That's done by the shell

RE: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Vivian Meazza
Melchior FRANZ * Gerard Robin -- Monday 13 June 2005 16:32: Le lundi 13 juin 2005 à 15:16 +0100, Vivian Meazza a écrit : --prop:/sim/rendering/clouds3d-enable=1 --prop:/sim/rendering/clouds3d-cache-size=4096 Does not work the program overload the data. You need to have both -

[Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Melchior FRANZ
* Vivian Meazza -- Monday 13 June 2005 17:37: You need to have both - that would be reasonable since why would you set one and not the other - a feature rather than a bug? It's at least a usability bug. The clouds code interprets cache_size=0 as turn off rendering. So you can't have a value set

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Gerard Robin
Le lundi 13 juin 2005 17:35 +0200, Melchior FRANZ a crit : * Gerard Robin -- Monday 13 June 2005 17:21: 2/ with .fgfsrc --config=$FG_HOME/.fgfs/preferences.xml i get the message: Error loading config file: Failed to open file at $FG_HOME/.fgfs/preferences.xml Shell variables

[Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Melchior FRANZ
* Gerard Robin -- Monday 13 June 2005 17:56: Error loading config file: Failed to open file at /home/tux-le-boss/.fgfs/preferences.xml with .fgfsrc --config=/home/tux-le-boss/.fgfs/preferences.xml Well, then this file just doesn't exist or has wrong permissions. m.

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Gerard Robin
Le lundi 13 juin 2005 18:24 +0200, Melchior FRANZ a crit : * Gerard Robin -- Monday 13 June 2005 17:56: Error loading config file: Failed to open file at /home/tux-le-boss/.fgfs/preferences.xml with .fgfsrc --config=/home/tux-le-boss/.fgfs/preferences.xml Well, then this file

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Gerard Robin
Le lundi 13 juin 2005 18:34 +0200, Gerard Robin a crit : Le lundi 13 juin 2005 18:24 +0200, Melchior FRANZ a crit : * Gerard Robin -- Monday 13 June 2005 17:56: Error loading config file: Failed to open file at /home/tux-le-boss/.fgfs/preferences.xml with .fgfsrc

[Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Melchior FRANZ
* Gerard Robin -- Monday 13 June 2005 18:34: Le lundi 13 juin 2005 à 18:24 +0200, Melchior FRANZ a écrit : * Gerard Robin -- Monday 13 June 2005 17:56: Error loading config file: Failed to open file with .fgfsrc --config=/home/tux-le-boss/.fgfs/preferences.xml Well, then

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Gerard Robin
Le lundi 13 juin 2005 18:53 +0200, Melchior FRANZ a crit : strace -fF -eopen fgfs 21|grep tux The answer is: open(/home/tux-le-boss/.fgfsrc.servlinux.gours, O_RDONLY) = -1 ENOENT (No such file or directory) open(/home/tux-le-boss/.fgfsrc.servlinux.gours.gz, O_RDONLY) = -1 ENOENT (No such

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Andy Ross
Gerard: --config=/home/tux-le-boss/.fgfs/preferences.xml Error loading config file: Failed to open file at /home/tux-le-boss/.fgfs/preferences.xml Melchior: Well, then this file just doesn't exist or has wrong permissions. Gerard: Yes Existing, good permissions Melchior: Try this: $

[Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Melchior FRANZ
* Gerard Robin -- Monday 13 June 2005 19:19: open(/home/tux-le-boss/.fgfs/preferences.xml  , O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) Yes, and I was right: this file just doesn't exist! This is not an fgfs message, but one of the operating system. m.

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Gerard Robin
Le lundi 13 juin 2005 19:31 +0200, Melchior FRANZ a crit : * Gerard Robin -- Monday 13 June 2005 19:19: open(/home/tux-le-boss/.fgfs/preferences.xml , O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) Yes, and I was right: this file just doesn't exist! This is not an fgfs

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Andy Ross
Gerard wrote: Melchior wrote: Yes, and I was right: this file just doesn't exist! This is not an fgfs message, but one of the operating system. Not so Quick.. Oh do you remember i told you : You can't really argue with a syscall result. The file isn't there. Maybe there are some

[Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Melchior FRANZ
* Gerard Robin -- Monday 13 June 2005 19:41: Not so Quick.. Oh do you remember i told you : I do remember. But I don't believe you. fgfscvs --airport=LFNH --aircraft=P38-L --config=/home/tux-le- boss/.fgfs/preferences.xml Entertain us and post the output of $ strace -fF -eopen

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Ralf Gerlich
Hi, Gerard Robin wrote: open(/home/tux-le-boss/.fgfs/preferences.xml , O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) ^^ Did you see those blanks at the end of the filename? Are these actually in the original report? Where could

[Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Melchior FRANZ
* Ralf Gerlich -- Monday 13 June 2005 20:07: Gerard Robin wrote: open(/home/tux-le-boss/.fgfs/preferences.xml , [...] ^^ Did you see those blanks at the end of the filename? Are these actually in the original report? Where could these come

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Gerard Robin
Le lundi 13 juin 2005 20:07 +0200, Ralf Gerlich a crit : Hi, Gerard Robin wrote: open(/home/tux-le-boss/.fgfs/preferences.xml , O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) ^^ Did you see those blanks at the end of the

[Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Melchior FRANZ
* Melchior FRANZ -- Monday 13 June 2005 20:24: Add this to your ~/.vimrc and become a happier man: set listchars=tab:¦¯,trail:×,extends:»,precedes:« or this: set listchars=tab:°`,trail:°,extends:,precedes: followed by set list of course, ... m. :-)

[Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Melchior FRANZ
* Ralf Gerlich -- Monday 13 June 2005 20:07: Gerard Robin wrote: open(/home/tux-le-boss/.fgfs/preferences.xml , [...] ^^ Did you see those blanks at the end of the filename? Are these actually in the original report? Where could these

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Gerard Robin
Le lundi 13 juin 2005 19:58 +0200, Melchior FRANZ a crit : * Gerard Robin -- Monday 13 June 2005 19:41: Not so Quick.. Oh do you remember i told you : I do remember. But I don't believe you. fgfscvs --airport=LFNH --aircraft=P38-L --config=/home/tux-le-

[Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Melchior FRANZ
* Gerard Robin -- Monday 13 June 2005 20:53: I had a little break for dinner, now: the answer for Entertain: It's not funny any more, now that we know that you fooled us by adding two spaces to the ~/.fgfsrc config line. ;-) m. ___

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Gerard Robin
Le lundi 13 juin 2005 20:07 +0200, Ralf Gerlich a crit : Hi, Gerard Robin wrote: open(/home/tux-le-boss/.fgfs/preferences.xml , O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) ^^ Did you see those blanks at the end of the

Re: [Flightgear-devel] Re: writing rules with --prop for nasal in fgfsrc

2005-06-13 Thread Ralf Gerlich
Gerard Robin schrieb: I can give to Ralf the prize, if everybody agree. Thanks, too much honor ;-) Ralf ___ Flightgear-devel mailing list Flightgear-devel@flightgear.org http://mail.flightgear.org/mailman/listinfo/flightgear-devel