forked from pikelang/Pike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtraditional.xml
401 lines (397 loc) · 11.1 KB
/
traditional.xml
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<!-- This file contains information telling the final joiner how to -->
<!-- put everything together, as well as information about how to -->
<!-- split it up into smaller files. -->
<!-- The description in this file will compile a reference manual -->
<!-- similar to the old "Pike Tutorial". -->
<manual>
<dir name="traditional_manual">
<file name="index.html">
<chapter title="Table of Contents" unnumbered="1">
<contents/>
</chapter>
</file>
<file>
<chapter-ref file="chapters/introduction.xml"/>
</file>
<file>
<chapter-ref file="chapters/control_structures.xml"/>
</file>
<file>
<chapter-ref file="chapters/data_types.xml"/>
</file>
<file>
<chapter-ref file="chapters/operators.xml"/>
</file>
<file>
<chapter-ref file="chapters/preprocessor.xml"/>
</file>
<file>
<chapter-ref file="chapters/special_functions.xml"/>
</file>
<file>
<chapter-ref file="chapters/hilfe.xml"/>
</file>
<file>
<chapter title="Special object functions">
<section title="LFUN">
<insert-move entity="lfun::"/>
</section>
<section title="::">
<insert-move entity="::"/>
</section>
</chapter>
</file>
<file>
<chapter title="I/O">
<section title="File system manipulation">
<insert-move entity="access"/>
<insert-move entity="cd"/>
<insert-move entity="getcwd"/>
<insert-move entity="get_dir"/>
<insert-move entity="mkdir"/>
<insert-move entity="cp"/>
<insert-move entity="mv"/>
<insert-move entity="rm"/>
<insert-move entity="file_truncate"/>
</section>
<section title="Path manipulation">
<insert-move entity="basename"/>
<insert-move entity="dirname"/>
<insert-move entity="combine_path"/>
<!-- insert-move entity="append_path"/ -->
<insert-move entity="explode_path"/>
</section>
<section title="Status">
<insert-move entity="file_stat"/>
<insert-move entity="filesystem_stat"/>
<insert-move entity="Stdio.Stat"/>
</section>
<section title="Error handling">
<insert-move entity="errno"/>
<insert-move entity="strerror"/>
</section>
<section title="Files and sockets">
<insert-move entity="Stdio.File"/>
<insert-move entity="Stdio.FILE"/>
<!-- <insert-move entity="Stdio.stdin"/> -->
<!-- <insert-move entity="Stdio.stdout"/> -->
<!-- <insert-move entity="Stdio.stderr"/> -->
</section>
<section title="Ports and UDP">
<insert-move entity="Stdio.Port"/>
<insert-move entity="Stdio.UDP"/>
</section>
<section title="Terminal I/O">
<insert-move entity="Stdio.Terminfo"/>
<insert-move entity="Stdio.Readline"/>
</section>
<section title="Other">
<insert-move entity="Stdio"/>
</section>
</chapter>
</file>
<file>
<chapter title="Specific Datatype Modules">
<section title="String">
<insert-move entity="String"/>
</section>
<section title="Array">
<insert-move entity="Array"/>
</section>
<section title="Mapping">
<insert-move entity="Mapping"/>
</section>
<section title="Multiset">
<insert-move entity="Multiset"/>
</section>
<section title="Int">
<insert-move entity="Int"/>
</section>
<section title="Float">
<insert-move entity="Float"/>
</section>
<section title="Function">
<insert-move entity="Function"/>
</section>
<section title="Program">
<insert-move entity="Program"/>
</section>
<section title="ADT">
<insert-move entity="ADT"/>
</section>
</chapter>
</file>
<file>
<chapter title="Parsers">
<insert-move entity="Parser.XML"/>
<insert-move entity="Parser.HTML"/>
<insert-move entity="Parser"/>
</chapter>
</file>
<file>
<chapter title="Image Module">
<insert-move entity="Image.Image"/>
<insert-move entity="Image.Layer"/>
<insert-move entity="Image.Font"/>
<insert-move entity="Image.Colortable"/>
<insert-move entity="Image.Color"/>
<insert-move entity="Colors"/>
<insert-move entity="Image.ANY"/>
<insert-move entity="Image"/>
</chapter>
</file>
<file>
<chapter title="Protocols">
<section title="HTTP">
<insert-move entity="Protocols.HTTP"/>
</section>
<section title="TLS/SSL">
<insert-move entity="SSL"/>
</section>
<section title="DNS">
<insert-move entity="Protocols.DNS"/>
</section>
<section title="LysKOM">
<insert-move entity="Protocols.LysKOM"/>
</section>
<section title="Other protocols">
<insert-move entity="Protocols"/>
</section>
</chapter>
</file>
<file>
<chapter title="Database Access">
<section title="Generic Sql API">
<subsection title="Sql.Sql">
<insert-move entity="Sql.Sql"/>
</subsection>
<subsection title="Sql.Connection objects">
<insert-move entity="Sql.Connection"/>
<insert-move entity="__builtin.Sql.Connection"/>
</subsection>
<subsection title="Sql.Result objects">
<insert-move entity="Sql.Result"/>
<insert-move entity="__builtin.Sql.Result"/>
</subsection>
</section>
<section title="Sql protocol drivers">
<subsection title="Mysql">
<insert-move entity="Sql.mysql"/>
<insert-move entity="Sql.mysqls"/>
<insert-move entity="Mysql"/>
</subsection>
<subsection title="Msql">
<insert-move entity="Sql.msql"/>
<insert-move entity="Msql"/>
</subsection>
<subsection title="Postgresql">
<insert-move entity="Sql.pgsql"/>
<insert-move entity="Sql.pgsqls"/>
<insert-move entity="Sql.postgres"/>
<insert-move entity="Postgres"/>
</subsection>
<subsection title="SQLite">
<!-- insert-move entity="SQL.sqlite"/ -->
<insert-move entity="SQLite"/>
</subsection>
<subsection title="Oracle">
<!-- insert-move entity="SQL.oracle"/ -->
<insert-move entity="Oracle"/>
</subsection>
<subsection title="Odbc">
<insert-move entity="Sql.odbc"/>
<!-- insert-move entity="Sql.dsn"/ -->
<insert-move entity="Odbc"/>
</subsection>
<subsection title="Other">
<insert-move entity="Sql"/>
</subsection>
</section>
<section title="Key-value stores">
<subsection title="Gdbm">
<insert-move entity="Gdbm"/>
</subsection>
<subsection title="Yabu">
<insert-move entity="Yabu"/>
</subsection>
</section>
</chapter>
</file>
<file>
<chapter title="Compression">
<insert-move entity="Gz"/>
<insert-move entity="Bz2"/>
<insert-move entity="HPack"/>
</chapter>
</file>
<file>
<chapter title="Graphic User Interface">
<insert-move entity="GTK"/>
<insert-move entity="GTK2"/>
<insert-move entity="GDK"/>
<insert-move entity="GDK2"/>
</chapter>
</file>
<file>
<chapter title="3D Vector Graphics">
<insert-move entity="GL"/>
<insert-move entity="GLU"/>
<insert-move entity="GLUE"/>
<insert-move entity="GLUT"/>
<insert-move entity="GLSL"/>
</chapter>
</file>
<file>
<chapter title="Threads">
<insert-move entity="_disable_threads"/>
<insert-move entity="Thread"/>
</chapter>
</file>
<file>
<chapter title="Asynchronous Operation">
<section title="Backends">
<insert-move entity="call_out"/>
<insert-move entity="Pike.Backend"/>
</section>
<section title="Promises and Futures">
<insert-move entity="Concurrent"/>
</section>
</chapter>
</file>
<file>
<chapter title="Calendar">
<insert-move entity="Calendar"/>
</chapter>
</file>
<file>
<chapter title="Cryptography">
<section title="Password hashing">
<insert-move entity="crypt"/>
<insert-move entity="Crypto.Password"/>
</section>
<section title="Kerberos and GSSAPI">
<insert-move entity="GSSAPI"/>
</section>
<section title="Cryptographic primitives">
<insert-move entity="Crypto"/>
<insert-move entity="Nettle"/>
</section>
</chapter>
</file>
<file>
<chapter title="Charset">
<insert-move entity="Charset"/>
</chapter>
</file>
<file>
<chapter title="Introspection">
<section title="Value inspection">
<insert-move entity="arrayp"/>
<insert-move entity="callablep"/>
<insert-move entity="destructedp"/>
<insert-move entity="floatp"/>
<insert-move entity="functionp"/>
<insert-move entity="intp"/>
<insert-move entity="mappingp"/>
<insert-move entity="multisetp"/>
<insert-move entity="programp"/>
<insert-move entity="undefinedp"/>
<insert-move entity="_typeof"/>
</section>
<section title="Content inspection">
<insert-move entity="indices"/>
<insert-move entity="values"/>
<insert-move entity="types"/>
<insert-move entity="annotations"/>
<insert-move entity="get_weak_flag"/>
</section>
<section title="Integer inspection">
<insert-move entity="zero_type"/>
</section>
<section title="Function inspection">
<insert-move entity="function_name"/>
<insert-move entity="function_object"/>
<insert-move entity="function_program"/>
</section>
<section title="Object inspection">
<insert-move entity="object_program"/>
</section>
<section title="Program inspection">
<insert-move entity="get_profiling_info"/>
<insert-move entity="typeof_identifier"/>
</section>
<section title="Type inspection">
<insert-move entity="deprecated_typep"/>
</section>
</chapter>
</file>
<file>
<chapter title="Runtime">
<insert-move entity="exit"/>
<insert-move entity="_exit"/>
<insert-move entity="atexit"/>
<insert-move entity="trace"/>
<insert-move entity="backtrace"/>
<insert-move entity="gc"/>
<insert-move entity="query_num_arg"/>
<insert-move entity="version"/>
</chapter>
</file>
<file>
<chapter title="Implementation internals">
<insert-move entity="Builtin"/>
<insert-move entity="__builtin"/>
<insert-move entity="_static_modules"/>
</chapter>
</file>
<file>
<chapter title="Operation System Specific">
<section title="POSIX">
<insert-move entity="alarm"/>
<insert-move entity="fork"/>
<insert-move entity="exece"/>
</section>
<section title="Apple OS X">
<insert-move entity="Apple"/>
</section>
<section title="Microsoft Windows">
<subsection title="Registry handling">
<insert-move entity="RegGetKeyNames"/>
<!-- insert-move entity="HKEY_CLASSES_ROOT"/ -->
<insert-move entity="RegGetValue"/>
<insert-move entity="RegGetValues"/>
</subsection>
</section>
</chapter>
</file>
<file>
<chapter title="The rest">
<insert-move entity=""/>
</chapter>
</file>
<file>
<chapter-ref file="chapters/compatibility.xml"/>
</file>
<file>
<chapter-ref file="chapters/modules.xml"/>
</file>
<file>
<chapter-ref file="chapters/testsuite.xml"/>
</file>
<file>
<chapter-ref file="chapters/autodoc.xml"/>
</file>
<file>
<chapter-ref file="chapters/pike_bnf.xml"/>
</file>
</dir>
<void>
<!-- The compatibility modules should perhaps be added to a
compatibility chapter, but they would need a modifying
wrapper first. -->
<insert-move entity="7-8::"/>
<insert-move entity="8-0::"/>
<insert-move entity="_Roxen"/>
<!-- insert-move entity="__builtin"/ -->
</void>
</manual>