summaryrefslogtreecommitdiff
path: root/otfl-font-nms.lua
Commit message (Collapse)AuthorAgeFilesLines
* migrate files from ‘otfl’ to ‘luaotfload’ prefixPhilipp Gesang2013-04-221-1049/+0
|
* merge from erouxPhilipp Gesang2013-04-211-11/+34
|\
| * Adding a little TODO and commenting a XXXElie Roux2013-04-211-4/+9
| |
| * A wonderful bug fixElie Roux2013-04-211-2/+7
| |
| * Using caches.* functions from ConTeXt (fixes Issue #5)Elie Roux2013-04-211-4/+14
| |
| * As a matter of fact, there was nothing to optimize...Elie Roux2013-04-201-2/+0
| |
| * Adding a little TODO for file lookupElie Roux2013-04-201-0/+3
| |
| * Finishing to fix reference loopElie Roux2013-04-191-1/+3
| |
* | make mkluatexfontdb.lua behave differently if called as *fontdbutil*Philipp Gesang2013-04-211-6/+6
| |
* | decrease verbosity of normal loggingPhilipp Gesang2013-04-211-28/+35
| |
* | fix typo in font-nmsPhilipp Gesang2013-04-191-1/+1
|/
* expand docsPhilipp Gesang2013-04-181-1/+8
|
* log database version mismatchPhilipp Gesang2013-04-171-3/+11
|
* avoid calling table.contains()Philipp Gesang2013-04-171-25/+34
|
* comment code pertaining to lualatex-platformPhilipp Gesang2013-04-171-40/+59
|
* add approximate matching option for mkluatexfontdb.lua --findPhilipp Gesang2013-04-171-38/+162
|
* use locals for table.*Philipp Gesang2013-04-171-8/+11
|
* remove attribute allocation hackPhilipp Gesang2013-04-161-6/+28
|
* use more meaningful identifiers in font-nmsPhilipp Gesang2013-04-161-44/+53
|
* organize font-nmsPhilipp Gesang2013-04-161-112/+195
|
* Preventing loop-references in fontconfig filesElie Roux2013-04-161-5/+7
| | | | | | | I just had this case on a recent Ubuntu... Conflicts: otfl-font-nms.lua
* make fonts.names.resolve() a localPhilipp Gesang2013-04-161-5/+17
|
* add fixes courtesy of Élie Roux to the database codePhilipp Gesang2013-04-161-3/+10
|
* unify loggingPhilipp Gesang2013-04-151-56/+37
|
* rewrite filename loggerPhilipp Gesang2013-04-151-66/+29
|
* enable overrides for Context loggersPhilipp Gesang2013-04-111-4/+0
|
* make loglevel “-q” effectivePhilipp Gesang2013-04-101-17/+20
|
* fix function namesPhilipp Gesang2013-04-091-8/+9
|
* Fixing character escaping errorsElie Roux2013-04-071-2/+2
| | | | | | Some syntax errors in Lua for character escaping were silently ignore by old versions of LuaTeX, but the new one raises errors. Maybe a side effect of Lua 5.2?
* Handle missing names properly.Olof-Joachim Frahm2012-10-231-4/+4
| | | | | For some (possibly broken) fonts, e.g. Gentoo's media-fonts/twmoefonts, the names field is nil, thus breaking lookup even for other fonts. Defaulting to nil if the field is missing fixes this problem.
* Find demibold fonts as wellKhaled Hosny2012-03-271-1/+1
|
* Add commentKhaled Hosny2011-11-141-1/+1
|
* Support DemiBold tooKhaled Hosny2011-11-141-1/+1
|
* More cleanupKhaled Hosny2011-10-161-10/+10
|
* Add support for compiled names cacheKhaled Hosny2011-10-161-7/+17
|
* Remove remenants of long gone featureKhaled Hosny2011-10-161-10/+1
|
* No more pairs()/ipairs()Khaled Hosny2011-10-141-3/+3
|
* otfl-fonts-syn.lua just complicates things, remove itKhaled Hosny2011-10-041-0/+5
|
* Patch otfl-font-def.lua, not yet workingKhaled Hosny2011-10-041-3/+3
|
* Should not error() hereKhaled Hosny2011-10-011-1/+5
|
* Try /usr/local/etc/fonts/fonts.conf before /etc/fonts/fonts.confKhaled Hosny2011-10-011-1/+5
| | | | closes #34
* Fix documentation about default prefixKhaled Hosny2011-10-011-0/+2
| | | | fixes #38
* Whitelist fontsPatrick Gundlach2011-09-291-5/+13
| | | | | Add a whitelist for fonts with "-" in front of the font name (to remove it from the blacklist)
* Unify logging systemsPhilipp Stephani2011-07-241-18/+25
| | | | | | | | | Until now, the logging functions in `otfl-luat-ovr.lua` and the function `log` in `otfl-font-nms.lua` used different syntax conventions, which resulted in suboptimal output when the functions in `otfl-font-nms.lua` were called from the LuaLaTeX module (in contrast to `mkluatexfontdb`). Spotted by Karl Berry, see http://tug.org/pipermail/lualatex-dev/2011-July/001274.html
* Support lualatex-platform module if availablePhilipp Stephani2011-04-281-1/+51
| | | | Use font list reported by operating system if possible, default font directory list otherwise
* Hack to support Demi fontsKhaled Hosny2011-04-211-3/+3
|
* A hack to get libertine's bold recognisedKhaled Hosny2011-03-011-1/+2
|
* Fix infinite loopKhaled Hosny2011-02-051-1/+1
| | | | | | | | names.load() calls names.update() without an argument if no font database is found, but the later will call the former if invoked without an argument. Now calling names.update() with an empty names database. fixes #23
* Fix a typo in fonts.names.scan()Khaled Hosny2011-02-041-1/+1
| | | | This was a debugging leftover that went unnoticed.
* Remove --database-dir and --sys optionsKhaled Hosny2010-11-121-8/+16
| | | | | | | | | | | * --database-dir is useless anyway since we don't support loading names database from arbitrary path. * --sys (and mkluatexfontdb-sys) are dangerous since we will load user specific fonts (in ~/.fonts for example) which can not be loaded by other users (can be security concern as well). If there is real need, we should then implement it properly. + some clean up and less code duplication in mkluatexfontdb.