Commit graph

2309 commits

Author SHA1 Message Date
Joseph Koshy
4af8cf98a0 Spelling fixes and typos.
Submitted by: PA <PA@FreeBSD.ee.ntu.edu.tw> via wosch@freebsd.org to the
	freebsd-doc list.
1998-11-02 03:20:46 +00:00
Wolfram Schneider
f48722c8d0 Added a section how to connect 2 FreeBSD boxes over a parallel line (PLIP) 1998-10-30 23:15:03 +00:00
Motoyuki Konno
7f2861bbd5 Japanese version of FAQ.latin1 not available. 1998-10-30 01:27:53 +00:00
Motoyuki Konno
96b69ba9ce Japanese version of handbook.latin1 and handbook.ps are not available. 1998-10-30 01:26:55 +00:00
Nik Clayton
14a83515e5 * \s-+</programlisting> replaced with </programlisting> globally.
* Fixup use of <symbol> with more appropriate element

  * Fixup wrong occurence of $Id$

  * Fixup references to 'make' variables, and strim off the surrounding
    &#36;{...}, it can be added back by the stylesheet at presentation time.

  * More insertions or deletions of <para>...</para> as appropriate.

And with this commit, ladies and gentlemen, we're almost there as far as
the DocBook conversion goes. I still need to:

  - Split the big handbook.sgml into its constituent files and directories.

  - Sort out the files that will contain entities, and put in the correct
    SGML to use them.

  - Merge in the changes that have happened to doc/handbook over the past
    7 or so months.

  - Build the Makefile framework and supporting apps to do .txt, .ps, .rtf
    and .pdf conversions.

But the mind numbingly tedious stuff is over. Of course, there's
always more to do (like the whole bibliography section should be marked
up as a bibliography) and I'm putting together the "This is how the
handbook should be marked up" document as well. Oh, and organising my
notes on how the Handbook could be re-arranged. But apart from that,
it's done :-)
1998-10-28 23:42:39 +00:00
Motoyuki Konno
73979ab26a Merge the following changes in the English version:
cvsup.sgml : 1.39 -> 1.40

Submitted by:	condle@freegate.co.jp
1998-10-27 15:39:03 +00:00
Jun Kuriyama
f13dc54735 Catch up to 3.0-19980827-SNAP (3rd and last!)
Submitted by:	Kazuo Horikawa <k-horik@yk.rim.or.jp>
1998-10-27 14:33:18 +00:00
Mark Murray
ffe95fdaa4 Update to reflect a more accurate reality... 1998-10-27 09:38:15 +00:00
Nik Clayton
de52a66a3c <quote> -> &rdquo;
</quote> -> &ldquo;
1998-10-26 23:54:18 +00:00
Nik Clayton
0992677d94 Where kernel options ("options INET" for example) are listed, wrap them
in <literal>...</literal>.
1998-10-26 23:53:48 +00:00
Nik Clayton
dd7b7abb9d <foo
id="bar">
       ...

changed to

    <foo id="bar">
       ...

Before people complain that "Hang on, now you can't find out what the
allocated ID values are with a simple 'grep'" I'll say that's not a
problem. I plan to introduce a target in the Makefile (probably
something like 'handbook.id' which will automatically generate this
list doing a proper SGML parse.
1998-10-26 23:53:22 +00:00
Nik Clayton
e27aad9d1f Fixup erroneous or extraneous <para>...</para> elements. 1998-10-26 23:52:48 +00:00
Nik Clayton
a02c3d7f5e <abbrev> -> <acronym> in some cases. 1998-10-26 23:52:05 +00:00
Nik Clayton
84712fedb0 Step 1. Find <ulink url="mailto:...">...</ulink> and change the <ulink>
to <email>.

        Can't do this globally. Some of the links are odd (i.e,. the link
        is not their e-mail address but is their name, eg

          <ulink url="mailto:nik@freebsd.org">Nik Clayton</ulink>

        which would turn to

          <email>Nik Clayton</email>

        which isn't very useful. Ignore these ones, and do the others.
        (i.e., the ones that look like

           <ulink url="mailto:nik@freebsd.org">nik@freebsd.org</ulink>

        )

        This Emacs regexp does the job.

            Search for: <ulink\s-+url="mailto[^>]+>\([^<]+\)</ulink>
          Replace with: <email>\1</email>

Step 2. A lot of the <email>...</email> sets will have '<' and '>' embedded
        in them (as entities). These can be removed, since the stylesheet
        will add them;

            Search for: <email>&lt;\([^&]+\)&gt;</email>
          Replace with: <email>\1</email>

Step 3. The trick now is to turn

            <ulink url="mailto:nik@freebsd.org">Nik Clayton</ulink>

        into

            Nik Clayton <email>nik@freebsd.org</email>

        This step could (possibly) have been done first, and then steps
        1 and 2 could be done globally. I haven't done this because of
        concerns about the ordering of names within languages. This
        transformation is fairly simple in English, I've no idea what
        it's like in Japanese.

            Search for: <ulink\s-+url="mailto:\([^"]+\)">\([^<]+\)</ulink>
          Replace with: \2 <email>\1</email>

