Re: [NTG-context] howto execute loaded xml?

2012-03-22 Thread Meer, H. van der
It took hours (some far in the night) to solve. Finally. I am posting this 
message just in case someone starts delving into it.

Still standing is the problem of \xmlcommand not obeying the attribute 
selection but generating an error: 
\xmlcommand{#1}{path[@attrib==whatever]}{command}

Hans van der Meer



On 21 mrt. 2012, at 10:29, Meer, H. van der wrote:

The output was missing in my previous post. Sorry. Here it is.

Hans van der Meer



On 21 mrt. 2012, at 10:27, H. van der Meer wrote:

I made a minimal example showing that load'ed xml is not typeset. In contrast 
to the first text-node the second comes out as xml and not as typeset text.

What has to be done to change that?
Thanks in advance.

Hans van der Meer

test.pdf

___
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
___

[NTG-context] howto execute loaded xml?

2012-03-21 Thread Meer, H. van der
I made a minimal example showing that load'ed xml is not typeset. In contrast 
to the first text-node the second comes out as xml and not as typeset text.

What has to be done to change that?
Thanks in advance.

Hans van der Meer


\startbuffer[load-1]
?xml version=1.0 encoding=UTF-8?
myroot
  include buffer=load-2/
  textbuffer[load-1] contents/text
/myroot
\stopbuffer

\startbuffer[load-2]
includes
  textIncluded buffer[load-2] contents amp; ampersand./text
/includes
\stopbuffer

\startxmlsetups load:setups
  \xmlsetsetup{\xmldocument}{myroot|text|include}{load:*}
\stopxmlsetups\xmlregistersetup{load:setups}

\startxmlsetups load:myroot
  \writestatus{TEST-LOAD}{loading myroot}
  \xmlall{#1}{include}
  \xmlall{#1}{text}
  \xmlall{includes}{text}
\stopxmlsetups

\startxmlsetups load:text
  *** \xmlflush{#1} ***\par
\stopxmlsetups

\startxmlsetups load:include
  \writestatus{TEST-LOAD}{loading include}
  \xmlloadbuffer{includes}{load-2}
\stopxmlsetups

\enabletrackers[lxml.loading]
\setuppapersize[S5][S5]
\starttext
\hairline
\xmlprocessbuffer{myroot}{load-1}{}
\hairline
\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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___