aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/TODO
Commit message (Collapse)AuthorAgeFilesLines
* two more entries from the mdoclint TODO, clerified by wiz@Ingo Schwarze2017-07-241-2/+11
|
* migrate the mdoclint(1) TODO list here, from pkgsrcIngo Schwarze2017-07-221-1/+14
|
* MAP_PRIVATE is pointless without PROT_WRITEIngo Schwarze2017-07-201-6/+1
|
* For -Tlint, put parser messages on stdout instead of stderr.Ingo Schwarze2017-07-201-10/+1
| | | | | | | | | | | Originally, naddy@ requested this in 2011 (or maybe even earlier). It was discussed with joerg@, kristaps@, naddy@, and espie@ in 2011, and everybody agreed in principle, but it was postponed because kristaps@ wanted to do some cleanup of the message system first. Meanwhile, message infrastructure was improved about a dozen times... This makes long, tedious commands like "mandoc -Tlint *.1 2>&1 | less" unnecessary and allows simple ones like "man -l -Tlint *.1".
* correctly handle letters in .Nx arguments; improves for exampleIngo Schwarze2017-07-201-6/+1
| | | | getpgid(2), ac(8), ldconfig(8), mount_ffs(8), sa(8), ttyflags(8), ...
* three ideas found in a different TODO fileIngo Schwarze2017-07-201-1/+9
|
* delete some entries that have been taken care ofIngo Schwarze2017-07-191-48/+1
|
* eqn(7) nits from bentley@Ingo Schwarze2017-07-141-1/+10
|
* eqn(1) output operator translationIngo Schwarze2017-06-231-1/+8
|
* Introduce a new mandoc(1) message level, -W style, below -W warning.Ingo Schwarze2017-05-161-15/+1
| | | | | | | | | | | | | Switch -W all from meaning -W warning to meaning -W style. The meaning of -T lint does *not* change, it still implies -W warning. No messages on the new level yet, but they will come. Usually, i do not lightly make the user interface larger. But this has been planned for years, and EXIT STATUS 1 was reserved for it all the time. The message system is now stable enough to finally implement it. jmc@ regarding the concept: "really good idea"
* ASCII characters that are special to roffIngo Schwarze2017-04-271-1/+8
|
* new -mdoc -Tmarkdown output mode; OK millert@ reyk@ tb@;Ingo Schwarze2017-03-031-7/+1
| | | | thanks to reyk@ and to Vsevolod at FreeBSD for suggesting it
* double quotes were fixed, finallyIngo Schwarze2017-02-181-5/+2
|
* reference a relevant mail for one TODO itemIngo Schwarze2017-02-081-2/+2
|
* remove several things that were taken care of in the pastIngo Schwarze2017-02-051-26/+1
|
* mark up .Ar, .Fa, .Va, .Ft, and .Vt with <var> rather than <i>;Ingo Schwarze2017-02-051-4/+1
| | | | suggested by bentley@ long ago, but needed lots of cleanup first
* more work found in old mailsIngo Schwarze2017-02-031-2/+18
|
* MANDOCERR_BADTAB no longer exists,Ingo Schwarze2017-01-281-9/+1
| | | | and i checked that MANDOCERR_FI_TAB is used correctly.
* warn about invalid output optionsIngo Schwarze2017-01-271-8/+1
| | | | | and error out if they occur on the command line; missing feature found in the TODO file
* Parse the section number from the content of preformatted pagesIngo Schwarze2017-01-271-6/+1
| | | | and warn if it doesn't match the directory where the file was found.
* more info on man(7) .Xr hyperlinkingIngo Schwarze2017-01-261-1/+4
|
* Fix -man -Thtml formatting after .nf (which has nothing to doIngo Schwarze2017-01-261-10/+1
| | | | | | | | | | | | | | | | with "literal", by the way, it means "no fill"): * Use <pre> such that whitespace is preserved. * Preserve lines breaks. * For font alternating macros, avoid node recursion which required scary juggling with the fill state. Instead, simply print the text children directly. Missing feature first noticed by kristaps@ in 2011, the again reported by afresh1@ in 2016, and finally reported here: https://github.com/Debian/debiman/issues/21 , which i only found because of Shane Kerr's comment here: https://plus.google.com/110314300533310775053/posts/H1eaw9Yskoc
* Improve HTML formatting of .Bl -tag.Ingo Schwarze2017-01-251-7/+1
| | | | | | | | | | | | | | | | | | | | | In particular, when using the style sheet, put the body on the same line as the head for short heads, or on the next line for long heads, in a way that preserves both correct indentation and correct vertical spacing with and without -compact, and with one or more heads per body (hi, Zaphod) - eight use cases so far - and with and without -tag, and with and without -offset, 32 use cases grand total. Using many ideas from zhuk@, from <David dot Dahlberg at fkie dot fraunhofer dot de>, and from Benny Lofgren <bl dash lists at lofgren dot biz>, and a few of my own. This is an excellent demonstration that CSS is an extremely hostile language, much more trapful and much harder to use than, say, C. When matthew@ reported this in July 2014 (!), it was already a known issue, and i no longer remember for how long. My first serious attempt at fixing it (in November 2015) failed miserably. I'd love to see simplifications of both the generated HTML code and of the style sheet, but without breaking any of the 32 use cases, please.
* Completely delete the buf field of struct html and all the buf*()Ingo Schwarze2017-01-171-10/+1
| | | | | | | | | interfaces. Such a static buffer was a bad idea in the first place, causing unfixable truncation that was only prevented by triggering an assertion failure. Instead, let the small number of remaining users allocate and free their own, temporary dynamic buffers, or for the case of .Xr and .In, pass the original data to be assembled in print_otag().
* minor tbl(7) column spacing and wrapping issues in lftp(1)Ingo Schwarze2016-09-131-1/+8
|
* POSIX allows PATH_MAX to not be defined, meaning "unlimited".Ingo Schwarze2016-08-021-1/+8
| | | | | | | Found by Aaron M. Ucko <amu at alum dot mit dot edu> on the GNU Hurd, via Bdale Garbee, https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=829624 Also add EFTYPE at two places where it was forgotten.
* Autodetect a suitable locale for -Tutf8 mode,Ingo Schwarze2016-07-311-11/+1
| | | | | | | and allow overriding it manually. Based on a patch from Svyatoslav Mishyn <juef at openmailbox dot org> tweaked by me. The idea originally came up in a conversation with Markus Waldeck.
* Remove the dependency on SQLite without loss of functionality.Ingo Schwarze2016-07-191-7/+1
| | | | | Stop supporting systems that don't have mmap(3). Drop the obsolete names_check() now that we deleted MLINKS.
* delete two entries that are doneIngo Schwarze2016-06-051-6/+1
|
* in -man -Thtml, .nf does not preserve indentationIngo Schwarze2016-04-141-1/+6
|
* would be nice to warn about broken .Xr links...Ingo Schwarze2016-01-081-1/+6
|
* In ./configure, select a RE syntax for word boundaries supported by libc;Ingo Schwarze2015-11-061-7/+1
| | | | issue reported by Svyatoslav Mishyn, Peter Bray, and Daniel Levai.
* Theo found a stray blank in HTML output.Ingo Schwarze2015-09-291-1/+7
|
* tedu@ reports tbl(7) issues in synaptics(4)Ingo Schwarze2015-08-291-1/+15
|
* another portability todoIngo Schwarze2015-07-181-1/+8
|
* headers should not contain macrosIngo Schwarze2015-07-141-1/+5
|
* delete some TODO entries that were already fixedIngo Schwarze2015-06-261-23/+11
|
* nice idea for eqn(7) from CDBUG.Ingo Schwarze2015-06-181-1/+6
|
* two new tasks i heard about at BSDCanIngo Schwarze2015-06-101-1/+11
|
* look at COHERENT troffIngo Schwarze2015-04-181-2/+5
|
* florian want <img> tags for https://tlakh.xyz/p2k15.7.htmlIngo Schwarze2015-04-161-1/+5
|
* Do not mistreat empty arguments to font alternating macrosIngo Schwarze2015-04-061-1/+6
| | | | as vertical spacing requests. Bug found with xmahjongg(6).
* portability: word boundaries in regular expressionsIngo Schwarze2015-04-031-1/+9
|
* naddy@ found a tough problem - fittingly, in cobfusc(1)...Ingo Schwarze2015-03-161-1/+14
|
* When interpreting the -O argument as a macro name fails,Ingo Schwarze2015-03-111-1/+6
| | | | | fall back to showing Nd rather than not showing anything. Issue reported by jmc@.
* \n(.$Ingo Schwarze2015-02-201-1/+5
|
* naddy@ scoured the ports tree for remaining mandoc issuesIngo Schwarze2015-02-171-5/+7
| | | | and identified two top priority issues
* After almost five years and 99 revisions, mdoc_macro.c rev. 1.182Ingo Schwarze2015-02-121-5/+1
| | | | | finally fixed the four issues explained in the mdoc_macro.c rev. 1.83 commit message.
* trim trailing white space, no code change;Ingo Schwarze2015-02-101-7/+7
| | | | from Svyatoslav Mishyn <juef at openmailboxd dot org>, Crux Linux
* new task: escape blank at the beginning of a lineIngo Schwarze2015-01-241-2/+6
|