Step 4. Remove leading and trailing spaces that may have slipped in

            Search for: <email>\s-+
          Replace with: <email>

            Search for: \s-+</email>
          Replace with: </email>
1998-10-26 23:51:34 +00:00
Nik Clayton
950e361ac7 Use the correct ISO entities for dashes. According to a TeX manual I have
kicking around here,

    daughter-in-law, X-rated    = hyphen      =  -
    pages 13--67                = en-dash     = &ndash;
    yes---or no?                = em-dash     = &mdash;
    0, 1, and -1                = minus sign  = &minus;
1998-10-26 23:51:03 +00:00
Nik Clayton
aefedf6246 Removed white space after <title> and before </title>. Use two search and
replaces

    \s-+</title>  ->  </title>
    <title>\s-+   ->  <title>
1998-10-26 23:50:34 +00:00
Nik Clayton
bf13e1a617 <emphasis remap=..> -> <emphasis>
<literal remap=..>  -> <literal>
<command remap=..>  -> <command>

Or deleted <emphasis ..> altogether in some cases.

More redundant <para>..</para>'s removed.
1998-10-26 23:49:59 +00:00
Nik Clayton
84100bea23 As previous commits, to end of file. 1998-10-26 23:49:18 +00:00
Wolfram Schneider
b5dbe8e041 Fix sgml typo from revision 1.244 1998-10-25 18:05:01 +00:00
Wolfram Schneider
e05fd088cc Added Chris Coleman as FreeBSD Really-Quick NewsLetter Editor
to the The FreeBSD Documentation Project.
1998-10-25 17:59:56 +00:00
Vanilla I. Shu
d5e934bc59 Add Horance Chou <horance@freedom.ie.cycu.edu.tw> for libffi ports.
Forgotten by:	steve
1998-10-24 17:19:37 +00:00
Wolfram Schneider
cfbf85d08e Delete Mozilla CVSup mirror section. 1998-10-24 10:47:44 +00:00
John Polstra
5aba39fd7a List the release tags for 3.0 and 2.2.7. 1998-10-24 02:17:45 +00:00
Nik Clayton
78a4c3d87a As previous commit, to line 35973. 1998-10-22 23:07:02 +00:00
Nik Clayton
0e0b8f123f As earlier commits, to line 30118 1998-10-22 23:06:05 +00:00
Nik Clayton
00731dde7d Small changes to keep it validating. 1998-10-22 23:03:53 +00:00
Nik Clayton
9b4366d812 As previous commit, to line 24997 1998-10-22 23:03:04 +00:00
Brian Somers
0d7ea4b7ce Mention that the ``first connection'' problem is fixed in the
latest version of ppp.
1998-10-22 18:14:54 +00:00
Motoyuki Konno
c904464fff Fix typo.
Submitted by:	Kazuo Horikawa <k-horik@yk.rim.or.jp>
1998-10-22 14:07:17 +00:00
Nik Clayton
3ea0381580 As previous commit, to line 20370. 1998-10-21 22:05:23 +00:00
Nik Clayton
eb020dff6d As previous commit, to line 15126 1998-10-21 22:02:39 +00:00
Nik Clayton
6d7e38c02a As previous commit, now to up to line 11490. 1998-10-21 22:00:19 +00:00
Nik Clayton
cfb82ba9ca With the agreement of the Japanese team, a change in the way I'm doing
things.

I'm now working through from the beginning of the handbook to end,
correcting as I go. I'll commit in chunks of 5,000 lines (or
thereabouts).

Most of the changes fall into the following categories.

  * <emphasis remap=bf> --> <emphasis>

  * Spurious <para>s around <*list>s deleted (but not reformatted)

    "C-c -" in Emacs SGML mode (when the point is on an element starting
    or end tags) will delete that element's starting or end tags.

  * Marked smileys with <!-- smiley --> for possible future deletion

  * Deleting <emphasis>, around

    <term><emphasis>...</emphasis></term> -> <term>...</term>

  * Fine tuning markup choices in some cases

    - <filename>C:</filename>  ->  <devicename>C:</devicename>

  * Extra <note>s here and there.

  * Some <*list>s to <procedure> (and <listitem>s to <step>)

  * ASCII emphasis converted to <emphasis>

    i.e.,   do it like *this*  ->  do it like <emphasis>this</emphasis>

  * <symbol> -> <replaceable>

There are very few whitespace changes, although a few have probably
cropped up. The vast majority of the whitespace changes will happen in
one megacommit, hopefully some time next week.

This does the first 5,000 lines or so.
1998-10-21 21:58:40 +00:00
Nik Clayton
2a882be047 A lot of </para> tags have leading whitespace before them. Remove it. Do
this (in Emacs) by searching for

    \s-+</para>

