|
The parsing method used by the FCL PM does not support 8 bits
characters. The Danish national characters you mentioned are
not supported (� = 0xe6, � = 0xd8, � = 0xe5....)
You could enter these names between double quotes, like :
create domain "Bj�nB�rg"
The parsing will not check double-quoted names in the same way.
Hope this helps.
|
|
>You could enter these names between double quotes, like :
>create domain "Bj�nB�rg"
>The parsing will not check double-quoted names in the same way.
This does not work. Let me explain:
Customer uses a DECterm on his Ultrix station, with a setup of
'stty pass8'. From the Ultrix prompt, he can type the danish
characters OK. As soon as he enters FCL, he can't type these
characters. And using double quotes doesn't help either.
But if he edits a script from the Ultrix prompt, and he does
an 'FCL do <script>', the danish characters are there!
So, could this be a matter of some simple setup?!?
Thanks,
Poul
|
|
The FCL PM uses two differents input paths. The prompt mode reads characters
from the TTY and store them in a SIGNED char buffer. I tested that
if you enter a 8bits character, the readed value will be NEGATIVE.
This means that the parsing code will discard it. These characters
are not echoed (I think this should be the same for you...).
The -from-file- input method doesn't use the same path as the
input strings. The input values doesn't come from a TTY.
In this mode don't forget to enter 8bits characters name between
double-quotes. This is the ONLY way to keep the instance
name relevant for the DNS FullName routines.
I'm sorry but this is not a simple matter of stty setup.
FYI, I'm currently working on some I18n features, and this is not
so easy. !!!
Best Regards
J.P.
|