[BACK]Return to index.sgml CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/index.sgml, Revision 1.1

1.1     ! kristaps    1: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
        !             2: <html>
        !             3:        <head>
        !             4:                <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        !             5:                <meta name="resource-type" content="document">
        !             6:                <link rel="stylesheet" href="style.css" type="text/css" media="all">
        !             7:                <title>mdocml.bsd.lv</title>
        !             8:        </head>
        !             9:        <body>
        !            10:        <table width="600">
        !            11:                <col width="100%">
        !            12:                <tbody>
        !            13:                        <tr>
        !            14:                                <td>
        !            15:                                        <div class="head">
        !            16:                                                <b>mdocml</b> &#8211; mdoc macro compiler
        !            17:                                        </div>
        !            18:                                </td>
        !            19:                        </tr>
        !            20:                        <tr>
        !            21:                                <td valign="top">
        !            22:                                        <h1>
        !            23:                                        DESCRIPTION
        !            24:                                        </h1>
        !            25:
        !            26:                                        <p>
        !            27:                                        <span class="nm">mdocml</span> is a suite of tools that compile &#8220;mdoc&#8221;, the roff macro
        !            28:                                        package of the BSD manual pages.  The mission of <span class="nm">mdocml</span> is to deprecate <a
        !            29:                                        href="http://www.gnu.org/software/groff/" class="external">groff</a>, the GNU roff implementation, for
        !            30:                                        displaying BSD mdoc pages.  groff amounts to over 60 000 lines of GPL C++ source, which is a
        !            31:                                        considerable encumbrance to BSD operating system.
        !            32:                                        </p>
        !            33:
        !            34:                                        <p>
        !            35:                                        The core of <span class="nm">mdocml</span> is the libmdoc library, a validating scanner-parser producing
        !            36:                                        intermediate-form output from mdoc input.  libmdoc is a simple, fast library operating on memory buffers
        !            37:                                        of mdoc input.  Its intermediate output, an abstract syntax tree, is fully documented in the <span
        !            38:                                        class="man">mdoc(3)</span> reference manual.
        !            39:                                        </p>
        !            40:
        !            41:                                        <p>
        !            42:                                        There are three utilities implementing <span class="man">mdoc(3)</span>:
        !            43:                                        </p>
        !            44:
        !            45:                                        <ul>
        !            46:                                        <li><span class="man">mdocterm(1)</span> &#8211; formats mdoc input for display on the terminal
        !            47:                                        <li><span class="man">mdochtml(1)</span> &#8211; formats mdoc input as strict HTML (nascent)
        !            48:                                        <li><span class="man">mdoclint(1)</span> &#8211; validates mdoc input
        !            49:                                        <li><span class="man">mdoctree(1)</span> &#8211; prints input abstract syntax tree
        !            50:                                        </ul>
        !            51:
        !            52:                                        <p>
        !            53:                                        The <span class="man">mdocterm(1)</span> utility is intended to deprecate usage of <a
        !            54:                                        href="http://www.gnu.org/software/groff/" class="external">groff</a> for displaying BSD manuals to the
        !            55:                                        terminal, either directly or cached as a &#8220;catman&#8221; page.
        !            56:                                        </p>
        !            57:
        !            58:                                        <p>
        !            59:                                        <span class="attn">Please submit patches!</span> Although a significant implementation exists, work
        !            60:                                        remains for the backend library and especially the front-end utilities.  See the <a
        !            61:                                        href="#contact">contact</a> information below to submit patches and bug reports.
        !            62:                                        </p>
        !            63:                                </td>
        !            64:                        </tr>
        !            65:                        <tr>
        !            66:                                <td>
        !            67:                                        <h1>
        !            68:                                        INSTALLING SOURCES
        !            69:                                        </h1>
        !            70:
        !            71:                                        <h2>
        !            72:                                        nightly source
        !            73:                                        </h2>
        !            74:
        !            75:                                        <p>
        !            76:                                        CVS sources are checkedout and snapshotted nightly.  These may be found in the <a
        !            77:                                        href="/snapshots/">/snapshots/</a> directory.
        !            78:                                        </p>
        !            79:
        !            80:                                        <p class="boxed">
        !            81:                                        % cd /tmp<br>
        !            82:                                        % ftp -V -o- http://mdocml.bsd.lv/snapshots/mdocml.tgz | tar -zxf -<br>
        !            83:                                        % cd mdocml<br>
        !            84:                                        % make<br>
        !            85:                                        % make regress<br>
        !            86:                                        % make install
        !            87:                                        </p>
        !            88:
        !            89:                                        <h2>
        !            90:                                        nightly port
        !            91:                                        </h2>
        !            92:
        !            93:                                        <p>
        !            94:                                        The nightly snapshot is automatically converted into an OpenBSD port (ports for other BSD systems not
        !            95:                                        yet available).  These may be found in the <a href="/ports-openbsd/">/ports-openbsd/</a> directory.
        !            96:                                        </p>
        !            97:
        !            98:                                        <p>
        !            99:                                        If installing for the first time:
        !           100:                                        </p>
        !           101:
        !           102:                                        <p class="boxed">
        !           103:                                        % ftp -V -o- http://mdocml.bsd.lv/ports-openbsd/mdocml.tgz | tar -zxf -<br>
        !           104:                                        % cd mdocml<br>
        !           105:                                        % sudo make<br>
        !           106:                                        % sudo make install
        !           107:                                        </p>
        !           108:
        !           109:                                        <p>
        !           110:                                        Subsequent installations:
        !           111:                                        </p>
        !           112:
        !           113:                                        <p class="boxed">
        !           114:                                        % sudo pkg_add -r mdocml
        !           115:                                        </p>
        !           116:                                </td>
        !           117:                        </tr>
        !           118:                        <tr>
        !           119:                                <td>
        !           120:                                        <h1>
        !           121:                                        CONTACT
        !           122:                                        </h1>
        !           123:
        !           124:                                        <p>
        !           125:                                        Please contact Kristaps, kris<a class="external"
        !           126:                                        href="http://mailhide.recaptcha.net/d?k=01jt88xIsFONwVjHZmGpc4AQ==&amp;c=sb5E6ulipc-eTnpTVqI-BQ=="
        !           127:                                        onclick="window.open('http://mailhide.recaptcha.net/d?k=01jt88xIsFONwVjHZmGpc4AQ==&amp;c=sb5E6ulipc-eTnpTVqI-BQ==',
        !           128:                                        '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return
        !           129:                                        false;" title="Reveal this e-mail address">...</a>@kth.se, with questions, bug reports, patches, and so on.
        !           130:                                        </p>
        !           131:
        !           132:                                        <p>
        !           133:                                        If you'd like to submit patches, please contact us beforehand in case larger changes are pending but not
        !           134:                                        checked in.  If making a bug report, please make sure it's repeatable on the most current snapshot.
        !           135:                                        </p>
        !           136:                                </td>
        !           137:                        </tr>
        !           138:                        <tr>
        !           139:                                <td>
        !           140:                                        <div class="foot">
        !           141:                                                Copyright &#169; 2009 Kristaps D&#382;onsons, $Date: 2009/02/19 12:22:55 $
        !           142:                                        </div>
        !           143:                                </td>
        !           144:                        </tr>
        !           145:                </tbody>
        !           146:        </table>
        !           147:        </body>
        !           148: </html>

CVSweb