Re: [NTG-context] Border matrix

2018-04-19 Thread Fabrice L
Wolfgang, thanks so much ! Everything is clear now, and works fine.

I will explore the mathalignment environment, which I’m not used to.
Fabrice.


Le 19 avril 2018 à 16:14:51, Wolfgang Schuster (schuster.wolfg...@gmail.com)
a écrit:

1. The bordermatrix code is part of the core and you can remove it from
cont-new.mkiv.

2. To use the \equalign command you have to enable the special meaning of &
in math mode with \setupmathematics[ampersand=normal].

3. User the new mathalignment environment as replacement for \equalign
which avoids special characters like &.

Wolfgang

Fabrice L 
19. April 2018 um 22:05
Dear list,

Some months ago, Hans wrote to this list (see below) a macro to do matrix
showing outside the brackets some informations (like we usually do for
Markov chains), but adapted some plain tex code, which worked in MKII). I
have used with success this code since then, but some weeks ago, the
behavior of Context had changed (probably something on my part; I have
updated the installation, but nothing changed).

The problem (I think) is linked to \unprotect \protect. When this code is
put before the \starttext to the the cont-new-mkiv, the border matrix
behave well, but a simple \eqalign like this:

\startformula
\eqalign{ & \lambda=5, \mu =5 \cr
   & \mu=8 \cr }
\stopformula

do not works is I replace «  \lambda » by « \lambda_2 » for example. I have
no idea what’s is going on. here is a minimal example where Hans’s code is
before the \starttext:

___
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] Asymptote and Context

2018-04-19 Thread Aditya Mahajan

On Thu, 19 Apr 2018, Context NTG wrote:


I am running context minimals and Asymptote on Windows.This example used to
work in the past, but it seems to have stopped working. Is there anything
that has changed?


I uploaded a new version of the filter module yesterday, but the error 
below seems unrelated.



\usemodule[filter]

\defineexternalfilter
[ASY]
[filtercommand={asy -tex "context" -outformat pdf
-outname \externalfilteroutputfile},
output=\externalfilterbasefile.pdf,
cache=yes,
readcommand=\ReadImage,]


Short answer: Change `filtercommand` to `filter`.

Long answer: The standard way to specify the command to be executed in 
each snippet is to use `filtercommand`. This should be the FULL command 
(as you would run on the command line). So in case of asymptote, it should 
be:


filtercommand={asy -tex context -outformat pdf -outname 
\externalfilteroutputfile\space \externalfilterinputfile}



Since many commands are of the form:

   command-name  input-name

a shortcut is provided in the filter module. Instead of saying

...
filtercommand={command-name  input-name},
...

you can say

filter={command-name }

In the example that you posted, you are using `filtercommand=` but the 
input filename is missing, so asymptote launches an interactive promt.


Aditya



___
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] \startplacetable in \startcolumnset

2018-04-19 Thread Wolfgang Schuster

Hi Dalyoung,

setup-en.pdf lists only the options for the new columnset code but it 
uses the internal pagegrid commands.


I’m going to change this to have the commands with the columnset names 
in the next version.


Wolfgang

Jeong Dal 
19. April 2018 um 17:05
Hi,

I found \definecolumnset in the wiki not in the setup-en.pdf.
I’ll test it again.

Thank you for reading.

Best regards,

Dalyoung
___
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] Asymptote and Context

2018-04-19 Thread Context NTG
I am running context minimals and Asymptote on Windows.This example used to
work in the past, but it seems to have stopped working. Is there anything
that has changed?

\usemodule[filter]


\defineexternalfilter

[ASY]

[filtercommand={asy -tex "context" -outformat pdf

-outname \externalfilteroutputfile},

output=\externalfilterbasefile.pdf,

cache=yes,

readcommand=\ReadImage,]


\define[1]\ReadImage{\externalfigure[#1]}


\starttext

Testing if we can include an asymptote image

\startplacefigure[location={here}, title={An Asymptote figure}]

\startASY

unitsize(1cm);

draw((-.1,0) -- (2,0), arrow=Arrow(TeXHead));

draw((0,-.1) -- (0,2), arrow=Arrow(TeXHead));

draw((0,0) .. (1,1) .. (2,sqrt(2)));

\stopASY

\stopplacefigure

\stoptext
___
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] Border matrix

2018-04-19 Thread Wolfgang Schuster
1. The bordermatrix code is part of the core and you can remove it from 
cont-new.mkiv.


2. To use the \equalign command you have to enable the special meaning 
of & in math mode with \setupmathematics[ampersand=normal].


3. User the new mathalignment environment as replacement for \equalign 
which avoids special characters like &.


Wolfgang

Fabrice L 
19. April 2018 um 22:05
Dear list,

Some months ago, Hans wrote to this list (see below) a macro to do 
matrix showing outside the brackets some informations (like we usually 
do for Markov chains), but adapted some plain tex code, which worked 
in MKII). I have used with success this code since then, but some 
weeks ago, the behavior of Context had changed (probably something on 
my part; I have updated the installation, but nothing changed).


The problem (I think) is linked to \unprotect \protect. When this code 
is put before the \starttext to the the cont-new-mkiv, the border 
matrix behave well, but a simple \eqalign like this:


