ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Backgrounds has changed in latest lmtx
@ 2022-10-21  9:32 Thomas A. Schmitz via ntg-context
  2022-10-21 15:08 ` Otared Kavian via ntg-context
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Thomas A. Schmitz via ntg-context @ 2022-10-21  9:32 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Thomas A. Schmitz

Hi everybody,

With the latest lmtx, my page backgrounds don’t work any more. I think Otared mentioned that the simpleslides module is having problems. I’m trying to figure out what is happening, but I don’t see any warnings or errors, just unexpected results (which is not a good thing). I’m starting with the fundamentals. Here is a fairly minimal example: compile with context --luatex to see the expected result and with lmtx to see what is wrong.

All best

Thomas

\setuppapersize[A6,landscape][A6,landscape]

\setuplayout[backspace=1cm,
             topspace=0.4cm,
             marking=off,
             width=13cm,
             height=9.7cm,
             header=0.6cm,
             footer=0cm,
]

\startreusableMPgraphic{card}
StartPage ;
save p ; path p[] ;
p[0] = ulcorner Page -- urcorner Page ;
p[0] := p[0] shifted (0, -0.97cm) ;
for i = 1 upto 18 :
	p[i] = p[i-1] shifted (0, -14.42pt) ;
	draw p[i] withcolor (0.5,0.5,0.5) ;
endfor ;
pickup pencircle scaled 2pt ;
draw p[0] withcolor red ;
StopPage ;
\stopreusableMPgraphic

\defineoverlay[Card][\reuseMPgraphic{card}]

\setupbackgrounds[page]
		 [state=repeat,
		  background={Card}]

\starttext

Test

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

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Backgrounds has changed in latest lmtx
  2022-10-21  9:32 Backgrounds has changed in latest lmtx Thomas A. Schmitz via ntg-context
@ 2022-10-21 15:08 ` Otared Kavian via ntg-context
  2022-10-23 13:20 ` Thomas A. Schmitz via ntg-context
       [not found] ` <f428cfc5-2a0f-8214-711e-1cf900891578@freedom.nl>
  2 siblings, 0 replies; 12+ messages in thread
From: Otared Kavian via ntg-context @ 2022-10-21 15:08 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Otared Kavian

Hi Thomas,

Your example does indeed show the issue I had reported on with Simpleslides: the backgrounds of the slides are not as expected.
So it seems that beginning with version 2022-10-15 something has changed with Metapost or the background mechanism.

Best regards: Otared

> On 21 Oct 2022, at 11:32, Thomas A. Schmitz via ntg-context <ntg-context@ntg.nl> wrote:
> 
> Hi everybody,
> 
> With the latest lmtx, my page backgrounds don’t work any more. I think Otared mentioned that the simpleslides module is having problems. I’m trying to figure out what is happening, but I don’t see any warnings or errors, just unexpected results (which is not a good thing). I’m starting with the fundamentals. Here is a fairly minimal example: compile with context --luatex to see the expected result and with lmtx to see what is wrong.
> 
> All best
> 
> Thomas
> 
> \setuppapersize[A6,landscape][A6,landscape]
> 
> \setuplayout[backspace=1cm,
>             topspace=0.4cm,
>             marking=off,
>             width=13cm,
>             height=9.7cm,
>             header=0.6cm,
>             footer=0cm,
> ]
> 
> \startreusableMPgraphic{card}
> StartPage ;
> save p ; path p[] ;
> p[0] = ulcorner Page -- urcorner Page ;
> p[0] := p[0] shifted (0, -0.97cm) ;
> for i = 1 upto 18 :
> 	p[i] = p[i-1] shifted (0, -14.42pt) ;
> 	draw p[i] withcolor (0.5,0.5,0.5) ;
> endfor ;
> pickup pencircle scaled 2pt ;
> draw p[0] withcolor red ;
> StopPage ;
> \stopreusableMPgraphic
> 
> \defineoverlay[Card][\reuseMPgraphic{card}]
> 
> \setupbackgrounds[page]
> 		 [state=repeat,
> 		  background={Card}]
> 
> \starttext
> 
> Test
> 
> \stoptext
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : https://contextgarden.net
> ___________________________________________________________________________________

