Re: [NTG-context] key=value parameters

2004-07-24 Thread Vit Zyka
Great, but unfortunately it does not work with empty parameter list [].
No I have no time but I will look for better definition of 
\rawgetparameters and \rawsetparameter.
I fixed this a while ago, and not have:
\def\rawgetparameters[#1][#2% some 5-10% faster
 {\ifx#2]% test is needed, else bomb on [#1][]
\expandafter\gobbleoneargument
  \else
\def\rawparameterprefix{#1}%
\expandafter\dorawgetparameters
  \fi#2}
\def\dorawgetparameters#1]%
 {\expandafter\rawsetparameter#1,]=,}
Thankx for quick response, even from outside Hans, this solves the empty 
list problem, but unfortunately not the problem with newline in param list:
  \MyMacro[Field][param1=value,
 param2=value]
and in this way it is incompatible with \setparameters.

What about use the same parameter parser as in the \setparameters:
  \def\rawgetparameters{\dogetparameters\rawdosetvalue}
  [EMAIL PROTECTED]
Vit Zyka
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] key=value parameters

2004-07-23 Thread Taco Hoekwater

Hi Vit,

On Fri, 23 Jul 2004 10:46:10 +0200, Vit wrote:
 
 I can imagine next solutions:
 1) Do not use predefined keys in my macros, e.g. textWidth instead of
 textwidth [=user unfriendly].

If you decide on this solution, please use Textwidth instead (at least
something that starts with a capital letter). 

 2) Use original (mostly Dutch) keys inside of my macros
 [=developer unfriendly].

In this case, the correct solution is to use the interfaced versions 
like \c!tekstbreedte et al. inside your macros. This is unwieldy if you 
are not very familiar with the ConTeXt source, but it allows multilingual
input (very user friendly).

 3) Define:
   \unprotect
   \def\getparametersALL{\dogetparameters\dosetvalueALL}

Actually there is no need to define anything, you can just use \rawgetparameters 
instead of  \getparameters.

-- 
groeten,

Taco
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] key=value parameters

2004-07-23 Thread Vit Zyka
Thank you Taco.
I can imagine next solutions:
1) Do not use predefined keys in my macros, e.g. textWidth instead of
   textwidth [=user unfriendly].
If you decide on this solution, please use Textwidth instead (at least
something that starts with a capital letter). 
OK, but I do not like this solution.
2) Use original (mostly Dutch) keys inside of my macros
   [=developer unfriendly].
In this case, the correct solution is to use the interfaced versions 
like \c!tekstbreedte et al. inside your macros. This is unwieldy if you 
are not very familiar with the ConTeXt source, but it allows multilingual
input (very user friendly).
That is true I was not familiar about \c!... But problem is not in 
familiarity with ConTeXt source but Dutch language. One should write 
\c!tekstbreedte instead of \c!textwidth. For non Dutch it means all the 
time search at mult-*.tex. I know, solution is to learn Dutch... Hans 
has plan to rewrite all code to English, hasn't it?
Very good idea.

Multilingual input:
- In late 90. when I met ConTeXt first time, I was very confused. Some 
macros work, something was ignored. It took several days to discover 
that I have to write (in my czech format) \nastavbarvy instead of 
\setupcolors. After that I quickly switch to english interface.
- Multilingual interface is a nice example of ConTeXt capability, but a 
bit inpractical. It keeps from source code exchange. I can imagine some 
transtlators, but...
- I think there is no many ConTeXt users (even any?) that use non 
English or non Dutch interface (languages in which reference manual is 
written).

3) Define:
 \unprotect
 \def\getparametersALL{\dogetparameters\dosetvalueALL}
Actually there is no need to define anything, you can just use \rawgetparameters 
instead of  \getparameters.
Great, but unfortunately it does not work with empty parameter list [].
No I have no time but I will look for better definition of 
\rawgetparameters and \rawsetparameter.

Vit Zyka
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] key=value parameters

2004-07-23 Thread Taco Hoekwater
On Fri, 23 Jul 2004 12:53:33 +0200
Vit Zyka [EMAIL PROTECTED] wrote:

 That is true I was not familiar about \c!... But problem is not in 
 familiarity with ConTeXt source but Dutch language. One should write 
 \c!tekstbreedte instead of \c!textwidth. For non Dutch it means all the 
 time search at mult-*.tex. 

For me too, I have not used the dutch interface in years and have forgotten
most of the low-level dutch names. I am also eagerly awaiting a fully 
english version.

  Actually there is no need to define anything, you can just use \rawgetparameters 
  instead of  \getparameters.
 
 Great, but unfortunately it does not work with empty parameter list [].

I did not know that. Too bad.

Greetings, Taco
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] key=value parameters

2004-07-23 Thread Hans Hagen Outside
Vit Zyka wrote:
Great, but unfortunately it does not work with empty parameter list [].
No I have no time but I will look for better definition of 
\rawgetparameters and \rawsetparameter.
I fixed this a while ago, and not have: 

%D \macros
%D   {rawgetparameters}
%D
%D A raw and dirty alternative for \type {\getparameters}; no
%D checking is done!
% \def\rawgetparameters[#1][#2]% scheelt 5\%
%   {\def\rawparameterprefix{#1}%
%\expandafter\rawsetparameter#2,]=,}
%
% \def\rawsetparameter#1=#2,%
%   {\if]#1\else
%  \expandafter\def\csname\rawparameterprefix#1\endcsname{#2}%
%  \expandafter\rawsetparameter
%\fi}
%
% the next one handles empty #1 okay:
\def\rawgetparameters[#1][#2% some 5-10% faster
 {\ifx#2]% test is needed, else bomb on [#1][]
\expandafter\gobbleoneargument
  \else
\def\rawparameterprefix{#1}%
\expandafter\dorawgetparameters
  \fi#2}
\def\dorawgetparameters#1]%
 {\expandafter\rawsetparameter#1,]=,}
-
 Hans Hagen | PRAGMA ADE
 Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
| www.pragma-pod.nl
-
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context