Re: [NTG-context] web server

2021-01-22 Thread Hans Hagen

On 1/23/2021 1:38 AM, Jairo A. del Rio wrote:

So, is it still broken?

hard to say:

- i need to mess with virtual hosts for lmtx updates (a bit trial and error

- then there is dns caching that remembers the old stuff (i think the 
www.pragma-ade.com still is not updates but pragma-ade.com should work)


- all that is on a remote machine (no key access somehow so kin dof 
cumbersome) ... i now remember why we had that dedicated machoine (full 
access) but it's too expensive for a web server only


- as a coincidence our main router here refused to reboot (some intel 
atom clock bug that shows up when one reboots after > 3 years which 
toasts the machine irrepairable) but that only affects mojcas compile 
farm and our own stuff


but ... i need to quit now in order not to get into a too bad mood but 
updating ... lmtx should work (well, it does here) .. tomorrow i'll play 
a bit more (we're locked down here anyway)


Hans

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] web server

2021-01-22 Thread Jairo A. del Rio
So, is it still broken?

Jairo

El vie, 22 de ene. de 2021 a la(s) 11:11, Pablo Rodriguez (oi...@gmx.es)
escribió:

> On 1/22/21 1:46 PM, Hans Hagen wrote:
> > Hi,
> >
> > I'm moving the webserver to another ip address so there can be some
> > temnporary hickups (dns and such)
>
> Many thanks for your info, Hans.
>
> This explains why I’m not able to update LMTX now.
>
> Pablo
> --
> http://www.ousia.tk
>
> ___
> If your question is of interest to others as well, please add an entry to
> the Wiki!
>
> maillist : ntg-context@ntg.nl /
> http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki : http://contextgarden.net
>
> ___
>
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Specify a directory for the generated pdf

2021-01-22 Thread denis.maier
Don't think that exists, but I think such an option would be quite convenient.

Von: ntg-context  im Auftrag von kaddour kardio 

Gesendet: Freitag, 22. Januar 2021 21:20:47
An: mailing list for ConTeXt users
Betreff: [NTG-context] Specify a directory for the generated pdf

Hi list, if there a context option to specify the directory in which I want to 
save the produced pdf ? I tried the option `--result= ` but it just change the 
name of the file. Thank you .

___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] [startstop]

2021-01-22 Thread Floris van Manen



On 22/01/2021 23:39, Wolfgang Schuster wrote:


No \do...empty (LMTX only):