Otared Kavian
e-mail: otared@gmail.com
Phone: +33 6 88 26 70 95



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

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Backgrounds has changed in latest lmtx
  2022-10-21  9:32 Backgrounds has changed in latest lmtx Thomas A. Schmitz via ntg-context
  2022-10-21 15:08 ` Otared Kavian via ntg-context
@ 2022-10-23 13:20 ` Thomas A. Schmitz via ntg-context
       [not found] ` <f428cfc5-2a0f-8214-711e-1cf900891578@freedom.nl>
  2 siblings, 0 replies; 12+ messages in thread
From: Thomas A. Schmitz via ntg-context @ 2022-10-23 13:20 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Thomas A. Schmitz

Here comes another one that works with the switch --luatex but not in lmtx:

\setuppapersize[A6,landscape][A6,landscape]

\startuseMPgraphic{ornament}
StartPage ;

save diff ;numeric diff;
diff = .3cm ;

save w; numeric w;
w = xpart (lrcorner Field[Text][Text] - llcorner Field[Text][Text]) - diff ;

save factor; numeric factor;
if NOfPages <= 1 :
   factor = w ;
else :
   factor = w/(NOfPages - 1) ;
fi ;

save p; path p ;
p = unitsquare xyscaled (diff,diff)
                shifted (xpart llcorner Field[Text][Text],0.85cm) ;

for i = 1 upto NOfPages:
   if RealPageNumber = i:
     fill p xyscaled (0,2) shifted ( (i-1)*factor,-diff-0.85cm)
          withcolor blue ;
   else :
     fill p shifted ( (i-1)*factor, 0)
          withcolor red ;
   fi ;
endfor ;
StopPage ;
\stopuseMPgraphic

\defineoverlay
   [Ornament]
   [\useMPgraphic{ornament}]

\setupbackgrounds[page]
		 [state=repeat,
		  background={Ornament}]

\starttext

\dorecurse {10} {Test \page}

\stoptext

All best

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

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Backgrounds has changed in latest lmtx
       [not found]     ` <c906a418-5e35-ad86-747f-5ee1676be51a@freedom.nl>
@ 2022-10-23 14:00       ` Thomas A. Schmitz via ntg-context
  2022-10-23 14:21         ` Mikael Sundqvist via ntg-context
  0 siblings, 1 reply; 12+ messages in thread
From: Thomas A. Schmitz via ntg-context @ 2022-10-23 14:00 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Thomas A. Schmitz

On 10/23/22 15:51, Hans Hagen wrote:
> there was another fix yesterday (already uploaded)
> 
> Hans

Ah sorry, I missed that! It runs with my test file now, thanks! But my 
real file dies with this error:

fatal lua error:

         registered function call [1141]: 
...x/tex/texmf-context/tex/context/fonts/mkiv/xits-math.lfg:61: attempt 
to index a nil value (global 'presets')
stack traceback:
         ...x/tex/texmf-context/tex/context/fonts/mkiv/xits-math.lfg:61: 
in main chunk
         [C]: in function 'dofile'
         ...mtx/tex/texmf-context/tex/context/base/mkiv/good-ini.lua:78: 
in function <...mtx/tex/texmf-context/tex/context/base/mkiv/good-ini.lua:68>
         (...tail calls...)

mtx-context     | fatal error: return code: 1

which appears to be related to the new math code?

