ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Wolfgang Schuster <wolfgang.schuster.lists@gmail.com>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>,
	Pablo Rodriguez <oinos@gmx.es>
Subject: Re: conditional not working in \setuphead
Date: Mon, 20 Apr 2020 19:23:48 +0200	[thread overview]
Message-ID: <fcaac15d-b624-10ff-80d0-90916574fb33@gmail.com> (raw)
In-Reply-To: <39f1d8a8-3d4e-97a3-ae46-4c677ed542ff@gmx.es>

Pablo Rodriguez schrieb am 20.04.2020 um 18:55:
> Dear list,
> 
> I have the following sample:
> 
>    \startbuffer[demo]
>    <doc>
>      <section id="section-i1">
>        <text>first</text>
>      </section>
>      <section id="section-i2">
>        <text>second</text>
>      </section>
> 
>    </doc>
>    \stopbuffer
> 
>    \startxmlsetups xml:initialize
>       \xmlsetsetup{#1}{doc|section}{xml:*}
>    \stopxmlsetups
> 
>    \xmlregistersetup{xml:initialize}
> 
>    \startxmlsetups xml:doc
>       \xmlflush{#1}
>    \stopxmlsetups
> 
>    \startxmlsetups xml:section
>       \startsection[title={\xmlatt{#1}{id}},
>          beforesection={\doif{\xmlatt{#1}{id}}{\selectedtopic}
>              {conditional}}]
>          \xmlflush{#1}
>          \doif{\xmlatt{#1}{id}}{\selectedtopic}{conditional}
>       \stopsection
>    \stopxmlsetups
> 
>    \def\selectedtopic{section-i1}
> 
>    \starttext
>       \xmlprocessbuffer{main}{demo}{}
>    \stoptext
> 
> How can I make the conditional in the beforesection option work?

The argument of the beforesection-key is placed before ConTeXt stores 
the values of \startsection which means you can do it this way.

What you can do here is to put whatever something in a macro before you 
call \startsection and access the value of this macro with the 
beforesection-key. You should ensure the content if this temporary macro 
is cleared when your conditional is false.

\setuphead
   [section]
   [beforesection=\getvariable{xml}{beforesection}]

\startxmlsetups xml:section

     \doifelse{\xmlatt{#1}{id}}{\selectedtopic}
         {\setvariable{xml}{beforesection}{conditional}}
         {\setvariable{xml}{beforesection}{}}

     \startsection[title={\xmlatt{#1}{id}}]
         \xmlflush{#1}
     \stopsection

\stopxmlsetups

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
___________________________________________________________________________________

  reply	other threads:[~2020-04-20 17:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-20 16:55 Pablo Rodriguez
2020-04-20 17:23 ` Wolfgang Schuster [this message]
2020-04-20 18:40   ` Pablo Rodriguez

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=fcaac15d-b624-10ff-80d0-90916574fb33@gmail.com \
    --to=wolfgang.schuster.lists@gmail.com \
    --cc=ntg-context@ntg.nl \
    --cc=oinos@gmx.es \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).