Fix some whitespace (TAB damage) changes. Translators, please duplicate
these fixes. 'mary' -> '<username>mary</username>' Fixed lines that were broken in the wrong place, either too early, or too late. This made some of the examples look odd, and some of the code examples were just wrong. These were errors I introduced doing the DocBook conversion, and weren't in the original LinuxDoc version.
This commit is contained in:
parent
35c66a5bd4
commit
6fd5153fca
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=4647
3 changed files with 42 additions and 48 deletions
|
@ -1,7 +1,7 @@
|
|||
<!--
|
||||
The FreeBSD Documentation Project
|
||||
|
||||
$Id: chapter.sgml,v 1.12 1999-03-08 22:04:47 nik Exp $
|
||||
$Id: chapter.sgml,v 1.13 1999-04-08 21:37:00 nik Exp $
|
||||
-->
|
||||
|
||||
<chapter id="printing">
|
||||
|
@ -417,8 +417,7 @@ sio2: type 16550A</screen>
|
|||
<step>
|
||||
<para>Type:</para>
|
||||
|
||||
<screen>&prompt.root; <userinput>./MAKEDEV
|
||||
<replaceable>port</replaceable></userinput></screen>
|
||||
<screen>&prompt.root; <userinput>./MAKEDEV <replaceable>port</replaceable></userinput></screen>
|
||||
|
||||
<para>Where <replaceable>port</replaceable> is the device entry
|
||||
for the port you want to make. Use <literal>lpt0</literal>
|
||||
|
@ -431,8 +430,7 @@ sio2: type 16550A</screen>
|
|||
<step>
|
||||
<para>Type:</para>
|
||||
|
||||
<screen>&prompt.root; <userinput>ls -l
|
||||
<replaceable>port</replaceable></userinput></screen>
|
||||
<screen>&prompt.root; <userinput>ls -l <replaceable>port</replaceable></userinput></screen>
|
||||
|
||||
<para>to make sure the device entry got created.</para>
|
||||
</step>
|
||||
|
@ -1282,8 +1280,8 @@ exit 2</programlisting>
|
|||
|
||||
<programlisting>
|
||||
!"#$%&'()*+,-./01234
|
||||
"#$%&'()*+,-./012345
|
||||
#$%&'()*+,-./0123456</programlisting>
|
||||
"#$%&'()*+,-./012345
|
||||
#$%&'()*+,-./0123456</programlisting>
|
||||
|
||||
<para>You have become another victim of the
|
||||
<emphasis>staircase effect</emphasis>, caused by conflicting
|
||||
|
@ -1655,9 +1653,7 @@ active kelly 9 /etc/host.conf, /etc/hosts.equiv 88 bytes
|
|||
is the currently active job (note the word <literal>active</literal>
|
||||
under the “Rank” column), which means the printer should
|
||||
be currently printing that job. The second job consists of data
|
||||
passed as the standard input to the</para>
|
||||
|
||||
<para>&man.lpr.1; command. The third job came from user mary; it is a
|
||||
passed as the standard input to the &man.lpr.1; command. The third job came from user <username>mary</username>; it is a
|
||||
much larger job. The pathname of the files she's trying to print is
|
||||
too long to fit, so the &man.lpq.1; command just shows three
|
||||
dots.</para>
|
||||
|
@ -1676,7 +1672,7 @@ kelly: 1st [job 009rose]
|
|||
/etc/hosts.equiv 15 bytes
|
||||
|
||||
kelly: 2nd [job 010rose]
|
||||
(standard input) 1635 bytes
|
||||
(standard input) 1635 bytes
|
||||
|
||||
mary: 3rd [job 011rose]
|
||||
/home/orchid/mary/research/venus/alpha-regio/mapping 78519 bytes</screen>
|
||||
|
@ -2939,7 +2935,8 @@ exec /usr/local/bin/dvips -f | /usr/local/libexec/lprps "$@"</programlisting>
|
|||
# hpvf - Convert GIF files into HP/PCL, then print
|
||||
# Installed in /usr/local/libexec/hpvf
|
||||
|
||||
PATH=/usr/X11R6/bin:$PATH; export PATH giftopnm | ppmtopgm | pgmtopbm | pbmtolj -resolution 300 \
|
||||
PATH=/usr/X11R6/bin:$PATH; export PATH
|
||||
giftopnm | ppmtopgm | pgmtopbm | pbmtolj -resolution 300 \
|
||||
&& exit 0 \
|
||||
|| exit 2</programlisting>
|
||||
|
||||
|
@ -3309,8 +3306,8 @@ exit 0</programlisting>
|
|||
# hpof - Output filter for Hewlett Packard PCL-compatible printers
|
||||
# Installed in /usr/local/libexec/hpof
|
||||
|
||||
printf "\033&k2G" || exit 2 exec
|
||||
/usr/libexec/lpr/lpf</programlisting>
|
||||
printf "\033&k2G" || exit 2
|
||||
exec /usr/libexec/lpr/lpf</programlisting>
|
||||
|
||||
<para>Specify the path to the output filter in the
|
||||
<literal>of</literal> capability. See <link
|
||||
|
@ -3895,8 +3892,9 @@ exit 0;</programlisting>
|
|||
#!/bin/sh
|
||||
#
|
||||
# diablo-if-net - Text filter for Diablo printer `scrivener' listening
|
||||
# on port 5100. Installed in /usr/local/libexec/diablo-if-net # exec
|
||||
/usr/libexec/lpr/lpf "$@" | /usr/local/libexec/netprint scrivener 5100</programlisting>
|
||||
# on port 5100. Installed in /usr/local/libexec/diablo-if-net
|
||||
#
|
||||
exec /usr/libexec/lpr/lpf "$@" | /usr/local/libexec/netprint scrivener 5100</programlisting>
|
||||
</sect3>
|
||||
</sect2>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!--
|
||||
The FreeBSD Documentation Project
|
||||
|
||||
$Id: chapter.sgml,v 1.12 1999-03-08 22:04:47 nik Exp $
|
||||
$Id: chapter.sgml,v 1.13 1999-04-08 21:37:00 nik Exp $
|
||||
-->
|
||||
|
||||
<chapter id="printing">
|
||||
|
@ -417,8 +417,7 @@ sio2: type 16550A</screen>
|
|||
<step>
|
||||
<para>Type:</para>
|
||||
|
||||
<screen>&prompt.root; <userinput>./MAKEDEV
|
||||
<replaceable>port</replaceable></userinput></screen>
|
||||
<screen>&prompt.root; <userinput>./MAKEDEV <replaceable>port</replaceable></userinput></screen>
|
||||
|
||||
<para>Where <replaceable>port</replaceable> is the device entry
|
||||
for the port you want to make. Use <literal>lpt0</literal>
|
||||
|
@ -431,8 +430,7 @@ sio2: type 16550A</screen>
|
|||
<step>
|
||||
<para>Type:</para>
|
||||
|
||||
<screen>&prompt.root; <userinput>ls -l
|
||||
<replaceable>port</replaceable></userinput></screen>
|
||||
<screen>&prompt.root; <userinput>ls -l <replaceable>port</replaceable></userinput></screen>
|
||||
|
||||
<para>to make sure the device entry got created.</para>
|
||||
</step>
|
||||
|
@ -1282,8 +1280,8 @@ exit 2</programlisting>
|
|||
|
||||
<programlisting>
|
||||
!"#$%&'()*+,-./01234
|
||||
"#$%&'()*+,-./012345
|
||||
#$%&'()*+,-./0123456</programlisting>
|
||||
"#$%&'()*+,-./012345
|
||||
#$%&'()*+,-./0123456</programlisting>
|
||||
|
||||
<para>You have become another victim of the
|
||||
<emphasis>staircase effect</emphasis>, caused by conflicting
|
||||
|
@ -1655,9 +1653,7 @@ active kelly 9 /etc/host.conf, /etc/hosts.equiv 88 bytes
|
|||
is the currently active job (note the word <literal>active</literal>
|
||||
under the “Rank” column), which means the printer should
|
||||
be currently printing that job. The second job consists of data
|
||||
passed as the standard input to the</para>
|
||||
|
||||
<para>&man.lpr.1; command. The third job came from user mary; it is a
|
||||
passed as the standard input to the &man.lpr.1; command. The third job came from user <username>mary</username>; it is a
|
||||
much larger job. The pathname of the files she's trying to print is
|
||||
too long to fit, so the &man.lpq.1; command just shows three
|
||||
dots.</para>
|
||||
|
@ -1676,7 +1672,7 @@ kelly: 1st [job 009rose]
|
|||
/etc/hosts.equiv 15 bytes
|
||||
|
||||
kelly: 2nd [job 010rose]
|
||||
(standard input) 1635 bytes
|
||||
(standard input) 1635 bytes
|
||||
|
||||
mary: 3rd [job 011rose]
|
||||
/home/orchid/mary/research/venus/alpha-regio/mapping 78519 bytes</screen>
|
||||
|
@ -2939,7 +2935,8 @@ exec /usr/local/bin/dvips -f | /usr/local/libexec/lprps "$@"</programlisting>
|
|||
# hpvf - Convert GIF files into HP/PCL, then print
|
||||
# Installed in /usr/local/libexec/hpvf
|
||||
|
||||
PATH=/usr/X11R6/bin:$PATH; export PATH giftopnm | ppmtopgm | pgmtopbm | pbmtolj -resolution 300 \
|
||||
PATH=/usr/X11R6/bin:$PATH; export PATH
|
||||
giftopnm | ppmtopgm | pgmtopbm | pbmtolj -resolution 300 \
|
||||
&& exit 0 \
|
||||
|| exit 2</programlisting>
|
||||
|
||||
|
@ -3309,8 +3306,8 @@ exit 0</programlisting>
|
|||
# hpof - Output filter for Hewlett Packard PCL-compatible printers
|
||||
# Installed in /usr/local/libexec/hpof
|
||||
|
||||
printf "\033&k2G" || exit 2 exec
|
||||
/usr/libexec/lpr/lpf</programlisting>
|
||||
printf "\033&k2G" || exit 2
|
||||
exec /usr/libexec/lpr/lpf</programlisting>
|
||||
|
||||
<para>Specify the path to the output filter in the
|
||||
<literal>of</literal> capability. See <link
|
||||
|
@ -3895,8 +3892,9 @@ exit 0;</programlisting>
|
|||
#!/bin/sh
|
||||
#
|
||||
# diablo-if-net - Text filter for Diablo printer `scrivener' listening
|
||||
# on port 5100. Installed in /usr/local/libexec/diablo-if-net # exec
|
||||
/usr/libexec/lpr/lpf "$@" | /usr/local/libexec/netprint scrivener 5100</programlisting>
|
||||
# on port 5100. Installed in /usr/local/libexec/diablo-if-net
|
||||
#
|
||||
exec /usr/libexec/lpr/lpf "$@" | /usr/local/libexec/netprint scrivener 5100</programlisting>
|
||||
</sect3>
|
||||
</sect2>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!--
|
||||
The FreeBSD Documentation Project
|
||||
|
||||
$Id: chapter.sgml,v 1.12 1999-03-08 22:04:47 nik Exp $
|
||||
$Id: chapter.sgml,v 1.13 1999-04-08 21:37:00 nik Exp $
|
||||
-->
|
||||
|
||||
<chapter id="printing">
|
||||
|
@ -417,8 +417,7 @@ sio2: type 16550A</screen>
|
|||
<step>
|
||||
<para>Type:</para>
|
||||
|
||||
<screen>&prompt.root; <userinput>./MAKEDEV
|
||||
<replaceable>port</replaceable></userinput></screen>
|
||||
<screen>&prompt.root; <userinput>./MAKEDEV <replaceable>port</replaceable></userinput></screen>
|
||||
|
||||
<para>Where <replaceable>port</replaceable> is the device entry
|
||||
for the port you want to make. Use <literal>lpt0</literal>
|
||||
|
@ -431,8 +430,7 @@ sio2: type 16550A</screen>
|
|||
<step>
|
||||
<para>Type:</para>
|
||||
|
||||
<screen>&prompt.root; <userinput>ls -l
|
||||
<replaceable>port</replaceable></userinput></screen>
|
||||
<screen>&prompt.root; <userinput>ls -l <replaceable>port</replaceable></userinput></screen>
|
||||
|
||||
<para>to make sure the device entry got created.</para>
|
||||
</step>
|
||||
|
@ -1282,8 +1280,8 @@ exit 2</programlisting>
|
|||
|
||||
<programlisting>
|
||||
!"#$%&'()*+,-./01234
|
||||
"#$%&'()*+,-./012345
|
||||
#$%&'()*+,-./0123456</programlisting>
|
||||
"#$%&'()*+,-./012345
|
||||
#$%&'()*+,-./0123456</programlisting>
|
||||
|
||||
<para>You have become another victim of the
|
||||
<emphasis>staircase effect</emphasis>, caused by conflicting
|
||||
|
@ -1655,9 +1653,7 @@ active kelly 9 /etc/host.conf, /etc/hosts.equiv 88 bytes
|
|||
is the currently active job (note the word <literal>active</literal>
|
||||
under the “Rank” column), which means the printer should
|
||||
be currently printing that job. The second job consists of data
|
||||
passed as the standard input to the</para>
|
||||
|
||||
<para>&man.lpr.1; command. The third job came from user mary; it is a
|
||||
passed as the standard input to the &man.lpr.1; command. The third job came from user <username>mary</username>; it is a
|
||||
much larger job. The pathname of the files she's trying to print is
|
||||
too long to fit, so the &man.lpq.1; command just shows three
|
||||
dots.</para>
|
||||
|
@ -1676,7 +1672,7 @@ kelly: 1st [job 009rose]
|
|||
/etc/hosts.equiv 15 bytes
|
||||
|
||||
kelly: 2nd [job 010rose]
|
||||
(standard input) 1635 bytes
|
||||
(standard input) 1635 bytes
|
||||
|
||||
mary: 3rd [job 011rose]
|
||||
/home/orchid/mary/research/venus/alpha-regio/mapping 78519 bytes</screen>
|
||||
|
@ -2939,7 +2935,8 @@ exec /usr/local/bin/dvips -f | /usr/local/libexec/lprps "$@"</programlisting>
|
|||
# hpvf - Convert GIF files into HP/PCL, then print
|
||||
# Installed in /usr/local/libexec/hpvf
|
||||
|
||||
PATH=/usr/X11R6/bin:$PATH; export PATH giftopnm | ppmtopgm | pgmtopbm | pbmtolj -resolution 300 \
|
||||
PATH=/usr/X11R6/bin:$PATH; export PATH
|
||||
giftopnm | ppmtopgm | pgmtopbm | pbmtolj -resolution 300 \
|
||||
&& exit 0 \
|
||||
|| exit 2</programlisting>
|
||||
|
||||
|
@ -3309,8 +3306,8 @@ exit 0</programlisting>
|
|||
# hpof - Output filter for Hewlett Packard PCL-compatible printers
|
||||
# Installed in /usr/local/libexec/hpof
|
||||
|
||||
printf "\033&k2G" || exit 2 exec
|
||||
/usr/libexec/lpr/lpf</programlisting>
|
||||
printf "\033&k2G" || exit 2
|
||||
exec /usr/libexec/lpr/lpf</programlisting>
|
||||
|
||||
<para>Specify the path to the output filter in the
|
||||
<literal>of</literal> capability. See <link
|
||||
|
@ -3895,8 +3892,9 @@ exit 0;</programlisting>
|
|||
#!/bin/sh
|
||||
#
|
||||
# diablo-if-net - Text filter for Diablo printer `scrivener' listening
|
||||
# on port 5100. Installed in /usr/local/libexec/diablo-if-net # exec
|
||||
/usr/libexec/lpr/lpf "$@" | /usr/local/libexec/netprint scrivener 5100</programlisting>
|
||||
# on port 5100. Installed in /usr/local/libexec/diablo-if-net
|
||||
#
|
||||
exec /usr/libexec/lpr/lpf "$@" | /usr/local/libexec/netprint scrivener 5100</programlisting>
|
||||
</sect3>
|
||||
</sect2>
|
||||
|
||||
|
|
Loading…
Reference in a new issue