All best

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

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Backgrounds has changed in latest lmtx
  2022-10-23 14:00       ` Thomas A. Schmitz via ntg-context
@ 2022-10-23 14:21         ` Mikael Sundqvist via ntg-context
  2022-10-23 14:30           ` Thomas A. Schmitz via ntg-context
  0 siblings, 1 reply; 12+ messages in thread
From: Mikael Sundqvist via ntg-context @ 2022-10-23 14:21 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Mikael Sundqvist

On Sun, Oct 23, 2022 at 4:00 PM Thomas A. Schmitz via ntg-context
<ntg-context@ntg.nl> wrote:
>
> On 10/23/22 15:51, Hans Hagen wrote:
> > there was another fix yesterday (already uploaded)
> >
> > Hans
>
> Ah sorry, I missed that! It runs with my test file now, thanks! But my
> real file dies with this error:
>
> fatal lua error:
>
>          registered function call [1141]:
> ...x/tex/texmf-context/tex/context/fonts/mkiv/xits-math.lfg:61: attempt
> to index a nil value (global 'presets')
> stack traceback:
>          ...x/tex/texmf-context/tex/context/fonts/mkiv/xits-math.lfg:61:
> in main chunk
>          [C]: in function 'dofile'
>          ...mtx/tex/texmf-context/tex/context/base/mkiv/good-ini.lua:78:
> in function <...mtx/tex/texmf-context/tex/context/base/mkiv/good-ini.lua:68>
>          (...tail calls...)
>
> mtx-context     | fatal error: return code: 1
>
> which appears to be related to the new math code?
>
> All best
>
> Thomas

It works here. Are you sure that you updated to the latest? (There was
a few updates lately)

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

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Backgrounds has changed in latest lmtx
  2022-10-23 14:21         ` Mikael Sundqvist via ntg-context
@ 2022-10-23 14:30           ` Thomas A. Schmitz via ntg-context
  2022-10-23 19:34             ` Otared Kavian via ntg-context
  0 siblings, 1 reply; 12+ messages in thread
From: Thomas A. Schmitz via ntg-context @ 2022-10-23 14:30 UTC (permalink / raw)
  To: Mikael Sundqvist via ntg-context; +Cc: Thomas A. Schmitz

On 10/23/22 16:21, Mikael Sundqvist via ntg-context wrote:
> It works here. Are you sure that you updated to the latest? (There was
> a few updates lately)
> 
> /Mikael

I have just update to

current version: 2022.10.22 11:23

so I think that's the latest. Minimal example:

\definefontfamily [test] [serif] [Times]
\definefontfamily [test] [sans]  [Helvetica]
\definefontfamily [test] [mono]  [DejaVu Sans Mono] 
[rscale=0.9,features=none]
\definefontfamily [test] [math]  [XITS Math]

\starttext

Test

\stoptext

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

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Backgrounds has changed in latest lmtx
  2022-10-23 14:30           ` Thomas A. Schmitz via ntg-context
@ 2022-10-23 19:34             ` Otared Kavian via ntg-context
  2022-10-23 19:52               ` Thomas A. Schmitz via ntg-context
  0 siblings, 1 reply; 12+ messages in thread
From: Otared Kavian via ntg-context @ 2022-10-23 19:34 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Otared Kavian

Hi Thomas,

Both your examples typeset fine with my installation of LMTX (version 2022.10.22 11:23) on MacOS 11.7.
(Indeed you previous file test file reporting the background issue is typeset fine also).

Best regards : Otared

> On 23 Oct 2022, at 16:30, Thomas A. Schmitz via ntg-context <ntg-context@ntg.nl> wrote:
> 
> On 10/23/22 16:21, Mikael Sundqvist via ntg-context wrote:
>> It works here. Are you sure that you updated to the latest? (There was
>> a few updates lately)
>> /Mikael
> 
> I have just update to
> 
> current version: 2022.10.22 11:23
> 
> so I think that's the latest. Minimal example:
> 
> \definefontfamily [test] [serif] [Times]
> \definefontfamily [test] [sans]  [Helvetica]
> \definefontfamily [test] [mono]  [DejaVu Sans Mono] [rscale=0.9,features=none]
> \definefontfamily [test] [math]  [XITS Math]
> 
> \starttext
> 
> Test
> 
> \stoptext
> 
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : https://contextgarden.net
> ___________________________________________________________________________________

Otared Kavian
e-mail: otared@gmail.com
Phone: +33 6 88 26 70 95



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

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Backgrounds has changed in latest lmtx
  2022-10-23 19:34             ` Otared Kavian via ntg-context
