summaryrefslogtreecommitdiff
path: root/tex/context/base/mkxl/luat-ini.lmt
blob: 56e3bd1c18de258254ba63c38b3282246b2b5cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
if not modules then modules = { } end modules ['luat-ini'] = {
    version   = 1.001,
    comment   = "companion to luat-lib.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

-- We cannot load anything yet. However what we will do us reserve a few tables.
-- These can be used for runtime user data or third party modules and will not be
-- cluttered by macro package code.

userdata      = userdata      or { } -- for users (e.g. functions etc)
thirddata     = thirddata     or { } -- only for third party modules
moduledata    = moduledata    or { } -- only for development team
documentdata  = documentdata  or { } -- for users (e.g. raw data)
parametersets = parametersets or { } -- for special purposes

table.setmetatableindex(moduledata,"table")
table.setmetatableindex(thirddata, "table")

if not global then
    global  = _G
end

LUATEXVERSION       = status.luatex_version/100 + tonumber(status.luatex_revision)/10000
LUATEXENGINE        = string.lower(status.luatex_engine or "luametatex")
LUATEXFUNCTIONALITY = status.development_id or 6346
LUATEXFORMATID      = status.format_id or 0
JITSUPPORTED        = false
INITEXMODE          = status.ini_version
CONTEXTLMTXMODE     = 1

function os.setlocale()
    -- no need for a message
end