ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Dynamic document variables from metadata
@ 2022-01-02  1:54 Thangalin via ntg-context
  2022-01-02 11:11 ` Hans Hagen via ntg-context
  0 siblings, 1 reply; 3+ messages in thread
From: Thangalin via ntg-context @ 2022-01-02  1:54 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Thangalin


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

Happy New Year!

How would you implement a mechanism that takes arbitrary XHTML <meta> tags
and produces document variables? Consider:

    <meta name="journal" content="Nature" />

After running XML setups, the following would write "Nature":

    \documentvariable{journal}

The tricky part is doing this without pre-defining them. Here's a short,
self-contained example to help demonstrate:

\startbuffer[xdoc]
<html>
<head>
  <meta content="Milena Marić Einstein" name="author"/>
  <meta content="Annalen der Physik" name="journal"/>
</head>
<body>
</body>
</html>\stopbuffer
\startxmlsetups xml:xhtml
  \xmlsetsetup{\xmldocument}{*}{-}
  \xmlsetsetup{\xmldocument}{html|body}{xml:*}
  \xmlsetsetup{\xmldocument}{head}{xml:meta}\stopxmlsetups
\xmlregistersetup{xml:xhtml}
\startxmlsetups xml:html
  % "author" is a special setup, not generalized
  \xmlfilter{#1}{/head/meta[@name='author']/command(xml:author)}

  % What goes here to make this dynamic?
  %\xmlfilter{#1}{/head/meta[@name='journal']/command(xml:journal)}

  \xmlflush{#1}\stopxmlsetups
\startxmlsetups xml:author
  \setupdocument[author={\xmlatt{#1}{content}}]
  \setupdocument[metadata:author={\xmlatt{#1}{content}}]
  \setupinteraction[author={\documentvariable{author}}]\stopxmlsetups
% How can this be generalized?%\startxmlsetups xml:journal
  %\setupdocument[journal={\xmlatt{#1}{content}}]%\stopxmlsetups
\startxmlsetups xml:body
  \startdocument
    Author: \documentvariable{author}

    \par

    Journal: \documentvariable{journal}
  \stopdocument\stopxmlsetups
\xmlprocessbuffer{main}{xdoc}{}


Thank you!

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

[-- Attachment #2: Type: text/plain, Size: 493 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Dynamic document variables from metadata
  2022-01-02  1:54 Dynamic document variables from metadata Thangalin via ntg-context
@ 2022-01-02 11:11 ` Hans Hagen via ntg-context
  2022-01-02 19:15   ` Thangalin via ntg-context
  0 siblings, 1 reply; 3+ messages in thread
From: Hans Hagen via ntg-context @ 2022-01-02 11:11 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Hans Hagen

On 1/2/2022 2:54 AM, Thangalin via ntg-context wrote:
> Happy New Year!
> 
> How would you implement a mechanism that takes arbitrary XHTML <meta> 
> tags and produces document variables? Consider:
> 
>      <meta name="journal" content="Nature" />
> 
> After running XML setups, the following would write "Nature":
> 
>      \documentvariable{journal}
> 
> The tricky part is doing this without pre-defining them. Here's a short, 
> self-contained example to help demonstrate:
> 
> |\startbuffer[xdoc] <html> <head> <meta content="Milena Marić Einstein" 
> name="author"/> <meta content="Annalen der Physik" name="journal"/> 
> </head> <body> </body> </html> \stopbuffer \startxmlsetups xml:xhtml 
> \xmlsetsetup{\xmldocument}{*}{-} 
> \xmlsetsetup{\xmldocument}{html|body}{xml:*} 
> \xmlsetsetup{\xmldocument}{head}{xml:meta} \stopxmlsetups 
> \xmlregistersetup{xml:xhtml} \startxmlsetups xml:html
> % "author" is a special setup, not generalized 
> \xmlfilter{#1}{/head/meta[@name='author']/command(xml:author)} % What 
> goes here to make this dynamic? 
> %\xmlfilter{#1}{/head/meta[@name='journal']/command(xml:journal)} 
> \xmlflush{#1} \stopxmlsetups \startxmlsetups xml:author 
> \setupdocument[author={\xmlatt{#1}{content}}] 
> \setupdocument[metadata:author={\xmlatt{#1}{content}}] 
> \setupinteraction[author={\documentvariable{author}}] \stopxmlsetups % 
> How can this be generalized? %\startxmlsetups xml:journal 
> %\setupdocument[journal={\xmlatt{#1}{content}}] %\stopxmlsetups 
> \startxmlsetups xml:body \startdocument Author: 
> \documentvariable{author} \par Journal: \documentvariable{journal} 
> \stopdocument \stopxmlsetups \xmlprocessbuffer{main}{xdoc}{}|
\startxmlsetups xml:setdocumentvariable
   \setupdocument[\xmlatt{#1}{name}={\xmlatt{#1}{content}}]
\stopxmlsetups

\startxmlsetups xml:author
   \setupdocument[author={\xmlatt{#1}{content}}]
   \setupdocument[metadata:author={\xmlatt{#1}{content}}]
   \setupinteraction[author={\documentvariable{author}}]
\stopxmlsetups

\startxmlsetups xml:html
   \xmlfilter{#1}{/head/meta/command(xml:setdocumentvariable)}
   \xmlfilter{#1}{/head/meta[@name='author']/command(xml:author)}
   \startdocument
   \xmlflush{#1}
   \stopdocument
\stopxmlsetups



-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Dynamic document variables from metadata
  2022-01-02 11:11 ` Hans Hagen via ntg-context
