summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/mandocdb.c
AgeCommit message (Expand)Author
2014-09-09If a manpath directory (for example, a _whatdb entry from man.conf(5)Ingo Schwarze
2014-09-07Do not report a page as arch=any merely because .Dt lacks the third argument.Ingo Schwarze
2014-09-07fix debugging outputIngo Schwarze
2014-09-03Add *.gz support to apropos(1) -a, manm(1), and even mandoc(1).Ingo Schwarze
2014-09-03If a manual page is installed gzip(1)ed, let makewhatis(8) takeIngo Schwarze
2014-09-01When makewhatis(8) finds an .so link after the manual being pointed toIngo Schwarze
2014-08-23Fix fd leak when fdopen fails.doug
2014-08-08Absurdly, the return value of sqlite3_column_text()Ingo Schwarze
2014-08-08Bring the handling of defective prologues even closer to groff,Ingo Schwarze
2014-06-21Prefix messages about bad command line options and argumentsIngo Schwarze
2014-06-20More tweaking of set_basedir().Ingo Schwarze
2014-06-19Some simple set_basedir() cleanup; more to come.Ingo Schwarze
2014-06-18Don't display "unable to open mandoc.db" error messages (SQLITE_CANTOPEN)Stuart Henderson
2014-06-05work-around issue in makewhatis, that expects its current dir to NOT be /.Marc Espie
2014-05-12adjust to ohash being in libutil now, and to the interface changes.Marc Espie
2014-05-07Render roff escape sequences contained in manual page descriptionsIngo Schwarze
2014-05-07Fix two memory leaks in makewhatis -n:Ingo Schwarze
2014-04-27Improve error handling in dbopen(). If PRAGMA SQL statements fail,Ingo Schwarze
2014-04-25Reduce the verbosity of makewhatis -t:Ingo Schwarze
2014-04-23Audit malloc(3)/calloc(3)/realloc(3) usage.Ingo Schwarze
2014-04-23Audit strlcpy(3)/strlcat(3) usage:Ingo Schwarze
2014-04-23improve SQL style: avoid "SELECT *", be explicit in what columns we want;Ingo Schwarze
2014-04-20KNF: case (FOO): -> case FOO, remove /* LINTED */ and /* ARGSUSED */,Ingo Schwarze
2014-04-19Two minor tweaks regarding the fallback from -u/-d to default mode:Ingo Schwarze
2014-04-19Properly handle symlinks (hardlinks and .so only files were already ok):Ingo Schwarze
2014-04-18In update mode, when opening the database fails, probably because it isIngo Schwarze
2014-04-16Rename the mpages.id column to mpages.pageid. There is no good reasonIngo Schwarze
2014-04-16Give the mlinks and keys tables a pageid index,Ingo Schwarze
2014-04-13Unify description handling across all document types (mdoc, man, cat).Ingo Schwarze
2014-04-13better error reporting in case of SQL errors: mention dir and fileIngo Schwarze
2014-04-10Next speed optimization step for the new apropos(1).Ingo Schwarze
2014-04-09After careful gprof(1)ing of the new apropos(1), move the descriptionsIngo Schwarze
2014-04-04In -p (picky) mode, warn unless each filename (aka mlink)Ingo Schwarze
2014-04-04Warn about missing mlinks.Ingo Schwarze
2014-04-04Remember which names are in the NAME section.Ingo Schwarze
2014-04-04When the -n or -t flag is given to makewhatis(8),Ingo Schwarze
2014-04-03Instead of silently doing nothing at all,Ingo Schwarze
2014-04-03Rename the -W option to -p (mnemonics: picky, print to stderr):Ingo Schwarze
2014-04-03The -v option of mandocdb(8) clashes with the -v option of espie@'sIngo Schwarze
2014-03-26Without bloating mandoc(1) itself, let mandocdb(8) support filesIngo Schwarze
2014-03-26Improve error reporting.Ingo Schwarze
2014-03-23If an .Nd block contains macros, avoid fragmented entries in mandocdb(8),Ingo Schwarze
2014-03-22If a man(7) NAME section contains macros, avoid truncated or emptyIngo Schwarze
2014-03-21avoid repetitive code for asprintf error handlingIngo Schwarze
2014-03-21The files mandoc.c and mandoc.h contained both specialised low-levelIngo Schwarze
2014-03-19Register pure .so pages as mlinks, not as mpages.Ingo Schwarze
2014-03-19Without the MPARSE_SO option, if the file contains nothing but aIngo Schwarze
2014-03-19Generalize the mparse_alloc() and roff_alloc() functions by givingIngo Schwarze
2014-03-18Allow checking that databases are up to date even when you have no writeIngo Schwarze
2014-01-22Implement the \: (optional line break) escape sequence,Ingo Schwarze