home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1997 December / Internet_Info_CD-ROM_Walnut_Creek_December_1997.iso / rfc / rfc1357 < prev    next >
Text File  |  1992-07-10  |  25KB  |  732 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                           D. Cohen
  8. Request For Comments: 1357                                        Editor
  9.                                                                      ISI
  10.                                                                July 1992
  11.  
  12.               A Format for E-mailing Bibliographic Records
  13.  
  14. Status of this Memo
  15.  
  16.    This memo provides information for the Internet community.
  17.    It does not specify an Internet standard.  Distribution of
  18.    this memo is unlimited.
  19.  
  20. Abstract
  21.  
  22.    This memo defines a format for E-mailing bibliographic records of
  23.    technical reports.  It is intended to accelerate the dissemination
  24.    of information about new Computer Science Technical Reports (CS-TR).
  25.  
  26. INTRODUCTION
  27. ------------
  28.  
  29.    Many Computer Science R&D organizations routinely announce new
  30.    technical reports by mailing (via the postal services) the
  31.    bibliographic records of these reports.
  32.  
  33.    These mailings have non-trivial cost and delay.  In addition, their
  34.    recipients cannot conveniently file them, electronically, for later
  35.    retrieval and searches.
  36.  
  37.    Therefore, it is suggested that the publishing organizations would
  38.    e-mail these announcements by using the following format.
  39.  
  40.    Organizations may automate to any degree (or not at all) both the
  41.    creation of these records (about their own publications) and the
  42.    handling of the records received from other organizations.
  43.  
  44.    This format is designed to be simple, for people and for machines,
  45.    to be easy to read ("human readable") and create without any special
  46.    programs, and to be compatible with E-mail.
  47.  
  48.    This format defines how bibliographic records are to be transmitted.
  49.    It does not define what to do with them when received.
  50.  
  51.    This format is a "tagged" format with self-explaining alphabetic
  52.    tags. It should be possible to prepare and to read bibliographic
  53.    records using any text editor, without any special programs.
  54.  
  55.  
  56.  
  57.  
  58. Cohen (ed.)                                                     [Page 1]
  59.  
  60. RFC 1357       Format for E-mailing Bibliographic Records      July 1992
  61.  
  62.  
  63.    This format was developed with considerable help and involvement of
  64.    Computer Science and Library personnel from several organizations,
  65.    including CMU, CNRI, Cornell, ISI, Meridian, MIT, Stanford, and UC.
  66.    Key contributions were provided by Jerry Saltzer of MIT, and Larry
  67.    Lannom of Meridian.  The initial draft was prepared by Danny Cohen
  68.    and Larry Miller of ISI.
  69.  
  70.    The use of this format is encouraged.  There are no limitations on
  71.    its use.
  72.  
  73.  
  74. THE INFORMATION FIELDS
  75. ----------------------
  76.  
  77.    The various fields should follow the format described below.
  78.  
  79.    <M> means Mandatory; a record without it is invalid.
  80.    <O> means Optional.
  81.  
  82.    The tags (aka Field-IDs) are shown in upper case.
  83.  
  84.            <M>  BIB-VERSION of this bibliographic records format
  85.            <M>  ID
  86.            <M>  ENTRY date
  87.            <O>  ORGANIZATION
  88.            <O>  TITLE
  89.            <O>  TYPE
  90.            <O>  REVISION
  91.            <O>  AUTHOR
  92.            <O>  CORP-AUTHOR
  93.            <O>  CONTACT for the author(s)
  94.            <O>  DATE of publication
  95.            <O>  PAGES count
  96.            <O>  COPYRIGHT, permissions and disclaimers
  97.            <O>  RETRIEVAL information
  98.            <O>  CR-CATEGORY
  99.            <O>  PERIOD
  100.            <O>  SERIES
  101.            <O>  FUNDING organization(s)
  102.            <O>  MONITORING organization(s)
  103.            <O>  CONTRACT number(s)
  104.            <O>  GRANT number(s)
  105.            <O>  LANGUAGE name
  106.            <O>  NOTES
  107.            <O>  ABSTRACT
  108.            <M>  END
  109.  
  110.  
  111.  
  112.  
  113.  
  114. Cohen (ed.)                                                     [Page 2]
  115.  
  116. RFC 1357       Format for E-mailing Bibliographic Records      July 1992
  117.  
  118.  
  119. META FORMAT
  120. -----------
  121.  
  122.    * Keep It Simple.
  123.  
  124.    * One bibliographic record for each publication, where a
  125.      "publication" is whatever the publishing institution defines
  126.      as such.
  127.  
  128.    * A record contains several fields.
  129.  
  130.    * Each field starts with its tag (aka the field-ID) which is a
  131.      reserved identifier (containing no separators) at the beginning
  132.      of a new line with or without spaces before it), followed by two
  133.      colons ("::"), followed by the field data.
  134.  
  135.    * Continuation lines:  Lines are limited to 79 characters.  When
  136.      needed, fields may continue over several lines, with an implied
  137.      space in between.  In order to simplify the use no special marking
  138.      is used to indicate continuation line.  Hence, fields are
  139.      terminated by a line that starts (apart from white space) with
  140.      a word followed by two colons.  Except for the "END::" that is
  141.      terminated by the end of line.)  For improved human readability
  142.      it is suggested to start continuation lines with some spaces.
  143.  
  144.    * Several fields are mandatory and must appear in the record.  All
  145.      fields (unless specifically not permitted to) may be in any order
  146.      and may be repeated as needed (e.g., the AUTHOR field).  The order
  147.      of the repeated fields is always preserved.
  148.  
  149.    * Only printable ASCII characters may be used.  Hence, the
  150.      permissible characters are ASCII codes 040 (Space) through 176(~)
  151.      and line breaks which are \012 (LF) or \012\015 (CRLF).  Empty
  152.      lines indicate paragraph break.  \009 (tab) must be replaced by
  153.      spaces before submission.  This specifically forbids tabs, null
  154.      characters, DEL, backspaces, etc.  (i.e., if used, the record is
  155.      invalid.)
  156.  
  157.    Throughout this document the word "publisher" means the publishing
  158.    organization of a report (e.g., a university or a department
  159.    thereof), not necessarily an organization authorized to issue ISBN
  160.    numbers.
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170. Cohen (ed.)                                                     [Page 3]
  171.  
  172. RFC 1357       Format for E-mailing Bibliographic Records      July 1992
  173.  
  174.  
  175.                                 EXAMPLE
  176. -----------------------------------------------------------------------
  177.  BIB-VERSION:: CS-TR-v2.0
  178.           ID:: OUKS//CS-TR-91-123
  179.        ENTRY:: January 15, 1992
  180. ORGANIZATION:: Oceanview University, Kansas, Computer Science
  181.        TITLE:: The Computerization of Oceanview with High
  182.                    Speed Fiber Optics Communication
  183.         TYPE:: Technical Report
  184.     REVISION:: 2, FTP retrieval information added
  185.       AUTHOR:: Finnegan, James A.
  186.      CONTACT:: Prof. J. A. Finnegan, CS Dept, Oceanview Univ, Oceanview,
  187.                    KS 54321  Tel: 913-456-7890  <Finnegan@cs.ouks.edu>
  188.       AUTHOR:: Pooh, Winnie The
  189.      CONTACT:: 100 Aker Wood
  190.         DATE:: December 1991
  191.        PAGES:: 48
  192.    COPYRIGHT:: Copyright for the report (c) 1991, by J. A. Finnegan.
  193.                    All rights reserved.  Permission is granted for any
  194.                    academic use of the report.
  195.    RETRIEVAL:: For full text with color pictures send a self-addressed
  196.                    stamped envelope to Prof. J. A. Finnegan, CS Dept,
  197.                    Oceanview University, Oceanview, KS 54321.
  198.    RETRIEVAL:: ASCII available via FTP from JUPITER.CS.OUKS.EDU with the
  199.                    pathname PUBS/computerization.txt.  Login with FTP,
  200.                    username ANONYMOUS and password GUEST.
  201.                    File size: 123,456 characters
  202.  CR-CATEGORY:: D.0
  203.  CR-CATEGORY:: C.2.2 Computer Sys Org, Communication nets, Net Protocols
  204.       SERIES:: Communication
  205.      FUNDING:: FAS
  206.     CONTRACT:: FAS-91-C-1234
  207.   MONITORING:: FNBO
  208.     LANGUAGE:: English
  209.        NOTES:: This report is the full version of the paper with the
  210.                same title in IEEE Trans ASSP Dec 1976
  211.  
  212. ABSTRACT::
  213.  
  214. Many alchemists in the country work on important fusion problems.
  215. All of them cooperate and interact with each other through the
  216. scientific literature.  This scientific communication methodology
  217. has many advantages.  Timeliness is not one of them.
  218.  
  219. END:: OUKS//CS-TR-91-123
  220. ---------------------------- End of Example ---------------------------
  221.  
  222.    For reference, the above example has about 1,750 characters (220
  223.    words) including about 250 characters (40 words) in the abstract.
  224.  
  225.  
  226. Cohen (ed.)                                                     [Page 4]
  227.  
  228. RFC 1357       Format for E-mailing Bibliographic Records      July 1992
  229.  
  230.  
  231. THE ACTUAL FORMAT
  232. -----------------
  233.  
  234.    In the following double-quotes indicate complete strings.  They are
  235.    included only for grouping and are not expected to be used in the
  236.    actual records.
  237.  
  238.    The term "Open Ended Format" in the following means arbitrary text.
  239.  
  240.    The BIB-VERSION, ID, ENTRY, and END field must appear as the first,
  241.    second, third, and last fields, and may not be repeated in the
  242.    record.  All other fields may be repeated as needed.
  243.  
  244.  
  245. BIB-VERSION (M) -- This is the first field of any record.  It is a
  246.         mandatory field.  It identifies the version of the format used
  247.         to create this bibliographic record.
  248.  
  249.         BIB-VERSIONs that start with the letter X (case independent)
  250.         are considered experimental.  Bib-records sent with such a
  251.         BIB-VERSION should NOT be incorporated in the permanent database
  252.         of the recipient.
  253.  
  254.         Using this version of this format, this field is always:
  255.  
  256.         Format:   BIB-VERSION:: CS-TR-v2.0
  257.  
  258.  
  259. ID (M) -- This is the second field of any record.  It is also a
  260.         mandatory field.  Its format is "ID:: XXX//YYY", where XXX is
  261.         the publisher-ID (the controlled symbol of the publisher)
  262.         and YYY is the ID (e.g., report number) of the publication as
  263.         assigned by the publisher.  This ID is typically printed on
  264.         the cover, and may contain slashes.
  265.  
  266.         The organization symbols "DUMMY" and "TEST" (case independent)
  267.         and any organization symbol starting with <X> (case
  268.         independent) are reserved for test records that should NOT
  269.         be incorporated in the permanent database of the recipients.
  270.  
  271.         Format:   ID:: <publisher-ID>//<free-text>
  272.  
  273.         Example:  ID:: OUKS//CS-TR-91-123
  274.  
  275.             **** See the note at the end regarding the ****
  276.             **** controlled symbols of the publishers *****
  277.  
  278.  
  279.  
  280.  
  281.  
  282. Cohen (ed.)                                                     [Page 5]
  283.  
  284. RFC 1357       Format for E-mailing Bibliographic Records      July 1992
  285.  
  286.  
  287. ENTRY (M) -- This is a mandatory field.  It is the date of creating this
  288.         bibliographic record.
  289.  
  290.         The format for ENTRY date is "Month Day, Year".  The month must
  291.         be alphabetic (spelled out).    The "Day" is a 1- or 2-digit
  292.         number.  The "Year" is a 4-digit number.
  293.  
  294.         Format:   ENTRY:: <date>
  295.  
  296.         Example:  ENTRY:: January 15, 1992
  297.  
  298.  
  299. ORGANIZATION (O) --  It is the full name spelled out (no acronyms,
  300.         please) of the publishing organization.  The use of this name
  301.         is controlled together with the controlled symbol of the
  302.         publisher (as discussed above for the ID field).
  303.  
  304.         Avoid acronyms because there are many common acronyms, such as
  305.         ISI and USC.  Please provide it in ascending order, such as
  306.         "X University, Y Department" (not "Y Department, X University").
  307.  
  308.         Format:   ORGANIZATION:: <free-text>
  309.  
  310.         Example:  ORGANIZATION:: Stanford University, Computer Science
  311.  
  312.  
  313. TITLE (O) -- This is the title of the work as assigned by the author.
  314.         This field should include the complete title with all the
  315.         subtitles, if any.
  316.  
  317.         If the publication has no title (e.g., in withdrawal), a blank
  318.         TITLE field should be included.
  319.  
  320.         Format:   TITLE:: <free-text>
  321.  
  322.         Example:  TITLE:: The Computerization of Oceanview with High
  323.                               Speed Fiber Optics Communication
  324.  
  325.  
  326. TYPE (O) -- Indicates the type of publication (summary, final project
  327.         report, etc.) as assigned by the issuing organization.
  328.  
  329.         Format:   TYPE:: <free-text>
  330.  
  331.         Example:  TYPE:: Technical Report
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338. Cohen (ed.)                                                     [Page 6]
  339.  
  340. RFC 1357       Format for E-mailing Bibliographic Records      July 1992
  341.  
  342.  
  343. REVISION (O) -- Indicates that the current bibliographic record is
  344.         a revision of a previously issued record and is intended to
  345.         replace it.  Revision information consists of an integer
  346.         followed by a comma, and by text in an open ended format.
  347.         The revised bibliographic record should contain a complete
  348.         record for the publication, not just a list of changes to
  349.         the old record.  The default assumption is that a record is
  350.         not a revision (i.e., specify only if it is), with that integer
  351.         being zero.
  352.  
  353.         The first token in this field is an integer revision number.
  354.         Higher numbers indicate later revisions.  Use the text to
  355.         describe the revision.  Reasons to send out a revised record
  356.         include an error in the original, change in the retrieval
  357.         information, or withdrawal (see below).
  358.  
  359.         Format:  REVISION:: N, <free-text>
  360.  
  361.         Example: REVISION:: 2, FTP retrieval information added
  362.  
  363.  
  364.     WITHDRAWING:  A withdrawal of a record is a special case of revising
  365.         it.  Hence, the standard way to withdraw records is by sending a
  366.         revision record with (at least) all the mandatory fields, and an
  367.         optional explanation in the NOTES field.
  368.  
  369.         It is OK on withdrawal to eliminate the title, by not providing
  370.         the TITLE field it or by providing it with no text (blank).
  371.  
  372.         Example for withdrawing a bibliographic record::
  373.  
  374.             BIB-VERSION::  CS-TR-v2.0
  375.             ID::           OUKS//CS-TR-91-123
  376.             ENTRY::        January 25, 1992
  377.             ORGANIZATION:: Oceanview University, Kansas, Computer Science
  378.             TITLE::
  379.             REVISION::     4, withdrawn
  380.             NOTES::        Withdrawn, found to be irrelevant
  381.             END::          OUKS//CS-TR-91-123
  382.  
  383.         This new record will replace all the fields of the previous
  384.         record for that publication.  In this example it will eliminate
  385.         the title, the retrieval information provided earlier, and not
  386.         mention the authors.
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394. Cohen (ed.)                                                     [Page 7]
  395.  
  396. RFC 1357       Format for E-mailing Bibliographic Records      July 1992
  397.  
  398.  
  399. AUTHOR (O) -- Personal names only.  Normal last name first inversion.
  400.         Editors should be listed here as well, identified with the
  401.         usual "(ed.)" as shown below in the last example.
  402.  
  403.         If the report was not authored by a person (e.g., it was
  404.         authored by a committee or a panel) use CORP-AUTHOR (see below)
  405.         instead of AUTHOR.
  406.  
  407.         Multiple authors are entered by using multiple lines, each in
  408.         the form of "AUTHOR:: <free-text>".
  409.  
  410.         The system preserves the order of the authors.
  411.  
  412.         Format:   AUTHOR:: <free-text>
  413.  
  414.         Example:  AUTHOR:: Finnegan, James A.
  415.                   AUTHOR:: Pooh, Winnie The
  416.                   AUTHOR:: Lastname, Firstname (ed.)
  417.  
  418.  
  419. CORP-AUTHOR (O) -- The corporate author (e.g., a committee or a
  420.         panel) that authored the report, which may be different from
  421.         the ORGANIZATION issuing the report.
  422.  
  423.         In entering the corporate name please omit initial "the" or "a".
  424.         If it is really part of the name, please invert it.
  425.  
  426.         Format:   CORP-AUTHOR:: <free-text>
  427.  
  428.         Example:  CORP-AUTHOR:: Committee on long-range computing
  429.  
  430.  
  431. CONTACT (O) -- The contact for the author(s).
  432.         Open-ended, most likely E-mail and postal addresses.
  433.  
  434.         You may provide a CONTACT field for each author separately,
  435.         or for all the AUTHOR fields.
  436.  
  437.         E-mail addresses should always be in "pointy brackets"
  438.         (as in the example below).
  439.  
  440.         Format:   CONTACT:: <free-text>
  441.  
  442.         Example:  CONTACT:: Prof. J. A. Finnegan, CS Dept, Oceanview
  443.                             Univ., Oceanview, Kansas, 54321
  444.                             Tel: 913-456-7890 <Finnegan@cs.ouks.edu>
  445.  
  446.  
  447.  
  448.  
  449.  
  450. Cohen (ed.)                                                     [Page 8]
  451.  
  452. RFC 1357       Format for E-mailing Bibliographic Records      July 1992
  453.  
  454.  
  455. DATE (O) -- The publication date.  The formats are "Month Year" and
  456.         "Month Day, Year".  The month must be alphabetic (spelled out).
  457.         The "Day" is a 1- or 2-digit number.  The "Year" is a 4-digit
  458.         number.
  459.  
  460.         Format:   DATE:: <date>
  461.  
  462.         Example:  DATE:: January 1992
  463.         Example:  DATE:: January 15, 1992
  464.  
  465.  
  466. PAGES (O) -- Total number of pages, without being too picky about it.
  467.         Final numbered page is actually preferred, if it is a reasonable
  468.         approximation to the total number of pages.
  469.  
  470.         Format:   PAGES:: <number>
  471.  
  472.         Example:  PAGES:: 48
  473.  
  474.  
  475. COPYRIGHT (O) -- Copyright, permissions and disclaimers.  Open
  476.         ended format.  The COPYRIGHT field applies to the cited
  477.         report, rather than to the current bibliographic record.
  478.         On advice of counsel it is suggested that you seek the
  479.         advice of yours.
  480.  
  481.         Format:  COPYRIGHT:: <free-text>
  482.  
  483.         Example: COPYRIGHT:: Copyright for the report (c) 1991,
  484.                             by J. A. Finnegan.  All rights reserved.
  485.                             Permission is granted for any academic
  486.                             use of the report.
  487.  
  488.  
  489. RETRIEVAL INFORMATION (O) -- Open-ended format describing how to get
  490.         a copy of the full text.  It may include anything from FTP
  491.         instructions to a variety of files (e.g., ASCII, TeX, and
  492.         PostScript) to "Send $4.50 to ..." or "Send E-mail to <X@Y>".
  493.  
  494.         It is suggested to repeat this field for each retrieval option
  495.         (e.g., one line for the FTP instructions to the ASCII version,
  496.         and another for the PostScript version).  When offering files
  497.         like TeX all the related files (e.g., "\input mystyle") should
  498.         be included.  Please provide file sizes (in characters).
  499.  
  500.         Means are not defined yet for providing the information needed
  501.         for automatic retrieval of files (such as via FTP).  They are
  502.         expected to be defined in the near future.
  503.  
  504.  
  505.  
  506. Cohen (ed.)                                                     [Page 9]
  507.  
  508. RFC 1357       Format for E-mailing Bibliographic Records      July 1992
  509.  
  510.  
  511.         No limitations are placed on the dissemination of the
  512.         bibliographic records.  If there are limitations on the
  513.         dissemination of the publication, it should be protected by
  514.         some means such as passwords.  This format does not address
  515.         this protection.
  516.  
  517.         Format:  RETRIEVAL:: <free-text>
  518.  
  519.         Example: RETRIEVAL:: For full text with color pictures send
  520.                              a self-addressed stamped envelope to
  521.                              Prof. J. A. Finnegan, CS Dept,
  522.                              Oceanview University, Oceanview, KS 54321.
  523.                  RETRIEVAL:: ASCII available via FTP from
  524.                              JUPITER.CS.OUKS.EDU with the pathname
  525.                              PUBS/computerization.txt.
  526.                              Login with FTP, username ANONYMOUS and
  527.                              password GUEST.
  528.                              File size: 123,456 characters
  529.  
  530.  
  531. CR-CATEGORY (O) -- Specify the CR-category.  The CR-category (the
  532.         Computer Reviews Category) index (e.g., "B.3") should always be
  533.         included, optionally followed by the name of that category.  If
  534.         the name is specified it should be fully specified with parent
  535.         levels as needed to clarify it, as in the second example below.
  536.         Use multiple lines for multiple categories.
  537.  
  538.         The January 1992 issue of CR has the full list of these
  539.         categories, with a detailed discussion of the CR Classification
  540.         System, and a full index.  Typically the full index appears in
  541.         every January issue, and the top two levels in every issue.
  542.  
  543.         Format:   CR-CATEGORY:: <free-text>
  544.  
  545.         Example:  CR-CATEGORY:: D.1
  546.  
  547.         Example:  CR-CATEGORY:: B.3 Hardware, Memory Structures
  548.  
  549.  
  550. PERIOD (O) -- Time period covered (date range).  Applicable primarily to
  551.         progress reports, etc.  Any format is acceptable, as long as the
  552.         two dates are separated with " to " (the word "to" surrounded by
  553.         spaces) and each date is in the format allowed for dates, as
  554.         described above for the date field.
  555.  
  556.         Format:   PERIOD:: <date> to <date>
  557.  
  558.         Example:  PERIOD:: January 1990 to March 1990
  559.  
  560.  
  561.  
  562. Cohen (ed.)                                                    [Page 10]
  563.  
  564. RFC 1357       Format for E-mailing Bibliographic Records      July 1992
  565.  
  566.  
  567. SERIES (O) -- Series title, including volume number within series.
  568.         Open-ended format, with producing institution strongly
  569.         encouraged to be internally consistent.
  570.  
  571.         Format:   SERIES:: <free-text>
  572.  
  573.         Example:  SERIES:: Communication
  574.  
  575.  
  576. FUNDING (O) -- The name(s) of the funding organization(s).
  577.  
  578.         Format:   FUNDING:: <free-text>
  579.  
  580.         Example:  FUNDING:: DARPA
  581.  
  582.  
  583. MONITORING (O) -- The name(s) of the monitoring organization(s).
  584.  
  585.         Format:   MONITORING:: <free-text>
  586.  
  587.         Example:  MONITORING:: ONR
  588.  
  589.  
  590. CONTRACT (O) -- The contract number(s).
  591.  
  592.         Format:   CONTRACT:: <free-text>
  593.  
  594.         Example:  CONTRACT:: MMA-90-23-456
  595.  
  596.  
  597. GRANT (O) -- The grant number(s).
  598.  
  599.         Format:   CONTRACT:: <free-text>
  600.  
  601.         Example:  GRANT:: NASA-91-2345
  602.  
  603.  
  604. LANGUAGE (O) -- The language in which the report is written.
  605.         Please use the full English name of that language.
  606.  
  607.         Please include the Abstract in English, if possible.
  608.  
  609.         If the language is not specified, English is assumed.
  610.  
  611.         Format:   LANGUAGE:: <free-text>
  612.  
  613.         Example:  LANGUAGE:: English
  614.  
  615.  
  616.  
  617.  
  618. Cohen (ed.)                                                    [Page 11]
  619.  
  620. RFC 1357       Format for E-mailing Bibliographic Records      July 1992
  621.  
  622.  
  623. NOTES (O) -- Miscellaneous free text.
  624.  
  625.         Format:   NOTES:: <free-text>
  626.  
  627.         Example:  NOTES:: This report is the full version of the paper
  628.                           with the same title in IEEE Trans ASSP Dec
  629.                           1976
  630.  
  631.  
  632. ABSTRACT (O) -- Highly recommended, but not mandatory.  Even though no
  633.         limit is defined for its length, it is suggested not to expect
  634.         applications to be able to handle more than 10,000 characters.
  635.  
  636.         The ABSTRACT is expected to be used for subject searching since
  637.         titles are not enough.  Even if the report is not in English, an
  638.         English ABSTRACT is preferable.  If no formal abstract appears
  639.         on document, the producers of the bibliographic records are
  640.         encouraged to use pieces of the introduction, first paragraph,
  641.         etc.
  642.  
  643.         Format:  ABSTRACT:: xxxx .............. xxxxxxxx
  644.                             xxxx .............. xxxxxxxx
  645.  
  646.                             xxxx .............. xxxxxxxx
  647.                             xxxx .............. xxxxxxxx
  648.  
  649.  
  650. END (M) -- This is a mandatory field.  It must be the last entry of a
  651.         record, identifying the record that it ends, by stating the same
  652.         ID that was used at the beginning of the records, in its "ID::".
  653.  
  654.         Format:   END:: XXX
  655.  
  656.         Example:  END:: OUKS//CS-TR-91-123
  657.  
  658.  
  659.  
  660.  
  661.  
  662.  
  663.  
  664.              >>>>>>>   [END OF FORMAT DEFINITION]   <<<<<<<
  665.  
  666.  
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674. Cohen (ed.)                                                    [Page 12]
  675.  
  676. RFC 1357       Format for E-mailing Bibliographic Records      July 1992
  677.  
  678.  
  679. A Note Regarding the Controlled Symbols of the Publishers
  680.  
  681.    In order to avoid conflicts among the symbols of the publishing
  682.    organizations (the XXX part of the "ID:: XXX//YYY") it is suggested
  683.    that the various organizations that publish reports (such as
  684.    universities, departments, and laboratories) register their
  685.    <publisher-ID> symbols and names, in a way similar to the
  686.    registration of other key parameters and names in the Internet.
  687.  
  688.    Danny Cohen <Cohen@ISI.EDU> of ISI, has agreed to coordinate this
  689.    registration for the publishers of Computer Science technical
  690.    reports.  It is suggested that before using this format the
  691.    publishing organizations would coordinate with him (by e-mail) their
  692.    symbols and the names of their organizations.  [Discussions are in
  693.    progress to have these publisher-IDs registered with the Internet
  694.    Assigned Numbers Authority (IANA) and listed in future editions of
  695.    the Assigned Numbers document.]
  696.  
  697.    In order to help automated handling of the received bibliographic
  698.    records, it is expected that the producers of bibliographic records
  699.    will always use the same name, exactly, in the ORGANIZATION field.
  700.  
  701.  
  702. Security Considerations
  703.  
  704.    Security issues are not discussed in this memo.
  705.  
  706.  
  707. Author's Address
  708.  
  709.    Danny Cohen
  710.    USC - Information Sciences Institute
  711.    4676 Admiralty Way
  712.    Marina del Rey, California  90292-6695
  713.  
  714.    Phone: 310-822-1511
  715.  
  716.    Fax:   310-823-6714
  717.  
  718.    EMail: Cohen@ISI.EDU
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727.  
  728.  
  729.  
  730. Cohen (ed.)                                                    [Page 13]
  731.  
  732.