@ 2022-01-02 19:15   ` Thangalin via ntg-context
  0 siblings, 0 replies; 3+ messages in thread
From: Thangalin via ntg-context @ 2022-01-02 19:15 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Thangalin


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

Thank you, Hans.

Updates are in place:

https://github.com/DaveJarvis/keenwrite/releases
https://github.com/DaveJarvis/keenwrite-themes/releases

On Sun, Jan 2, 2022 at 3:11 AM Hans Hagen <j.hagen@xs4all.nl> wrote:

> On 1/2/2022 2:54 AM, Thangalin via ntg-context wrote:
> > Happy New Year!
> >
> > How would you implement a mechanism that takes arbitrary XHTML <meta>
> > tags and produces document variables? Consider:
> >
> >      <meta name="journal" content="Nature" />
> >
> > After running XML setups, the following would write "Nature":
> >
> >      \documentvariable{journal}
> >
> > The tricky part is doing this without pre-defining them. Here's a short,
> > self-contained example to help demonstrate:
> >
> > |\startbuffer[xdoc] <html> <head> <meta content="Milena Marić Einstein"
> > name="author"/> <meta content="Annalen der Physik" name="journal"/>
> > </head> <body> </body> </html> \stopbuffer \startxmlsetups xml:xhtml
> > \xmlsetsetup{\xmldocument}{*}{-}
> > \xmlsetsetup{\xmldocument}{html|body}{xml:*}
> > \xmlsetsetup{\xmldocument}{head}{xml:meta} \stopxmlsetups
> > \xmlregistersetup{xml:xhtml} \startxmlsetups xml:html
> > % "author" is a special setup, not generalized
> > \xmlfilter{#1}{/head/meta[@name='author']/command(xml:author)} % What
> > goes here to make this dynamic?
> > %\xmlfilter{#1}{/head/meta[@name='journal']/command(xml:journal)}
> > \xmlflush{#1} \stopxmlsetups \startxmlsetups xml:author
> > \setupdocument[author={\xmlatt{#1}{content}}]
> > \setupdocument[metadata:author={\xmlatt{#1}{content}}]
> > \setupinteraction[author={\documentvariable{author}}] \stopxmlsetups %
> > How can this be generalized? %\startxmlsetups xml:journal
> > %\setupdocument[journal={\xmlatt{#1}{content}}] %\stopxmlsetups
> > \startxmlsetups xml:body \startdocument Author:
> > \documentvariable{author} \par Journal: \documentvariable{journal}
> > \stopdocument \stopxmlsetups \xmlprocessbuffer{main}{xdoc}{}|
> \startxmlsetups xml:setdocumentvariable
>    \setupdocument[\xmlatt{#1}{name}={\xmlatt{#1}{content}}]
> \stopxmlsetups
>
> \startxmlsetups xml:author
>    \setupdocument[author={\xmlatt{#1}{content}}]
>    \setupdocument[metadata:author={\xmlatt{#1}{content}}]
>    \setupinteraction[author={\documentvariable{author}}]
> \stopxmlsetups
>
> \startxmlsetups xml:html
>    \xmlfilter{#1}{/head/meta/command(xml:setdocumentvariable)}
>    \xmlfilter{#1}{/head/meta[@name='author']/command(xml:author)}
>    \startdocument
>    \xmlflush{#1}
>    \stopdocument
> \stopxmlsetups
>
>
>
> -----------------------------------------------------------------
>                                            Hans Hagen | PRAGMA ADE
>                Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>         tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
> -----------------------------------------------------------------
>

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

[-- Attachment #2: Type: text/plain, Size: 493 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

end of thread, other threads:[~2022-01-02 19:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-02  1:54 Dynamic document variables from metadata Thangalin via ntg-context
2022-01-02 11:11 ` Hans Hagen via ntg-context
2022-01-02 19:15   ` Thangalin via ntg-context

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