diff options
author | Karl Berry <karl@freefriends.org> | 2021-03-06 21:58:15 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-03-06 21:58:15 +0000 |
commit | 974640d66e61e81cb197ad96fdff7b08343e4c5a (patch) | |
tree | 2e1f75f32f312b7f24ba82b4590ae230bcd6f399 /Master/texmf-dist/tex/context/base/mkiv/libs-imp-mujs.mkxl | |
parent | b4fa72e61230aca75f7f6fbf988821f71edfb6b2 (diff) |
context
git-svn-id: svn://tug.org/texlive/trunk@58167 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/context/base/mkiv/libs-imp-mujs.mkxl')
-rw-r--r-- | Master/texmf-dist/tex/context/base/mkiv/libs-imp-mujs.mkxl | 121 |
1 files changed, 0 insertions, 121 deletions
diff --git a/Master/texmf-dist/tex/context/base/mkiv/libs-imp-mujs.mkxl b/Master/texmf-dist/tex/context/base/mkiv/libs-imp-mujs.mkxl deleted file mode 100644 index 0f278dff5b2..00000000000 --- a/Master/texmf-dist/tex/context/base/mkiv/libs-imp-mujs.mkxl +++ /dev/null @@ -1,121 +0,0 @@ -%D \module -%D [ file=libs-imp-mujs, -%D version=2020.02.08, -%D title=\CONTEXT\ Extra Modules, -%D subtitle=MuJS interpreter, -%D author=Hans Hagen, -%D date=\currentdate, -%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}] -%C -%C This module is part of the \CONTEXT\ macro||package and is -%C therefore copyrighted by \PRAGMA. See mreadme.pdf for -%C details. - -%D Just an experiment: -%D -%D \starttyping -%D http://mujs.com -%D \stoptyping - -\ifdefined\ecmacode - \expandafter \endinput -\fi - -\registerctxluafile{libs-imp-mujs}{} - -\unprotect - -% todo: environment - -\let\stopecmacode\relax - -\normalprotected\def\startecmacode % \stopecmacode - {\begingroup - \obeylualines - \obeyluatokens - \luat_start_ecma_code_indeed} - -\def\luat_start_ecma_code_indeed#1\stopecmacode - {\normalexpanded{\endgroup\noexpand\ecmacode{#1}}} - -\protect - -\continueifinputfile{libs-imp-mujs.mkxl} - -\usemodule[article-basic,abbreviations-logos] - -\starttext - -\startbuffer -\startluacode - local mujs = require("libs-imp-mujs") - - mujs.execute [[ - var MyMax = 1000; - ]] - - mujs.execute [[ - console("Example One!"); - texsprint("\\startpacked"); - for (var i = 1; i <= MyMax; i = i + 1) { - texprint( - "This is a buildbot compilation challenge for Mojca: " - .concat(Math.sqrt(i/MyMax)) - .concat("!\\par") - ); - } - texsprint("\\stoppacked"); - ]] - - -- mujs.execute [[ - -- something very bad: an error - -- ]] -\stopluacode - -\startecmacode - console("Example Two!"); - for (var i = 1; i <= MyMax; i = i + 1) { - texsprint( - "And an opportunity for Alan to attract highschool students to \\TeX: " - .concat(i) - .concat("! ") - ); - } -\stopecmacode - -\ecmacode { - console("Example Three!"); - texprint("And otherwise a way to prototype \\JAVASCRIPT\\ code in \\PDF.") -} - -\startecmacode - var f = File("libs-imp-mujs.mkxl","r"); - console(f); - // var l = f.read(400); - var l = f.read("*a"); - console(l); - f.close(); -\stopecmacode - -\startecmacode - console("Example Four!"); - texsprint("\\startMPcode " - .concat(' fill fullcircle scaled 6cm withcolor "darkred";') - .concat(' fill fullcircle scaled 4cm withcolor "darkgreen";') - .concat(' fill fullcircle scaled 2cm withcolor "darkblue";') - .concat("\\stopMPcode ") - ); -\stopecmacode - -\startluacode - context.startMPcode() - context('fill fullcircle scaled 6cm withcolor "middlecyan";') - context('fill fullcircle scaled 4cm withcolor "middlemagenta";') - context('fill fullcircle scaled 2cm withcolor "middleyellow";') - context.stopMPcode() -\stopluacode -\stopbuffer - -\typebuffer \page \getbuffer - -\stoptext |