\startformula
\eqalign{ & \lambda=5, \mu =5 \cr
& \mu=8 \cr }
\stopformula

do not works is I replace «  \lambda » by « \lambda_2 » for example. I 
have no idea what’s is going on. here is a minimal example where 
Hans’s code is before the \starttext:


___
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] Border matrix

2018-04-19 Thread Fabrice L
Dear list,

Some months ago, Hans wrote to this list (see below) a macro to do matrix
showing outside the brackets some informations (like we usually do for
Markov chains), but adapted some plain tex code, which worked in MKII). I
have used with success this code since then, but some weeks ago, the
behavior of Context had changed (probably something on my part; I have
updated the installation, but nothing changed).

The problem (I think) is linked to \unprotect \protect. When this code is
put before the \starttext to the the cont-new-mkiv, the border matrix
behave well, but a simple \eqalign like this:

\startformula
\eqalign{ & \lambda=5, \mu =5 \cr
   & \mu=8 \cr }
\stopformula

do not works is I replace «  \lambda » by « \lambda_2 » for example. I have
no idea what’s is going on. here is a minimal example where Hans’s code is
before the \starttext:


% 
\unprotect

\def\math_border_NC_indeed
{\gdef\math_border_NC{\aligntab}}

\let\math_border_NC\math_border_NC_indeed

\def\math_border_NR
{\glet\math_border_NC\math_border_NC_indeed
\cr}

\unexpanded\def\math_border_matrix#1#2#3% adapted plain
{\begingroup
%
\pushmacro\cr
%
\setbox\scratchbox\hbox\bgroup
\mr B%
\egroup
\scratchdimenone\wd\scratchbox
%
\scratchdimentwo.2\bodyfontsize
%
\mathsurround\zeropoint
%
\def\NC{\math_border_NC}%
\def\NR{\math_border_NR}%
%
\setbox\scratchboxone\vbox\bgroup
\def\cr{%
\crcr
\noalign\bgroup
\kern\scratchdimentwo
\global\let\cr\endline
\egroup
}%
\ialign{%
\startimath\alignmark\alignmark\stopimath
\hfil
\kern\dimexpr\scratchdimentwo+\scratchdimenone\relax
\aligntab
\thinspace
\hfil
\startimath\alignmark\alignmark\stopimath
\hfil
\aligntab
\aligntab
\quad
\hfil
\startimath\alignmark\alignmark\stopimath
\hfil
\crcr
\omit
\strut
\hfil
\crcr
\noalign{\kern-\baselineskip}%
#3\crcr
\omit
\strut
\cr
}%
\egroup
\setbox\scratchboxtwo\vbox\bgroup
\unvcopy\scratchboxone
\global\setbox\globalscratchbox\lastbox
\egroup
\setbox\scratchboxtwo\hbox\bgroup
\unhbox\globalscratchbox
\unskip
\global\setbox\globalscratchbox\lastbox
\egroup
\setbox\scratchboxtwo\hbox\bgroup
\startimath
\kern\dimexpr\wd\globalscratchbox-\scratchdimenone\relax
\left#1\relax
\kern-\wd\globalscratchbox
\global\setbox\globalscratchbox\vbox\bgroup
\box\globalscratchbox
\kern\scratchdimentwo
\egroup
\vcenter\bgroup
\kern-\ht\globalscratchbox
\unvbox\scratchboxone
\kern-\baselineskip
\egroup
\thinspace
\right#2\relax
\stopimath
\egroup
\null
\thickspace
\vbox\bgroup
\kern\ht\globalscratchbox
\box\scratchboxtwo
\egroup
%
\popmacro\cr
%
\endgroup}

\unexpanded\def\bordermatrix {\math_border_matrix()}
\unexpanded\def\bbordermatrix{\math_border_matrix[]}

