Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [*] shred 2014 fontloader | Philipp Gesang | 2016-04-19 | 1 | -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.__index | Philipp Gesang | 2016-04-13 | 1 | -1/+1 |
| | | | | Fallout of the new character table loading routine. | ||||
* | [aux,init] move lazy char-def loading code into earlier stage of initialization | Philipp Gesang | 2016-04-09 | 1 | -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 table | Philipp Gesang | 2016-04-08 | 1 | -0/+3 |
| | |||||
* | [init] addremove fontloader files | Philipp Gesang | 2016-04-08 | 1 | -22/+35 |
| | |||||
* | [init] fix Context module sequencev2.6-fix-5show | Philipp Gesang | 2016-01-22 | 1 | -3/+3 |
| | |||||
* | [init] always log final fontloader choice | Philipp Gesang | 2016-01-21 | 1 | -14/+14 |
| | |||||
* | [init] install some more accessors required by the fontloader | Philipp Gesang | 2015-12-22 | 1 | -1/+8 |
| | |||||
* | [init] set up stubs for pre-0.87 Luatex | Philipp Gesang | 2015-12-21 | 1 | -4/+36 |
| | |||||
* | [init] suppress one less useful message | Philipp Gesang | 2015-12-09 | 1 | -1/+1 |
| | |||||
* | [init] typo | Dohyun Kim | 2015-11-30 | 1 | -1/+1 |
| | |||||
* | [*] tidy up headers, attributionsv2.6-rc3 | Philipp Gesang | 2015-11-29 | 1 | -1/+1 |
| | |||||
* | [doc,init] clarify default/reference distinction | Philipp Gesang | 2015-11-28 | 1 | -1/+10 |
| | | | | | * default: our package (without lualibs) * reference: the package from upstream | ||||
* | [init] treat known fontloaders as special case | Philipp Gesang | 2015-11-18 | 1 | -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 first | Philipp Gesang | 2015-11-18 | 1 | -2/+9 |
| | | | | Since it’s the trivial case, expected in 99 % of runs. | ||||
* | [init] fix pathless Context module loading | Philipp Gesang | 2015-11-18 | 1 | -3/+7 |
| | |||||
* | [main,init] implement path dependent loading of context modules | Philipp Gesang | 2015-11-17 | 1 | -26/+35 |
| | |||||
* | [init] unify both Context load branches | Philipp Gesang | 2015-11-17 | 1 | -40/+63 |
| | |||||
* | [init] rework fontloader choices | Philipp Gesang | 2015-11-17 | 1 | -6/+29 |
| | |||||
* | [init] access the context loader from init | Philipp Gesang | 2015-11-10 | 1 | -1/+36 |
| | | | | Works fine now by choosing the “context” fontloader in luaotfloadrc. | ||||
* | [init,conf] enable direct loading of fontloader components | Philipp Gesang | 2015-11-09 | 1 | -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 files | Philipp Gesang | 2015-11-09 | 1 | -15/+23 |
| | |||||
* | [*] kill off file headers | Philipp Gesang | 2015-11-05 | 1 | -2/+0 |
| | | | | We have the VCS info in the status file; these things are just silly. | ||||
* | [main, *] convert for centralized initialization routine | Philipp Gesang | 2015-09-27 | 1 | -0/+2 |
| | |||||
* | [main, parsers] prepare for deferred initialization | Philipp Gesang | 2015-09-27 | 1 | -2/+2 |
| | |||||
* | [main,init,db,resolvers] separate resolvers from main into separate file | Philipp Gesang | 2015-07-23 | 1 | -0/+2 |
| | |||||
* | [init,main,package] split initialization in early and late stage | Philipp Gesang | 2015-07-22 | 1 | -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 inaccessible | Philipp Gesang | 2015-07-22 | 1 | -10/+7 |
| | |||||
* | [init,override] move AGL initialization into post fontloader hook | Philipp Gesang | 2015-07-16 | 1 | -0/+68 |
| | |||||
* | [init] implement hook list for post-fontloader initialization | Philipp Gesang | 2015-07-16 | 1 | -5/+30 |
| | |||||
* | [init] remove annyoing banner | Philipp Gesang | 2015-06-21 | 1 | -16/+1 |
| | |||||
* | [main, init] partition initialization into a series of routines | Philipp Gesang | 2015-06-21 | 1 | -91/+110 |
| | |||||
* | [init] move late initialization stage from toplevel into dedicated subroutines | Philipp Gesang | 2015-06-20 | 1 | -36/+47 |
| | |||||
* | [init] adapt log messages | Philipp Gesang | 2015-06-20 | 1 | -12/+12 |
| | |||||
* | [init] add stub for module sanitization | Philipp Gesang | 2015-06-20 | 1 | -0/+8 |
| | |||||
* | [main, init] move fontloader-specific stuff completely into init | Philipp Gesang | 2015-06-20 | 1 | -0/+252 |
| | |||||
* | [main,init] separate loading of fontloader and lualibs packages | Philipp Gesang | 2015-06-09 | 1 | -0/+21 |
| | |||||
* | [init] prepare fontloader initialization component | Philipp Gesang | 2015-05-26 | 1 | -0/+38 |