CVS log for mandoc/Attic/mdoc.3

[BACK] Up to [cvsweb.bsd.lv] / mandoc

Request diff between arbitrary revisions


Default branch: MAIN
Current tag: MAIN


Revision 1.58, Tue Mar 22 10:02:50 2011 UTC (13 years ago) by kristaps
Branch: MAIN
CVS Tags: HEAD
Changes since 1.57: +1 -1 lines
FILE REMOVED

Step 3: consolidate manuals.  The parse functions in mdoc.h, roff.h, and
man.h are now part of libmandoc.h, so remove these from their respective
manuals (they're no longer public-facing and we don't need a libmandoc.3
(yet?)).  Before that, move the juicy data (parse tree syntax) into
new-born mandoc.3.  Peck around in Makefile and index.sgml to reflect
reality.

Revision 1.57 / (download) - annotate - [select for diffs], Wed Feb 9 09:18:15 2011 UTC (13 years, 1 month ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_10_10
Changes since 1.56: +4 -2 lines
Diff to previous 1.56 (colored) to selected 1.11 (colored)

Allow -man to process EQN as well.  Also fix a segfault in missing case
statements in the post-handler for EQN in -mdoc and -man.

Revision 1.56 / (download) - annotate - [select for diffs], Wed Feb 9 09:05:52 2011 UTC (13 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.55: +11 -2 lines
Diff to previous 1.55 (colored) to selected 1.11 (colored)

Allow EQN data to be pushed down into libmdoc via mdoc_addeqn().  Only
the adding itself is implemented; equation data is not yet shown.

Revision 1.55 / (download) - annotate - [select for diffs], Fri Jan 7 15:07:21 2011 UTC (13 years, 2 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_10_9
Changes since 1.54: +2 -2 lines
Diff to previous 1.54 (colored) to selected 1.11 (colored)

Oops: get rid of stray whitespace.

Revision 1.54 / (download) - annotate - [select for diffs], Mon Jan 3 13:55:26 2011 UTC (13 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.53: +2 -7 lines
Diff to previous 1.53 (colored) to selected 1.11 (colored)

Tiny edit required after MDOC_HALT change.

Revision 1.53 / (download) - annotate - [select for diffs], Mon Jan 3 11:27:32 2011 UTC (13 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.52: +14 -14 lines
Diff to previous 1.52 (colored) to selected 1.11 (colored)

Clarified the role of MDOC_HALT in libmdoc functions by having accessor
functions assert() if they're called after MDOC_HALT is set.

This makes more sense than returning 0 because this return value is used
for parse errors, not programme-flow errors, and it's inconsistent to
use the same value for both.  Plus, prior to this, I'd return 0 without
printing an error message, which would cause failure to go unreported to
the operator.

Revision 1.52 / (download) - annotate - [select for diffs], Sat Jan 1 12:18:37 2011 UTC (13 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.51: +10 -2 lines
Diff to previous 1.51 (colored) to selected 1.11 (colored)

Add table processing structures to -mdoc.  This consists of an
external-facing function mdoc_addspan(), then various bits to prohibit
printing and scanning (this requires some if's to be converted into
switch's).

Revision 1.51 / (download) - annotate - [select for diffs], Fri Dec 17 11:41:45 2010 UTC (13 years, 3 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_10_8
Changes since 1.50: +3 -3 lines
Diff to previous 1.50 (colored) to selected 1.11 (colored)

Correctly labelled command-line as `Dl'.

Revision 1.50 / (download) - annotate - [select for diffs], Sun Oct 10 09:47:05 2010 UTC (13 years, 5 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_10_7
Changes since 1.49: +9 -31 lines
Diff to previous 1.49 (colored) to selected 1.11 (colored)

Cleaned up library manuals: removed old escapes, added EXAMPLES, stripped
out some superfluous stuff.

Revision 1.49 / (download) - annotate - [select for diffs], Fri Aug 20 01:02:07 2010 UTC (13 years, 7 months ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_10_6
Changes since 1.48: +3 -8 lines
Diff to previous 1.48 (colored) to selected 1.11 (colored)

Implement a simple, consistent user interface for error handling.
We now have sufficient practical experience to know what we want,
so this is intended to be final:
- provide -Wlevel (warning, error or fatal) to select what you care about
- provide -Wstop to stop after parsing a file with warnings you care about
- provide consistent exit status codes for those warnings you care about
- fully document what warnings, errors and fatal errors mean
- remove all other cruft from the user interface, less is more:
- remove all -f knobs along with the whole -f option
- remove the old -Werror because calling warnings "fatal" is silly
- always finish parsing each file, unless fatal errors prevent that
This commit also includes a couple of related simplifications behind
the scenes regarding error handling.
Feedback and OK  kristaps@;  Joerg Sonnenberger (NetBSD) and
Sascha Wildner (DragonFly BSD) agree with the general direction.

Revision 1.48 / (download) - annotate - [select for diffs], Wed Jul 7 15:04:54 2010 UTC (13 years, 8 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_10_5_PREPDF, VERSION_1_10_5, VERSION_1_10_4
Changes since 1.47: +2 -3 lines
Diff to previous 1.47 (colored) to selected 1.11 (colored)

Re-constitution of `ds' symbol processing.  First, push the
roff_getstr() family of functions into roff.c with the "first_string"
directly in struct roff.  Second, pre-process each line for reserved
words in libroff, splicing and re-running a line if it has one (this
allows defined symbols to be macros).  Remove term.c's invocation of the
roff_getstrn() function.  Removed function documentation in roff.3 and
added roff.7 `ds' documentation.

Revision 1.47 / (download) - annotate - [select for diffs], Sun Jul 4 22:04:04 2010 UTC (13 years, 8 months ago) by schwarze
Branch: MAIN
Changes since 1.46: +4 -3 lines
Diff to previous 1.46 (colored) to selected 1.11 (colored)

Assert my copyright, making it explicit that i'm granting the same license
on those parts of the code and text that i have written as Kristaps is.
"fine with me" kristaps@

Revision 1.46 / (download) - annotate - [select for diffs], Thu Jul 1 09:33:39 2010 UTC (13 years, 9 months ago) by kristaps
Branch: MAIN
Changes since 1.45: +26 -19 lines
Diff to previous 1.45 (colored) to selected 1.11 (colored)

"Tweak previous": "badly nested" becomes badly-nested, some typos
corrected, and a bit of clarity for my own sake.

Revision 1.45 / (download) - annotate - [select for diffs], Tue Jun 29 19:20:38 2010 UTC (13 years, 9 months ago) by schwarze
Branch: MAIN
Changes since 1.44: +68 -5 lines
Diff to previous 1.44 (colored) to selected 1.11 (colored)

Support for badly nested blocks, written around the time of
the Rostock mandoc hackathon and tested and polished since,
supporting constructs like:

.Ao Bo    Ac    Bc        (exp breaking exp)
.Aq Bo    eol   Bc        (imp breaking exp)
.Ao Bq    Ac    eol       (exp breaking imp)
.Ao Bo So Bc    Ac  Sc    (double break, inner before outer)
.Ao Bo So Ac    Bc  Sc    (double break, outer before inner)
.Ao Bo    Ac So Bc  Sc    (broken breaker)
.Ao Bo So Bc Do Ac  Sc Dc (broken double breaker)

There are still two known issues which are tricky:

1) Breaking two identical explicit blocks (Ao Bo Bo Ac or Aq Bo Bo eol)
fails outright, triggering a bogus syntax error.
2) Breaking a block by two identical explicit blocks (Ao Ao Bo Ac Ac Bc
or Ao Ao Bq Ac Ac eol) still has a minor rendering error left:
"<ao1 <ao2 [bo ac2> ac1> bc]>" should not have the final ">".

We can fix these later in the tree, let's not grow this diff too large.

"get it in" kristaps@

Revision 1.44 / (download) - annotate - [select for diffs], Sun Jun 27 16:18:13 2010 UTC (13 years, 9 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_10_3
Changes since 1.43: +6 -4 lines
Diff to previous 1.43 (colored) to selected 1.11 (colored)

Following clue-stick applied by schwarze@, back out const-ness of regset
passed in to libmdoc and libman.

Fix mdoc.3 and man.3 EXAMPLE sections to include regset.

Add MDOC_SYNPRETTY flag cueing front-end to nicely format certain values
as if SEC_SYNOPSIS were the current section.

Revision 1.43 / (download) - annotate - [select for diffs], Sun Jun 27 15:52:41 2010 UTC (13 years, 9 months ago) by kristaps
Branch: MAIN
Changes since 1.42: +8 -4 lines
Diff to previous 1.42 (colored) to selected 1.11 (colored)

Downstream maintainers: this removes UGLY!  I don't want diverging
functionality and UGLY works quite well thanks to schwarze@'s careful
attention.

This also backs out function-prototype changes for struct regset,
instead stuffing a pointer to the regset directly into struct
mdoc/man/roff.

Revision 1.42 / (download) - annotate - [select for diffs], Sat Jun 26 15:36:37 2010 UTC (13 years, 9 months ago) by kristaps
Branch: MAIN
Changes since 1.41: +9 -3 lines
Diff to previous 1.41 (colored) to selected 1.11 (colored)

Churn-ish check-in getting mdoc_parseln() and man_parseln() to accept a
const struct regset pointer.  No functionality.

Revision 1.41 / (download) - annotate - [select for diffs], Sun May 30 22:56:02 2010 UTC (13 years, 10 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_10_2, VERSION_1_10_1
Changes since 1.40: +6 -6 lines
Diff to previous 1.40 (colored) to selected 1.11 (colored)

Migrate `Bl -column' phrases to be MDOC_BODY instead of MDOC_HEAD.  This
will make it easy for re-entrant parsing of `Ta' macros to fit in with
standard closure rules.

Added some more regressions for `Bl -column'.  Note that one should
fail, as documented in the TODO file.

Recorded change of AST BNF in mdoc.3.

Revision 1.40 / (download) - annotate - [select for diffs], Tue May 25 22:16:59 2010 UTC (13 years, 10 months ago) by kristaps
Branch: MAIN
Changes since 1.39: +3 -4 lines
Diff to previous 1.39 (colored) to selected 1.11 (colored)

Added roff.3, which documents the roff parser interface.

Small fix in mdoc.3 and man.3 pointing to old mdoc_cb and man_cb.

Fix in Makefile adding mandoc.h to HEADS.

Collapsed all HTML files into HTMLS variable (too confusing otherwise).

Removed "htmls" command from Makefile (only I used it and it's just
taking up space).

Revision 1.39 / (download) - annotate - [select for diffs], Tue May 25 21:46:48 2010 UTC (13 years, 10 months ago) by kristaps
Branch: MAIN
Changes since 1.38: +3 -2 lines
Diff to previous 1.38 (colored) to selected 1.11 (colored)

Clean-up: added `Nm mdoc' to mdoc.3.

Clean-up: new-sentence, new-line for man.3.

Clean-up: alpha-ordered man.3 `Nm' sections and prototypes.

Revision 1.38 / (download) - annotate - [select for diffs], Tue May 25 21:38:05 2010 UTC (13 years, 10 months ago) by kristaps
Branch: MAIN
Changes since 1.37: +61 -107 lines
Diff to previous 1.37 (colored) to selected 1.11 (colored)

Clean-up: new-sentence, new-line for mdoc.3.

Clean-up: removed CAVEATS section (this should be either in the TODO
file or in mdoc.7 documenting mandoc incompatibilities).

Clean-up: alpha-ordered `Nm' and section headers.

Revision 1.37 / (download) - annotate - [select for diffs], Wed Feb 17 19:22:01 2010 UTC (14 years, 1 month ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_9_25, VERSION_1_9_24, VERSION_1_9_23, VERSION_1_9_22, VERSION_1_9_21, VERSION_1_9_20, VERSION_1_9_19, VERSION_1_9_18, VERSION_1_9_17, VERSION_1_9_16, VERSION_1_9_15
Changes since 1.36: +20 -20 lines
Diff to previous 1.36 (colored) to selected 1.11 (colored)

Removed offsets from most parts (no reason for indentation).
Using POSIX2008 idioms for examples (thanks Joerg Sonnenberger).
Removed references to fgetln().

Revision 1.36 / (download) - annotate - [select for diffs], Thu Jan 7 19:10:09 2010 UTC (14 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.35: +2 -2 lines
Diff to previous 1.35 (colored) to selected 1.11 (colored)

Fix white-space issues found by mandoc's better white-space finder.
Fixed bogus `\\' escapes in some manuals.

Revision 1.35 / (download) - annotate - [select for diffs], Sat Oct 3 16:36:06 2009 UTC (14 years, 5 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_9_9, VERSION_1_9_8, VERSION_1_9_7, VERSION_1_9_15-pre2, VERSION_1_9_15-pre1, VERSION_1_9_14, VERSION_1_9_13, VERSION_1_9_12, VERSION_1_9_11, VERSION_1_9_10
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored) to selected 1.11 (colored)

Fixed mandoc.1 examples (new -Thtml options).
Fixed manuals to use `In', not `Fd'.
Moved buf* functions into html.c.

Revision 1.34 / (download) - annotate - [select for diffs], Wed Sep 16 09:41:24 2009 UTC (14 years, 6 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_9_6, VERSION_1_9_5
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored) to selected 1.11 (colored)

Made tree/term/out() functions return void.
Put err() functions back into front-ends (no use making it needlessly complex).

Revision 1.33 / (download) - annotate - [select for diffs], Mon Jul 20 13:45:11 2009 UTC (14 years, 8 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_9_2, VERSION_1_9_1, VERSION_1_9_0, VERSION_1_8_5, VERSION_1_8_4, VERSION_1_8_3, VERSION_1_8_2
Changes since 1.32: +33 -33 lines
Diff to previous 1.32 (colored) to selected 1.11 (colored)

Removed trailing whitespace in manuals.

Revision 1.32 / (download) - annotate - [select for diffs], Sun Jul 19 08:34:59 2009 UTC (14 years, 8 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_8_1
Changes since 1.31: +1 -9 lines
Diff to previous 1.31 (colored) to selected 1.11 (colored)

Removed some finished FIXMEs in mdoc.3.

Revision 1.31 / (download) - annotate - [select for diffs], Sun Jul 5 19:30:49 2009 UTC (14 years, 8 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_8_0, VERSION_1_7_24, VERSION_1_7_23
Changes since 1.30: +4 -4 lines
Diff to previous 1.30 (colored) to selected 1.11 (colored)

Fixed man.3 mdoc.3 const-nesses.

Revision 1.30 / (download) - annotate - [select for diffs], Thu Jun 11 07:26:35 2009 UTC (14 years, 9 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_7_22, VERSION_1_7_21, VERSION_1_7_20, VERSION_1_7_19, VERSION_1_7_17, VERSION_1_7_16, VERSION_1_7_15, VERSION_1_7_14
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (colored) to selected 1.11 (colored)

Fixed email address in manual AUTHOR reference.
Set max right margin to 80 columns (schwarze@openbsd.org).
Fixed centre-field heading position (schwarze@openbsd.org).
Also fixed -Tman centre-field.

Revision 1.29 / (download) - annotate - [select for diffs], Wed Jun 10 20:18:43 2009 UTC (14 years, 9 months ago) by kristaps
Branch: MAIN
Changes since 1.28: +2 -2 lines
Diff to previous 1.28 (colored) to selected 1.11 (colored)

Fixed license email address.

Revision 1.28 / (download) - annotate - [select for diffs], Sun Apr 12 19:45:26 2009 UTC (14 years, 11 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_7_13
Changes since 1.27: +10 -12 lines
Diff to previous 1.27 (colored) to selected 1.11 (colored)

Using proper license template (const).

Revision 1.27 / (download) - annotate - [select for diffs], Sun Apr 12 19:19:57 2009 UTC (14 years, 11 months ago) by kristaps
Branch: MAIN
Changes since 1.26: +2 -2 lines
Diff to previous 1.26 (colored) to selected 1.11 (colored)

Manual .Dt fields CAPITALISED.
Indent set to 5 chars (nroff compat).
Half-indent set to 3 chars (nroff compat).
Default behaviour is loose-y (ignore macro/char/escape).
Added -fstrict.
Added unknown-character ignoring.

Revision 1.26 / (download) - annotate - [select for diffs], Tue Mar 31 13:50:19 2009 UTC (15 years ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_7_12, VERSION_1_7_10, OPENBSD_CHECKIN
Changes since 1.25: +4 -3 lines
Diff to previous 1.25 (colored) to selected 1.11 (colored)

General clean-ups.

Revision 1.25 / (download) - annotate - [select for diffs], Fri Mar 27 14:56:15 2009 UTC (15 years ago) by kristaps
Branch: MAIN
Changes since 1.24: +4 -13 lines
Diff to previous 1.24 (colored) to selected 1.11 (colored)

Added some new manuals (mdoc.3 mandoc_char.7).
Support for .br in libman.

Revision 1.24 / (download) - annotate - [select for diffs], Thu Mar 26 16:23:22 2009 UTC (15 years ago) by kristaps
Branch: MAIN
Changes since 1.23: +8 -8 lines
Diff to previous 1.23 (colored) to selected 1.11 (colored)

All macro-invocations, for consistency, begin with `.' in documentation.
Fixed \\ -> \e in manual documentation.
All preliminary -man macros in place.

Revision 1.23 / (download) - annotate - [select for diffs], Mon Mar 23 09:42:43 2009 UTC (15 years ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_7_5
Changes since 1.22: +8 -5 lines
Diff to previous 1.22 (colored) to selected 1.11 (colored)

More manual documentation fixed/improved.

Revision 1.22 / (download) - annotate - [select for diffs], Sun Mar 22 08:52:27 2009 UTC (15 years ago) by kristaps
Branch: MAIN
Changes since 1.21: +4 -1 lines
Diff to previous 1.21 (colored) to selected 1.11 (colored)

More documentation clarification.

Revision 1.21 / (download) - annotate - [select for diffs], Sat Mar 21 21:09:00 2009 UTC (15 years ago) by kristaps
Branch: MAIN
Changes since 1.20: +21 -1 lines
Diff to previous 1.20 (colored) to selected 1.11 (colored)

Fixes to dynamic addition of Bl width.

Revision 1.20 / (download) - annotate - [select for diffs], Fri Mar 20 15:14:01 2009 UTC (15 years ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_6_5, VERSION_1_6_2
Changes since 1.19: +22 -9 lines
Diff to previous 1.19 (colored) to selected 1.11 (colored)

Support for `Bd' of all types (see mdoc.7 for newline/tab rules).
Renamed term.c and terminal.c functions to be term_.
Some bugfixes to lists.

Revision 1.19 / (download) - annotate - [select for diffs], Mon Mar 16 23:37:28 2009 UTC (15 years ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_5_3
Changes since 1.18: +3 -3 lines
Diff to previous 1.18 (colored) to selected 1.11 (colored)

Changed e-mail address to @openbsd.
Cleaned up manual-page documentation.

Revision 1.18 / (download) - annotate - [select for diffs], Mon Mar 16 22:19:19 2009 UTC (15 years ago) by kristaps
Branch: MAIN
Changes since 1.17: +5 -2 lines
Diff to previous 1.17 (colored) to selected 1.11 (colored)

Fixed mdoc_phrase escape handling.
Added MDOC_IGNDELIM (Pf, soon Li, etc.).
macro_constant_delimited ignargs -> argv.c parsing.
Renamed macro functions to correspond to ontologies.
`Fo' and `St' made callable (compat documented).
strings.sh deprecated (directly using CPP).
Abstracted ASCII translation into ascii.{c,in}.
ASCII table uses a self-reordering chained hashtable.
Removed old regressions.

Revision 1.17 / (download) - annotate - [select for diffs], Sat Mar 14 05:21:58 2009 UTC (15 years ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_5_1
Changes since 1.16: +32 -169 lines
Diff to previous 1.16 (colored) to selected 1.11 (colored)

mdoc.3 refers to local mdoc.7.
mdoc.7 includes its compatibility with system-dependent roff installations.

Revision 1.16 / (download) - annotate - [select for diffs], Thu Mar 12 23:05:21 2009 UTC (15 years ago) by kristaps
Branch: MAIN
Changes since 1.15: +17 -7 lines
Diff to previous 1.15 (colored) to selected 1.11 (colored)

Made syste-name macros callable (At, Bsx, etc.).

Revision 1.15 / (download) - annotate - [select for diffs], Thu Mar 12 16:30:50 2009 UTC (15 years ago) by kristaps
Branch: MAIN
Changes since 1.14: +20 -1 lines
Diff to previous 1.14 (colored) to selected 1.11 (colored)

Added -nested (doesn't do anything).
Added .%C.
.Cd is now callable.
Added .Rv -std.

Revision 1.14 / (download) - annotate - [select for diffs], Thu Mar 12 15:55:11 2009 UTC (15 years ago) by kristaps
Branch: MAIN
Changes since 1.13: +40 -45 lines
Diff to previous 1.13 (colored) to selected 1.11 (colored)

NetBSD '.[[:whitespace:]]*' properly handled.
mdoc.3 indicates compatibilities and bugs.

Revision 1.13 / (download) - annotate - [select for diffs], Fri Feb 27 09:14:02 2009 UTC (15 years, 1 month ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_4_6, VERSION_1_4_5, VERSION_1_4_4, VERSION_1_4_2, VERSION_1_3_9, VERSION_1_3_8, VERSION_1_3_6, VERSION_1_3_15, VERSION_1_3_13, VERSION_1_3_11, VERSION_1_3_10
Changes since 1.12: +6 -1 lines
Diff to previous 1.12 (colored) to selected 1.11 (colored)

Character-encoding stuff documented, expanded.

Revision 1.12 / (download) - annotate - [select for diffs], Fri Feb 27 08:20:15 2009 UTC (15 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.11: +40 -3 lines
Diff to previous 1.11 (colored)

More character-encoding.

Revision 1.11 / (download) - annotate - [selected], Wed Feb 25 17:02:47 2009 UTC (15 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.10: +5 -2 lines
Diff to previous 1.10 (colored)

*** empty log message ***

Revision 1.10 / (download) - annotate - [select for diffs], Tue Feb 24 13:46:54 2009 UTC (15 years, 1 month ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_3_5
Changes since 1.9: +19 -2 lines
Diff to previous 1.9 (colored) to selected 1.11 (colored)

Character-encoding checked for all text (arguments/values).

Revision 1.9 / (download) - annotate - [select for diffs], Mon Feb 23 15:19:47 2009 UTC (15 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.8: +15 -6 lines
Diff to previous 1.8 (colored) to selected 1.11 (colored)

Adding revamped webpage.

Revision 1.8 / (download) - annotate - [select for diffs], Mon Feb 23 12:45:19 2009 UTC (15 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.7: +14 -14 lines
Diff to previous 1.7 (colored) to selected 1.11 (colored)

More in-file documentation and Linux-isation.
Moved mdoc_macros table definition into macro.c, where it belongs.

Revision 1.7 / (download) - annotate - [select for diffs], Mon Feb 23 09:46:59 2009 UTC (15 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.6: +4 -4 lines
Diff to previous 1.6 (colored) to selected 1.11 (colored)

More documentation in place.

Revision 1.6 / (download) - annotate - [select for diffs], Mon Feb 23 09:33:34 2009 UTC (15 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.5: +181 -19 lines
Diff to previous 1.5 (colored) to selected 1.11 (colored)

Considerable mdoc.3 documentation.
Added a few more escapes and macros.

Revision 1.5 / (download) - annotate - [select for diffs], Tue Jan 20 15:05:01 2009 UTC (15 years, 2 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_1_2_0
Changes since 1.4: +10 -0 lines
Diff to previous 1.4 (colored) to selected 1.11 (colored)

More documentation/installation fixes.

Revision 1.4 / (download) - annotate - [select for diffs], Mon Jan 19 17:51:33 2009 UTC (15 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.3: +44 -15 lines
Diff to previous 1.3 (colored) to selected 1.11 (colored)

More correct validation.
Elision of prologue macros from main tree.

Revision 1.3 / (download) - annotate - [select for diffs], Sat Jan 17 16:15:27 2009 UTC (15 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.2: +10 -0 lines
Diff to previous 1.2 (colored) to selected 1.11 (colored)

Documentation, more validations, cleaned up actions, added Nm action.

Revision 1.2 / (download) - annotate - [select for diffs], Fri Jan 16 15:58:50 2009 UTC (15 years, 2 months ago) by kristaps
Branch: MAIN
Changes since 1.1: +105 -18 lines
Diff to previous 1.1 (colored) to selected 1.11 (colored)

Initial separation of tree/mdocml.1.
Finished mdoc.3.
Broken build: mdocml.c.

Revision 1.1 / (download) - annotate - [select for diffs], Fri Jan 16 14:04:26 2009 UTC (15 years, 2 months ago) by kristaps
Branch: MAIN
Diff to selected 1.11 (colored)

Added more validation (parents/msecs).
Initial function documentation for mdoc.3.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb