Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Scary-looking but otherwise harmless changes allow me to build for Windows. | Kristaps Dzonsons | 2011-07-24 | 14 | -70/+264 |
| | | | | | | | | | | | | That is to say, with mingw32. This amounts to the following: (1) break compat.c into compat_strlcpy.c and compat_strlcat.c (2) add compat_getsubopt.c (from OpenBSD) and test-getsubopt.c (3) add test-strptime.c for HAVE_STRPTIME (4) add ifdef bits here and there, where necessary (5) remove some harmless unportable stuff (u_char, localtime_r) I've added the appropriate mdocml.zip target to the Makefile, too. | ||||
* | Tuned the initial eqn output, making it completely simple. This | Kristaps Dzonsons | 2011-07-24 | 4 | -63/+49 |
| | | | | completes a full initial eqn system, so I'm tagging a release on it. | ||||
* | Flip on equation printing for -T[x]html. | Kristaps Dzonsons | 2011-07-23 | 6 | -14/+101 |
| | |||||
* | Clarify what eqn actually is. | Kristaps Dzonsons | 2011-07-23 | 1 | -0/+3 |
| | |||||
* | Note GNU extensions in eqn.7. Also add `col' and `pile', which are | Kristaps Dzonsons | 2011-07-23 | 3 | -2/+8 |
| | | | | | mentioned briefly in the eqn User's Manual, but otherwise are unspecified. | ||||
* | Add support for tdefine and ndefine. Consolidate some error messages. Add | Kristaps Dzonsons | 2011-07-23 | 7 | -32/+75 |
| | | | | somem more version notes (getting there). Have the equation nanme be captured. | ||||
* | Raise a warning when text follows the `EN'. | Kristaps Dzonsons | 2011-07-23 | 1 | -1/+7 |
| | |||||
* | Add `fat' font. This pretty much brings us in line with the second | Kristaps Dzonsons | 2011-07-23 | 3 | -1/+3 |
| | | | | edition of eqn. | ||||
* | Ignore `back', `fwd', `up', `down', `mark', and `lineup'. | Kristaps Dzonsons | 2011-07-23 | 2 | -3/+45 |
| | |||||
* | Add matrix support. Also remove "above" notion, as all elements in a | Kristaps Dzonsons | 2011-07-23 | 5 | -32/+81 |
| | | | | list are delimited by their "aboveness" and it's superfluous. | ||||
* | The circumflex is also a special space character. | Kristaps Dzonsons | 2011-07-23 | 3 | -24/+37 |
| | | | | | Note this and clean up some documentation in eqn.7. Also add some version notes, although I'm not ready for a release yet. | ||||
* | Check for and throw away `gfont' eqn macros. | Kristaps Dzonsons | 2011-07-22 | 2 | -3/+26 |
| | |||||
* | Add support for `gsize' eqn token (introduced in second-edition troff). | Kristaps Dzonsons | 2011-07-22 | 5 | -13/+42 |
| | |||||
* | Add all rendered symbols used by eqn. I use the Second-Edition User's | Kristaps Dzonsons | 2011-07-22 | 2 | -47/+100 |
| | | | | | Manual (1978) for this, so it should catch most of them. They just map into the mandoc_char escaped characters. | ||||
* | Add support for 1/2, 1/4, and 3/4 (needed by eqn). | Kristaps Dzonsons | 2011-07-22 | 3 | -1/+7 |
| | |||||
* | Clearer documentation of grammar in eqn.7 and addition of Greek symbols. | Kristaps Dzonsons | 2011-07-22 | 1 | -29/+22 |
| | |||||
* | Support translating Greek characters in eqn. | Kristaps Dzonsons | 2011-07-22 | 1 | -0/+94 |
| | |||||
* | Fix left/right nesting in eqn. | Kristaps Dzonsons | 2011-07-22 | 2 | -4/+8 |
| | |||||
* | Add character output (-Tpdf, -Tps, -Tascii) for equations. This is the | Kristaps Dzonsons | 2011-07-22 | 5 | -4/+96 |
| | | | | minimum: unseparated terms. | ||||
* | Protect macro expansion. | Kristaps Dzonsons | 2011-07-22 | 1 | -1/+1 |
| | |||||
* | Use a macro instead of doing a string-fragment compare. I just get | Kristaps Dzonsons | 2011-07-22 | 1 | -28/+23 |
| | | | | | | worried that I'm going to write the wrong size on both sides of the equality (I've already done it a few times). This cleans up the code readability a bit. | ||||
* | Give lists their own eqn function. | Kristaps Dzonsons | 2011-07-22 | 3 | -36/+61 |
| | |||||
* | Accomodate for hard-spaces with tildes. For now, consider them regular | Kristaps Dzonsons | 2011-07-22 | 1 | -4/+16 |
| | | | | | | spaces. Also allow for tabs. Finally, have the parser correctly handle open and close brackets smooshed against other terms. All of these handle "details" noted in the CACM paper. | ||||
* | Fix eqn handling of PILE clauses (multiple ABOVE statements may be | Kristaps Dzonsons | 2011-07-21 | 1 | -17/+14 |
| | | | | specified for each PILE). | ||||
* | Complete eqn.7 parsing. Features all productions from the original 1975 | Kristaps Dzonsons | 2011-07-21 | 7 | -124/+279 |
| | | | | | | | | CACM paper in an LR(1) parse (1 -> eqn_rewind()). Right now the code is a little jungly, but will clear up as I consolidate parse components. The AST structure will also be cleaned up, as right now it's pretty ad hoc (this won't change the parse itself). I added the mandoc_strndup() function will here. | ||||
* | Support `size' constructs in eqn.7. Generalise mandoc_strontou to this | Kristaps Dzonsons | 2011-07-21 | 8 | -15/+31 |
| | | | | effect. | ||||
* | Full support for eqn positionals (above, over, sup, sub, etc.). | Kristaps Dzonsons | 2011-07-21 | 4 | -8/+49 |
| | |||||
* | Add eqn subexpression fonts. | Kristaps Dzonsons | 2011-07-21 | 4 | -17/+52 |
| | |||||
* | Add support for markers. These decorate the last box: see eqn.7. | Kristaps Dzonsons | 2011-07-21 | 4 | -9/+60 |
| | |||||
* | Document `{, }' subexpressions in eqn.7. | Kristaps Dzonsons | 2011-07-21 | 1 | -0/+1 |
| | |||||
* | Support nested `{, }' subexpressions in eqn. Document in code. | Kristaps Dzonsons | 2011-07-21 | 4 | -20/+73 |
| | |||||
* | Make `undef' not expand its argument before undefining it. Document | Kristaps Dzonsons | 2011-07-21 | 2 | -15/+34 |
| | | | | this and have the same behaviour apply to `set' and `define'. | ||||
* | Flip eqn into using parsed nodes. I've temporarily disabled printing | Kristaps Dzonsons | 2011-07-21 | 8 | -63/+128 |
| | | | | | | | these in the front-ends except for -Ttree, which will display the parsed tree. While here, fix that quoted strings aren't scanned for replacement parts. | ||||
* | Finish the eqn syntactic parser. This correctly parses terms and does | Kristaps Dzonsons | 2011-07-21 | 7 | -213/+253 |
| | | | | | | | the proper `define' dance, which amounts to pure word-replace (you can, say, define `foo' as `define' then define `define' as something else). eqn.c is now ready for some semantic parsing of `box' and `eqn' productions as defined by the grammar. | ||||
* | Forgot to add these bits to the last commit. | Kristaps Dzonsons | 2011-07-18 | 2 | -0/+2 |
| | |||||
* | Note that equation definitions are nestable. | Kristaps Dzonsons | 2011-07-18 | 1 | -1/+5 |
| | |||||
* | Definitions in eqn.7 are actually recursive. Do this and add crude | Kristaps Dzonsons | 2011-07-18 | 1 | -7/+29 |
| | | | | protection that we don't nest back to ourselves. | ||||
* | Clarify up `Rv' and `Ex' documentation. | Kristaps Dzonsons | 2011-07-18 | 1 | -10/+20 |
| | |||||
* | Follow-up: forgot to remove useless regset structs. | Kristaps Dzonsons | 2011-07-18 | 2 | -2/+0 |
| | |||||
* | Make `struct roff' be passed into libmdoc and libman upon creation. | Kristaps Dzonsons | 2011-07-18 | 9 | -57/+61 |
| | | | | | This is required for supporting in-line equations. While here, push registers properly into roff and add an set/get/mod interface. | ||||
* | Fix copyright email. | Kristaps Dzonsons | 2011-07-17 | 2 | -2/+2 |
| | |||||
* | Remove unused function. | Kristaps Dzonsons | 2011-07-17 | 2 | -43/+0 |
| | |||||
* | Fix lost allocation. | Kristaps Dzonsons | 2011-07-17 | 1 | -2/+0 |
| | |||||
* | Remember to NULL-ify new keys/vals. | Kristaps Dzonsons | 2011-07-17 | 2 | -1/+2 |
| | |||||
* | Provide implementations of `define', `set', and `unset'. | Kristaps Dzonsons | 2011-07-17 | 4 | -71/+261 |
| | | | | | | 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 Dzonsons | 2011-07-17 | 3 | -4/+22 |
| | |||||
* | Add initial `define' support for eqn(7). | Kristaps Dzonsons | 2011-07-17 | 3 | -11/+126 |
| | | | | | | | | | 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 Dzonsons | 2011-07-17 | 1 | -1/+0 |
| | |||||
* | improve documentation of .Bl -column .It Ta | Ingo Schwarze | 2011-07-15 | 1 | -23/+41 |
| | | | | using feedback from kristaps@, ok jmc@ | ||||
* | Big step forward in bringing mandocdb in line with most makewhatis-type | Kristaps Dzonsons | 2011-07-15 | 2 | -77/+227 |
| | | | | systems. |