summaryrefslogtreecommitdiff
path: root/src/luaotfload-init.lua
Commit message (Collapse)AuthorAgeFilesLines
* [scripts, init] include font-otc at the appropriate placesPhilipp Gesang2016-08-151-0/+1
|
* [init] postpone loading of font-tfmPhilipp Gesang2016-07-071-2/+2
|
* [fontloader] import font-oclPhilipp Gesang2016-06-121-0/+2
| | | | | Some of the more absurd aspects of fonts ;) This will fork inkscape for the actual SVG processing.
* [init] adapt Context base path for file loaderPhilipp Gesang2016-06-101-10/+31
| | | | | | | | | Fix issue #344 The paths changed a while ago making a change necessary. We can’t just replace the path because older versions of the tree would fail, rendering bisection unusable. We compensate by testing the candidate directories beforehand.
* [fontloader] include font-one.luaPhilipp Gesang2016-05-201-0/+2
|
* [import,fontloader] pull new AFM/Type1 codePhilipp Gesang2016-05-091-4/+4
|
* [*] shred 2014 fontloaderPhilipp Gesang2016-04-191-3/+0
| | | | | | This one hasn’t been touched for ages. The will be no compatibility loader this year. For testing, creating a loader on the fly from the Git repos is sufficient.
* [init] avoid infinite recursion in characters.__indexPhilipp Gesang2016-04-131-1/+1
| | | | Fallout of the new character table loading routine.
* [aux,init] move lazy char-def loading code into earlier stage of initializationPhilipp Gesang2016-04-091-3/+131
| | | | | | | | | | | | | | The fontloader requires parts of the ``characters`` table to be present at load time. This turns out to interfere with our custom of installing the lazy loader for the table components only after the fontloader has been injected. Since inserting the code at the appropriate place in the loading chain would be tedious and unmaintainable due to the various load options, we just preinstall the metatable onto an empty table prior to loading the loader. Some precautions had to be taken regarding the ``classifiers`` subhash of the table that needs to be relocated from the data we received via mkcharacters.
* [init] force preloading of the character tablePhilipp Gesang2016-04-081-0/+3
|
* [init] addremove fontloader filesPhilipp Gesang2016-04-081-22/+35
|
* [init] fix Context module sequencev2.6-fix-5showPhilipp Gesang2016-01-221-3/+3
|
* [init] always log final fontloader choicePhilipp Gesang2016-01-211-14/+14
|
* [init] install some more accessors required by the fontloaderPhilipp Gesang2015-12-221-1/+8
|
* [init] set up stubs for pre-0.87 LuatexPhilipp Gesang2015-12-211-4/+36
|
* [init] suppress one less useful messagePhilipp Gesang2015-12-091-1/+1
|
* [init] typoDohyun Kim2015-11-301-1/+1
|
* [*] tidy up headers, attributionsv2.6-rc3Philipp Gesang2015-11-291-1/+1
|
* [doc,init] clarify default/reference distinctionPhilipp Gesang2015-11-281-1/+10
| | | | | * default: our package (without lualibs) * reference: the package from upstream
* [init] treat known fontloaders as special casePhilipp Gesang2015-11-181-3/+9
| | | | | Defaulting too soon will prevent loading other loaders like the TL 2014 one we ship for backwards compatibility.
* [init] handle case for reference loader firstPhilipp Gesang2015-11-181-2/+9
| | | | Since it’s the trivial case, expected in 99 % of runs.
* [init] fix pathless Context module loadingPhilipp Gesang2015-11-181-3/+7
|
* [main,init] implement path dependent loading of context modulesPhilipp Gesang2015-11-171-26/+35
|
* [init] unify both Context load branchesPhilipp Gesang2015-11-171-40/+63
|
* [init] rework fontloader choicesPhilipp Gesang2015-11-171-6/+29
|
* [init] access the context loader from initPhilipp Gesang2015-11-101-1/+36
| | | | Works fine now by choosing the “context” fontloader in luaotfloadrc.
* [init,conf] enable direct loading of fontloader componentsPhilipp Gesang2015-11-091-20/+33
| | | | | | | | | | | | | | For now, this pertains only to the modules we ship in Luaotfload. For loading from Context we still need a step to distinguish between the namespaced versions of the files, the pure ones in texmf/…/base, and the Luatex-Fonts ones. But yeah, setting [run] fontloader = unpackaged in the luaotfloadrc now works splendidly.
* [main,init] add no-op loader for fontloader filesPhilipp Gesang2015-11-091-15/+23
|
* [*] kill off file headersPhilipp Gesang2015-11-051-2/+0
| | | | We have the VCS info in the status file; these things are just silly.
* [main, *] convert for centralized initialization routinePhilipp Gesang2015-09-271-0/+2
|
* [main, parsers] prepare for deferred initializationPhilipp Gesang2015-09-271-2/+2
|
* [main,init,db,resolvers] separate resolvers from main into separate filePhilipp Gesang2015-07-231-0/+2
|
* [init,main,package] split initialization in early and late stagePhilipp Gesang2015-07-221-4/+14
| | | | | | | | | | | | | | | | | | | | | This is a big move. Due to the restructuring of the initialization we can now separate the early tasks -- mostly dirty stuff like writing globals -- from the later stage where we actually inject the actual font loader. As a consequence, the basic configuration is now present before the font loader is injected. It’s not complete, though, in that the reconfiguration step must still be executed after the font loader is there, since some config variables require values to be set up by the loader. A decision is pending regarding how we address the situation; possible approaches are, in order of increasing complexity: * reconfigure twice, skip some of the steps the first time through * split reconfiguration into two stages * make configuration independent of fontloader values Design-wise, the last point would be the most desirable, naturally. Though the fontloader has been known to require extensive static preparation which might very well make that strategy impossible or unjustifiably demanding. We’ll see how it plays out …
* [init] make saved globals inaccessiblePhilipp Gesang2015-07-221-10/+7
|
* [init,override] move AGL initialization into post fontloader hookPhilipp Gesang2015-07-161-0/+68
|
* [init] implement hook list for post-fontloader initializationPhilipp Gesang2015-07-161-5/+30
|
* [init] remove annyoing bannerPhilipp Gesang2015-06-211-16/+1
|
* [main, init] partition initialization into a series of routinesPhilipp Gesang2015-06-211-91/+110
|
* [init] move late initialization stage from toplevel into dedicated subroutinesPhilipp Gesang2015-06-201-36/+47
|
* [init] adapt log messagesPhilipp Gesang2015-06-201-12/+12
|
* [init] add stub for module sanitizationPhilipp Gesang2015-06-201-0/+8
|
* [main, init] move fontloader-specific stuff completely into initPhilipp Gesang2015-06-201-0/+252
|
* [main,init] separate loading of fontloader and lualibs packagesPhilipp Gesang2015-06-091-0/+21
|
* [init] prepare fontloader initialization componentPhilipp Gesang2015-05-261-0/+38