Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | move mandocdb(1) to mandocdb(8) | Ingo Schwarze | 2011-07-14 | 4 | -31/+32 |
| | | | | "please make this change" kristaps@ | ||||
* | Rename makewhatis [back] into mandocdb. This is to maintain consistency | Kristaps Dzonsons | 2011-07-14 | 4 | -28/+1324 |
| | | | | | | 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 of | Kristaps Dzonsons | 2011-07-12 | 3 | -3/+6 |
| | | | | messages. | ||||
* | Re-ordered logic in makewhatis to iterate over the index file only once. | Kristaps Dzonsons | 2011-07-12 | 1 | -97/+81 |
| | | | | This is much more efficient. | ||||
* | Small HTML compatibility fix.VERSION.1.11.4 | Kristaps Dzonsons | 2011-07-12 | 1 | -1/+1 |
| | |||||
* | Fixed some uninitialised values found during lint check. | Kristaps Dzonsons | 2011-07-12 | 1 | -3/+3 |
| | |||||
* | Note version 1.11.4 bits. Here we go! | Kristaps Dzonsons | 2011-07-12 | 2 | -9/+6 |
| | |||||
* | Fairly straightforward patch adding basic update (-u) and remove (-r) | Kristaps Dzonsons | 2011-07-11 | 2 | -18/+172 |
| | | | | | 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 Dzonsons | 2011-07-11 | 1 | -1/+18 |
| | |||||
* | Note we're no longer using temporary files. | Kristaps Dzonsons | 2011-07-11 | 1 | -6/+0 |
| | |||||
* | Don't use a temporary buffer (unless people yell to have it back in), | Kristaps Dzonsons | 2011-07-11 | 1 | -78/+55 |
| | | | | and clean up the parse process a bit. No big changes. | ||||
* | Be more specific about `Dv', `Er', and `Ev'. | Kristaps Dzonsons | 2011-07-11 | 1 | -4/+18 |
| | |||||
* | Make sure constants in mandoc.3 use the `Dv' macro. | Kristaps Dzonsons | 2011-07-11 | 1 | -5/+13 |
| | |||||
* | Have descriptions for -man documents in makewhatis be properly collected. | Kristaps Dzonsons | 2011-07-10 | 1 | -1/+4 |
| | |||||
* | Spaces must be preserved in -T[x]html literal mode. | Kristaps Dzonsons | 2011-07-09 | 1 | -0/+2 |
| | |||||
* | Clarify the role of `RS' in man(7) and also fix a bogus cross-reference. | Kristaps Dzonsons | 2011-07-08 | 1 | -5/+8 |
| | |||||
* | Make sure that `br' and `sp' don't emit space before the initial `SH' in | Kristaps Dzonsons | 2011-07-08 | 1 | -4/+19 |
| | | | | | | -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 a | Kristaps Dzonsons | 2011-07-08 | 1 | -3/+25 |
| | | | | | | | | 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 Dzonsons | 2011-07-07 | 1 | -1/+3 |
| | |||||
* | Considerably fix up -man -T[x]html's handling of verbatim spaces (`nf'), | Kristaps Dzonsons | 2011-07-07 | 1 | -17/+19 |
| | | | | which before were being handled erratically. | ||||
* | Clean up how -man -T[x]html handles TP, IP, and HP (dd lists and | Kristaps Dzonsons | 2011-07-07 | 1 | -78/+14 |
| | | | | | 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 the | Kristaps Dzonsons | 2011-07-07 | 1 | -60/+7 |
| | | | | hash chain or an extra function for checking matches. | ||||
* | Note the strange `if'+newline issue raised by schwarze@. | Kristaps Dzonsons | 2011-07-07 | 1 | -0/+4 |
| | |||||
* | Fix a bug in the -man parser where deleting nodes (such as `PP' or `LP' | Kristaps Dzonsons | 2011-07-07 | 1 | -6/+6 |
| | | | | | | 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 Dzonsons | 2011-07-04 | 1 | -1/+2 |
| | |||||
* | The bufcat() function in -T[x]html was eating one byte off the end of its | Kristaps Dzonsons | 2011-07-04 | 2 | -1/+2 |
| | | | | | | 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 Dzonsons | 2011-07-03 | 4 | -3/+8 |
| | | | | | 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 Schwarze | 2011-07-03 | 1 | -0/+8 |
| | | | | | - .\} breaks - .SH implies .fi | ||||
* | We obviously need man.h and mdoc.h installed as mentioned in mandoc.3. | Kristaps Dzonsons | 2011-07-03 | 1 | -1/+1 |
| | |||||
* | Added `Er' in ERRORS scan to makewhatis. | Kristaps Dzonsons | 2011-07-01 | 2 | -1/+17 |
| | |||||
* | Added search for `Ev' environment variables in ENVIRONMENT section. | Kristaps Dzonsons | 2011-07-01 | 2 | -1/+17 |
| | |||||
* | Allow `Nd' scarfed data to allow for non-text nodes as the first node, as well. | Kristaps Dzonsons | 2011-07-01 | 1 | -21/+20 |
| | |||||
* | Add some notes to index.sgml. This does not signal a release. | Kristaps Dzonsons | 2011-07-01 | 1 | -35/+12 |
| | |||||
* | Make scan for text tokens in a line recursive. This is really only for | Kristaps Dzonsons | 2011-07-01 | 1 | -34/+38 |
| | | | | | 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 Dzonsons | 2011-07-01 | 2 | -1/+20 |
| | |||||
* | Ouch: predefined strings moved into roff.c weren't being reinitalised | Kristaps Dzonsons | 2011-06-30 | 2 | -0/+7 |
| | | | | | after the first parse. Do this, but note there are more efficient ways just waiting for a table of macros. | ||||
* | First fix how `sp 1' doesn't imply `1v' (it now does) and that 1 | Kristaps Dzonsons | 2011-06-29 | 5 | -8/+16 |
| | | | | | | followed by non-digits, e.g. `1g', really means `1'. Next, fix some spacing issues where `sp' was invoked in -man after sections or subsections. Make sure this behaviour is mirrored in -Thtml. | ||||
* | Add cross-reference records to makewhatis. | Kristaps Dzonsons | 2011-06-25 | 2 | -1/+26 |
| | |||||
* | Add more documentation for libmandoc. | Kristaps Dzonsons | 2011-06-22 | 1 | -6/+51 |
| | |||||
* | Clean up makewhatis.c a little bit and add verbosity (-v). | Kristaps Dzonsons | 2011-06-22 | 2 | -29/+42 |
| | |||||
* | Make sure hash is initialised to NULL and remove an unused variable. | Kristaps Dzonsons | 2011-06-22 | 1 | -2/+2 |
| | |||||
* | Try again to get the transfer from hash to btree working. This time | Kristaps Dzonsons | 2011-06-22 | 1 | -17/+18 |
| | | | | | | | just closing and re-opening the database, as deleting records with (*hash->del) either in the scan loop or after it causes uncertain behaviour (left-over keys, mystery keys, etc.). This finally does the Right Thing (tm). | ||||
* | Fix broken transfer from hashtable to btree for makewhatis.c. | Kristaps Dzonsons | 2011-06-21 | 1 | -11/+10 |
| | |||||
* | Note mandoc-cgi -> mandoc-tools. | Kristaps Dzonsons | 2011-06-21 | 1 | -1/+3 |
| | |||||
* | Let descriptions (bit-mask 0x100) also be mined for text. This doubles | Kristaps Dzonsons | 2011-06-21 | 3 | -6/+19 |
| | | | | | the database size (one record for each file), but it's critical information. | ||||
* | Have descriptions also use struct buf. This completes the internal | Kristaps Dzonsons | 2011-06-21 | 1 | -110/+52 |
| | | | | migration to in-memory hashing and passing buffers instead of DBTs. | ||||
* | Don't let empty strings into the makewhatis keyword database. | Kristaps Dzonsons | 2011-06-21 | 2 | -2/+3 |
| | |||||
* | Make sure makewhatis.1 is documenting the correct bit-fields. | Kristaps Dzonsons | 2011-06-21 | 1 | -12/+9 |
| | |||||
* | Big change to makewhatis: use an in-memory hashtable to collapse | Kristaps Dzonsons | 2011-06-21 | 1 | -129/+183 |
| | | | | | | multiple types of the same name (e.g., "foo" being a manual name, utility name, etc.) into a single bitmask'd region. This considerably reduces the size of the keyword database. | ||||
* | Make -T[x]html in -man also be aware of the vertical-space issues in the | Kristaps Dzonsons | 2011-06-18 | 1 | -4/+28 |
| | | | | last few commits. |