home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / catalogs / tldr22.zip / NAMEC.SRL < prev    next >
Text File  |  1993-06-15  |  2KB  |  44 lines

  1. -- This is the symbol rename list used by ToolDriver's NameChanger
  2. -- utility. For more information, see the end of this file.
  3. ------------------------------------------------------------------------------
  4. ++CaseInsensitive
  5. EMP_NM    Employee_Name
  6. ++CaseSensitive
  7. QOH  QuantityOnHand
  8. ------------------------------------------------------------------------------
  9. -- This file contains three types of lines:
  10. ------------------------------------------------------------------------------
  11. -- 1. A comment line has "--' in the first two columns.
  12. -- 2. An option line has "++' in the first two columns followed
  13. --    immediately by one of these two options:
  14. --       CaseSensitive     -   start case sensitivity
  15. --       CaseInsensitive   -   start ignoring case
  16. -- 3. A symbol remapping line has two symbols surrounded by white
  17. --    space. The first symbol will be replaced by the second one.
  18. --    Note that NameChanger just transforms individual symbols, not
  19. --    partial symbols or multiple symbols.
  20. ------------------------------------------------------------------------------
  21. -- The controls above tell NameChanger to transform the complete
  22. -- symbol "EMP_NM" to "EMPLOYEE_NM" everywhere it's found, independently of
  23. -- the case used.
  24. --
  25. -- The chart below shows the effect:
  26. --
  27. --   Old Symbol     New Symbol
  28. --     emp_nm         EMPLOYEE_NAME
  29. --     Emp_nm         EMPLOYEE_NAME
  30. --     EMP_NM         EMPLOYEE_NAME
  31. --     EMP_NM2        --- no change ---
  32. --     P_emp_nm_2     --- no change ---
  33. --
  34. -- It also specifies that the complete symbol "QOH" is to be
  35. -- changed to "QuantityOnHand", but only where the case matches exactly.
  36. --
  37. -- The chart below shows the effect:
  38. --
  39. --   Old Symbol     New Symbol
  40. --     qoh            --- no change ---
  41. --     QOH            QuantityOnHand
  42. --     aqohb          --- no change ---
  43. ------------------------------------------------------------------------------
  44.