\unexpanded\def\startbordermatrix #1\stopbordermatrix
{\math_border_matrix(){#1}}
\unexpanded\def\startbbordermatrix#1\stopbbordermatrix{\math_border_matrix[]{#1}}

\let\stopbordermatrix \relax
\let\stopbbordermatrix\relax

% 
% Should there be a "\ptotect" ?
%\protect
% 

\starttext

A plain border matrix  :

\startformula
\bbordermatrix{
a & b & c & d \cr
e & f & G & h \cr
i & j & k & l \cr}
\stopformula

\startformula
\startbbordermatrix
\NC a \NC b \NC c \NC d \NR
\NC e \NC f \NC G \NC h \NR
\NC i \NC j \NC k \NC l \NR
\stopbbordermatrix
\stopformula

\startformula
\eqalign{
& \lambda=5, \mu =5 \cr
% 
% Does not work if the next line is uncommented
% & \lambda_1=5, \mu =4 \cr
% 
& \mu=8 \cr
}
\stopformula

\stoptext

% 

Thanks for any help. By the way. Is there with MKIV a more direct way to do
such matrix ?
Fabrice.


Le 28 août 2017 à 13:47:59, Hans Hagen (pra...@wxs.nl) a écrit:

Hi,

Put this in cont-new.mkiv (after \unprotect):

\def\math_border_NC_indeed
{\gdef\math_border_NC{\aligntab}}

\let\math_border_NC\math_border_NC_indeed

\def\math_border_NR
{\glet\math_border_NC\math_border_NC_indeed
\cr}

\unexpanded\def\math_border_matrix#1#2#3% adapted plain
{\begingroup
%
\pushmacro\cr
%
\setbox\scratchbox\hbox\bgroup
\mr B%
\egroup
\scratchdimenone\wd\scratchbox
%
\scratchdimentwo.2\bodyfontsize
%
\mathsurround\zeropoint
%
\def\NC{\math_border_NC}%
\def\NR{\math_border_NR}%
%
\setbox\scratchboxone\vbox\bgroup
\def\cr{%
\crcr
\noalign\bgroup
\kern\scratchdimentwo
\global\let\cr\endline
\egroup
}%
\ialign{%
\startimath\alignmark\alignmark\stopimath
\hfil
\kern\dimexpr\scratchdimentwo+\scratchdimenone\relax
\aligntab
\thinspace
\hfil
\startimath\alignmark\alignmark\stopimath
\hfil
\aligntab
\aligntab
\quad
\hfil
\startimath\alignmark\alignmark\stopimath
\hfil
\crcr
\omit
\strut
\hfil
\crcr
\noalign{\kern-\baselineskip}%
#3\crcr
\omit
\strut
\cr
}%
\egroup
\setbox\scratchboxtwo\vbox\bgroup
\unvcopy\scratchboxone
\global\setbox\globalscratchbox\lastbox
\egroup
\setbox\scratchboxtwo\hbox\bgroup
\unhbox\globalscratchbox
\unskip
\global\setbox\globalscratchbox\lastbox
\egroup
\setbox\scratchboxtwo\hbox\bgroup
\startimath
\kern\dimexpr\wd\globalscratchbox-\scratchdimenone\relax
\left#1\relax

[NTG-context] numberstopper in \setupcaptions

2018-04-19 Thread Alan Braslau
Hello list members,

I am not sure how to achieve the following functionality:

Using \startplacefigure, I would like to place a number stopper *only*
when the caption text is non-empty, i.e.

Figure 1

Figure 2: A cow


This would be achieved through
\setupcaption [figure]
using numberstopper= I believe (with perhaps a filter), but I am not
sure of exactly how to do this, especially how to do this most
elegantly.

Thank you

Alan
___
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] \startplacetable in \startcolumnset

2018-04-19 Thread Jeong Dal
Hi,

I found \definecolumnset in the wiki not in the setup-en.pdf.
I’ll test it again.

Thank you for reading.

Best regards,

Dalyoung
___
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] \startplacetable in \startcolumnset

2018-04-19 Thread Jeong Dal
Hi,

I used the following exam format well which was set by the help of Wolfgang 
long time ago.

Recently I got a strange output when I used \startplacetable or \placetable in 
the \startcolumnset … \stopcolumnset.
There is a strange number first and table in the next column.
The output is OK if I comment out either \startcolumnset or \placetable.

Is “\definecolumnset, \startcolumnset” still a good command? I couldn’t find it 
in the list of commands.

Thank you for reading.

Best regards,

Dalyoung

%
\startuseMPgraphic{verticalrule}
  if CurrentColumn < NOfColumns :
draw leftboundary OverlayBox;%  shifted (-1mm,0);
draw rightboundary OverlayBox shifted (4mm,0);
draw rightboundary OverlayBox shifted (TextWidth+6mm,0);
draw bottomboundary OverlayBox shifted (1mm,0);
draw bottomboundary OverlayBox shifted (TextWidth+6mm,0);
setbounds currentpicture to OverlayBox enlarged 2.5mm;
  fi
\stopuseMPgraphic

\defineoverlay
  [verticalrule]
  [\useMPgraphic{verticalrule}]

\definecolumnset
  [exam]
  [n=2,
   background=verticalrule]

\starttext

\startcolumnset[exam]
\startcolumns[n=2, rule=on]
\startitemize[n]
\item Question 1.
Good
\vfill
\column
\item Question 2
%   \startplacetable[location=]
{\starttabulate[|c|c|c|]
\NC A   \NC B   \NC C \NC\NR
\NC A   \NC B   \NC C \NC\NR
\NC A   \NC B   \NC C \NC\NR
\stoptabulate}
%   \stopplacetable
\vfill
\stopitemize
\stopcolumns
\stopcolumnset
\stoptext

___
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] problem with character entities in XML processing

2018-04-19 Thread Hans van der Meer
Indeed. I should have known better. Temporary attack of brain weakness, I 
suppose. For those who want to see for themselves, the minimal example below 
will do.

dr. Hans van der Meer

