ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: MF <massifr@fastwebnet.it>
To: ntg-context@ntg.nl
Subject: Re: index(register) from an XML source
Date: Sun, 15 Jan 2017 00:07:55 +0100	[thread overview]
Message-ID: <1484435275.3039.1.camel@fastwebnet.it> (raw)
In-Reply-To: <7579d05e-d57b-92a2-31b8-3f090465edc1@wxs.nl>

> > Now an alternative approach I thought, because the index I'm
> > working on
> > is a biographical index, I mean a index of cited people, with a
> > biographical profile. So every entry is a few lines long.
> > That's why I thought to index only the ids in the text and use a
> > textcommand in the index to pass from the id to the real entry.
> > 
> > Suppose to use \setupregister[Animal][textcommand=\fromIdToEntry]
> > and
> > an indexEntry function modified like this:
> > 
> > function xml.functions.indexEntry(e)
> >      local animal = animals[e.at.idref]
> >      if animal then
> >          context.Animal( { animal.key }, e.at.idref )
> >      end
> > end
> > 
> > Without a textcommand, you would have an index of the ids.
> > The textcommand \fromIdToEntry should take the id of an index entry
> > and
> > typeset the entry content.
> > 
> > \def\fromIdToEntry#1{ ... }
> > 
> > #1 is the id, but it's not a string.
> > Is there a way to use it as a string to look for the entry?
> > Is this approach better?
> 
> comparable
> 
> btw, you can better use deeptextcommand as textcommand gets
> something 
> more passed
> 

I think I've understood (thanks Hans):

\startbuffer[test]
<text>
   <div>
     <p>In this page there is a <name idref="id1">cat</name>,
       a <name idref="id2">dog</name> and a <name 
idref="id3">horse</name>.</p>
   </div>
   <div>
     <p>In this page there's only a <name idref="id2">fox 
terrier</name>.</p>
   </div>
   <div>
     <p>In this page you find a <name idref="id1">persian cat</name>
      and a <name idref="id3">horse</name>.</p>
   </div>
   <index>
     <entry id="id1" data-sort="cat">Cat</entry>
     <entry id="id2" data-sort="dog"><bf>Dog</bf></entry>
     <entry id="id3" data-sort="horse">Horse</entry>
   </index>
</text>
\stopbuffer

\defineregister[Animal][Animals]
\setupregister[Animal][deeptextcommand=\idToEntry]

\def\idToEntry#1{\ctxlua{id2entry([==[#1]==])}}

\startxmlsetups xml:mysetup
     \xmlsetsetup{#1}{*}{xml:*}
\stopxmlsetups

\xmlregistersetup{xml:mysetup}

\startxmlsetups xml:text
     \xmlfunction{#1}{collectIndex}
     \xmlflush{#1}
\stopxmlsetups

\startxmlsetups xml:bf
     \dontleavehmode
     {\xmlflush{#1}}
\stopxmlsetups

\startxmlsetups xml:div
     \xmlflush{#1}
     \page
\stopxmlsetups

\startxmlsetups xml:p
     \ignorespaces
     \xmlflush{#1}
     \removeunwantedspaces
     \par
\stopxmlsetups

\startxmlsetups xml:name
     \dontleavehmode
     \xmlfunction{#1}{indexEntry}
     {\bf\xmlflush{#1}}
\stopxmlsetups

\startxmlsetups xml:i
     \dontleavehmode
     {\em\xmlflush{#1}}
\stopxmlsetups

\startxmlsetups xml:index
     \placeregister[Animal]
\stopxmlsetups

\startxmlsetups xml:entry
     \xmlflush{#1}
\stopxmlsetups

\startluacode

local animals = { }

function xml.functions.collectIndex(e)
     for entry in xml.collected(e,"/index/entry") do
         local key = entry.at["data-sort"]
         local id  = entry.at["id"]
         if key and id then
             animals[id] = {
                 key   = key,
                 entry = entry,
             }
         end
     end
end

function xml.functions.indexEntry(e)
     local animal = animals[e.at.idref]
     if animal then
       context.Animal( { animal.key }, e.at.idref )
     end
end

function id2entry(id)
  if animals[id] then
    lxml.flush(animals[id].entry)
  end
end

\stopluacode

\starttext
     \xmlprocessbuffer{main}{test}{}
\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
___________________________________________________________________________________

      reply	other threads:[~2017-01-14 23:07 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-13 17:10 MF
2017-01-14 12:53 ` Hans Hagen
2017-01-14 14:52   ` MF
2017-01-14 16:34     ` Alan Braslau
2017-01-14 19:40     ` Hans Hagen
2017-01-14 23:07       ` MF [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=1484435275.3039.1.camel@fastwebnet.it \
    --to=massifr@fastwebnet.it \
    --cc=ntg-context@ntg.nl \
    /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).