@ 2022-10-23 19:52               ` Thomas A. Schmitz via ntg-context
  2022-10-23 19:54                 ` Leah Neukirchen via ntg-context
  2022-10-24 18:30                 ` Otared Kavian via ntg-context
  0 siblings, 2 replies; 12+ messages in thread
From: Thomas A. Schmitz via ntg-context @ 2022-10-23 19:52 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Thomas A. Schmitz

On 10/23/22 21:34, Otared Kavian via ntg-context wrote:
> Hi Thomas,
> 
> Both your examples typeset fine with my installation of LMTX (version 2022.10.22 11:23) on MacOS 11.7.
> (Indeed you previous file test file reporting the background issue is typeset fine also).
> 
> Best regards : Otared

Thanks, Otared - that's bizarre. I just tried both on linux64 and macos 
(12.6, arm): run install.sh, reload font cache and run context without 
the luatex switch on the minimal example with the XITS Math font, and on 
both systems, I get the error that I have sent this afternoon. Can you 
try after rebuilding the font cache?

Thanks

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

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Backgrounds has changed in latest lmtx
  2022-10-23 19:52               ` Thomas A. Schmitz via ntg-context
@ 2022-10-23 19:54                 ` Leah Neukirchen via ntg-context
  2022-10-23 20:10                   ` Thomas A. Schmitz via ntg-context
  2022-10-24 18:30                 ` Otared Kavian via ntg-context
  1 sibling, 1 reply; 12+ messages in thread
From: Leah Neukirchen via ntg-context @ 2022-10-23 19:54 UTC (permalink / raw)
  To: ntg-context; +Cc: Leah Neukirchen, Thomas A. Schmitz

"Thomas A. Schmitz via ntg-context" <ntg-context@ntg.nl> writes:

> On 10/23/22 21:34, Otared Kavian via ntg-context wrote:
>> Hi Thomas,
>> Both your examples typeset fine with my installation of LMTX
>> (version 2022.10.22 11:23) on MacOS 11.7.
>> (Indeed you previous file test file reporting the background issue
>> is typeset fine also).
>> Best regards : Otared
>
> Thanks, Otared - that's bizarre. I just tried both on linux64 and
> macos (12.6, arm): run install.sh, reload font cache and run context
> without the luatex switch on the minimal example with the XITS Math
> font, and on both systems, I get the error that I have sent this
> afternoon. Can you try after rebuilding the font cache?

FWIW I get the error too on linux64.

-- 
Leah Neukirchen  <leah@vuxu.org>  https://leahneukirchen.org/
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Backgrounds has changed in latest lmtx
  2022-10-23 19:54                 ` Leah Neukirchen via ntg-context
@ 2022-10-23 20:10                   ` Thomas A. Schmitz via ntg-context
  2022-10-23 21:21                     ` Hans Hagen via ntg-context
  0 siblings, 1 reply; 12+ messages in thread
From: Thomas A. Schmitz via ntg-context @ 2022-10-23 20:10 UTC (permalink / raw)
  To: ntg-context; +Cc: Thomas A. Schmitz

On 10/23/22 21:54, Leah Neukirchen wrote:
> FWIW I get the error too on linux64.

OK, found it. File 
lmtx/tex/texmf-context/tex/context/fonts/mkiv/xits-math.lfg

is missing the lines

local common  = fonts.goodies.load("common-math.lfg")
local presets = common.mathematics.tweaks.presets

at the beginning of the file. However, math is typeset in Latin Modern. 
But that's for the math people to see...

All best

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

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Backgrounds has changed in latest lmtx
  2022-10-23 20:10                   ` Thomas A. Schmitz via ntg-context
@ 2022-10-23 21:21                     ` Hans Hagen via ntg-context
  0 siblings, 0 replies; 12+ messages in thread
