summaryrefslogtreecommitdiff
path: root/otfl-font-nms.lua
Commit message (Collapse)AuthorAgeFilesLines
* Unused codeKhaled Hosny2010-06-221-7/+0
|
* Lualibs already defines a table.contains() functionKhaled Hosny2010-06-221-12/+0
|
* For consistency with latest ConTeXtKhaled Hosny2010-06-141-1/+1
| | | | The less locally changed ConTeXt files, the simpler my life, so I'm adapting ConTeXt suggested paths instead.
* CosmeticsKhaled Hosny2010-06-141-15/+11
| | | | Utilize lualibs functions when apporiate.
* Fallback to regularKhaled Hosny2010-06-081-0/+5
| | | | | | | If the requested style is not found, fallback to regular. I think this broke in commit b9d377647240804d7d85429a18e1bdf0ff00823c closes #13
* Provide a |fonts.names.scan()| functionKhaled Hosny2010-06-071-1/+14
| | | | | It takes a dir path as input and index its fonts temporarily in the names database, changes are not saved to the disk.
* Log loaded font file before calling |load_font()|Khaled Hosny2010-06-071-6/+6
|
* improve messages slightlyWill Robertson2010-06-051-12/+11
|
* be more verbose when updating the font databaseWill Robertson2010-06-051-2/+2
| | | | | (so users know what's taking so long)
* Continuing the fonts.conf parsing.Elie Roux2010-06-041-17/+67
| | | | | | * comments are handled correctly * include are handled * directories containing "texmf" are not explored... maybe it should be changed?
* Remove spurious elseKhaled Hosny2010-06-041-2/+0
| | | | | This was a leftover from old code. This should fix Adobe Garamond Pro issue.
* Handle bypassing TFM fonts properlyKhaled Hosny2010-05-311-18/+0
| | | | | | | | We now detect tfm fonts much earlier and force a file based lookup, thus bypassing |names.resolve()| completely. So, now |\font\tenrm=cmr10| is exactly the same as |\font\tenrm=file:cmr10| as long as there is a tfm/ofm file named cmr10.
* This code path have never been usedKhaled Hosny2010-05-311-22/+0
|
* Fix file extension filteringKhaled Hosny2010-05-311-1/+1
| | | | | Make sure to check last file extension; ignoring files like foo.ttf.bar-x.xyz.
* Simply file extension handlingKhaled Hosny2010-05-311-16/+12
|
* Fix when a directory is passed to path_normalizeKhaled Hosny2010-05-301-1/+1
| | | | | kpse.readable_file() returns nil if given a directory, so disable this check for now.
* Suppress some warnings when not in verbose modeWill Robertson2010-05-251-2/+2
|
* suppress some warnings when default settingsWill Robertson2010-05-251-5/+9
|
* Fix symlink detectionKhaled Hosny2010-05-251-1/+7
|
* Reading symlinks under non-Windows platformElie Roux2010-05-251-5/+13
| | | | Patch to detect symlinks and follow them in path normalization. Reduces my database by 30 fonts. Please test (especially on Mac OSX).
* docElie Roux2010-05-241-1/+10
|
* Now we use the new system even on UnixesElie Roux2010-05-241-48/+9
| | | | This works fine on my system. Actually it works even better than fc-list, as it finds arial.ttf which fc-list doesn't... strange... please test.
* Oops...Elie Roux2010-05-241-1/+0
|
* Everything works fine under Windows nowElie Roux2010-05-241-1/+1
| | | | Strangely, OSFONTDIR is set under windows... It works even if it's unset anyway.
* Changing the test to see if a font has already been loadedElie Roux2010-05-241-5/+4
| | | | On my system a lot of fonts were indexed two times, this seems to fix it. It's not perfect but that's all we can do with the current database (please tell me if it introduces some regressions).
* First attempt to read fonts.confElie Roux2010-05-241-10/+53
| | | | This seems to work OK... the code don't actually use it as there are other things to debug before, but the function that reads the file works ok on mine (please test on yours if you have time).
* Renaming scan_texmf_tree in scan_texmf_fontsElie Roux2010-05-241-2/+2
| | | | as we don't scan only texmf_tree if OSFONTDIR is set
* A bit of code reorganizationElie Roux2010-05-241-37/+34
| | | | | | (warning very strange and unreadable diff due to indentation change) Now scan_os_fonts just scans os fonts without checking if OSFONTDIR is set or not, but it's called only if OSFONTDIR is not set (makes the code a bit more understandable).
* If save directory doesn't exist, create itKhaled Hosny2010-05-211-2/+6
|
* fix licenses and readme for context-derived files.Will Robertson2010-05-211-1/+1
|
* fix for when logs.info doesn't existWill Robertson2010-05-201-0/+1
| | | | | | (luat-ovr is only loaded with luaotfload, not when mkluatexfontdb is run separately) not sure how I missed this the other day
* Initializing kpse.init_progElie Roux2010-05-191-2/+8
| | | | | | This prevents the call to the pk maker program (that prints an error saying that the pk already exists). This file is not really the place to put such an initialization, I think it should go in the format, but we cannot right now.
* Revert "these are typos from a few commits ago, right?"Will Robertson2010-05-191-6/+6
| | | | This reverts commit 0dd503b00ed24cc4a6628e7c0059c3b20fe0e177.
* temporary fix to avoid LastResort.ttfWill Robertson2010-05-191-0/+23
| | | | Sorry no time to implement a general solution
* generalise which extensions to check (& filter out .ttc on Mac)Will Robertson2010-05-191-5/+26
|
* these are typos from a few commits ago, right?Will Robertson2010-05-191-6/+6
| | | | logs.info certainly doesn't work on my setup...
* simplify logging slightlyWill Robertson2010-05-191-4/+4
|
* don't duplicate code when looping through extsWill Robertson2010-05-191-7/+5
|
* fix static_osx_dirsWill Robertson2010-05-191-4/+5
|
* don't fail if the extension is missingWill Robertson2010-05-191-1/+2
| | | | | (this isn't impossible, but probably only if we're using fc-list in Mac OS X...)
* oopsElie Roux2010-05-191-2/+5
|
* This commit should fix everything about the ofm and tfm priorityElie Roux2010-05-181-3/+15
|
* Fixing the log level when the database is updated inside a documentElie Roux2010-05-181-4/+25
| | | | To do so I added a logs.info function to print something on the terminal and in the logs.
* A bit of documentationElie Roux2010-05-181-0/+5
|
* If the specification is just a filename, not looking for it in the databaseElie Roux2010-05-181-0/+16
| | | | Now if specification.name ends by a font file extention, we look for the font file first with kpse and then in the database.
* Removing the .tfm and .ofm additional extentionElie Roux2010-05-181-2/+2
| | | | Without this my .ofm fonts don't work... Does this commit do something else wrong?
* Printing the name of the loaded database file in the logElie Roux2010-05-171-5/+6
|
* Fix loading TFM fonts with OSFONTDIR setKhaled Hosny2010-05-171-5/+10
| | | | | | If OSFONTDIR is set non-TFM files will be found first if TFM file is asked for, I'm not into the mode of digging the source of this in ConTeXt code, so just force TFM lookup by appending .tfm (or .ofm).
* Fix bug in the previous commitKhaled Hosny2010-05-171-1/+1
|
* Only index the last found instance of a fontKhaled Hosny2010-05-171-12/+26
| | | | | | We were keeping previously found versions of the font in the database and only overriding the status[filename].index which is useless since names.resolve will then found the first instance.