% test character entity.
\startxmlsetups demo:entity
\xmlsetsetup{#1}{root}{demo:entity:*}
\stopxmlsetups
\xmlregisterdocumentsetup{demo}{demo:entity}
\startxmlsetups demo:entity:root
\blank Start test:\crlf
flushing: \xmlflush{#1}\crlf
End test\blank
\stopxmlsetups
\startbuffer[demo]

amp =  and #38 = 
\stopbuffer
\starttext
\currentdate-\currenttime\quad\ConTeXt-version=\contextversion\blank
{\bf Testing use of character entities}\blank
These should produce the same result: \type{} and \type{} and indeed 
they do.\blank
\xmlprocessbuffer{demo}{demo}{}\blank
\stoptext



> On 19 Apr 2018, at 14:44, Hans Hagen  wrote:
> 
> On 4/19/2018 10:53 AM, Hans van der Meer wrote:
>> The following use of character entities  aborts in ConTeXt. That is of 
>> course because the # is seen as a parameter. Changing this to &\#xxx; or 
>> &\letterhash xxx; typesets  as is, but that is not the intention, 
>> because an ampersand should appear. So, how do I proceed here?
>> Minimal example:
>> % test character entity failure.
>> \startxmlsetups demo:entity
>> \xmlsetsetup{#1}{root}{demo:entity:*}
>> \stopxmlsetups
>> \xmlregisterdocumentsetup{demo}{demo:entity}
>> \startxmlsetups demo:entity:root
>> \blank Start test:\crlf
>> root:  = ""\crlf
>> root:  = "&\letterhash 038;”\crlf % &\#038; produces the same
>> End test\blank
>> \stopxmlsetups
> 
> you are tex mode there so & == &
> 
> 
>> \startbuffer[demo]
>> 
>> \stopbuffer
>> \starttext
>> \currentdate-\currenttime\quad\ConTeXt-version=\contextversion\blank
>> {\bf Testing use of character entities}\blank
>> These should produce the same result: \type{} and \type{}\blank
>> \xmlprocessbuffer{demo}{demo}{}\blank
>> \stoptext
>> dr. Hans van der Meer
>> ___
>> 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
>> ___
> 
> 
> -- 
> 
> -
>  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
___

[NTG-context] luatex 1.08

2018-04-19 Thread Hans Hagen

Hi,

We released luatex 1.08 beta which uses lua 5.3 and will be default on 
the garden as soon as mojca moves the bins to the right place. We don't 
expect many issues as we tested it for quite a while.


The context current works on both 1.07 and 1.08 but of course at some 
point the beta might evolve towards using 1.08 features. We're now 
stepping up to 1.09 for ourselves and will probably release that around 
the ctx meeting, which then leads to 1.10 for tex live 2019.


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
___

[NTG-context] beta

2018-04-19 Thread Hans Hagen

Also in upcoming:

The auto variants \NA \BA will loop over colors:

\setuptabulate[foregroundcolor=white]
\setuptabulate[backgroundcolor:1=darkred]
\setuptabulate[backgroundcolor:2=darkgreen]
\setuptabulate[backgroundcolor:3=darkblue]

\starttabulate[|||]
\BA foo foo foo \BC bar bar bar bar \NC \NR
\BA foo foo foo \BC bar bar bar bar \NC \NR
\BA foo foo foo \BC bar bar bar bar \NC \NR
\BA foo foo foo \BC bar bar bar bar \NC \NR
\BA foo foo foo \BC bar bar bar bar \NC \NR
\BA foo foo foo \BC bar bar bar bar \NC \NR
\stoptabulate

--

-
  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
___

[NTG-context] Luatex 1.07.0 announcement

2018-04-19 Thread luigi scarso
==
LuaTeX 1.07 2018-01-17
==

(1) This release brings Lua 5.3 to LuaTeX. We have tested an experimental
version
for a few months and not encountered issues.

(2) If you use Lua 5.3 you should be aware of a few changes in the language
and
its implementation. Numbers are now either integers or floats but are cast
automatically.

(3) In some cases (e.g. string.format) there is a more strict check. A
float always
has a decimal appended when serialized, so 1 becomes 1.0 as string.

(4) We keep supporting the bit32 library on top of the new bit operators.
Be aware
of the fact that currently LuajitTeX does not have these operators.

(5) Performance of LuaTeX with Lua 5.3 can be slightly better than with 5.2
but this
really depends on your usage of Lua. In practice there should be no
slowdown.

(6) We are aware of possible substantial slowdown of string.format
depending on the
platform and compiler. This depends on Lua too and will be resolved in due
time.

(7) If you want to test with Lua 5.3 then have to build LuaTeX with
--lua53. Because
ConTeXt will switch to 5.3 after this release there will be binaries
available at the
ConTeXt garden.

(8) The 2018 TeXlive distribution will ship with LuaTeX using Lua 5.2 but
there will
likely be an additional binary LuaTeX53 available.

(9) From 2019 TeXlive will ship with LuaTeX and Lua 5.3 as default. We
provide --lua52
as build flag for a while. By then we might be looking at Lua 5.4 already.

(10) There are the usual patches and cleanups and a few small additions
(mentioned
in the manual) but there have been no fundamental changes in the API (apart
from
removing depricated and undocumented functionality).



The LuaTeX team
___
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] goto reference

2018-04-19 Thread Taco Hoekwater
Hi Hans (van der Meer),

Not sure if the next would be useful to you, but I want to mention anyway
that you can open a local external pdf file to a specific destination, 
using a syntax like this:

  \goto{localfile.pdf::externalreference}

Where “externalreference” is a defined destination in the external
pdf. Since my own generated pdfs tend to have special “page-” 
destinations, I can usually access my own external files with:

   \goto{myfile.pdf::page-5}

I believe this was intended to be used with \usereferences in mkii,
but it works just fine without the \usereferences call in mkiv. Mkiv
does not do any checking on the target validity, though.

This generates a /GoToR link instead of /URI, and that also means
that AR does not open the document in your browser (which is wildly 
annoying) :)

Looking at the lua code in lpdf-ano, it hints that it should be possible
to feed an actual page number in, but if that is true, then I have no idea
what the syntax should be … or it could be a case of NIY?


A quick and dirty way to create external page destinations is:

  \setupinteraction[state=start]
  \setuplayout[top=1sp,topdistance=1sp]
  \setuptoptexts[{\contentreference[page-\the\pageno]{}}]

Hope this helps,

Taco



> On 19 Apr 2018, at 10:55, Hans van der Meer  wrote:
> 
> Thanks, for verifying the behaviour. A pity it does not work as I hoped for, 
> but it is not disastrous, of course :-)
> 
> dr. Hans van der Meer
> 
> 
>> On 19 Apr 2018, at 10:12, Otared Kavian  wrote:
>> 
>> Hi,
>> 
>> I tested your example (after giving some local paths…) and the behaviour as 
>> follows:
>> (1) The full URL path with http:// opens the file at the desired page
>> (2) The full ftp:// local path opens my file at page 1
>> (3) The local path file:// to afile sitting in the same directory does not 
>> work at all.
>> 
>> I just saw that John Grasty gave an explanation from the specifications of 
>> Adobe: maybe that is the reason.
>> 
>> Best regards: OK
>> 
>>> On 19 Apr 2018, at 09:37, Hans van der Meer  wrote:
>>> 
>>> The goto to the internet as given by Wolfgang works here too, but other 
>>> configurations do not. Please ascertain my observations from the test given 
>>> below. You should replace the absolute path by your own, of course. Three 
>>> cases are programmed:
>>> (1) Wolfgang’s
>>> (2) full path ftp:// access opens file but at last page opened
>>> (3) local path does not open and brings up an Alert
>>> Run from TeXShop and also directly in Preview and Adobe Reader with the 
>>> same results.
>>> 
>>> Thanks in advance.
>>> 
>>> dr. Hans van der Meer
>>> 
>>> 
>>> \starttext
>>> \currentdate-\currenttime\quad\ConTeXt-version=\contextversion\blank
>>> Testing directly from \ConTeXt:\blank
>>> \setupinteraction[state=start,color=blue,style=italic]
>>> \goto{Beginners manual called with http:// opens in browser as 
>>> expected}[url(http://pragma-ade.com/general/manuals/mp-cb-en.pdf\letterhash 
>>> page=50)]\blank
>>> file test.pdf sits in the current directory.\blank
>>> \goto{click test.pdf page10 with ftp:///Users/... (full path given) opens 
>>> at last page opened not at page 10 in Apple's 
>>> Preview}[url(file:///Users/hansm/TeX/Test-tex/gotopdf/test.pdf\letterhash 
>>> page=10)]{\quad\bf Put your own path here!}\blank
>>> \goto{click test.pdf page10 with ftp://test.pdf (local path)) does not 
>>> open}[url(file://test.pdf\letterhash page=10)]\blank
>>> \stoptext
>>> 
>>> 
 On 19 Apr 2018, at 02:07, Otared Kavian  wrote:
 
 Hi,
 
 On my Mac, running MacOS High Sierra 10.13.5 Beta, the example given by 
 Wolfgang works fine: clicking on the link created by ConTeXt, from within 
 TeXShop, Safari opens that document on the desired page, that is the 
 physical page 58.
 
 Best regards: OK
 
> On 18 Apr 2018, at 23:04, Hans van der Meer  wrote:
> 
> Thanks. But this seems not to work on my Macintosh. Not in Preview, not 
> in Adobe Reader. 
> Typesetting resulted in valid-url.pdf#page=55 but the document opens at 
> the last page remebered by the application. Are there other Macintosh 
> users who can confirm this is not working on those machines or should I 
> do something else?
> 
> dr. Hans van der Meer
> 
> 
>> On 18 Apr 2018, at 21:58, Wolfgang Schuster 
>>  wrote:
>> 
>> For documents on the web you can add #page= to the url.
>> 
>> \setupinteraction[state=start]
>> 
>> \starttext
>> \goto{Beginners 
>> manual}[url(http://pragma-ade.com/general/manuals/mp-cb-en.pdf\letterhash
>>  page=58)]
>> \stoptext
>> 
>> Wolfgang
>>> Hans van der Meer 18. April 2018 um 21:12
>>> I have the following question about referencing.
>>> 
>>> With \goto{typeset_the_text}[url(file://a_file_location_to_goto.pdf)] I 
>>> can 

Re: [NTG-context] goto reference

2018-04-19 Thread Hans van der Meer
Thanks, for verifying the behaviour. A pity it does not work as I hoped for, 
but it is not disastrous, of course :-)

dr. Hans van der Meer


> On 19 Apr 2018, at 10:12, Otared Kavian  wrote:
> 
> Hi,
> 
> I tested your example (after giving some local paths…) and the behaviour as 
> follows:
> (1) The full URL path with http:// opens the file at the desired page
> (2) The full ftp:// local path opens my file at page 1
> (3) The local path file:// to afile sitting in the same directory does not 
> work at all.
> 
> I just saw that John Grasty gave an explanation from the specifications of 
> Adobe: maybe that is the reason.
> 
> Best regards: OK
> 
>> On 19 Apr 2018, at 09:37, Hans van der Meer > > wrote:
>> 
>> The goto to the internet as given by Wolfgang works here too, but other 
>> configurations do not. Please ascertain my observations from the test given 
>> below. You should replace the absolute path by your own, of course. Three 
>> cases are programmed:
>> (1) Wolfgang’s
>> (2) full path ftp:// access opens file but at last page opened
>> (3) local path does not open and brings up an Alert
>> Run from TeXShop and also directly in Preview and Adobe Reader with the same 
>> results.
>> 
>> Thanks in advance.
>> 
>> dr. Hans van der Meer
>> 
>> 
>> \starttext
>> \currentdate-\currenttime\quad\ConTeXt-version=\contextversion\blank
>> Testing directly from \ConTeXt:\blank
>> \setupinteraction[state=start,color=blue,style=italic]
>> \goto{Beginners manual called with http:// opens in browser as 
>> expected}[url(http://pragma-ade.com/general/manuals/mp-cb-en.pdf\letterhash 
>>  
>> page=50)]\blank
>> file test.pdf sits in the current directory.\blank
>> \goto{click test.pdf page10 with ftp:///Users/ ... (full path 
>> given) opens at last page opened not at page 10 in Apple's 
>> Preview}[url(file:///Users/hansm/TeX/Test-tex/gotopdf/test.pdf\letterhash 
>>  
>> page=10)]{\quad\bf Put your own path here!}\blank
>> \goto{click test.pdf page10 with ftp://test.pdf  (local 
>> path)) does not open}[url(file://test.pdf\letterhash 
>>  page=10)]\blank
>> \stoptext
>> 
>> 
>>> On 19 Apr 2018, at 02:07, Otared Kavian >> > wrote:
>>> 
>>> Hi,
>>> 
>>> On my Mac, running MacOS High Sierra 10.13.5 Beta, the example given by 
>>> Wolfgang works fine: clicking on the link created by ConTeXt, from within 
>>> TeXShop, Safari opens that document on the desired page, that is the 
>>> physical page 58.
>>> 
>>> Best regards: OK
>>> 
 On 18 Apr 2018, at 23:04, Hans van der Meer > wrote:
 
 Thanks. But this seems not to work on my Macintosh. Not in Preview, not in 
 Adobe Reader. 
 Typesetting resulted in valid-url.pdf#page=55 but the document opens at 
 the last page remebered by the application. Are there other Macintosh 
 users who can confirm this is not working on those machines or should I do 
 something else?
 
 dr. Hans van der Meer
 
 
