ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* makeing xml-node
@ 2013-05-07 15:30 Meer, H. van der
  2013-05-07 17:39 ` Hans Hagen
  0 siblings, 1 reply; 4+ messages in thread
From: Meer, H. van der @ 2013-05-07 15:30 UTC (permalink / raw)
  To: NTG ConTeXt

With \xmlload{myroot}{file} I can load an xml file and the execute on its nodes.
However what to do if the file is not of the form <root>file-contents</root>?
In that case it would help if I could contruct a node with with some actions like:
<root>\input{fileconytents</root> and then operate with xml commands on that <root> node.

Can this be accomplished?

Hans van der Meer



___________________________________________________________________________________
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: makeing xml-node
  2013-05-07 15:30 makeing xml-node Meer, H. van der
@ 2013-05-07 17:39 ` Hans Hagen
  2013-05-07 19:12   ` Meer, H. van der
  0 siblings, 1 reply; 4+ messages in thread
From: Hans Hagen @ 2013-05-07 17:39 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 5/7/2013 5:30 PM, Meer, H. van der wrote:
> With \xmlload{myroot}{file} I can load an xml file and the execute on its nodes.
> However what to do if the file is not of the form <root>file-contents</root>?
> In that case it would help if I could contruct a node with with some actions like:
> <root>\input{fileconytents</root> and then operate with xml commands on that <root> node.
>
> Can this be accomplished?

you can just filter the node ..

\xmlfilter{#myroot}{/some/element .....

Hans


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


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

* Re: makeing xml-node
  2013-05-07 17:39 ` Hans Hagen
@ 2013-05-07 19:12   ` Meer, H. van der
  0 siblings, 0 replies; 4+ messages in thread
From: Meer, H. van der @ 2013-05-07 19:12 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1543 bytes --]

Alas, this does not solve the problem, iff I am following your suggestion correctly.

I did
\xmlloadbuffer{thebuffer}{\xmlatt{#1}{buffer}}
\xmlfilter{thebuffer}{*/context()}
\useMPgraphic..

This works for a buffer content enclosed in any node:
\startbuffer[ychannel]
<anyone>  <========= cannot be omitted
\startuseMPgraphic{}{}
..
\stopuseMPgraphic
</anyone>  <========= cannot be omitted
\stopbuffer

But it does not work when the content is not enclosed in a node, which is my input case:
\startbuffer[ychannel]
\startuseMPgraphic{}{}
..
\stopuseMPgraphic
\stopbuffer
Now the xml is judged invalid by running it.

In the case of a file there is a circumvention through directlua. There I can os.execute a chain of commands: echo "<node>" >tmp;cat file >>tmp;echo "<node>" >>tmp and then \xmlprocessfile the tmp. A bit of a kludge, I am ready to admit, but working. But I don't see how to do this with buffers.

Hans van der Meer



On 7 May 2013, at 7:39 PM, Hans Hagen <pragma@wxs.nl<mailto:pragma@wxs.nl>> wrote:

On 5/7/2013 5:30 PM, Meer, H. van der wrote:
With \xmlload{myroot}{file} I can load an xml file and the execute on its nodes.
However what to do if the file is not of the form <root>file-contents</root>?
In that case it would help if I could contruct a node with with some actions like:
<root>\input{fileconytents</root> and then operate with xml commands on that <root> node.

Can this be accomplished?

you can just filter the node ..

\xmlfilter{#myroot}{/some/element .....


[-- Attachment #1.2: Type: text/html, Size: 5810 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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: makeing xml-node
       [not found] <0F2C8547-C98D-4B0C-B880-176C47CF5868@uva.nl>
@ 2013-05-08  8:29 ` Hans Hagen
  0 siblings, 0 replies; 4+ messages in thread
From: Hans Hagen @ 2013-05-08  8:29 UTC (permalink / raw)
  To: Meer, H. van der, mailing list for ConTeXt users

On 5/8/2013 9:18 AM, Meer, H. van der wrote:

> \startxmlsetups xmlcommon:mpgraphic
>      \unprotect\input{\foundfilewithsuffix}\protect
> \stopxmlsetups

unprotected regime:

\starttexcode
... % e.g. \input
\stoptexcode

regular context regime:

\startcontextcode
... % e.g.\input
\stopcontextcode


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


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

end of thread, other threads:[~2013-05-08  8:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-07 15:30 makeing xml-node Meer, H. van der
2013-05-07 17:39 ` Hans Hagen
2013-05-07 19:12   ` Meer, H. van der
     [not found] <0F2C8547-C98D-4B0C-B880-176C47CF5868@uva.nl>
2013-05-08  8:29 ` Hans Hagen

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