home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 14 / CDACTUAL.iso / cdactual / demobin / share / program / Basic / SOURCE13.ZIP / SOURCE.CFG < prev    next >
Encoding:
Text File  |  1992-11-07  |  2.8 KB  |  149 lines

  1. ; SOURCE.CFG
  2. ; Copyright Rick Maddy 1992.
  3.  
  4. ; Changes:
  5.  
  6. ; Version 1.01 to 1.1
  7. ;     - None
  8.  
  9. ; Version 1.1 to 1.2
  10. ;     - None
  11.  
  12. ; Version 1.2 to 1.3
  13. ;     - None
  14.  
  15. ; This is the default configuration used by SOURCE.  This may be changed
  16. ; in any manner to suit your own needs.  All these values are hardcoded into
  17. ; the SOURCE as the base defaults incase no configuration file can be found.
  18.  
  19. begin Default
  20.  
  21. ; Set tabs to eight spaces.
  22. -t8
  23.  
  24. ; Turn on block tracing.
  25. -b
  26.  
  27. ; Turn on highlighted comments.
  28. -c
  29.  
  30. ; Turn on highlighted keywords.
  31. -k
  32.  
  33. ; Print all lines of file.
  34. -i0
  35. -f0
  36.  
  37. ; Print all pages of file.
  38. -I0
  39. -F0
  40.  
  41. ; Set character pitch to pica - 10 characters per inch.
  42. -pp
  43.  
  44. ; Set page orientation to portrait.
  45. -op
  46.  
  47. ; Set page to single column.
  48. -s1
  49.  
  50. ; Set line spacing to 6 lines per inch.
  51. -l6
  52.  
  53. ; Turn on line numbering.  Set to four digits, padded with zeros, followed
  54. ; by a colon.
  55. -n
  56. -N04:
  57.  
  58. ; Set page header to all pages.
  59. -h2
  60.  
  61. ; Set page header to show the following:
  62. ; File:  filename.ext (mm/dd/yy - hh:mm)  Printed:  mm/dd/yy - hh:mm  Page:  ###
  63. ; where 'File', 'Printed', and 'Page' will be highlighted.
  64. -H"&h+File:&h-  &fn (&fd1/ - &ft2:)&jc&h+Printed:&h-  &cd1/ - &ct2:&jr&h+Page:&h-  &pn03"
  65.  
  66. ; Set header gap to one line between header and first line of text
  67. -w1
  68.  
  69. ; Set banners to print before and after each file.
  70. -B3
  71.  
  72. ; Turn on file stats before printing
  73. -q
  74.  
  75. ; Turn off print verification.
  76. -v-
  77.  
  78. ; Default output to printer port one.
  79. -r lpt1
  80.  
  81. ; Ask what to do when redirected to file and it exists.
  82. -ar
  83.  
  84. ; Turn on printer escape codes.
  85. -e
  86.  
  87. ; Turn off graphic character printing.
  88. -g-
  89.  
  90. ; Turn off sound for prompts and errors
  91. -y-
  92.  
  93. ; Don't print files with the following extensions during wildcard searches
  94. -z ".exe .obj .map .sys .bak .lib"
  95. end
  96.  
  97.  
  98.  
  99. ; This definition is useful for printing to the screen.
  100.  
  101. begin Screen
  102. ; No headers
  103. -h0
  104.  
  105. ; redirect output to the console device (screen)
  106. -r con
  107.  
  108. ; Use the printer definition 'Screen'
  109. -d Screen
  110.  
  111. ; Pica pitch
  112. -pp
  113.  
  114. ; One column
  115. -s1
  116.  
  117. ; Allows escape codes
  118. -e
  119.  
  120. ; Turn on graphics for block tracing
  121. -g
  122.  
  123. ; No banner pages
  124. -B0
  125. end
  126.  
  127.  
  128.  
  129. ; This definition is used to get the most output per page.
  130. ; This assumes you can print compressed landscape, 8 lines per inch.
  131.  
  132. begin Small
  133. ; 8 lines per inch, landscape, compressed pitch, two columns, header every
  134. ; page, no whitespace after header, graphics off
  135. -l8 -ol -pc -s2 -h2 -w0 -g-
  136. end
  137.  
  138.  
  139.  
  140. ; This definition is good for dumping plain text files.  No line numbers
  141. ; are shown.
  142.  
  143. begin Text
  144. ; block tracing off, comments off, escape codes sent, header first page only,
  145. ; 6 lines per inch, no line numbers, portrait, 10 pitch, one column, normal
  146. ; tabs stops
  147. -ar -b- -c- -k- -e -h1 -l6 -n- -op -pp -q- -s1 -t8 -v- -w1
  148. end
  149.