-
Notifications
You must be signed in to change notification settings - Fork 11
/
config.u
159 lines (137 loc) · 3.92 KB
/
config.u
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#################
# Einstellungen #
#################
#--------------------------------------------------------------------
# diverse Definitionen
#--------------------------------------------------------------------
# LIST FORMAT
# Define the UDO command used to format function descriptions.
# Change this to begin_blist/end_blist, if you want the
# item titles to be displayed in bold.
#
# Definition, mit welcher UDO-Liste die Erklaerung einer Funktion codiert
# wird. Z.B. blist, wenn die Ueberschriften "Name", "Beschreibung", ...
# fett angezeigt werden soll, xlist wenn nicht.
!ifset BOLDLISTS
!define begin_liste !begin_blist
!define ende_liste !end_blist
!else
!define begin_liste !begin_xlist
!define ende_liste !end_xlist
!endif
# FARBE - MONOCHROM
# Diese Definition muss gesetzt werden, wenn die Farbbilder benutzt werden
# sollen und auskommentiert werden, wenn die Monochrombilder benutzt
# werden sollen.
#!set COLORIMAGES
# USE PATH FOR IMAGES / PICPFAD VERWENDEN
# Set this definition if you don't want to have the path names of
# the images in the generated files. Remember that UDO uses this path
# both for looking up the pictures and when generating the references
# to them, so
# - if you use the path, for e.g. html the images must be copied
# to a corresponding structure on the server
# - if you don't use the path, for formats like ST-GUIDE that need
# post-processing, you have to copy the images to the folder
# where the output file is generated.
#
# Diese Definition muss gesetzt werden, wenn der Pfad zu den Bildern nicht
# genutzt werden soll. Diese Definition wird zur Zeit nur fuer HTML benutzt,
# um die Bilder im gleichen Verzeichnis wie den Text unterzubringen.
#!set NOIMAGEPATH
# SPRACHE / LANGUAGE
# Es darf nur eine der folgenden Definitionen fr die Zielsprache des
# Textes gesetzt sein. Der Default ist Deutsch (german).
!ifset ENGLISH
!language english
!else
!language german
!endif
#--------------------------------------------------------------------
# Banner for <http://toshyp.atari.org>
#!ifdest [html,hah]
# !use_raw_header html/BannerHead.ui
# !use_raw_footer html/BannerFoot.ui
#!endif
#--------------------------------------------------------------------
# Automatisch erzeugte Definitionen
#--------------------------------------------------------------------
# Pfad zu den Bildern aufgrund der Einstellung Farbe/Mono.
!ifdest [stg]
!ifset COLORIMAGES
!define picture_path bilder/farbe/
!else
!define picture_path bilder/mono/
!endif
!parwidth 75
!else
!define picture_path bilder/gif/
!endif
!ifset NOIMAGEPATH
!define picture_path
!endif
# Automatische Erzeugung eines Indexes
!use_nodes_inside_index [stg,html]
!use_label_inside_index [stg,html]
# Tabellenausrichtung
!table_alignment left
!use_udo_index [html]
!use_compressed_tocs [all]
!use_auto_subtocs [stg,html]
!no_effects [asc]
!html_ignore_8bit
!sort_hyphen_file
# In den Quellen verwendeter Zeichensatz
!code_source [tos]
# Target
!ifdest [stg]
!code_target [tos]
!else
!code_target [utf-8]
!endif
!ifdest [html,hh]
!define bullet •
!define arrowright ⇨
#!define sigma Σ
#!define eacute é
#!define aumlaut ä
#!define oumlaut ö
#!define uumlaut ü
#!define Aumlaut Ä
#!define Oumlaut Ö
#!define Uumlaut Ü
#!define sharps ß
#!define aring å
#!define ccedilla ç
#!define ldouble «
#!define rdouble »
!define sigma ä
!define eacute ‚
!define aumlaut „
!define oumlaut ”
!define uumlaut
!define Aumlaut Ž
!define Oumlaut ™
!define Uumlaut š
!define sharps ž
!define aring †
!define ccedilla ‡
!define ldouble ®
!define rdouble ¯
!else
!define bullet ù
!macro arrowright (!raw [stg] [])
!define sigma ä
!define eacute ‚
!define aumlaut „
!define oumlaut ”
!define uumlaut
!define Aumlaut Ž
!define Oumlaut ™
!define Uumlaut š
!define sharps ž
!define aring †
!define ccedilla ‡
!define ldouble ®
!define rdouble ¯
!endif