\tolerant\protected\def\startzzz#=%
   {\hrule
    \doifsomething{#1}{\bold{\strut#1}\blank}}

\protected\def\stopzzz
   {\blank[10mm]}

\starttext

\startzzz
\input weisman
\stopzzz

\startzzz{Ward}
\input ward
\stopzzz

\stoptext



Thank you !

.F
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] \doassign variable - updates not picked up

2021-01-22 Thread Wolfgang Schuster

Werner Hennrich schrieb am 22.01.2021 um 09:48:

Hello everyone,

I'm using ConTeXt  (ver: 2020.09.20 23:02 LMTX) and have to have 
conditional page headers based on specific content criteria. To achive 
this I'd like to get some global variables in TeX, change their values 
several times throughout the document and have my macro for the header 
read them and act accordingly (like skip the header at all, change a 
color, etc).


As a basis for this I established the following pattern in an iolated 
test case:


\def\setHeaderVar[#1]{
\doassign[header][myvar=#1]
\message{setHEADER: '#1'}
}
\def\getHeaderVar{\headermyvar}
\setupheadertexts[\setups{page:header}]
\startsetups page:header
HEADER: myvar=\getHeaderVar
\stopsetups
\starttext
\setHeaderVar[initval]
page: 1
\page
\setHeaderVar[a]
page: 2
\page
\setHeaderVar[b]
page: 3
\page
\setHeaderVar[]
page: 4
\page
\setHeaderVar[]
page: 5
\stoptext

This works as expected and the header-macro prints the updated value. 
But when I put the same pattern in my big environment-file, I can see 
the variable being updated with different values (console), but the 
header always puts out just the variable's initial value - so the 
variable is read but it's updates aren't picked up by the header macro. 
Peeking into console, log & tuc didn't raise any idea yet as to what is 
going wrong...


Any idea what is happening and how I can fix this?


I guess you set the value in a local group and at the end of the group
your setting is forgotten, a simple change you can make is to replace
\doassign with \getgparameters which makes global settings.


A alternative to your current approach is to use the variables mechanism
to set and access values (you still have to ensure all values you set
are global).

\setupheadertexts[\getvariable{header}{text}]

\starttext

\setgvariables[header][text=First page]
Page 1

\page

\setgvariables[header][text=Last page]
Page 2

\stoptext


Wolfgang

___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] [startstop]

2021-01-22 Thread Jairo A. del Rio
El vie, 22 de ene. de 2021 a la(s) 17:39, Wolfgang Schuster (
wolfgang.schuster.li...@gmail.com) escribió:

> Jairo A. del Rio schrieb am 22.01.2021 um 23:14:
> > How strange. I guess you don't have your modules installed. In such a
> > case, you could install them from modules.contextgarden.net
> >  and put content under texmf-modules
> > so after mtxrun --generate and context --make examples work.
>
> The core function of the annotation module (custom environment
> with key-val-arguments) is part of ConTeXt but it doesn't create
> new environment commands.
>
> \defineuserdata
>[zzz]
>[alternative=zzz,
> after={\blank[10mm]}]
>
> \defineuserdataalternative[zzz][renderingsetup=userdata:zzz]
>
> \startsetups[userdata:zzz]
>  \hrule
>  \doifsomething{\userdataparameter{title}}
>{\bold{\strut\userdataparameter{title}}
> \blank}
>  \strut\getuserdata
> \stopsetups
>
> \starttext
>
> \startuserdata[zzz]
> \input weisman
> \stopuserdata
>
> \startuserdata[zzz][title=Ward]
> \input ward
> \stopuserdata
>
> \stoptext
>
>
>  > Another possibility is to use \do...empty and such, but it feels odd
>  > when a module for that is already available.
>
> No \do...empty (LMTX only):
>
> \tolerant\protected\def\startzzz#=%
>{\hrule
> \doifsomething{#1}{\bold{\strut#1}\blank}}
>
> \protected\def\stopzzz
>{\blank[10mm]}
>
> \starttext
>
> \startzzz
> \input weisman
> \stopzzz
>
> \startzzz{Ward}
> \input ward
> \stopzzz
>

A nicer way to go, indeed.


> \stoptext
>
>
> Wolfgang
>


Jairo
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] [startstop]

2021-01-22 Thread Wolfgang Schuster

Jairo A. del Rio schrieb am 22.01.2021 um 23:14:
How strange. I guess you don't have your modules installed. In such a 
case, you could install them from modules.contextgarden.net 
 and put content under texmf-modules 
so after mtxrun --generate and context --make examples work.


The core function of the annotation module (custom environment
with key-val-arguments) is part of ConTeXt but it doesn't create
new environment commands.

\defineuserdata
  [zzz]
  [alternative=zzz,
   after={\blank[10mm]}]

\defineuserdataalternative[zzz][renderingsetup=userdata:zzz]

\startsetups[userdata:zzz]
\hrule
\doifsomething{\userdataparameter{title}}
  {\bold{\strut\userdataparameter{title}}
   \blank}
\strut\getuserdata
\stopsetups

\starttext

\startuserdata[zzz]
\input weisman
\stopuserdata

\startuserdata[zzz][title=Ward]
\input ward
\stopuserdata

\stoptext


> Another possibility is to use \do...empty and such, but it feels odd
> when a module for that is already available.

No \do...empty (LMTX only):

\tolerant\protected\def\startzzz#=%
  {\hrule
   \doifsomething{#1}{\bold{\strut#1}\blank}}

\protected\def\stopzzz
  {\blank[10mm]}

\starttext

\startzzz
\input weisman
\stopzzz

\startzzz{Ward}
\input ward
\stopzzz

\stoptext


Wolfgang
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] [startstop]

2021-01-22 Thread Jairo A. del Rio
How strange. I guess you don't have your modules installed. In such a case,
you could install them from modules.contextgarden.net and put content under
texmf-modules so after mtxrun --generate and context --make examples work.

Another possibility is to use \do...empty and such, but it feels odd when a
module for that is already available.

Jairo

El vie., 22 de ene. de 2021 5:07 p. m., Floris van Manen 
escribió:

> unfortunately this does not work, 'annotation' is not found.
>
> But is it possible to give a start/stop definition user parameters?
> And if so, how?
>
>
> .F
>
> ___
> If your question is of interest to others as well, please add an entry to
> the Wiki!
>
> maillist : ntg-context@ntg.nl /
> http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki : http://contextgarden.net
>
> ___
>
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] [startstop]

2021-01-22 Thread Floris van Manen

unfortunately this does not work, 'annotation' is not found.

But is it possible to give a start/stop definition user parameters?
And if so, how?


.F
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] Specify a directory for the generated pdf

2021-01-22 Thread kaddour kardio
Hi list, if there a context option to specify the directory in which I want
to save the produced pdf ? I tried the option `--result= ` but it just
change the name of the file. Thank you .
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Missing images in Wiki?

2021-01-22 Thread Andres Conrado Montoya Acosta
 the header at all, change a
> color, etc).
>
> As a basis for this I established the following pattern in an iolated
> test case:
>
> \def\setHeaderVar[#1]{
> \doassign[header][myvar=#1]
> \message{setHEADER: '#1'}
> }
> \def\getHeaderVar{\headermyvar}
> \setupheadertexts[\setups{page:header}]
> \startsetups page:header
> HEADER: myvar=\getHeaderVar
> \stopsetups
> \starttext
> \setHeaderVar[initval]
> page: 1
> \page
> \setHeaderVar[a]
> page: 2
> \page
> \setHeaderVar[b]
> page: 3
> \page
> \setHeaderVar[]
> page: 4
> \page
> \setHeaderVar[]
> page: 5
> \stoptext
>
> This works as expected and the header-macro prints the updated value.
> But when I put the same pattern in my big environment-file, I can see
> the variable being updated with different values (console), but the
> header always puts out just the variable's initial value - so the
> variable is read but it's updates aren't picked up by the header macro.
> Peeking into console, log & tuc didn't raise any idea yet as to what is
> going wrong...
>
> Any idea what is happening and how I can fix this?
>
> Any hints on how I can track this down?
>
> Thanks a lot,
> Werner Hennrich, Vienna AT
>
>
> -- next part --
> An HTML attachment was scrubbed...
> URL: <
> http://mailman.ntg.nl/pipermail/ntg-context/attachments/20210122/b5413c6c/attachment-0001.htm
> >
>
> --
>
> Subject: Digest Footer
>
>
> ___
> If your question is of interest to others as well, please add an entry to
> the Wiki!
>
> maillist : ntg-context@ntg.nl /
> http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : https://foundry.supelec.fr/projects/contextrev/
> wiki : http://contextgarden.net
>
> ___
>
>
> --
>
> End of ntg-context Digest, Vol 199, Issue 53
> 
>


-- 
Andrés Conrado Montoya
http://chiquitico.org
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] [startstop]

