aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandocdb.c
Commit message (Expand)AuthorAgeFilesLines
...
* Audit malloc(3)/calloc(3)/realloc(3) usage.Ingo Schwarze2014-04-231-5/+5
* Audit strlcpy(3)/strlcat(3) usage:Ingo Schwarze2014-04-231-23/+23
* improve SQL style: avoid "SELECT *", be explicit in what columns we want;Ingo Schwarze2014-04-231-2/+3
* KNF: case (FOO): -> case FOO:, remove /* LINTED */ and /* ARGSUSED */,Ingo Schwarze2014-04-201-66/+67
* Two minor tweaks regarding the fallback from -u/-d to default mode:Ingo Schwarze2014-04-191-7/+9
* Properly handle symlinks (hardlinks and .so only files were already ok):Ingo Schwarze2014-04-191-17/+76
* In update mode, when opening the database fails, probably because it isIngo Schwarze2014-04-181-8/+18
* Rename the mpages.id column to mpages.pageid. There is no good reasonIngo Schwarze2014-04-161-12/+12
* Give the mlinks and keys tables a pageid index,Ingo Schwarze2014-04-161-2/+4
* Unify description handling across all document types (mdoc, man, cat).Ingo Schwarze2014-04-131-9/+4
* better error reporting in case of SQL errors: mention dir and fileIngo Schwarze2014-04-131-9/+9
* Next speed optimization step for the new apropos(1).Ingo Schwarze2014-04-101-27/+65
* After careful gprof(1)ing of the new apropos(1), move the descriptionsIngo Schwarze2014-04-091-18/+9
* In -p (picky) mode, warn unless each filename (aka mlink)Ingo Schwarze2014-04-041-25/+30
* Warn about missing mlinks.Ingo Schwarze2014-04-041-1/+41
* Remember which names are in the NAME section.Ingo Schwarze2014-04-041-6/+9
* When the -n or -t flag is given to makewhatis(8),Ingo Schwarze2014-04-041-6/+40
* Instead of silently doing nothing at all,Ingo Schwarze2014-04-031-1/+6
* Rename the -W option to -p (mnemonics: picky, print to stderr):Ingo Schwarze2014-04-031-8/+11
* The -v option of mandocdb(8) clashes with the -v option of espie@'sIngo Schwarze2014-04-031-13/+13
* Without bloating mandoc(1) itself, let mandocdb(8) support filesIngo Schwarze2014-03-261-17/+81
* Improve error reporting.Ingo Schwarze2014-03-261-34/+52
* If an .Nd block contains macros, avoid fragmented entries in mandocdb(8),Ingo Schwarze2014-03-231-26/+4
* If a man(7) NAME section contains macros, avoid truncated or emptyIngo Schwarze2014-03-231-47/+8
* avoid repetitive code for asprintf error handlingIngo Schwarze2014-03-231-5/+2
* The files mandoc.c and mandoc.h contained both specialised low-levelIngo Schwarze2014-03-231-1/+2
* Register pure .so pages as mlinks, not as mpages.Ingo Schwarze2014-03-191-20/+68
* Without the MPARSE_SO option, if the file contains nothing but aIngo Schwarze2014-03-191-2/+2
* Generalize the mparse_alloc() and roff_alloc() functions by givingIngo Schwarze2014-03-191-6/+6
* Allow checking that databases are up to date even when you have no writeIngo Schwarze2014-03-181-21/+95
* Implement the \: (optional line break) escape sequence,Ingo Schwarze2014-01-221-6/+15
* Avoid the risk of trying to modify a literal string.Ingo Schwarze2014-01-191-3/+4
* Always store the arch in lower-case only.Ingo Schwarze2014-01-191-6/+10
* Support a second -v on mandocdb(8) to show keys while they are being added;Ingo Schwarze2014-01-191-2/+17
* Cope with slightly broken NAME sections in man(7) pagesIngo Schwarze2014-01-181-1/+10
* Drop the AUTOINCREMENT PRIMARY KEYs from the mlinks and keys tables.Ingo Schwarze2014-01-181-5/+3
* Despite some experimenting, i'm unable to find any relevant effect ofIngo Schwarze2014-01-181-4/+2
* Do not sync to disk after each individual manual page (duh!),Ingo Schwarze2014-01-061-5/+7
* Fix mandocdb(8) -d and -u.Ingo Schwarze2014-01-061-15/+36
* Rename dbindex() to dbadd() to be less confusing.Ingo Schwarze2014-01-061-6/+6
* Remove the redundant "file" column from the "mlinks" table.Ingo Schwarze2014-01-061-4/+2
* Drop Nd from the mpages table, it is still in the keys table.Ingo Schwarze2014-01-061-15/+2
* Add an option -Q (quick) to mandocdb(8)Ingo Schwarze2014-01-051-8/+12
* Rip out the complete "reachable" checks, without replacement.Ingo Schwarze2014-01-051-69/+7
* Remove the obsolete file name column from the mpages table.Ingo Schwarze2014-01-051-14/+2
* Remove the obsolete sec and arch columns from the mpages table.Ingo Schwarze2014-01-051-8/+4
* Reimplement apropos -s NUM -S ARCH EXPR by internally converting it toIngo Schwarze2014-01-051-3/+5
* Put section and architecture info into the keys table,Ingo Schwarze2014-01-051-3/+11
* Avoid "utf8" in the names of a function and a struct memberIngo Schwarze2014-01-021-19/+19
* Do not put UTF-8-encoded strings into the database by default, use ASCII.Ingo Schwarze2014-01-021-17/+35