diff options
Diffstat (limited to 'tex/context/base/context-characters.lmx')
-rw-r--r-- | tex/context/base/context-characters.lmx | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/tex/context/base/context-characters.lmx b/tex/context/base/context-characters.lmx new file mode 100644 index 000000000..b992d30b8 --- /dev/null +++ b/tex/context/base/context-characters.lmx @@ -0,0 +1,104 @@ +<!-- + -- filename : comm-deb.xml + -- comment : companion to comm-xml.tex + -- author : Hans Hagen, PRAGMA-ADE, Hasselt NL + -- copyright: PRAGMA ADE / ConTeXt Development Team + -- license : see context related readme files + +--> +<html> + <title><?lua pv('title') ?></title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> + <style type="text/css"> + <!-- + <?lmx-include context.css ?> + #type { + text-align: center ; + } + #variable { + width: 10em ; + text-align: right ; + margin-right: 1em ; + } + #value { + text-align: left ; + } + --> + </style> + <script language="JavaScript"> + <!-- + window.focus(); + --> + </script> + <body> <!-- onclick="location.reload()" --> + <div id="top"><div id="top-one"><div id="top-two"> + <?lua pv('title') ?> + </div></div></div> + <div id="left"><div id="left-one"><div id="left-two"> + <!-- empty --> + </div></div></div> + <div id="right"><div id="right-safari"><div id="right-one"><div id="right-two"><div id="right-three"><div id="right-four"><div id="right-five"> + <!-- empty --> + </div></div></div></div></div></div></div> + <div id="right"><div id="right-safari"><div id="right-one"><div id="right-two"><div id="right-three"><div id="right-four"><div id="right-five"></div></div></div></div></div></div></div> + <div id="main"><div id='main-settings'> + <?lmx-define-begin chr-head ?> + <tr> + <th><div id="value"> </div></th> + <th colspan='2'><div id="value">characters </div></th> + <th colspan='2'><div id="value">unicodes </div></th> + <th colspan='2'><div id="value">indices </div></th> + <th colspan='1'><div id="value">fonts </div></th> + </tr> + <tr> + <th><div id="value"> </div></th> + <th><div id="value">before utf </div></th> + <th><div id="value">after utf </div></th> + <th><div id="value">before hex </div></th> + <th><div id="value">after hex </div></th> + <th><div id="value">after hex </div></th> + <th><div id="value">after dec </div></th> + <th><div id="value">filename </div></th> + </tr> + <?lmx-define-end ?> + <?lmx-define-begin chr-body ?> + <tr> + <td valign="top"><div id="value"><?lua t((nodes.tracers.characters.equal(v.before,v.after) and "=") or "!") ?></div></td> + <td valign="top"><div id="value"><?lua t(nodes.tracers.characters.string(v.before)) ?> </div></td> + <td valign="top"><div id="value"><?lua t(nodes.tracers.characters.string(v.after)) ?> </div></td> + <td valign="top"><div id="value"><?lua t(nodes.tracers.characters.unicodes(v.before)) ?> </div></td> + <td valign="top"><div id="value"><?lua t(nodes.tracers.characters.unicodes(v.after)) ?> </div></td> + <td valign="top"><div id="value"><?lua t(nodes.tracers.characters.indices(v.after)) ?> </div></td> + <td valign="top"><div id="value"><?lua t(nodes.tracers.characters.indices(v.after,true)) ?> </div></td> + <td valign="top"><div id="value"><?lua t(nodes.tracers.characters.fonts(v.after)) ?> </div></td> + </tr> + <?lmx-define-end ?> + <?lmx-define-begin chr-none ?> + <tr> + <td><br/></td> + <td></td> + <td></td> + <td></td> + <td></td> + <td></td> + </tr> + <?lmx-define-end ?> + <?lua if tracers.knownlist('characters') then ?> + <h1>Processed Words</h1> + <table> + <?lmx-resolve chr-head ?> + <?lua for k,v in pairs(tracers.list['characters']) do if v.before and v.after then ?> + <?lmx-resolve chr-body ?> + <?lua else ?> + <?lmx-resolve chr-none ?> + <?lua end end ?> + </table> + <br/> + <?lua end ?> + </div></div> + <div id="bottom"><div id="bottom-one"><div id="bottom-two"> + Job Name: <?lua p(environment.jobname) ?> + ConTeXt Version: <?lua p(environment.version) ?> + </div></div></div> + </body> +</html> |