summaryrefslogtreecommitdiff
path: root/tex/context/base/task-ini.lua
blob: 01bcaec0fc8118366a41f001197e70099643215f (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
if not modules then modules = { } end modules ['task-ini'] = {
    version   = 1.001,
    comment   = "companion to task-ini.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

-- this is a temporary solution, we need to isolate some modules and then
-- the load order can determine the trickery to be applied to node lists
--
-- we can disable more handlers and enable then when really used (*)

tasks.appendaction("processors", "normalizers", "fonts.collections.process")
tasks.appendaction("processors", "normalizers", "fonts.checkers.missing")                    -- *

tasks.appendaction("processors", "characters",  "chars.handle_mirroring")                    -- *
tasks.appendaction("processors", "characters",  "chars.handle_casing")                       -- *
tasks.appendaction("processors", "characters",  "chars.handle_breakpoints")                  -- *
tasks.appendaction("processors", "characters",  "scripts.preprocess")

tasks.appendaction("processors", "words",       "kernel.hyphenation")
tasks.appendaction("processors", "words",       "languages.words.check")                     -- * disabled


tasks.appendaction("processors", "fonts",       "nodes.process_characters")
tasks.appendaction("processors", "fonts",       "nodes.inject_kerns")
tasks.appendaction("processors", "fonts",       "nodes.protect_glyphs", nil, "nohead")
tasks.appendaction("processors", "fonts",       "kernel.ligaturing")
tasks.appendaction("processors", "fonts",       "kernel.kerning")

tasks.appendaction("processors", "lists",       "lists.handle_spacing")                      -- * disabled
tasks.appendaction("processors", "lists",       "lists.handle_kerning")                      -- * disabled

tasks.appendaction("shipouts",   "normalizers", "nodes.cleanup_page")
tasks.appendaction("shipouts",   "normalizers", "nodes.add_references")                      -- *
tasks.appendaction("shipouts",   "normalizers", "nodes.add_destinations")                    -- *
tasks.appendaction("shipouts",   "normalizers", "nodes.rules.process")                       -- * disabled
tasks.appendaction("shipouts",   "normalizers", "nodes.shifts.process")                      -- * disabled

tasks.appendaction("shipouts",   "finishers",   "shipouts.handle_color")
tasks.appendaction("shipouts",   "finishers",   "shipouts.handle_transparency")
tasks.appendaction("shipouts",   "finishers",   "shipouts.handle_colorintent")               -- *
tasks.appendaction("shipouts",   "finishers",   "shipouts.handle_negative")                  -- *
tasks.appendaction("shipouts",   "finishers",   "shipouts.handle_effect")                    -- *
tasks.appendaction("shipouts",   "finishers",   "shipouts.handle_viewerlayer")               -- *

tasks.appendaction("math",       "normalizers", "noads.relocate_characters", nil, "nohead")
tasks.appendaction("math",       "normalizers", "noads.resize_characters",   nil, "nohead")
tasks.appendaction("math",       "normalizers", "noads.respace_characters",  nil, "nohead")

tasks.appendaction("math",       "builders",    "noads.mlist_to_hlist")

-- quite experimental

tasks.appendaction("finalizers", "lists",       "nodes.repackage_graphicvadjust")            -- *

-- speedup: see * -- only kick in when used

tasks.disableaction("processors", "languages.words.check")
tasks.disableaction("processors", "lists.handle_spacing")
tasks.disableaction("processors", "lists.handle_kerning")
tasks.disableaction("shipouts",   "nodes.rules.process")
tasks.disableaction("shipouts",   "nodes.shifts.process")