From: Hans Hagen via ntg-context @ 2022-10-23 21:21 UTC (permalink / raw)
  To: Thomas A. Schmitz via ntg-context, Mikael Sundqvist; +Cc: Hans Hagen

On 10/23/2022 10:10 PM, Thomas A. Schmitz via ntg-context wrote:
> On 10/23/22 21:54, Leah Neukirchen wrote:
>> FWIW I get the error too on linux64.
> 
> OK, found it. File 
> lmtx/tex/texmf-context/tex/context/fonts/mkiv/xits-math.lfg
> 
> is missing the lines
> 
> local common  = fonts.goodies.load("common-math.lfg")
> local presets = common.mathematics.tweaks.presets
> 
> at the beginning of the file. However, math is typeset in Latin Modern. 
> But that's for the math people to see...
Mikael: we have to make mkxl variants of typescript where we replace 
xits by stix .. for the todo.

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 / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Backgrounds has changed in latest lmtx
  2022-10-23 19:52               ` Thomas A. Schmitz via ntg-context
  2022-10-23 19:54                 ` Leah Neukirchen via ntg-context
@ 2022-10-24 18:30                 ` Otared Kavian via ntg-context
  1 sibling, 0 replies; 12+ messages in thread
From: Otared Kavian via ntg-context @ 2022-10-24 18:30 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Otared Kavian

Hi Thomas,

Sorry for answering too late… Meanwhile you found the culprit :-)

Anyway, I cleaned the cache, did a rebuild and typeset your example files. They do typeset, but as you pointed out the math font is from LMR, not Stix as you specified.

Best regards: Otared

> On 23 Oct 2022, at 21:52, Thomas A. Schmitz via ntg-context <ntg-context@ntg.nl> wrote:
> 
> On 10/23/22 21:34, Otared Kavian via ntg-context wrote:
>> Hi Thomas,
>> Both your examples typeset fine with my installation of LMTX (version 2022.10.22 11:23) on MacOS 11.7.
>> (Indeed you previous file test file reporting the background issue is typeset fine also).
>> Best regards : Otared
> 
> Thanks, Otared - that's bizarre. I just tried both on linux64 and macos (12.6, arm): run install.sh, reload font cache and run context without the luatex switch on the minimal example with the XITS Math font, and on both systems, I get the error that I have sent this afternoon. Can you try after rebuilding the font cache?
> 
> Thanks
> 
> Thomas
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : https://contextgarden.net
> ___________________________________________________________________________________

Otared Kavian
e-mail: otared@gmail.com
Phone: +33 6 88 26 70 95



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

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2022-10-24 18:30 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-21  9:32 Backgrounds has changed in latest lmtx Thomas A. Schmitz via ntg-context
2022-10-21 15:08 ` Otared Kavian via ntg-context
2022-10-23 13:20 ` Thomas A. Schmitz via ntg-context
     [not found] ` <f428cfc5-2a0f-8214-711e-1cf900891578@freedom.nl>
     [not found]   ` <af671e96-0b91-d73d-2f6a-9d1a359bb613@uni-bonn.de>
     [not found]     ` <c906a418-5e35-ad86-747f-5ee1676be51a@freedom.nl>
2022-10-23 14:00       ` Thomas A. Schmitz via ntg-context
2022-10-23 14:21         ` Mikael Sundqvist via ntg-context
2022-10-23 14:30           ` Thomas A. Schmitz via ntg-context
2022-10-23 19:34             ` Otared Kavian via ntg-context
2022-10-23 19:52               ` Thomas A. Schmitz via ntg-context
2022-10-23 19:54                 ` Leah Neukirchen via ntg-context
2022-10-23 20:10                   ` Thomas A. Schmitz via ntg-context
2022-10-23 21:21                     ` Hans Hagen via ntg-context
2022-10-24 18:30                 ` Otared Kavian via ntg-context

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).