2021-01-22 Thread Jairo A. del Rio
Like this?


\usemodule[annotation] %Thanks for this module, Wolfgang

\defineannotation[zzz]

\define[2]\AnnotationCommand

{\doifelse{\placeannotationtitle}{}{}{\hrule\bf\placeannotationtitle\par}#2\blank[10mm]}

\setupannotation[zzz]

[alternative=command,

command=\AnnotationCommand,

text=]

\starttext

\startzzz{a}

Hola

\stopzzz

\startzzz{b}

Chao

\stopzzz

\startzzz

Hola de nuevo

\stopzzz

\stoptext

Jairo

El vie, 22 de ene. de 2021 a la(s) 12:51, Floris van Manen (v...@klankschap.nl)
escribió:

> I'd like to create a start/stop command with a parameter
>
>
>
> \startzzz[a]
> one two three
> \stopzzz
>
> \startzzz[b]
> one two three
> \stopzzz
>
>
> How do i define/pass the tag parameter in the definition?
> This does not work (obviously)
>
> \definestartstop[zzz][
> before={\hrule\bf tag\blank},
> after={\blank[10mm]}
> ]
>
>
> I cannot find it in the documentation
>
> .F
>
> ___
> If your question is of interest to others as well, please add an entry to
> the Wiki!
>
> maillist : ntg-context@ntg.nl /
> http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki : http://contextgarden.net
>
> ___
>
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] Writing generated pdf into a directory

