Up to [cvsweb.bsd.lv] / texi2mdoc
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.16 / (download) - annotate - [select for diffs], Tue Nov 13 08:45:29 2018 UTC (6 years, 5 months ago) by schwarze
Branch: MAIN
CVS Tags: HEAD
Changes since 1.15: +14 -2 lines
Diff to previous 1.15 (colored) to selected 1.2 (colored)
Add the -d option to specify the .Dd date, and fall back to the mtime before resorting to the current time. Patch from Michael Forney <mforney at mforney dot org> with minimal tweaks by me. While here, fix the date format, "%F" is wrong for mdoc(7). Change it to "%B %e, %Y" which isn't perfect due to the spurious blank before single-digit day numbers, but closer.
Revision 1.15 / (download) - annotate - [select for diffs], Thu Mar 12 04:24:19 2015 UTC (10 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.14: +5 -5 lines
Diff to previous 1.14 (colored) to selected 1.2 (colored)
First, integrate the new `Xr' notation for linking to sections when chapter mode is enabled. Second, refine the @top/@node relationship. Lastly, specify that we don't break apart by chapters, but directly by nodes.
Revision 1.14 / (download) - annotate - [select for diffs], Sun Mar 1 00:26:21 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.13: +3 -3 lines
Diff to previous 1.13 (colored) to selected 1.2 (colored)
Reflect reality in manpage.
Revision 1.13 / (download) - annotate - [select for diffs], Sun Mar 1 00:25:08 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.12: +9 -1 lines
Diff to previous 1.12 (colored) to selected 1.2 (colored)
Add initial (and rather crude) support to print chapter-by-chapter nodes. This is because with most manuals, apropos(1) is useless: it will point to somewhere in a million lines. This allows texi2moc to break apart a manual into chapters, each of which links to other chapters, and which (at least in theory) will allow for easier digesting of material.
Revision 1.12 / (download) - annotate - [select for diffs], Wed Feb 25 14:37:17 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_0_1_2
Changes since 1.11: +3 -9 lines
Diff to previous 1.11 (colored) to selected 1.2 (colored)
Completely re-write @value and @macro handling to work exactly as Texinfo specifies and not how I really want it to work. In a word, macros and values are pasted into the text: they're not self- contained bodies that can be recursively executed. In other words, @macro hello{} @ifset foo @end macro @hello @end ifset ...is completely valid. While here, stop paying attention to the manual's lies about macro newlines. The terminal newline (i.e., before "@end macro") is part of the macro, which is why so many macros are @r{}@c -- to swallow the newline. This required a significant mechanical change to get the buffer pointer and size out of all arguments, as the buffer can now be reallocated.
Revision 1.11 / (download) - annotate - [select for diffs], Wed Feb 25 10:01:54 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.10: +13 -12 lines
Diff to previous 1.10 (colored) to selected 1.2 (colored)
First the memmem(3) invocations to have the proper length of the file. Next, make sure that conditionally-ignored text (e.g., @ifset) allows for nested @ifset's and corresponding @end ifset pairs. Without this, the parser would have stopped at the first @end ifset and let subsequent text through.
Revision 1.10 / (download) - annotate - [select for diffs], Tue Feb 24 21:06:52 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.9: +12 -9 lines
Diff to previous 1.9 (colored) to selected 1.2 (colored)
Add (and ignore) a few more macros.
Revision 1.9 / (download) - annotate - [select for diffs], Tue Feb 24 20:06:32 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.8: +5 -1 lines
Diff to previous 1.8 (colored) to selected 1.2 (colored)
Add all of the accents and fix their weird parsing rules. Add lots more symbols, while there.
Revision 1.8 / (download) - annotate - [select for diffs], Mon Feb 23 22:50:11 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.7: +13 -3 lines
Diff to previous 1.7 (colored) to selected 1.2 (colored)
Add reading initial file from stdin. Ignore some more macros from in GMP.
Revision 1.7 / (download) - annotate - [select for diffs], Mon Feb 23 12:39:59 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_0_1_1
Changes since 1.6: +13 -9 lines
Diff to previous 1.6 (colored) to selected 1.2 (colored)
Add @verb{} support.
Revision 1.6 / (download) - annotate - [select for diffs], Sat Feb 21 21:49:18 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.5: +3 -3 lines
Diff to previous 1.5 (colored) to selected 1.2 (colored)
Make @value{...} parse its own arguments. So add the necessary protection against infinite recursion. Also protect against texivspace() in tables.
Revision 1.5 / (download) - annotate - [select for diffs], Fri Feb 20 14:43:22 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored) to selected 1.2 (colored)
Getting release-ready.
Revision 1.4 / (download) - annotate - [select for diffs], Fri Feb 20 12:25:25 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.3: +20 -4 lines
Diff to previous 1.3 (colored) to selected 1.2 (colored)
Move value parsing into util.c. Add verbatim mode. Add some more commands.
Revision 1.3 / (download) - annotate - [select for diffs], Fri Feb 20 09:58:50 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.2: +3 -3 lines
Diff to previous 1.2 (colored)
Split utility functions out of main.c.
Revision 1.2 / (download) - annotate - [selected], Thu Feb 19 15:40:44 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.1: +18 -4 lines
Diff to previous 1.1 (colored)
Fix assertion failure.
Revision 1.1 / (download) - annotate - [select for diffs], Thu Feb 19 08:09:55 2015 UTC (10 years, 2 months ago) by kristaps
Branch: MAIN
Diff to selected 1.2 (colored)
Add manual.