home *** CD-ROM | disk | FTP | other *** search
/ Magazyn WWW 1998 October / www_10_1998.iso / prog / w32 / ssh / sshwin.exe / Fsssh.lib / OUTPUT.MAP < prev    next >
Text File  |  1997-08-28  |  3KB  |  137 lines

  1. # Author: Tero Kivinen <kivinen@iki.fi>
  2. # Creation          : 21:41 Jun 12 1997 kivinen
  3. # Last Modification : 00:11 Aug 29 1996 kivinen
  4. # Edit time         : 0 min
  5. #
  6. # $Log: output.map,v $
  7. # Revision 1.1  1997/06/13 05:08:09  kivinen
  8. #     Example version of output.map file.
  9. #
  10. #
  11.  
  12. # Select any of following enables. These select some configuration changes
  13. # in output.map file.
  14.  
  15. ######################################################################
  16. # add-alternate-fi-screenchar will map alternate charsets to finnish national
  17. # 7-bit characters. This will change mapping of Σσ÷─┼╓ to {}|[]\\. 
  18. #
  19. # enable add-alternate-fi-screenchar
  20.  
  21. #
  22. # Grammar
  23. # -------
  24. #
  25. # The grammar for this file is following:
  26. #
  27. # CharacterSets charsets-environment-name
  28. #    "charset" = screen-font-environment-name
  29. #    "charset" = screen-font-environment-name
  30. #    ....
  31. # end
  32. #
  33. # ScreenChar screen-font-environment-name
  34. #    char = "font:char"
  35. #    char = "char"
  36. #    char = "font::"            # character : using "font"
  37. #    char = "font:with.colon:c"    # character c using "font:with.colon"
  38. #    ....
  39. # end
  40. #
  41. # Every name that is used must be defined BEFORE it is used, so
  42. # normally the CharacterSets-struct is at the end etc..
  43. #
  44. #
  45. # Charsets
  46. # --------
  47. #
  48. # Charset can either be one of the predefined charsets (US (default), UK,
  49. # Line, Alt, or AltSpec) or any one character (Character after set charset
  50. # escape sequence (Esc ( x, Esc ) x, etc)).
  51. #
  52. #
  53. # Fonts
  54. # -----
  55. #
  56. # Fonts are system specific font names, like linedraw for linedraw font.
  57. # Font name and character are separated by a colon. There must be exactly one
  58. # character after colon.
  59. #
  60. #
  61. # Chars
  62. # -----
  63. #
  64. # Characters in ScreenChar environment key and value can be any single
  65. # character. You may have to do some quoting to get the all characters.
  66. #
  67.  
  68.  
  69. ScreenChar fi-screenchar
  70.     { = "Σ"
  71.     | = "÷"
  72.     } = "σ"
  73.     [ = "─"
  74.     \\ = "╓"
  75.     ] = "┼"
  76. end
  77.  
  78. ScreenChar linedraw-screenchar
  79.     ` = "linedraw:`"
  80.     a = "linedraw:a"
  81.     b = "linedraw:b"
  82.     c = "linedraw:c"
  83.     d = "linedraw:d"
  84.     e = "linedraw:e"
  85.     f = "linedraw:f"
  86.     g = "linedraw:g"
  87.     h = "linedraw:h"
  88.     i = "linedraw:i"
  89.     j = "linedraw:j"
  90.     k = "linedraw:k"
  91.     l = "linedraw:l"
  92.     m = "linedraw:m"
  93.     n = "linedraw:n"
  94.     o = "linedraw:o"
  95.     p = "linedraw:p"
  96.     q = "linedraw:q"
  97.     r = "linedraw:r"
  98.     s = "linedraw:s"
  99.     t = "linedraw:t"
  100.     u = "linedraw:u"
  101.     v = "linedraw:v"
  102.     w = "linedraw:w"
  103.     x = "linedraw:x"
  104.     y = "linedraw:y"
  105.     z = "linedraw:z"
  106.     x = "linedraw:x"
  107.     { = "linedraw:{"
  108.     | = "linedraw:|"
  109.     } = "linedraw:}"
  110. end
  111.  
  112. ScreenChar uk-screenchar
  113.     \x23 = "ú"
  114. end
  115.  
  116. ScreenChar fi-linedraw-screenchar
  117.     merge fi-screenchar
  118.     merge linedraw-screenchar
  119. end
  120.  
  121. CharacterSets default-charactersets
  122.     UK = uk-screenchar
  123.     Line = linedraw-screenchar
  124.     if enabled add-alternate-fi-screenchar
  125.         Alt = fi-screenchar
  126.         AltSpec = fi-linedraw-screenchar
  127.     else
  128.         AltSpec = linedraw-screenchar
  129.     end
  130. end
  131.  
  132. # This will tell the default CharacterSets strcture.
  133.  
  134. use default-charactersets
  135.  
  136.  
  137.