CAWF.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:22k
源码类别:

操作系统开发

开发平台:

C/C++

  1. CAWF(1)                   Minix Programmer's Manual                    CAWF(1)
  2. NAME
  3.      cawf, nroff - C version of  the  nroff-like,  Amazingly  Workable  (text)
  4.      Formatter
  5. SYNOPSIS
  6.      cawf [ -cconfig ] [ -ddevice ] [ -e ] [ -ffont ] [ -h ]  [  -macros  ]  [
  7.      file ... ]
  8. DESCRIPTION
  9.      Cawf formats the text from the input file(s) (standard input if none)  in
  10.      an  approximation  of nroff.  It comes closest to duplicating nroff's man
  11.      or ms macro package styles.  It has some limited support for  nroff's  me
  12.      macros.
  13. OPTIONS
  14.      Options must precede file names.
  15.      -cconfig
  16.           defines  an  alternate  path  to  the  device  configuration   file.
  17.           Normally  the device configuration file is found in device.cf in the
  18.           cawf library (see the FILES section).
  19.           The device configuration file contains device character strings  for
  20.           selecting  fonts and the bold or italic type faces.  See the DEVICES
  21.           section for more information.
  22.      -ddevice
  23.           specifies the name of the output device.  There are  three  built-in
  24.           devices  -  ANSI, NONE and NORMAL - and other devices may be defined
  25.           in the device configuration file.  See the DEVICES section for  more
  26.           information.
  27.           The NORMAL device is the default.
  28.      -e   directs cawf to issue an eject (FF or ^L) after the last page.
  29.      -ffont
  30.           specifies the one font for the device, declared  with  the  -ddevice
  31.           option, that is to be used for the entire document.  Font must match
  32.           a  font  associated  with  the  device's  stanza   in   the   device
  33.           configuration file.  See the DEVICES section for more information.
  34.           No font may be specified for the  built-in  devices  ANSI,  NONE  or
  35.           NORMAL.
  36.      -h   requests a help display.
  37.      -macro
  38.           specifies the macro file to be used.  The standard cawf distribution
  39.           supplies  macro files to support ``-man'', ``-me'' or ``-ms''.  Cawf
  40. Purdue University                       November, 1992                       1
  41. CAWF(1)                   Minix Programmer's Manual                    CAWF(1)
  42.           finds a macro file by constructing its name from `m', acro and  .mac
  43.           -  e.  g.,  -man is converted to man.mac.  The default directory for
  44.           macro files is defined when cawf is compiled;  it's  C:SYSLIBCAWF
  45.           in the MS-DOS environment; /usr/lib/cawf in the UNIX environment.
  46.      file ...
  47.           are the names of files containing nroff source text.
  48. NROFF COMPATIBILITY
  49.      Cawf accepts the following raw nroff requests:
  50.              ."     .ad     .bp     .br     .ce     .de     .di     .ds
  51.              .el     .fi     .fl     .ft     .i0     .ie     .if     .in
  52.              .it     .lg     .li     .ll     .ls     .na     .ne     .nf
  53.              .nr     .ns     .pl     .po     .ps     .rm     .rn     .rr
  54.              .rs     .so     .sp     .ta     .ti     .tm     .tr
  55.      and the following in-text codes:
  56.           $      %      *      "      c      f      h      k
  57.           n      s      w
  58.      plus the full list of nroff/troff special characters in the  original  V7
  59.      troff manual.
  60.      Many restrictions are present; the behavior in general  is  a  subset  of
  61.      nroff's.  Of particular note are the following:
  62.      o The fully supported nroff request  control  character  is  the  period.
  63.        There  is  limited  support  for  the   non-break, acute accent control
  64.        character.
  65.      o Point sizes do not exist; .ps is ignored.
  66.      o Special vertical spacing - the .vs request included - is ignored.
  67.      o Conditionals cover only the numeric comparisons >, =, <, >= and  <=  on
  68.        n(.$;  string  comparisons  between a macro parameter and a literal; n
  69.        (always true); and  t  (always  false).   Only  single  line  input  is
  70.        accepted  from conditionals; multi-line input - e.g., (anything) - is
  71.        not supported.
  72.      o The handling of strings is generally primitive.
  73.      o Horizontal motion via h  must  be  supplied  with  a  number  register
  74.        interpolation and must be positive - e. g., wn(NN, where the value in
  75.        NN is >= 0.
  76. Purdue University                       November, 1992                       2
  77. CAWF(1)                   Minix Programmer's Manual                    CAWF(1)
  78.      o The k function is reliable only after TAB characters, so it is  useful
  79.        only for measuring table positions.
  80.      o The .di request only turns output on  and  off  -  any  macro  name  is
  81.        ignored.
  82.      o Expressions - e. g., .sp - are reasonably general, but the |, &, and  :
  83.        operators  do  not  exist, there must be white space between the end of
  84.        the nroff function and the beginning of the expression, and w requires
  85.        that  quote  (')  be  used as the delimiters.  w counts the characters
  86.        inside the quotes and scales the result in ens, so that,  for  example,
  87.        w'(bu' equals 4n, and w'(bu'/1n equals 4.
  88.      o The only acceptable count for  the  .it  request  is  one,  and  it  is
  89.        effective only with man, me or ms macros.
  90.      o The default scaling factor is `v' for the .ne, .sp, and .pl  raw  nroff
  91.        requests;  it  is  `u' for .nr; and `n' for .in, .ll, .ls, .po, .ta and
  92.        .ti.  (A different scaling factor may  be  specified  with  a  trailing
  93.        character.)
  94.      o Some obsolete or meaningless requests - .i0, .lg and .li - are silently
  95.        ignored.
  96.      White space at the beginning of lines, and embedded  white  space  within
  97.      lines  is dealt with properly.  Sentence terminators at ends of lines are
  98.      understood to imply extra space afterward in filled lines.  Tabs are  im-
  99.      plemented  crudely  and  not  exactly,  although  usually  they  work  as
  100.      expected.  Hyphenation is done only at explicit hyphens,  em-dashes,  and
  101.      nroff  discretionary  hyphens.  By default bold and italic characters are
  102.      emulated with backspacing and overprinting, but the -d  and  -f  options,
  103.      combined  with the contents of the device configuration file, may be used
  104.      to generate special codes for  bold  and  italic  characters.   (See  the
  105.      DEVICES section for more information.)
  106. MAN MACROS
  107.      The man macro set replicates the full V7 manual macros, plus a few  semi-
  108.      random oddballs.  The full list is:
  109.           .AT     .B      .BI     .BR     .BY     .DE     .DS     .DT     .HP
  110.           .I
  111.           .IB     .IP     .IR     .IX     .LP     .NB     .P      .PD     .PP
  112.           .RB
  113.           .RE     .RI     .RS     .SH     .SM     .SS     .TH     .TP     .UC
  114.      .BY and .NB each take a single string argument  (respectively,  an  indi-
  115.      cation  of authorship and a note about the status of the manual page) and
  116.      arrange to place it in the page footer.  .AT and .IX do nothing.
  117. Purdue University                       November, 1992                       3
  118. CAWF(1)                   Minix Programmer's Manual                    CAWF(1)
  119. ME MACROS
  120.      The me macro subset has been derived from the  cawf  ms  macros  by  Chet
  121.      Creider <creider@csd.uwo.ca>.  It includes:
  122.           .(l     .(q     .)l     .)q     .b      .bu     .i      .ip     .lp
  123.           .np
  124.           .pp     .r      .sh     .sm     .u      .uh
  125.      The .(l C and .(l L options are supported.  In addition,  the  .AB,  .AE,
  126.      .AI,  .AU,  .DA,  .ND,  .TL and .UX macros have been retained from the ms
  127.      set, and the .XP macro has been borrowed from the Berkeley  additions  to
  128.      the ms macro set.
  129. MS MACROS
  130.      The ms macro set is a substantial subset of  the  V7  manuscript  macros.
  131.      The macros are:
  132.           .AB     .AE     .AI     .AU     .B      .CD     .DA     .DE     .DS
  133.           .I
  134.           .ID     .IP     .LD     .LG     .LP     .ND     .NH     .NL     .PP
  135.           .QE
  136.           .QP     .QS     .R      .RE     .RP     .RS     .SH     .SM     .TL
  137.           .TP
  138.           .UL     .UX
  139.      Size changes are recognized but ignored, as are .RP and  .ND.   .UL  just
  140.      prints  its  argument in italics.  .DS/.DE does not do a keep, nor do any
  141.      of the other macros that normally imply keeps.
  142.      The DY string variable is available.  The PD, PI, and LL number registers
  143.      exist and can be changed.
  144. HEADERS AND FOOTERS
  145.      Cawf allows the placement of text into the five line  header  and  footer
  146.      sections  from  the  LH, CH, RF, LF, CF, and RF string variables, via the
  147.      control of the .^b request:
  148.      .^b fh 1   enables header string placement on the first page
  149.      .^b fh 0   disables header string placement on the first page
  150.      .^b HF 1   enables header/footer string placement
  151.      .^b HF 0   disables header/footer string placement
  152.      There are appropriate .^b requests in the distribution  man,  me  and  ms
  153.      macro files.  (The me and ms macro files use another .^b request, .^b NH,
  154.      to enable numbered header processing.)
  155. Purdue University                       November, 1992                       4
  156. CAWF(1)                   Minix Programmer's Manual                    CAWF(1)
  157. OUTPUT
  158.      The default output format supported by cawf, in its distributed form,  is
  159.      that  appropriate to a dumb terminal, using overprinting for italics (via
  160.      underlining) and bold.  The nroff special characters are printed as  some
  161.      vague  approximation  (it's  sometimes  extremely vague) to their correct
  162.      appearance.
  163.      One part of cawf's  knowledge  of  the  output  device,  related  to  the
  164.      formation  of  characters, is established by a device file, which is read
  165.      before the user's input.  The search for  it  begins  in  cawf's  library
  166.      directory,  under  the name term.dev (where term is the value of the TERM
  167.      environment variable).  Failing to find that, cawf searches for dumb.dev.
  168.      (See  the  FILES  section for a description of the path to cawf's library
  169.      directory.)  The device file uses special internal  requests  to  set  up
  170.      resolution,  special characters and more normal nroff functions to set up
  171.      page length, etc.
  172.      Cawf has limited support for fonts  special  forms  of  bold  and  italic
  173.      characters.   It  is  provided through the -c config, -ddevice and -ffont
  174.      options.  See the DEVICES section for more information.
  175.      Note  the  distinction  between  the  device  and   the   output   device
  176.      configuration  files.   The  device file typically defines characters and
  177.      constant output parameters.  The output device configuration file defines
  178.      font  and  type  face  codes.   It  is  usually not necessary to define a
  179.      separate device file for each device represented  in  the  output  device
  180.      configuration file - the dumb.dev device file will suffice for almost all
  181.      representations.
  182. DEVICES
  183.      Cawf supports primitive output device configuration  for  font  and  type
  184.      face  control.   One  font  may  be  selected  for the entire document by
  185.      directing cawf to issue a font selection control character string at  the
  186.      beginning  of the document, and control character strings may be selected
  187.      for switching between the bold, italic and Roman type faces.
  188.      The -c config, -ddevice and -ffont options direct the font and type  face
  189.      selections.
  190.      The -ddevice option specifies the name of the  device.   Cawf  has  three
  191.      built-in  devices  -  ANSI,  NONE  and  NORMAL.   When the ANSI device is
  192.      selected, cawf issues the ANSI shadow mode control codes, ``ESC [ 7  m'',
  193.      to  represent the bold face; the ANSI underscore control codes, ``ESC [ 4
  194.      m'', to represent the italic face; and the ANSI control codes, ``ESC [  0
  195.      m'',  to  represent the ROMAN face.  No -ffont specification is permitted
  196.      with the ANSI device.
  197.      When the NONE device is selected, cawf uses no special  output  codes  to
  198.      represent  the type faces.  No -ffont specification is permitted with the
  199.      ANSI device.
  200. Purdue University                       November, 1992                       5
  201. CAWF(1)                   Minix Programmer's Manual                    CAWF(1)
  202.      The NORMAL output device  is  the  default.   When  it's  selected,  cawf
  203.      overprints  each  bold character two times, using three issuances of each
  204.      bold  character,  separated  by  backspace  characters;  it   issues   an
  205.      underscore  and  backspace  before  each  italic  character.   No  -ffont
  206.      specification is permitted with the ANSI device.   The  bsfilt(1)  filter
  207.      may  be  used  to further process the backspace codes output for a NORMAL
  208.      device.
  209.      All other devices named in the -ddevice option must be represented  by  a
  210.      stanza  in  the device configuration file.  The device configuration file
  211.      is usually contained in device.cf in cawf's library  directory  (see  the
  212.      FILES  section  for more information).  An alternate device configuration
  213.      file path may be specified with the -cconfig option.
  214.      The DEVICE CONFIGURATION FILE section describes the organization  of  the
  215.      device  configuration  file.   It is easy to add devices to the device.cf
  216.      supplied in the cawf distribution.
  217.      The -ffont option  may  be  used  with  the  -ddevice  option,  when  the
  218.      appropriate stanza in the device configuration file contains an entry for
  219.      the named font.  The DEVICE  CONFIGURATION  FILE  section  describes  how
  220.      fonts are defined in device configuration file stanzas.
  221. DEVICE CONFIGURATION FILE
  222.      The  device  configuration  file  defines  the  special  character  codes
  223.      necessary  to  direct output devices to select fonts and to produce bold,
  224.      italic and Roman type faces.
  225.      The configuration file is usually found in device.cf  in  cawf's  library
  226.      directory  (see the FILES section for more information).  It is organized
  227.      into two main parts - comments and  device  stanzas.   Comments  are  any
  228.      lines  that  begin  with  the  pound  sign  (`#')  character.   They  are
  229.      informational only and cawf ignores them.  Cawf also ignores empty lines,
  230.      so they may be used as vertical white space.
  231.      Stanzas name devices and define their font and type face control strings.
  232.      A stanza begins with the name of the device, starting at the beginning of
  233.      a line and occupying the entire line.  The body of the  stanza,  defining
  234.      fonts  and  type  faces, is formed of lines beginning with white space (a
  235.      TAB or space characters) that directly follow the device name.
  236.      Individual lines of the stanza body contain a key character, followed  by
  237.      a  equal  sign,  followed by the font name (if a font key) and the output
  238.      device control codes.  Cawf issues the font control codes  once,  at  the
  239.      beginning  of  output,  so  only one font may be selected.  The type face
  240.      control codes are issued at each change of type face.
  241.      The key characters are:
  242. Purdue University                       November, 1992                       6
  243. CAWF(1)                   Minix Programmer's Manual                    CAWF(1)
  244.           b          for bold
  245.           f          for font definition
  246.           i          for italic
  247.           r          for Roman
  248.      The `b', `i' and `r' key codes are followed by an equal  sign  (`=')  and
  249.      their  control code definition.  The `f' key code is followed by an equal
  250.      sign (`='), the font name, another equal sign and the font  control  code
  251.      definition.
  252.      Control code definitions may  contain  any  printable  ASCII  characters.
  253.      Non-printable characters may be encoded in octal notation with the `nnn'
  254.      form or in hexadecimal with the `xnn' form.  The special code, `E'  (or
  255.      `e') represents the ESC control character (33 or x1b).
  256.      Here's a sample showing the definition for  the  HP  LaserJet  III.   The
  257.      stanza  name  is ``lj3''.  All its non-printable characters are ESCs; the
  258.      first is coded in  octal  form;  the  second  with  'E';  the  rest,  in
  259.      hexadecimal  form.   TAB is used as the leading white space character for
  260.      the stanza body lines.
  261.           # HP LaserJet III
  262.           lj3
  263.                   b=33(s7B
  264.                   i=E(s1S
  265.                   r=x1b(s0Bx1b(s0S
  266.                   f=c10=x1b&l0Ox1b(8Ux1b(s0p12h10v0s0b3T
  267.                   f=c12ibm=x1b&l0Ox1b(10Ux1b(s0p10.00h12.0v0s0b3T
  268.                   f=lg12=x1b&l0Ox1b(8Ux1b(s12h12v0s0b6T
  269.      The distribution device.cf file defines the following devices and fonts.
  270.      epson     dot matrix printer in Epson FX-86e/FX-800 mode
  271.                Bold:     Double-strike
  272.                Fonts:    none
  273.      ibmppds   IBM Personal Printer Data Stream (PPDS) protocol
  274.                Bold:     Double-strike
  275.                Italic:   Underline
  276.                Fonts:    none
  277. Purdue University                       November, 1992                       7
  278. CAWF(1)                   Minix Programmer's Manual                    CAWF(1)
  279.      kxp1124   Panasonic KX-P1124 dot matrix printer in PGM mode
  280.                Bold:     Emphasized
  281.                Fonts:    c10        10 Characters Per Inch (CPI) Courier
  282.                          c12        12 CPI Courier
  283.                          bps10      10 CPI Bold PS
  284.                          bps12      12 CPI Bold PS
  285.                          p10        10 CPI Prestige
  286.                          p12        12 CPI Prestige
  287.                          s10        10 CPI Script
  288.                          s12        12 CPI Script
  289.                          ss10       10 CPI Sans Serif
  290.                          ss12       12 CPI Sans Serif
  291.      kxp1180   Panasonic KX-P1180 dot matrix printer in PGM mode
  292.                Bold:     Emphasized
  293.                Fonts:    c10        10 Characters Per Inch (CPI) Courier
  294.                          c12        12 CPI Courier
  295.                          bps10      10 CPI Bold PS
  296.                          bps12      12 CPI Bold PS
  297.                          p10        10 CPI Prestige
  298.                          p12        12 CPI Prestige
  299.                          ss10       10 CPI Sans Serif
  300.                          ss12       12 CPI Sans Serif
  301.      lj3       HP LaserJet III
  302.                Fonts:    c10        10 point, 12 Characters Per Inch (CPI)
  303.                                     Courier
  304.                          c12ibm     12 point, 10 CPI Courier, IBM-PC
  305.                                     Symbol Set
  306.                          lg12       12 point, 12 CPI Letter Gothic
  307.      vgamono   VGA monochrome monitor for MS-DOS
  308.                (ANSI.SYS driver required for MS-DOS)
  309.                Italic:   Reverse-video
  310.                Fonts:    none
  311. FILES
  312.      Cawf  resource  files  are  located  in  the  cawf  library  directory  -
  313.      C:SYSLIBCAWF,  the  MS-DOS  environment default; or /usr/lib/cawf, the
  314.      UNIX environment default.   These  defaults  can  be  overridden  by  the
  315.      CAWFLIB environment variable, or changed in the cawflib.h header file.
  316.      common      common device-independent initialization
  317.      device.cf   output device configurations
  318.      *.dev       device-specific initialization
  319.      m*.mac      macro package files
  320. Purdue University                       November, 1992                       8
  321. CAWF(1)                   Minix Programmer's Manual                    CAWF(1)
  322. DIAGNOSTICS
  323.      Unlike nroff, cawf complains whenever  it  sees  unknown  requests.   All
  324.      diagnostics appear on the standard error file.
  325. HISTORY
  326.      Vic Abell of Purdue University <abe@cc.purdue.edu> derived cawf from awf,
  327.      ``the  Amazingly Workable (text) Formatter,'' written by Henry Spencer of
  328.      the University of Toronto.  The Toronto work was a supplement  to  the  C
  329.      News  project.   The  Purdue  effort  was aimed at producing a C language
  330.      version that would run on small systems, particularly MS-DOS  ones.   The
  331.      adaptation    of    the    me   macros   was   done   by   Chet   Creider
  332.      <creider@csd.uwo.ca>.  Chet also contributed ideas for device,  font  and
  333.      type face support.
  334.      The MS-DOS version  of  cawf  has  been  compiled  with  version  2.5  of
  335.      Microsoft's  Quick-C  compiler.   It  runs  under the Mortis Kern Systems
  336.      Toolkit KornShell, ksh(1), and COMMAND.COM.
  337. BUGS
  338.      Nroff and  troff  mavens  will  have  many  complaints.   Some  may  even
  339.      represent bugs and not deliberate omissions.
  340.      Watch out for scaling factors - especially on requests like w.
  341.      The overprinting required to create bold  and  italicized  characters  is
  342.      tiresome  on  a  slow  printer.   The  bsfilt(1)  post-filter  from  this
  343.      distribution may be used to  alleviate  that  nuisance  by  managing  the
  344.      backspacing codes from cawf's NORMAL device output.
  345.      The printing of bold and italic characters is sometimes better handled by
  346.      special printer codes.  Use cawf's -c config, -ddevice and -ffont options
  347.      to produce special font and device output control codes.
  348.      Cawf has a small amount of built-in code for the man,  me  and  ms  macro
  349.      packages, but none for any others.
  350.      The stacking for the .so request is limited.
  351. SEE ALSO
  352.      bsfilt(1), colcrt(1), man(7), me(7), ms(7) and nroff(1).
  353. Purdue University                       November, 1992                       9