Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add TODO entry for standalone `.' in tbl pages (pointed out by Yuri | Kristaps Dzonsons | 2011-05-18 | 2 | -1/+5 |
| | | | | Pankov). Also fix typo in Makefile, same reporter. Thanks! | ||||
* | Locale support. I'm checking this in to clean up fall-out in-tree, but | Kristaps Dzonsons | 2011-05-17 | 4 | -20/+138 |
| | | | | | | | | | | | | | | | | | | | | | | | | it looks pretty good. Basically, the -Tlocale option propogates into term_ascii.c, where we set locale-specific console call-backs IFF (1) setlocale() works; (2) locale support is compiled in (see Makefile for -DUSE_WCHAR); (3) the internal structure of wchar_t maps directly to Unicode codepoints as defined by __STDC_ISO_10646__; and (4) the console supports multi-byte characters. To date, this configuration only supports GNU/Linux. OpenBSD doesn't export __STDC_ISO_10646__ although I'm told by stsp@openbsd.org that it should (it has the correct map). Apparently FreeBSD is the same way. NetBSD? Don't know. Apple also supports this, but doesn't define the macro. Special-casing! Benchmark: -Tlocale incurs less than 0.2 factor overhead when run through several thousand manuals when UTF8 output is enabled. Native mode (whether directly -Tascii or through no locale or whatever) is UNCHANGED: the function callbacks are the same as before. Note. If the underlying system does NOT support STDC_ISO_10646, there is a "slow" version possible with iconv or other means of flipping from a Unicode codepoint to a wchar_t. | ||||
* | Add mode for -Tlocale. This mode, with this commit, behaves exactly | Kristaps Dzonsons | 2011-05-17 | 8 | -37/+37 |
| | | | | | | | like -Tascii. While adding this, inline term_alloc() (was a one-liner), remove some switches around the terminal encoding for the symbol table (unnecessary), and split out ascii_alloc() into ascii_init(), which is also called from locale_init(). | ||||
* | In tbl layouts, we puked if a space didn't followed a vertical bar | Kristaps Dzonsons | 2011-05-17 | 1 | -0/+17 |
| | | | | | | (found by Yuri Pankov). This was due to looking for modifiers for the vertical bar. This has been fixed, along with other special-key layout types. | ||||
* | Documentation: note COMPATIBILITY of -Tascii `?' printing in mandoc.1 | Kristaps Dzonsons | 2011-05-17 | 2 | -3/+10 |
| | | | | | and remove some long-fixed notes in sthe same section. Also, add an `Lb' for the mandoc library to mandoc.3 (noted by Sascha Wildner). | ||||
* | Flip on printing `?' at Unicode codepoints in -Tascii, -Tpdf, and -Tps. | Kristaps Dzonsons | 2011-05-17 | 1 | -1/+9 |
| | | | | | | The reasoning behind printing SOMETHING at a Unicode codepoint is because the input is not "wrong" (we suppress printing of "wrong" things). It's just that ASCII can't handle it. | ||||
* | Flip on unicode output (via \[uNNNN]) in -T[x]html. Here we go! | Kristaps Dzonsons | 2011-05-17 | 4 | -4/+37 |
| | |||||
* | Clean-up fallout: differentiate ID's and HREF's (where to put the `#'). | Kristaps Dzonsons | 2011-05-17 | 2 | -3/+3 |
| | | | | Make buffmt functions internally bufinit(), too. | ||||
* | Cleanups in -T[x]html: make html_idcat() use the buffer and be called | Kristaps Dzonsons | 2011-05-17 | 4 | -63/+41 |
| | | | | | | bufcat_id(), then collapse it into a little function without so much crap. Next, make bufinit() only be called when we really need to do so, and not simply before pre/post calls. | ||||
* | Clean-ups in -T[x]html: inline print_num(), as it was just a single | Kristaps Dzonsons | 2011-05-17 | 4 | -67/+27 |
| | | | | | | | | | | conditional; same for print_xmltype() and print_doctype(), same reason; make bufncat() be static, as it was only being called from html.c; have bufcat() simply call through to strlcat(). Finally, assert() whenever we truncate. Also rename buffmt() -> bufcat_fmt() to differentiate from buffmt_man et al., which do not concatenate. | ||||
* | Clean up -T[x]html by using a table instead of a switch statement for | Kristaps Dzonsons | 2011-05-17 | 1 | -41/+16 |
| | | | | | the roff units. Also remove a comment about CSS and number types (they all accept decimal numbers). | ||||
* | Remove function calls to res() and so forth in term_word(). These were | Kristaps Dzonsons | 2011-05-15 | 2 | -55/+17 |
| | | | | | | only used once and simply bloated the binary. Also fix mchars_num2char to correctly render the character instead of using atoi(). This makes the conversation more strict, but it's more correct. | ||||
* | Fix missing support for \N'n' when calculating string widths in -Tascii | Kristaps Dzonsons | 2011-05-15 | 3 | -4/+11 |
| | | | | (oops). Do the same for -Thtml (oops^2). | ||||
* | Support groff's escape for Unicode input. See | Kristaps Dzonsons | 2011-05-15 | 3 | -0/+23 |
| | | | | | | http://mdocml.bsd.lv/archives/tech/0368.html For the time being, we just throw it away. | ||||
* | Use strcspn() in term_strlen(). Clarifies the code. | Kristaps Dzonsons | 2011-05-15 | 1 | -10/+10 |
| | |||||
* | Get rid of an "#if 0" that I don't anticipate being fixed ever (nor does | Kristaps Dzonsons | 2011-05-15 | 1 | -42/+0 |
| | | | | it really need to be fixed, anyway). | ||||
* | Move struct termp_ps into term_ps.c; remove the engine union in struct termp, | Kristaps Dzonsons | 2011-05-15 | 2 | -200/+197 |
| | | | | | | which only held one entry; finally (as per the first), make "ps" member into a pointer managed by term_ps.c. This frees up a nice chunk of memory during run-time and in the binary. | ||||
* | Continuing last commit with the style-sheet change. | Kristaps Dzonsons | 2011-05-14 | 1 | -19/+21 |
| | |||||
* | Fix makewhatis.1 to have the correct name (it was MANDOC-DB, oops). | Kristaps Dzonsons | 2011-05-14 | 1 | -1/+1 |
| | |||||
* | Make index.sgml look more like mandoc-cgi, which I find looks much cleaner | Kristaps Dzonsons | 2011-05-14 | 1 | -58/+17 |
| | | | | and nicer. | ||||
* | Make www style.css link up to example.style.css much nicer. | Kristaps Dzonsons | 2011-05-14 | 1 | -39/+32 |
| | |||||
* | Make some values "int" that were "size_t". These are primarily used for | Kristaps Dzonsons | 2011-05-14 | 2 | -24/+28 |
| | | | | indexing into arrays, so this removes lots of casts from size_t to int. | ||||
* | Make character engine (-Tascii, -Tpdf, -Tps) ready for Unicode: make buffer | Kristaps Dzonsons | 2011-05-14 | 6 | -18/+22 |
| | | | | | | consist of type "int". This will take more work (especially in encode and friends), but this is a strong start. This commit also consists of some harmless lint fixes. | ||||
* | Give -Thtml and -Txhtml the gift of recognising escapes when calculating | Kristaps Dzonsons | 2011-05-14 | 3 | -5/+42 |
| | | | | | widths (e.g., `Bl -tag -width "\s[blahblah]bar"). This has long since been done for -Tascii but escaped noticed with -T[x]html. | ||||
* | Move roff.c's strtol into libmandoc.h for use by other parts of the code | Kristaps Dzonsons | 2011-05-14 | 3 | -27/+40 |
| | | | | (which will come). | ||||
* | Last sneak-in: incorrect www link.VERSION.1.11.2 | Kristaps Dzonsons | 2011-05-13 | 1 | -1/+1 |
| | |||||
* | Ooops, forgot to install makewhatis manual. | Kristaps Dzonsons | 2011-05-13 | 1 | -1/+6 |
| | |||||
* | Version up! 1.11.2. Let's go... | Kristaps Dzonsons | 2011-05-13 | 1 | -2/+2 |
| | |||||
* | More release notes. | Kristaps Dzonsons | 2011-05-13 | 1 | -0/+1 |
| | |||||
* | Rename mandoc-db to makewhatis. On the suggestion of schwarze@; I agree. | Kristaps Dzonsons | 2011-05-13 | 4 | -30/+41 |
| | | | | Add initial version notes. | ||||
* | Don't let Linux-isms creep into Makefile. | Kristaps Dzonsons | 2011-05-12 | 1 | -1/+1 |
| | |||||
* | Correctly catch `Vt' semicolon in mandoc-db. | Kristaps Dzonsons | 2011-05-12 | 1 | -2/+3 |
| | |||||
* | Lint fixes: remove unused function variables and pass in proper enum | Kristaps Dzonsons | 2011-05-12 | 1 | -7/+6 |
| | | | | values instead of ints. | ||||
* | Make sure that we check for the \(en, \(em, \-, and - separators for | Kristaps Dzonsons | 2011-05-12 | 1 | -3/+8 |
| | | | | the heuristic dance to grab manual descriptions from man documents. | ||||
* | Grok manual architecture in mandoc-db.c. | Kristaps Dzonsons | 2011-05-04 | 2 | -0/+10 |
| | |||||
* | Add configurations (`Cd') to mandoc-db mining. | Kristaps Dzonsons | 2011-05-04 | 2 | -3/+40 |
| | | | | | Also put some notes into index.sgml to the effect that mandoc-db exists, but is not linked to the build. | ||||
* | Pick up authors in mandoc-db. | Kristaps Dzonsons | 2011-05-03 | 2 | -2/+25 |
| | |||||
* | Have mandoc-db grok `Dt'/`TH' manual title as well. | Kristaps Dzonsons | 2011-05-03 | 1 | -0/+6 |
| | |||||
* | Back out stripping of non-predef and non-special escape sequences from | Kristaps Dzonsons | 2011-05-02 | 1 | -4/+3 |
| | | | | | input (this is not yet possible with mandoc_escape(), which depends on nil-terminated strings). | ||||
* | Have mandoc-db strip out escapes that aren't special or predefined | Kristaps Dzonsons | 2011-05-01 | 1 | -15/+54 |
| | | | | characters. This is a work-in-progress that has some issues. | ||||
* | Documenting the mchars_XXXX part of mandoc.h. | Kristaps Dzonsons | 2011-05-01 | 1 | -0/+86 |
| | |||||
* | Remove mdoc.template. It's already embedded in man(7) and mdoc(7); no | Kristaps Dzonsons | 2011-05-01 | 1 | -42/+0 |
| | | | | need to have it floating around separately. | ||||
* | Document the fact that \N'' accepts only printable characters. | Kristaps Dzonsons | 2011-05-01 | 1 | -0/+3 |
| | |||||
* | Filter all \N'' values with isprint(). Ok schwarze@. | Kristaps Dzonsons | 2011-05-01 | 1 | -9/+5 |
| | |||||
* | Make mchars_num2char() return a char like it says. | Kristaps Dzonsons | 2011-04-30 | 4 | -19/+17 |
| | |||||
* | Rename mchars_init() -> mchars_alloc() for consistency. | Kristaps Dzonsons | 2011-04-30 | 5 | -5/+5 |
| | |||||
* | Remove enum mcharst, which hasn't been used in quite some time. | Kristaps Dzonsons | 2011-04-30 | 5 | -12/+5 |
| | |||||
* | No code change: fixing spelling errors. From a patch by uqs@. Thanks! | Kristaps Dzonsons | 2011-04-30 | 9 | -12/+12 |
| | |||||
* | Was installing libmandoc.a without mandoc.h... | Kristaps Dzonsons | 2011-04-30 | 1 | -0/+2 |
| | |||||
* | Move "chars" interface out of out.h and into mandoc.h. This doesn't | Kristaps Dzonsons | 2011-04-29 | 10 | -63/+56 |
| | | | | | | | | | | change any code but for renaming functions and types to be consistent with other mandoc.h stuff. The reason for moving into libmandoc is that the rendering of special characters is part of mandoc itself---not an external part. From mandoc(1)'s perspective, this changes nothing, but for other utilities, it's important to have these part of libmandoc. Note this isn't documented [yet] in mandoc.3 because there are some parts I'd like to change around beforehand. |