home *** CD-ROM | disk | FTP | other *** search
/ Programmer's ROM - The Computer Language Library / programmersrom.iso / ada / general / naming.doc < prev    next >
Encoding:
Text File  |  1988-05-03  |  1.8 KB  |  63 lines

  1. ----> NAMING.DOC, Version 1.0 <----
  2.  
  3.     FILE AND DIRECTORY NAMING CONVENTIONS ON SIMTEL20
  4.  
  5.     SIMTEL20 is a DEC 20 host computer which runs the TOPS-20
  6. operating system.  This file briefly describes the file and directory
  7. naming conventions under TOPS-20; this is not a complete description,
  8. but it should be enough to allow you to work with the software
  9. repositories on SIMTEL20.
  10.  
  11.  
  12. 1. Directory Names
  13. ------------------
  14.  
  15.     Directory names in the various software repositories on
  16. SIMTEL20 take the general forms of:
  17.  
  18.     disk:<directory_name>
  19. and    disk:<directory_name.subdirectory_name>
  20.  
  21.     All software repositories reside on the disks named PD1 and
  22. PD2 (for Public Domain 1 and 2).  Case is not signficant.
  23.  
  24.     Examples of directory names:
  25.  
  26.         PD2:<ADA> or pd2:<ada>
  27.             -- top level of the Ada Software Repository
  28.         PD2:<ADA.GENERAL>
  29.             -- the GENERAL subdirectory under the ASR
  30.  
  31.  
  32. 2. File Names
  33. -------------
  34.  
  35.     File names under TOPS-20 are of the following general forms:
  36.  
  37.         file_name.file_type.version_number
  38.  
  39.     Both the file name and file type fields are not case
  40. sensitive.  Each field can be quite long, but, as a general rule, the
  41. file name field is restricted to 9 characters (the first 6 are unique)
  42. and the file type field is restricted to 3 characters; this is to
  43. enhance transportability between different operating systems.  The
  44. version number field is optional when referencing a file; if omitted,
  45. the latest version of the file is referenced.
  46.  
  47.     Examples of file names:
  48.  
  49.         MYFILE.TXT
  50.         ADA-SW.NOT
  51.  
  52.  
  53. 3. Full File Reference
  54. ----------------------
  55.  
  56.     Directory names and file names may be concatenated in order to
  57. provide a complete reference to a file.  When referencing a file in
  58. the current directory, the file name may be omitted.  Examples:
  59.  
  60.         PD2:<ADA>ADA.CRC
  61.         PD2:<ADA.GENERAL>WELCOME.DOC
  62.  
  63.