> On 18 Apr 2018, at 21:58, Wolfgang Schuster  > wrote:
> 
> For documents on the web you can add #page= to the url.
> 
> \setupinteraction[state=start]
> 
> \starttext
> \goto{Beginners 
> manual}[url(http://pragma-ade.com/general/manuals/mp-cb-en.pdf\letterhash 
>  page=58)]
> \stoptext
> 
> Wolfgang
>> Hans van der Meer  18. April 2018 um 21:12
>> I have the following question about referencing.
>> 
>> With \goto{typeset_the_text}[url(file://a_file_location_to_goto 
>> .pdf)] I can open a pdf from inside the 
>> document that has been typeset. It would, however, be nice if I could 
>> further specify on which page of the pdf to open. Is this possible? Or 
>> is this a wish not to be fulfilled?
>> 
>> dr. Hans van der Meer
>> 
>> 
>> ___
>> 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] problem with character entities in XML processing

2018-04-19 Thread Hans van der Meer
The following use of character entities  aborts in ConTeXt. That is of course because the # is seen as a parameter. Changing this to &\#xxx; or &\letterhash xxx; typesets  as is, but that is not the intention, because an ampersand should appear. So, how do I proceed here?Minimal example:% test character entity failure.\startxmlsetups demo:entity	\xmlsetsetup{#1}{root}{demo:entity:*}\stopxmlsetups\xmlregisterdocumentsetup{demo}{demo:entity}\startxmlsetups demo:entity:root	\blank Start test:\crlf	root:  = ""\crlf	root:  = "&\letterhash 038;”\crlf % &\#038; produces the same	End test\blank\stopxmlsetups\startbuffer[demo]\stopbuffer\starttext\currentdate-\currenttime\quad\ConTeXt-version=\contextversion\blank{\bf Testing use of character entities}\blankThese should produce the same result: \type{} and \type{}\blank\xmlprocessbuffer{demo}{demo}{}\blank\stoptext

