ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* xml processing in lua
@ 2011-09-26 18:57 Thomas A. Schmitz
  2011-09-26 19:14 ` Wolfgang Schuster
  2011-09-26 19:15 ` Aditya Mahajan
  0 siblings, 2 replies; 4+ messages in thread
From: Thomas A. Schmitz @ 2011-09-26 18:57 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi all,

after boring people with xml processing in TeX at the meeting in 
Bassenge, I'm looking for new challenges and am trying my hand at 
processing xml in lua. But so far, even the simplest things escape me. 
Here's an example:

\startbuffer[test]
<a>
   <b>One</b>
   <c>Two</c>
</a>
\stopbuffer

\startxmlsetups xml:setups
	\xmlsetsetup{main}{a|b|c}{xml:*}
\stopxmlsetups

\xmlregistersetup{xml:setups}

% \startxmlsetups xml:a
% 	\xmltext{#1}{/c}
% \stopxmlsetups

\startxmlsetups xml:a
\startluacode
   context(xml.text("#1", "/b"))
\stopluacode
\stopxmlsetups

\starttext
\xmlprocessbuffer{main}{test}{}
\stoptext

 From what I thought I understood from the source, I believed that ll. 
14-16 (the commented part) and ll. 18-22 should be exactly equivalent, 
but that's not the case. A little hint might get me started...

All best, and thanks

Thomas
___________________________________________________________________________________
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
___________________________________________________________________________________


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

* Re: xml processing in lua
  2011-09-26 18:57 xml processing in lua Thomas A. Schmitz
@ 2011-09-26 19:14 ` Wolfgang Schuster
  2011-09-26 19:15 ` Aditya Mahajan
  1 sibling, 0 replies; 4+ messages in thread
From: Wolfgang Schuster @ 2011-09-26 19:14 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 26.09.2011 um 20:57 schrieb Thomas A. Schmitz:

> Hi all,
> 
> after boring people with xml processing in TeX at the meeting in Bassenge, I'm looking for new challenges and am trying my hand at processing xml in lua. But so far, even the simplest things escape me. Here's an example:
> 
> \startbuffer[test]
> <a>
>  <b>One</b>
>  <c>Two</c>
> </a>
> \stopbuffer
> 
> \startxmlsetups xml:setups
> 	\xmlsetsetup{main}{a|b|c}{xml:*}
> \stopxmlsetups
> 
> \xmlregistersetup{xml:setups}
> 
> % \startxmlsetups xml:a
> % 	\xmltext{#1}{/c}
> % \stopxmlsetups
> 
> \startxmlsetups xml:a
> \startluacode
>  context(xml.text("#1", "/b"))

context(lxml.text("#1","/b"))

or

context.xmltext("#1","/b")

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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: xml processing in lua
  2011-09-26 18:57 xml processing in lua Thomas A. Schmitz
  2011-09-26 19:14 ` Wolfgang Schuster
@ 2011-09-26 19:15 ` Aditya Mahajan
  2011-09-26 19:25   ` Thomas A. Schmitz
  1 sibling, 1 reply; 4+ messages in thread
From: Aditya Mahajan @ 2011-09-26 19:15 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Mon, 26 Sep 2011, Thomas A. Schmitz wrote:

> Hi all,
>
> after boring people with xml processing in TeX at the meeting in Bassenge, 
> I'm looking for new challenges and am trying my hand at processing xml in 
> lua. But so far, even the simplest things escape me. Here's an example:
>
> \startbuffer[test]
> <a>
>  <b>One</b>
>  <c>Two</c>
> </a>
> \stopbuffer
>
> \startxmlsetups xml:setups
> 	\xmlsetsetup{main}{a|b|c}{xml:*}
> \stopxmlsetups
>
> \xmlregistersetup{xml:setups}
>
> % \startxmlsetups xml:a
> % 	\xmltext{#1}{/c}
> % \stopxmlsetups
>
> \startxmlsetups xml:a
> \startluacode
>  context(xml.text("#1", "/b"))
> \stopluacode
> \stopxmlsetups
>
> \starttext
> \xmlprocessbuffer{main}{test}{}
> \stoptext
>
> From what I thought I understood from the source, I believed that ll. 14-16 
> (the commented part) and ll. 18-22 should be exactly equivalent, but that's 
> not the case. A little hint might get me started...

Untested ... you can try context.xmltext("#1", "/b")

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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: xml processing in lua
  2011-09-26 19:15 ` Aditya Mahajan
@ 2011-09-26 19:25   ` Thomas A. Schmitz
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas A. Schmitz @ 2011-09-26 19:25 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 09/26/2011 09:15 PM, Aditya Mahajan wrote:
> On Mon, 26 Sep 2011, Thomas A. Schmitz wrote:
>
>> Hi all,
>>
>> after boring people with xml processing in TeX at the meeting in
>> Bassenge, I'm looking for new challenges and am trying my hand at
>> processing xml in lua. But so far, even the simplest things escape me.
>> Here's an example:
>>
>> \startbuffer[test]
>> <a>
>> <b>One</b>
>> <c>Two</c>
>> </a>
>> \stopbuffer
>>
>> \startxmlsetups xml:setups
>> \xmlsetsetup{main}{a|b|c}{xml:*}
>> \stopxmlsetups
>>
>> \xmlregistersetup{xml:setups}
>>
>> % \startxmlsetups xml:a
>> % \xmltext{#1}{/c}
>> % \stopxmlsetups
>>
>> \startxmlsetups xml:a
>> \startluacode
>> context(xml.text("#1", "/b"))
>> \stopluacode
>> \stopxmlsetups
>>
>> \starttext
>> \xmlprocessbuffer{main}{test}{}
>> \stoptext
>>
>> From what I thought I understood from the source, I believed that ll.
>> 14-16 (the commented part) and ll. 18-22 should be exactly equivalent,
>> but that's not the case. A little hint might get me started...
>
> Untested ... you can try context.xmltext("#1", "/b")
>
> Aditya

Aditya, Wolfgang,

thanks a lot for your solutions, both work. With Wolfgang at Bassenge, 
and the network there being flaky, others had a chance of being faster
than him, but now he's back and rules with an iron fist :-)

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 / 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
___________________________________________________________________________________


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

end of thread, other threads:[~2011-09-26 19:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-26 18:57 xml processing in lua Thomas A. Schmitz
2011-09-26 19:14 ` Wolfgang Schuster
2011-09-26 19:15 ` Aditya Mahajan
2011-09-26 19:25   ` Thomas A. Schmitz

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).