/[public]/psiconv/trunk/etc/psiconv.conf.eg
ViewVC logotype

Contents of /psiconv/trunk/etc/psiconv.conf.eg

Parent Directory Parent Directory | Revision Log Revision Log


Revision 197 - (show annotations)
Wed Feb 4 14:32:28 2004 UTC (20 years, 1 month ago) by frodo
File size: 3508 byte(s)
(Frodo) Configuration file installation and location

  * Add the --with-etcdir configuration option
  * Install psiconv.conf.eg and (if not yet present) psiconv.conf

1 # This is the configuration file for libpsiconv.
2 # By default, the library looks for /etc/psiconv.conf and ~/.psiconv.conf,
3 # but programs may add more entries to this searchpath.
4 # Settings in later files overrule settings in earlier files (so everything
5 # in .psiconv.conf is more important than /etc/psiconv.conf).
6
7 # All lines with only whitespace are ignored.
8 # Comment lines start with a hash (#) and are ignored.
9 # Comments are not allowed after statements.
10
11 # Statements are of the form:
12 # VAR=VALUE
13 # There may be whitespace around the = token.
14 # Variable names are case-insensitive.
15
16
17 ##########################
18 # ALL SETTINGS EXPLAINED #
19 ##########################
20
21 ####################
22 # General settings #
23 ####################
24
25 # The verbosity of the libary
26 # This determines how much output the library generates, especially when it
27 # is parsing Psion files.
28 # There are four levels of verbosity; higher numbers generate more output:
29 # 1: Only display fatal errors
30 # 2: Display errors
31 # 3: Display warnings
32 # 4: Display progress information
33 # 5: Display debug information
34 # Programs can use their own error/information reporting routines; by default,
35 # everything is logged to stderr.
36 #Verbosity = 3
37
38 ####################
39 # Display settings #
40 ####################
41
42 # Display settings are used when generating image files.
43
44 # Set Color to zero when you have a greyscale display, to one if you
45 # have a color display
46 #Color = 0
47
48 # The number of bits used to encode colors.
49 #ColorDepth = 2
50
51 # If you have a color display, colors may be encoded either as RGB colors
52 # or as entries in a palet. In the first case, set here the number of bits
53 # used to encode red, green and blue. Make sure the sum of these bit numbers
54 # equals the ColorDepth set above. To use one of the default palets,
55 # set all three to zero.
56 # If you have a greyscale display, these settings are ignored.
57 #RedBits = 0
58 #GreenBits = 0
59 #BlueBits = 0
60
61 ############################
62 # Character table settings #
63 ############################
64
65 # Settings to determine the used character set
66
67 # The character set used in EPOC files (individual characters can be
68 # changed below)
69 # 0: IBM Codepage 1252 (Western Europe Psions)
70 # If you have another characterset, please let me know, and I will add it here.
71 #CharacterSet = 0
72
73 # if the character set specified above does not completely match, you can
74 # change individual characters here. The number in the variable name is the
75 # number of the EPOC format character; the number in the value is the
76 # corresponding Unicode codepoint.
77 #Char130 = 33304
78
79 # The unknown character placeholder (EPOC format)
80 # When translating from Unicode back to EPOC format, the Unicode character
81 # may not be presentable. This is the Psion codepage character number to
82 # use in this case. The default below is a question mark.
83 # Allowed values: 0 to 255
84 #UnknownEPOCChar = 63
85
86 # The unknown character placeholder (Unicode format)
87 # When translating from EPOC format to Unicode, the EPOC character
88 # may not be known. This is the Unicode character number to
89 # use in this case. The default below is a question mark.
90 # Allowed values: 0 to 65535
91 #UnknownUnicodeChar = 63
92
93
94 ####################################
95 # DEFAULTS FOR THE PSION 5 AND 5MX #
96 ####################################
97
98 Color = 0
99 ColorDepth = 2
100 #RedBits = 0
101 #GreenBits = 0
102 #BlueBits = 0
103 CharacterSet = 1
104 UnknownUnicodeChar = 63
105 UnknownEPOCChar = 63
106
107 ###########################
108 # ADD YOUR SETTINGS BELOW #
109 ###########################

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26