2021-01-22 Thread kaddour kardio
Hi list, if there a context option to specify the directory in which I want
to save the produced pdf ? I tried the option `--result= ` but it just
change the name of the file. Thank you .
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] [startstop]

2021-01-22 Thread Floris van Manen

I'd like to create a start/stop command with a parameter



\startzzz[a]
one two three
\stopzzz

\startzzz[b]
one two three
\stopzzz


How do i define/pass the tag parameter in the definition?
This does not work (obviously)

\definestartstop[zzz][
before={\hrule\bf tag\blank},
after={\blank[10mm]}
]


I cannot find it in the documentation

.F
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] web server

2021-01-22 Thread Pablo Rodriguez
On 1/22/21 1:46 PM, Hans Hagen wrote:
> Hi,
>
> I'm moving the webserver to another ip address so there can be some
> temnporary hickups (dns and such)

Many thanks for your info, Hans.

This explains why I’m not able to update LMTX now.

Pablo
--
http://www.ousia.tk
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] web server

2021-01-22 Thread Hans Hagen

Hi,

I'm moving the webserver to another ip address so there can be some 
temnporary hickups (dns and such)


Hans

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] new lmtx / fonts

2021-01-22 Thread Werner Hennrich

Am 22.01.21 um 09:50 schrieb Hans Hagen:

I'm still playing a bit with metafonts so there are two new files

context --global meta-imp-clock.mkxl


> A crazy examples made in crazy times.

made me laugh =:-)

Thanks, weHe


___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] \doassign variable - updates not picked up

2021-01-22 Thread Werner Hennrich

Hello everyone,

I'm using ConTeXt  (ver: 2020.09.20 23:02 LMTX) and have to have
conditional page headers based on specific content criteria. To achive
this I'd like to get some global variables in TeX, change their values
several times throughout the document and have my macro for the header
read them and act accordingly (like skip the header at all, change a
color, etc).

As a basis for this I established the following pattern in an iolated
test case:

   \def\setHeaderVar[#1]{
   \doassign[header][myvar=#1]
   \message{setHEADER: '#1'}
   }
   \def\getHeaderVar{\headermyvar}
   \setupheadertexts[\setups{page:header}]
   \startsetups page:header
   HEADER: myvar=\getHeaderVar
   \stopsetups
   \starttext
   \setHeaderVar[initval]
   page: 1
   \page
   \setHeaderVar[a]
   page: 2
   \page
   \setHeaderVar[b]
   page: 3
   \page
   \setHeaderVar[]
   page: 4
   \page
   \setHeaderVar[]
   page: 5
   \stoptext

This works as expected and the header-macro prints the updated value.
But when I put the same pattern in my big environment-file, I can see
the variable being updated with different values (console), but the
header always puts out just the variable's initial value - so the
variable is read but it's updates aren't picked up by the header macro.
Peeking into console, log & tuc didn't raise any idea yet as to what is
going wrong...

Any idea what is happening and how I can fix this?

Any hints on how I can track this down?

Thanks a lot,
Werner Hennrich, Vienna AT


___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] new lmtx / fonts

2021-01-22 Thread Hans Hagen

Hi,

I uploaded a new lmtx. I'm still playing a bit with metafonts so there 
are two new files


context --global meta-imp-demo.mkxl
context --global meta-imp-clock.mkxl

Both show a bit. The question is, do we need / want more like this? What 
kind of interfaces are best? It's mostly about used defined symbols that 
are proper characters and efficiently used.


Hans

PS. The clock one has a hidden cut'n'paste feature that only works on 
acrobat which of course then makes it a kind of useless feature (plenty 
of them by now) because when, e.g. a  mupdf bases viewer doesn't support 
this after all these years it's could as well be kept out of the standard.




-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Missing images in Wiki?

2021-01-22 Thread Taco Hoekwater


> On 21 Jan 2021, at 20:30, Andres Conrado Montoya  
> wrote:
> 
> It seems a lot of image examples from the wiki are gone now. Most articles 
> lost many images. Is this on purpose? 

Seems unlikely, but provide a few examples, please. I will check.

— 
Taco Hoekwater  E: t...@bittext.nl
genderfluid (all pronouns)



___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___