ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Hans Hagen <pragma@wxs.nl>
To: Wolfgang Schuster <schuster.wolfgang@googlemail.com>
Cc: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: Problem with \writebetweenlist
Date: Sun, 26 Feb 2012 17:28:47 +0100	[thread overview]
Message-ID: <4F4A5DBF.5080207@wxs.nl> (raw)
In-Reply-To: <52B0A934-BE34-4465-99BB-67B3E25BC0CD@googlemail.com>

On 25-2-2012 17:52, Wolfgang Schuster wrote:
>
> Am 25.02.2012 um 12:02 schrieb Jaroslav Hajtmar:
>
>> Thanx Wolfgang
>> for reply, but it does not work still.
>
> I was in a hurry and had no time to test it but the following is tested and works.
>
> \def\strc_lists_write_between[#tag][#settings]#command% we can overload location
>    {\begingroup
>     \edef\currentlist{#tag}%
>     \doifelse{\namedlistparameter{#tag}\c!state}\v!start
>       {\strc_lists_inject_yes[#settings,\c!type=\s!command][command={#command}]}
>       {\endgroup}}
>
> \def\strc_lists_write_to_yes[#settings]#first#second%
>    {\strc_lists_inject_yes[\c!location=\v!here,#settings,\c!type=\s!simple][first={#first},second={#second}]}
>
> @Hans The “\s!” prefix for first, second and command can’t be used because otherwise the keys end up as “\\s!first ” in Lua table index.

ok, but another one needed fixing as well, so now we have

\unexpanded\def\writebetweenlist{\dodoubleempty   \strc_lists_write_between}
\unexpanded\def\writedatatolist {\dotripleargument\strc_lists_write_data_to}
\unexpanded\def\writetolist     {\dodoubleempty   \strc_lists_write_to}

\def\strc_lists_write_between[#tag]%
   {\begingroup
    \edef\currentlist{#tag}%
    \doifelse{\namedlistparameter{#tag}\c!state}\v!start
      \strc_lists_write_between_yes
      \strc_lists_write_between_nop}

\def\strc_lists_write_between_yes[#settings]#command%
 
{\strc_lists_inject_yes[#settings,\c!type=\s!command][command={#command}]}

\def\strc_lists_write_between_nop[#settings]#command%
   {\endgroup}

\def\strc_lists_write_data_to[#tag]%
   {\begingroup
    \edef\currentlist{#tag}%
    \doifelse{\namedlistparameter{#tag}\c!state}\v!start
      \strc_lists_write_data_to_yes
      \strc_lists_write_data_to_nop}

\def\strc_lists_write_data_to_yes[#settings][#userdata]%
   {\ifthirdargument % no need to have an extra step ... used seldom
      \strc_lists_inject_yes[#settings,\c!type=\s!userdata][#userdata]%
    \else
      \strc_lists_inject_yes[\c!type=\s!userdata][#settings]%
    \fi}

\def\strc_lists_write_data_to_nop[#settings][#userdata]%
   {\endgroup}

\def\strc_lists_write_to[#tag]%
   {\begingroup
    \edef\currentlist{#tag}%
    \doifelse{\namedlistparameter{#tag}\c!state}\v!start
      \strc_lists_write_to_yes
      \strc_lists_write_to_nop}

\def\strc_lists_write_to_yes[#settings]#first#second% no \s!first 
because we don't expand user settings
 
{\strc_lists_inject_yes[\c!location=\v!here,#settings,\c!type=\s!simple][first={#first},second={#second}]}

\def\strc_lists_write_to_nop[#settings]#first#second%
   {\endgroup}



-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | 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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


      parent reply	other threads:[~2012-02-26 16:28 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-24 11:34 Jaroslav Hajtmar
2012-02-24 21:58 ` Hans Hagen
2012-02-24 22:19   ` Jaroslav Hajtmar
2012-02-25  7:24     ` Wolfgang Schuster
2012-02-25 11:02       ` Jaroslav Hajtmar
2012-02-25 11:23         ` Jaroslav Hajtmar
2012-02-25 16:52         ` Wolfgang Schuster
2012-02-25 17:55           ` Jaroslav Hajtmar
2012-02-25 18:43             ` Wolfgang Schuster
2012-02-25 19:03               ` Jaroslav Hajtmar
2012-02-26 16:28           ` Hans Hagen [this message]

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=4F4A5DBF.5080207@wxs.nl \
    --to=pragma@wxs.nl \
    --cc=ntg-context@ntg.nl \
    --cc=schuster.wolfgang@googlemail.com \
    /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).