aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright email.Kristaps Dzonsons2011-07-172-4/+4
|
* Remove unused function.Kristaps Dzonsons2011-07-172-45/+2
|
* Fix lost allocation.Kristaps Dzonsons2011-07-171-3/+1
|
* Remember to NULL-ify new keys/vals.Kristaps Dzonsons2011-07-172-2/+3
|
* Provide implementations of `define', `set', and `unset'.Kristaps Dzonsons2011-07-174-76/+266
| | | | | | Tie them into the stream of data. Document these appropriate, bringing in the grammar as defined by the original eqn manual (Kernighan/Richie).
* Warn if equation `define' key is quoted (groff-ism).Kristaps Dzonsons2011-07-173-7/+25
|
* Add initial `define' support for eqn(7).Kristaps Dzonsons2011-07-173-14/+129
| | | | | | | | | This works by iterating over a simple list. It's a slow, auditable early implementation. Data is read (the reading function will be reused) then parsed, then the line re-run if remaining stuff exists. Note this function isn't the same as mandoc_getarg(), as eqn(7) uses a different system for reading quoted strings. This doesn't actually use the defines.
* Remove prototype since moved into mandoc.h.Kristaps Dzonsons2011-07-171-2/+1
|
* improve documentation of .Bl -column .It TaIngo Schwarze2011-07-151-25/+43
| | | | using feedback from kristaps@, ok jmc@
* Big step forward in bringing mandocdb in line with most makewhatis-typeKristaps Dzonsons2011-07-152-79/+229
| | | | systems.
* First step of making mandocdb a true makewhatis/mandb replacement:Kristaps Dzonsons2011-07-152-129/+138
| | | | | | | accept a set of directories on the command line ("manpaths") that are recursed for files. The databases are created in each manpath root. This temporarily removes OP_UPDATE and OP_DELETE functionality, which will be added back in.
* Expose mandoc_strdup() to the outside world.Kristaps Dzonsons2011-07-151-1/+2
|
* Move parts of mandocdb that "do stuff" to the databases into their ownKristaps Dzonsons2011-07-151-126/+174
| | | | | functions. This will make it easier to call repeatedly (for different directoreis) as must be done with the new interfaces being developed.
* Apparently these weren't removed properly...Kristaps Dzonsons2011-07-142-1296/+0
|
* move mandocdb(1) to mandocdb(8)Ingo Schwarze2011-07-144-34/+35
| | | | "please make this change" kristaps@
* Rename makewhatis [back] into mandocdb. This is to maintain consistencyKristaps Dzonsons2011-07-144-29/+1325
| | | | | | with OpenBSD, which is sandboxing the code for merge. It makes sense because it doesn't really make a `makewhatis' file in the traditional sense, so it may be confusing.
* Have equation be allocated with mparse. Will be needed for logging ofKristaps Dzonsons2011-07-123-6/+9
| | | | messages.
* Re-ordered logic in makewhatis to iterate over the index file only once.Kristaps Dzonsons2011-07-121-98/+82
| | | | This is much more efficient.
* Small HTML compatibility fix.VERSION_1_11_4Kristaps Dzonsons2011-07-121-2/+2
|
* Fixed some uninitialised values found during lint check.Kristaps Dzonsons2011-07-121-4/+4
|
* Note version 1.11.4 bits. Here we go!Kristaps Dzonsons2011-07-122-10/+7
|
* Fairly straightforward patch adding basic update (-u) and remove (-r)Kristaps Dzonsons2011-07-112-20/+174
| | | | | functionality to makewhatis. This is somewhat expensive (requiring the index file to be trawled multiple times), but it's a good start.
* Use mandoc.1's error codes (we use them internally).Kristaps Dzonsons2011-07-111-2/+19
|
* Note we're no longer using temporary files.Kristaps Dzonsons2011-07-111-8/+2
|
* Don't use a temporary buffer (unless people yell to have it back in),Kristaps Dzonsons2011-07-111-79/+56
| | | | and clean up the parse process a bit. No big changes.
* Be more specific about `Dv', `Er', and `Ev'.Kristaps Dzonsons2011-07-111-6/+20
|
* Make sure constants in mandoc.3 use the `Dv' macro.Kristaps Dzonsons2011-07-111-7/+15
|
* Have descriptions for -man documents in makewhatis be properly collected.Kristaps Dzonsons2011-07-101-2/+5
|
* Spaces must be preserved in -T[x]html literal mode.Kristaps Dzonsons2011-07-091-1/+3
|
* Clarify the role of `RS' in man(7) and also fix a bogus cross-reference.Kristaps Dzonsons2011-07-081-7/+10
|
* Make sure that `br' and `sp' don't emit space before the initial `SH' inKristaps Dzonsons2011-07-081-5/+20
| | | | | | -man. This actually seems to be what groff does. Sort-of. Anyway, it's required to get perlpod pages rendered nicely, so until perlpod stops producing shit, do it. Ok schwarze@.
* Fix two issues: the first, where a `.\}' wasn't being interpreted as aKristaps Dzonsons2011-07-081-4/+26
| | | | | | | | proper macro in some conditions, resulting in strange parse errors. The second, where `\}' was being re-written as `\&'. Instead, we re-write this as two spaces OR nothing at all, if at the end of line. This isn't exactly what groff does (who knows...) but is a much safer and better way than how I was doing it before.
* Fix handling of the `\c' escape in -T[x]html.Kristaps Dzonsons2011-07-071-2/+4
|
* Considerably fix up -man -T[x]html's handling of verbatim spaces (`nf'),Kristaps Dzonsons2011-07-071-18/+20
| | | | which before were being handled erratically.
* Clean up how -man -T[x]html handles TP, IP, and HP (dd lists andKristaps Dzonsons2011-07-071-79/+15
| | | | | indented paragraph macros, respectively). This cleans up code and also cleans up the output quite a lot.
* Simplify chars.c---there's really no need for extra code to reorder theKristaps Dzonsons2011-07-071-61/+8
| | | | hash chain or an extra function for checking matches.
* Note the strange `if'+newline issue raised by schwarze@.Kristaps Dzonsons2011-07-071-1/+5
|
* Fix a bug in the -man parser where deleting nodes (such as `PP' or `LP'Kristaps Dzonsons2011-07-071-7/+7
| | | | | | in certain situations) caused the next macros to be assigned as siblings instead of child nodes to the original parent. Noticed and ok by schwarze@.
* Install sources with mode 0644. Noted by Jack Nagel. Ok schwarze@.Kristaps Dzonsons2011-07-041-1/+2
|
* The bufcat() function in -T[x]html was eating one byte off the end of itsKristaps Dzonsons2011-07-042-3/+4
| | | | | | concatenated string. This for some reason hasn't been found before now... ? Anyway, fixed, and make the IDs created again be correctly prefixed by a letter as per the HTML spec.
* Fix a TODO noted by schwarze@, originally by Christian Weisgerber:Kristaps Dzonsons2011-07-034-8/+13
| | | | | literal mode (`nf') is ended by SH (and, it turns out, SS as well). Noted the updated behaviour in man.7 as well.
* two new bugs reported by naddy@:Ingo Schwarze2011-07-031-1/+9
| | | | | - .\} breaks - .SH implies .fi
* We obviously need man.h and mdoc.h installed as mentioned in mandoc.3.Kristaps Dzonsons2011-07-031-1/+1
|
* Added `Er' in ERRORS scan to makewhatis.Kristaps Dzonsons2011-07-012-3/+19
|
* Added search for `Ev' environment variables in ENVIRONMENT section.Kristaps Dzonsons2011-07-012-3/+19
|
* Allow `Nd' scarfed data to allow for non-text nodes as the first node, as well.Kristaps Dzonsons2011-07-011-22/+21
|
* Add some notes to index.sgml. This does not signal a release.Kristaps Dzonsons2011-07-011-36/+13
|
* Make scan for text tokens in a line recursive. This is really only forKristaps Dzonsons2011-07-011-35/+39
| | | | | the benefit of `Nd', which is the only [to date] node that can consist of sub-nodes.
* Add path reference (`Pa' in FILES section).Kristaps Dzonsons2011-07-012-4/+23
|
* Ouch: predefined strings moved into roff.c weren't being reinitalisedKristaps Dzonsons2011-06-302-2/+9
| | | | | after the first parse. Do this, but note there are more efficient ways just waiting for a table of macros.