home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / TEDdesk / reloc.8 / $TED_DIR / config / Xsession.d / 0010.dtpaths next >
Encoding:
Korn shell script  |  1998-08-19  |  6.9 KB  |  173 lines

  1. #! /bin/ksh
  2. #####################################################################
  3. ###  File:              0010.dtpaths
  4. ###
  5. ###  Default Location:  /usr/dt/config/Xsession.d/
  6. ###
  7. ###  Purpose:           Provide syntactical information about
  8. ###                     the TED searchpaths that the desktop components
  9. ###                     should search, for application icons, help files, 
  10. ###                     application manager icons, and datatype and
  11. ###                     action files, on behalf of the user.
  12. ###
  13. ###  Description:       This file consists of documentation only.
  14. ###
  15. ###  Invoked by:        /usr/dt/bin/Xsession
  16. ###
  17. ###  Product:           @(#)TED 4.2 Alpha 99-4200-00
  18. ###
  19. ###  Note:              Please refer to the dtsearchpath(1) man page for 
  20. ###                     more information.
  21. ###
  22. ###  Revision:          $XConsortium: 0010.dtpaths.src /main/cde1_maint/1 1995/07/15 00:56:13 drk $
  23. ###
  24. ###  (c) Copyright 1994, 1995, 1996  TriTeal Corporation
  25. ###  (c) Copyright 1993, 1994 Hewlett-Packard Company
  26. ###  (c) Copyright 1993, 1994 International Business Machines Corp.
  27. ###  (c) Copyright 1993, 1994 Sun Microsystems, Inc.
  28. ###  (c) Copyright 1993, 1994 Unix System Labs, Inc., a subsidiary of
  29. ###      Novell, Inc.
  30. ###
  31. #####################################################################
  32.  
  33. #####################################################################
  34. #
  35. #            ************** DO NOT EDIT THIS FILE **************
  36. #
  37. #   All the files under /usr/dt/config/Xsession.d are factory-default 
  38. #   files and will be unconditionally overwritten upon subsequent 
  39. #   installation. Before making changes to the file, copy it to the 
  40. #   configuration directory, /etc/dt/config/Xsession.d.
  41. #
  42. #############################################################################
  43.  
  44. #############################################################################
  45. ###  Global variables for system customization:
  46. ###  -------------------------------------------------
  47. ###  DTMOUNTPOINT 
  48. ###     Description:  The directory where this system mounts remote discs.
  49. ###     Default:      Vendor specific:  /net
  50. ###
  51. ###  DTAPPSEARCHPATH
  52. ###     Description:  The directories in which we will look for applications.
  53. ###     Inputs:       DTSPSYSAPPHOSTS, DTSPUSERAPPHOSTS
  54. ###     Default:      $HOME/.dt/appmanager,
  55. ###                   /etc/dt/appconfig/appmanager/%L,
  56. ###                   /etc/dt/appconfig/appmanager/C,
  57. ###                   /usr/dt/appconfig/appmanager/%L,
  58. ###                   /usr/dt/appconfig/appmanager/C
  59. ###
  60. ###  DTDATABASESEARCHPATH
  61. ###     Description:  The directories in which we will look for actions and
  62. ###                   filetypes.
  63. ###     Inputs:       DTSPSYSDATABASEHOSTS, DTSPUSERDATABASEHOSTS
  64. ###     Default:      Derived from DTSPSYSAPPHOSTS
  65. ###                   $HOME/.dt/types,
  66. ###                   /etc/dt/appconfig/types/%L,
  67. ###                   /etc/dt/appconfig/types/C,
  68. ###                   /usr/dt/appconfig/types/%L,
  69. ###                   /usr/dt/appconfig/types/C
  70. ###  DTHELPSEARCHPATH
  71. ###     Description:  The directories in which we will look for online help.
  72. ###     Inputs:       DTSPSYSHELP, DTSPUSERHELP
  73. ###     Default:      Derived from DTSPSYSAPPHOSTS
  74. ###                   $HOME/.dt/help/%T/[ %H | %H.sdl | %H.hv ],
  75. ###                   /etc/dt/appconfig/help/%L/%T/[ %H | %H.sdl | %H.hv ],
  76. ###                   /etc/dt/appconfig/help/C/%T/[ %H | %H.sdl | %H.hv ],
  77. ###                   /usr/dt/appconfig/help/%L/%T/[ %H | %H.sdl | %H.hv ]
  78. ###                   /usr/dt/appconfig/help/C/%T/[ %H | %H.sdl | %H.hv ]
  79. ###  DTICONSEARCHPATH
  80. ###     Description:  The directories in which we will look for icons.
  81. ###     Inputs:       DTSPSYSICON, DTSPUSERICON
  82. ###     Default:      Derived from DTSPSYSAPPHOSTS
  83. ###                   $HOME/.dt/icons/[ %B.pm | %B.bm | %B ],
  84. ###                   /etc/dt/appconfig/icons/%L/[ %B.pm | %B.bm | %B ],
  85. ###                   /etc/dt/appconfig/icons/C/[ %B.pm | %B.bm | %B ],
  86. ###                   /usr/dt/appconfig/icons/%L/[ %B.pm | %B.bm | %B ]
  87. ###                   /usr/dt/appconfig/icons/C/[ %B.pm | %B.bm | %B ]
  88. ###
  89. #############################################################################
  90.  
  91. ##################################################################
  92. ### Search path syntax:
  93. ### -------------------------------------------------
  94. ###  For the APP and DATABASE search path input elements, you may specify a 
  95. ###  host name, a path name or both. For the HELP and ICON, you may specify
  96. ###  a pathname only.
  97. ###
  98. ###  Search path element:  
  99. ###     Host | Pathname | Host+Pathname
  100. ###
  101. ###  Host syntax:
  102. ###     <hostname>:
  103. ###
  104. ###  Pathname syntax:
  105. ###     /<pathname>
  106. ###
  107. ###  Host+Pathname syntax:
  108. ###     <hostname>:/<pathname>
  109. ###
  110. ###  You may combine these elements into a comma-separated list:
  111. ###     <searchpath_element> [,<searchpath_element>]
  112. ###
  113. ###  The list order determines search order--the first located
  114. ###  element wins.
  115. #############################################################################
  116.  
  117. #############################################################################
  118. ###  Customization notes:
  119. ###  -------------------------------------------------
  120. ###    If you specify a value for one of the system search paths (DTSPSYS
  121. ###    prefix), then that value will be appended to the /etc/dt/appconfig 
  122. ###    default search path.  For example, if you specify a value for the 
  123. ###    DTSPSYSHELP, then your value will be appended to the normal 
  124. ###    configuration value -- after "/etc/dt/appconfig/help" -- but before
  125. ###    the factory default location--"/usr/dt/appconfig/help".
  126. ###
  127. ###    Users may also set the USER equivalents of these search paths. They
  128. ###    can be done in their $HOME/.dtprofile file, which will be sourced in
  129. ###    before the scripts under /etc/dt/config/Xsession.d/ and 
  130. ###    /usr/dt/config/Xsession.d/.
  131. ###
  132. ### The names of these USER variables are:
  133. ###
  134. ###  DTSPUSERAPPHOSTS
  135. ###     Default:  <null>
  136. ###
  137. ###  DTSPUSERDATABASEHOSTS
  138. ###     Default:  <null>
  139. ###
  140. ###  DTSPUSERHELP
  141. ###     Default:  <null>
  142. ###
  143. ###  DTSPUSERICON
  144. ###     Default:  <null>
  145. ###
  146. ###    These USER values will be prepended to the system paths, and hence
  147. ###    will take precedence.
  148. ###
  149. ###    All values for a given environment variable must appear on one line.
  150. ###    You can use embedded white space IF you quote the right-hand side.
  151. ###    All variables should be exported.
  152. #############################################################################
  153.  
  154. #############################################################################
  155. ### Customization examples:
  156. ### -------------------------------------------------
  157. ### DTMOUNTPOINT=/net
  158. ###
  159. ### DTSPSYSAPPHOSTS="remote_machine1:,/localdir"
  160. ###
  161. ### DTSPSYSICON=/opt/allicons
  162. ###
  163. ### DTSPUSERHELP=/mydisk/hvs
  164. ###
  165. #############################################################################
  166.  
  167.  
  168. DTSPSYSHELP=/usr/dt/appconfig/help/$LANG/UnixWare,/usr/dt/appconfig/help/C/UnixWare;
  169. export DTSPSYSHELP;
  170.  
  171.  
  172. ##########################         eof       ################################
  173.