and replacing with

    </para>

Do this for all occurences *except* where the element immediately before
the </para> is one of <itemizedlist>, <orderedlist>, <variablelist>,
<procedure>. The <para>...</para> wrapping these elements is mostly
redundant, and will be removed later.
1998-10-21 21:53:36 +00:00
Nik Clayton
f0b535db82 Some paragraphs have leading space(s). E.g.,
<para>  There is some leading space here.</para>

Get rid of it, doing an emacs search/replace for

    <para> +\([^ ]\)

and replacing with

    <para>\1

This can be done globally.
1998-10-21 21:52:28 +00:00
Nik Clayton
2d91cbead9 Removed double whitespace from the end of stops -- . , ! ? : ;
Some parts of the handbook had single spaces after stops, some had double
or triple. While the typographical convention for monospaced fonts may
be to use double spaces after them, that doesn't apply here. TeX will
ignore them, as will HTML. If we need them for a plain text version of the
Handbook then the stylesheet / conversion mechanism can insert them
as necessary.

Searching for

   _\([;:!\.\?,]\)  +_

in Emacs and replacing with

   _\1 _

(ignore the '_', they're just to delineate the regexps) does the job
quite nicely. However, you can't do this everywhere, since some of the
double spaces might be in program listings or other literal sections
(e.g., the BSD Copyright), so you need to sit and bounce on the 'y' or
'n' key as appropriate for each occurance of a stop.
1998-10-21 21:51:11 +00:00
Nik Clayton
ce7ee35d24 Finished sweep. If it's white space sensitive (examples, program
listings, PGP signatures...) the white space is now correct. I may
have missed one or two on the way, I'll catch them later.
1998-10-21 21:48:30 +00:00
Motoyuki Konno
a28fe9ff33 Merge the following changes in the English version:
eresources.sgml : 1.49 -> 1.50

Submitted by:	condle@geocities.co.jp
1998-10-21 14:06:50 +00:00
Vanilla I. Shu
8445cc4836 Add SURANYI Peter for p5-Gtk. 1998-10-19 15:45:11 +00:00
Eivind Eklund
4a6832416c Change the description of freebsd-arch to reflect its new status (open
but moderated).

NOTE: All old subscribers were dropped, so if you were on the list
before and still want to be on the list now (after it has gone open),
you'll have to re-subscribe.
1998-10-19 01:27:35 +00:00
Motoyuki Konno
61ca40ad8c Update "Original revision:" 1998-10-17 09:38:14 +00:00
Nik Clayton
63d609a2b1 Continuing on from the previous commit -- this takes it up to the beginning
of chapter 16. . .
1998-10-16 23:58:33 +00:00
Hiroyuki Hanai
072f6480b6 Oops! Next release is 3.0!
This commit is too late?
1998-10-16 00:45:15 +00:00
Motoyuki Konno
3ae2d53411 Merge the following changes in the English version:
misc.sgml : 1.6 -> 1.7

Fix typo.
    x.sgml
1998-10-15 23:35:09 +00:00
Motoyuki Konno
c62d5fba6a Merge the following changes in the English version:
FAQ.sgml     : 1.100 -> 1.101
    x.sgml       : 1.3   -> 1.5

Submitted by:   Mitsuru IWASAKI <iwasaki@jp.freebsd.org>
                HARADA Kiroh <kiroh@pp.iij4u.or.jp>
                hino@ccm.cl.nec.co.jp
1998-10-15 23:11:54 +00:00
Motoyuki Konno
0004c07110 Merge the following changes in the English version:
bibliography.sgml : 1.33  -> 1.37
    contrib.sgml      : 1.310 -> 1.311
    handbook.sgml     : 1.89  -> 1.90
    install.sgml      : 1.66  -> 1.67
    porting.sgml      : 1.111 -> 1.112
    ports.sgml        : 1.30  -> 1.31
    submitters.sgml   : 1.238 -> 1.242

Submitted by:   Mitsuru IWASAKI <iwasaki@jp.freebsd.org>
                HARADA Kiroh <kiroh@pp.iij4u.or.jp>
                hino@ccm.cl.nec.co.jp
                Motoyuki Konno <motoyuki@freebsd.org>
1998-10-15 22:47:01 +00:00
Jun Kuriyama
3e1766aead Catch up to 1.242. 1998-10-15 22:24:23 +00:00
Wolfram Schneider
33f0e25d0c Make the link to the search page a full link so it
will work from a local copy of the FAQ.
1998-10-15 20:24:22 +00:00
Wolfram Schneider
08482cd5b3 Make the link to the search page a full link so it
will work from a local copy of the handbook.
1998-10-15 20:23:33 +00:00
Motoyuki Konno
3639938984 Merge the following changes in the English version:
hackers.sgml : 1.4 -> 1.6

Submitted by:	HARADA Kiroh <kiroh@pp.iij4u.or.jp>
1998-10-15 16:19:10 +00:00