xml-entity.pdf
Description: Adobe PDF document

dr. Hans van der Meer

___
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] goto reference

2018-04-19 Thread Otared Kavian
Hi,

I tested your example (after giving some local paths…) and the behaviour as 
follows:
(1) The full URL path with http:// opens the file at the desired page
(2) The full ftp:// local path opens my file at page 1
(3) The local path file:// to afile sitting in the same directory does not work 
at all.

I just saw that John Grasty gave an explanation from the specifications of 
Adobe: maybe that is the reason.

Best regards: OK

> On 19 Apr 2018, at 09:37, Hans van der Meer  wrote:
> 
> The goto to the internet as given by Wolfgang works here too, but other 
> configurations do not. Please ascertain my observations from the test given 
> below. You should replace the absolute path by your own, of course. Three 
> cases are programmed:
> (1) Wolfgang’s
> (2) full path ftp:// access opens file but at last page opened
> (3) local path does not open and brings up an Alert
> Run from TeXShop and also directly in Preview and Adobe Reader with the same 
> results.
> 
> Thanks in advance.
> 
> dr. Hans van der Meer
> 
> 
> \starttext
> \currentdate-\currenttime\quad\ConTeXt-version=\contextversion\blank
> Testing directly from \ConTeXt:\blank
> \setupinteraction[state=start,color=blue,style=italic]
> \goto{Beginners manual called with http:// opens in browser as 
> expected}[url(http://pragma-ade.com/general/manuals/mp-cb-en.pdf\letterhash 
>  
> page=50)]\blank
> file test.pdf sits in the current directory.\blank
> \goto{click test.pdf page10 with ftp:///Users/ ... (full path 
> given) opens at last page opened not at page 10 in Apple's 
> Preview}[url(file:///Users/hansm/TeX/Test-tex/gotopdf/test.pdf\letterhash 
>  
> page=10)]{\quad\bf Put your own path here!}\blank
> \goto{click test.pdf page10 with ftp://test.pdf  (local 
> path)) does not open}[url(file://test.pdf\letterhash 
>  page=10)]\blank
> \stoptext
> 
> 
>> On 19 Apr 2018, at 02:07, Otared Kavian > > wrote:
>> 
>> Hi,
>> 
>> On my Mac, running MacOS High Sierra 10.13.5 Beta, the example given by 
>> Wolfgang works fine: clicking on the link created by ConTeXt, from within 
>> TeXShop, Safari opens that document on the desired page, that is the 
>> physical page 58.
>> 
>> Best regards: OK
>> 
>>> On 18 Apr 2018, at 23:04, Hans van der Meer >> > wrote:
>>> 
>>> Thanks. But this seems not to work on my Macintosh. Not in Preview, not in 
>>> Adobe Reader. 
>>> Typesetting resulted in valid-url.pdf#page=55 but the document opens at the 
>>> last page remebered by the application. Are there other Macintosh users who 
>>> can confirm this is not working on those machines or should I do something 
>>> else?
>>> 
>>> dr. Hans van der Meer
>>> 
>>> 
 On 18 Apr 2018, at 21:58, Wolfgang Schuster > wrote:
 
 For documents on the web you can add #page= to the url.
 
 \setupinteraction[state=start]
 
 \starttext
 \goto{Beginners 
 manual}[url(http://pragma-ade.com/general/manuals/mp-cb-en.pdf\letterhash 
  page=58)]
 \stoptext
 
 Wolfgang
> Hans van der Meer  18. April 2018 um 21:12
> I have the following question about referencing.
> 
> With \goto{typeset_the_text}[url(file://a_file_location_to_goto 
> .pdf)] I can open a pdf from inside the 
> document that has been typeset. It would, however, be nice if I could 
> further specify on which page of the pdf to open. Is this possible? Or is 
> this a wish not to be fulfilled?
> 
> dr. Hans van der Meer
> 
> 
> ___
> 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  : 

Re: [NTG-context] goto reference

2018-04-19 Thread John Grasty
Hello all,

Adobe seems to indicate (at least with Adobe Reader/Acrobat) that this isn't 
possible:

"If you use URLs containing local hard drive addresses (c:\folder\), you cannot 
link to page numbers or set destinations."

[https://helpx.adobe.com/acrobat/kb/link-html-pdf-page-acrobat.html]

Sorry to not be of more help,
John Grasty

> On 19 Apr 2018, at 09:37, Hans van der Meer  wrote:
> 
> The goto to the internet as given by Wolfgang works here too, but other 
> configurations do not. Please ascertain my observations from the test given 
> below. You should replace the absolute path by your own, of course. Three 
> cases are programmed:
> (1) Wolfgang’s
> (2) full path ftp:// access opens file but at last page opened
> (3) local path does not open and brings up an Alert
> Run from TeXShop and also directly in Preview and Adobe Reader with the same 
> results.
> 
> Thanks in advance.
> 
> dr. Hans van der Meer
> 
> 
> \starttext
> \currentdate-\currenttime\quad\ConTeXt-version=\contextversion\blank
> Testing directly from \ConTeXt:\blank
> \setupinteraction[state=start,color=blue,style=italic]
> \goto{Beginners manual called with http:// opens in browser as 
> expected}[url(http://pragma-ade.com/general/manuals/mp-cb-en.pdf\letterhash 
> page=50)]\blank
> file test.pdf sits in the current directory.\blank
> \goto{click test.pdf page10 with ftp:///Users/... (full path given) opens at 
> last page opened not at page 10 in Apple's 
> Preview}[url(file:///Users/hansm/TeX/Test-tex/gotopdf/test.pdf\letterhash 
> page=10)]{\quad\bf Put your own path here!}\blank
> \goto{click test.pdf page10 with ftp://test.pdf (local path)) does not 
> open}[url(file://test.pdf\letterhash page=10)]\blank
> \stoptext
> 
> 
>> On 19 Apr 2018, at 02:07, Otared Kavian  wrote:
>> 
>> Hi,
>> 
>> On my Mac, running MacOS High Sierra 10.13.5 Beta, the example given by 
>> Wolfgang works fine: clicking on the link created by ConTeXt, from within 
>> TeXShop, Safari opens that document on the desired page, that is the 
>> physical page 58.
>> 
>> Best regards: OK
>> 
>>> On 18 Apr 2018, at 23:04, Hans van der Meer  wrote:
>>> 
>>> Thanks. But this seems not to work on my Macintosh. Not in Preview, not in 
>>> Adobe Reader. 
>>> Typesetting resulted in valid-url.pdf#page=55 but the document opens at the 
>>> last page remebered by the application. Are there other Macintosh users who 
>>> can confirm this is not working on those machines or should I do something 
>>> else?
>>> 
>>> dr. Hans van der Meer
>>> 
>>> 
 On 18 Apr 2018, at 21:58, Wolfgang Schuster  
 wrote:
 
 For documents on the web you can add #page= to the url.
 
 \setupinteraction[state=start]
 
 \starttext
 \goto{Beginners 
 manual}[url(http://pragma-ade.com/general/manuals/mp-cb-en.pdf\letterhash 
 page=58)]
 \stoptext
 
 Wolfgang
> Hans van der Meer 18. April 2018 um 21:12
> I have the following question about referencing.
> 
> With \goto{typeset_the_text}[url(file://a_file_location_to_goto.pdf)] I 
> can open a pdf from inside the document that has been typeset. It would, 
> however, be nice if I could further specify on which page of the pdf to 
> open. Is this possible? Or is this a wish not to be fulfilled?
> 
> dr. Hans van der Meer
> 
> 
> ___
> 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
 ___
>>> 
>>> ___
>>> 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] goto reference

2018-04-19 Thread Hans van der Meer
The goto to the internet as given by Wolfgang works here too, but other 
configurations do not. Please ascertain my observations from the test given 
below. You should replace the absolute path by your own, of course. Three cases 
are programmed:
(1) Wolfgang’s
(2) full path ftp:// access opens file but at last page opened
(3) local path does not open and brings up an Alert
Run from TeXShop and also directly in Preview and Adobe Reader with the same 
results.

Thanks in advance.

dr. Hans van der Meer


\starttext
\currentdate-\currenttime\quad\ConTeXt-version=\contextversion\blank
Testing directly from \ConTeXt:\blank
\setupinteraction[state=start,color=blue,style=italic]
\goto{Beginners manual called with http:// opens in browser as 
expected}[url(http://pragma-ade.com/general/manuals/mp-cb-en.pdf\letterhash 
page=50)]\blank
file test.pdf sits in the current directory.\blank
\goto{click test.pdf page10 with ftp:///Users/... (full path given) opens at 
last page opened not at page 10 in Apple's 
Preview}[url(file:///Users/hansm/TeX/Test-tex/gotopdf/test.pdf\letterhash 
page=10)]{\quad\bf Put your own path here!}\blank
\goto{click test.pdf page10 with ftp://test.pdf (local path)) does not 
open}[url(file://test.pdf\letterhash page=10)]\blank
\stoptext


> On 19 Apr 2018, at 02:07, Otared Kavian  wrote:
> 
> Hi,
> 
> On my Mac, running MacOS High Sierra 10.13.5 Beta, the example given by 
> Wolfgang works fine: clicking on the link created by ConTeXt, from within 
> TeXShop, Safari opens that document on the desired page, that is the physical 
> page 58.
> 
> Best regards: OK
> 
>> On 18 Apr 2018, at 23:04, Hans van der Meer > > wrote:
>> 
>> Thanks. But this seems not to work on my Macintosh. Not in Preview, not in 
>> Adobe Reader. 
>> Typesetting resulted in valid-url.pdf#page=55 but the document opens at the 
>> last page remebered by the application. Are there other Macintosh users who 
>> can confirm this is not working on those machines or should I do something 
>> else?
>> 
>> dr. Hans van der Meer
>> 
>> 
>>> On 18 Apr 2018, at 21:58, Wolfgang Schuster >> > wrote:
>>> 
>>> For documents on the web you can add #page= to the url.
>>> 
>>> \setupinteraction[state=start]
>>> 
>>> \starttext
>>> \goto{Beginners 
>>> manual}[url(http://pragma-ade.com/general/manuals/mp-cb-en.pdf\letterhash 
>>>  page=58)]
>>> \stoptext
>>> 
>>> Wolfgang
 Hans van der Meer  18. April 2018 um 21:12
 I have the following question about referencing.
 
 With \goto{typeset_the_text}[url(file://a_file_location_to_goto 
 .pdf)] I can open a pdf from inside the 
 document that has been typeset. It would, however, be nice if I could 
 further specify on which page of the  pdf to open. Is this possible? Or is 
 this a wish not to be fulfilled?
 
 dr. Hans van der Meer
 
 
 ___
 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 
>>> ___
>> 
>> ___
>> 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