-
Notifications
You must be signed in to change notification settings - Fork 69
/
tcllib.tap
4948 lines (4158 loc) · 95.7 KB
/
tcllib.tap
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
format {TclDevKit Project File}
fmtver 2.0
fmttool {TclDevKit TclApp PackageDefinition} 2.5
## Saved at : Thu Sep 26 15:17:07 CEST 2024
## By : aku
##
## Generated by "sak.tcl tap"
## of tcllib 2.0
########
#####
###
##
#
# ###############
# Complete bundle
Package {tcllib 2.0}
Base @TAP_DIR@
Platform *
Desc {Tcllib: Bundle of all packages}
Path pkgIndex.tcl
Path 0compatibility
Path aes
Path amazon-s3
Path asn
Path base32
Path base64
Path bee
Path bench
Path bibtex
Path blowfish
Path cache
Path calendar
Path clay
Path clock
Path cmdline
Path comm
Path control
Path coroutine
Path counter
Path crc
Path cron
Path csv
Path debug
Path defer
Path des
Path dicttool
Path dns
Path docstrip
Path doctools
Path doctools2base
Path doctools2idx
Path doctools2toc
Path dtplite
Path exif
Path fileutil
Path ftp
Path ftpd
Path fumagic
Path generator
Path gpx
Path grammar_aycock
Path grammar_fa
Path grammar_me
Path grammar_peg
Path hook
Path html
Path htmlparse
Path http
Path httpd
Path httpwget
Path ident
Path imap4
Path inifile
Path interp
Path irc
Path javascript
Path jpeg
Path json
Path lambda
Path lazyset
Path ldap
Path log
Path map
Path mapproj
Path markdown
Path math
Path md4
Path md5
Path md5crypt
Path mime
Path mkdoc
Path multiplexer
Path namespacex
Path ncgi
Path nettool
Path nmea
Path nns
Path nntp
Path ntp
Path oauth
Path oodialect
Path oometa
Path ooutil
Path otp
Path page
Path pki
Path pluginmgr
Path png
Path pop3
Path pop3d
Path practcl
Path processman
Path profiler
Path pt
Path rc4
Path rcs
Path report
Path rest
Path ripemd
Path sasl
Path sha1
Path simulation
Path smtpd
Path snit
Path soundex
Path stooop
Path string
Path stringprep
Path struct
Path tar
Path tepam
Path term
Path textutil
Path tie
Path tiff
Path tool
Path transfer
Path treeql
Path try
Path udpcluster
Path uev
Path units
Path uri
Path uuid
Path valtype
Path virtchannel_base
Path virtchannel_core
Path virtchannel_transform
Path websocket
Path wip
Path yaml
Path zip
# #######################
# Module "0compatibility"
# -------+
Package {{} {}}
Platform *
Desc {Tcllib package}
Base @TAP_DIR@/0compatibility
Path pkgIndex.tcl
#
# #######################
# ############
# Module "aes"
# [1] | "aes" (1.2.2)
# -------+
Package {aes 1.2.2}
Platform *
Desc {Implementation of the AES block cipher}
Base @TAP_DIR@/aes
Path aes.tcl
Path pkgIndex.tcl
#
# ############
# ##################
# Module "amazon-s3"
# [1] | "S3" (1.0.5)
# [2] | "xsxp" (1.1)
# -------+
Package {__amazon-s3 0.0}
Platform *
Desc {Amazon S3 Web Service Utilities}
Hidden
Base @TAP_DIR@/amazon-s3
Path pkgIndex.tcl
Path S3.tcl
Path xsxp.tcl
Package {S3 1.0.5}
See __amazon-s3
Platform *
Desc {Amazon S3 Web Service Interface}
Package {xsxp 1.1}
See __amazon-s3
Platform *
Desc {eXtremely Simple Xml Parser}
#
# ##################
# ############
# Module "asn"
# [1] | "asn" (0.8.5)
# -------+
Package {asn 0.8.5}
Platform *
Desc {ASN.1 BER encoder/decoder}
Base @TAP_DIR@/asn
Path asn.tcl
Path pkgIndex.tcl
#
# ############
# ###############
# Module "base32"
# [1] | "base32" (0.2)
# [2] | "base32::hex" (0.2)
# [3] | "base32::core" (0.2)
# -------+
Package {__base32 0.0}
Platform *
Desc {Base32 encoding}
Hidden
Base @TAP_DIR@/base32
Path base32.tcl
Path base32_c.tcl
Path base32_tcl.tcl
Path base32core.tcl
Path base32hex.tcl
Path base32hex_c.tcl
Path base32hex_tcl.tcl
Path pkgIndex.tcl
Package {base32 0.2}
See __base32
Platform *
Desc {base32 standard encoding}
Package {base32::hex 0.2}
See __base32
Platform *
Desc {base32 extended hex encoding}
Package {base32::core 0.2}
See __base32
Platform *
Desc {Expanding basic base32 maps}
#
# ###############
# ###############
# Module "base64"
# [1] | "uuencode" (1.1.6)
# [2] | "base64" (2.6.1)
# [3] | "ascii85" (1.1.1)
# [4] | "yencode" (1.1.4)
# -------+
Package {__base64 0.0}
Platform *
Desc {Text encoding & decoding binary data}
Hidden
Base @TAP_DIR@/base64
Path ascii85.tcl
Path base64.tcl
Path base64c.tcl
Path pkgIndex.tcl
Path uuencode.tcl
Path yencode.tcl
Package {uuencode 1.1.6}
See __base64
Platform *
Desc {UU-encode/decode binary data}
Package {base64 2.6.1}
See __base64
Platform *
Desc {base64-encode/decode binary data}
Package {ascii85 1.1.1}
See __base64
Platform *
Desc {ascii85-encode/decode binary data}
Package {yencode 1.1.4}
See __base64
Platform *
Desc {Y-encode/decode binary data}
#
# ###############
# ############
# Module "bee"
# [1] | "bee" (0.3)
# -------+
Package {bee 0.3}
Platform *
Desc {BitTorrent Serialization Format Encoder/Decoder}
Base @TAP_DIR@/bee
Path bee.tcl
Path pkgIndex.tcl
#
# ############
# ##############
# Module "bench"
# [1] | "bench" (0.6)
# [2] | "bench::out::csv" (0.1.3)
# [3] | "bench::out::text" (0.1.3)
# [4] | "bench::in" (0.2)
# -------+
Package {__bench 0.0}
Platform *
Desc {Benchmarking/Performance tools}
Hidden
Base @TAP_DIR@/bench
Path bench.tcl
Path bench_read.tcl
Path bench_wcsv.tcl
Path bench_wtext.tcl
Path libbench.tcl
Path pkgIndex.tcl
Package {bench 0.6}
See __bench
Platform *
Desc {bench - Processing benchmark suites}
Package {bench::out::csv 0.1.3}
See __bench
Platform *
Desc {bench::out::csv - Formatting benchmark results as CSV}
Package {bench::out::text 0.1.3}
See __bench
Platform *
Desc {bench::out::text - Formatting benchmark results as human readable text}
Package {bench::in 0.2}
See __bench
Platform *
Desc {bench::in - Reading benchmark results}
#
# ##############
# ###############
# Module "bibtex"
# [1] | "bibtex" (0.8)
# -------+
Package {bibtex 0.8}
Platform *
Desc {Parse bibtex files}
Base @TAP_DIR@/bibtex
Path bibtex.tcl
Path pkgIndex.tcl
#
# ###############
# #################
# Module "blowfish"
# [1] | "blowfish" (1.0.6)
# -------+
Package {blowfish 1.0.6}
Platform *
Desc {Implementation of the Blowfish block cipher}
Base @TAP_DIR@/blowfish
Path blowfish.tcl
Path pkgIndex.tcl
#
# #################
# ##############
# Module "cache"
# [1] | "cache::async" (0.3.2)
# -------+
Package {cache::async 0.3.2}
Platform *
Desc {Asynchronous in-memory cache}
Base @TAP_DIR@/cache
Path async.tcl
Path pkgIndex.tcl
#
# ##############
# #################
# Module "calendar"
# [1] | "calendar" (0.4)
# -------+
Package {calendar 0.4}
Platform *
Desc {Tcllib package}
Base @TAP_DIR@/calendar
Path calendar.tcl
Path gregorian.tcl
Path pkgIndex.tcl
Path tclIndex
#
# #################
# #############
# Module "clay"
# [1] | "clay" (0.8.8)
# -------+
Package {clay 0.8.8}
Platform *
Desc {A TclOO and coroutine based web server}
Base @TAP_DIR@/clay
Path clay.tcl
Path pkgIndex.tcl
#
# #############
# ##############
# Module "clock"
# [1] | "clock::rfc2822" (0.2)
# [2] | "clock::iso8601" (0.2)
# -------+
Package {__clock 0.0}
Platform *
Desc {Date/Time Utilities}
Hidden
Base @TAP_DIR@/clock
Path iso8601.tcl
Path pkgIndex.tcl
Path rfc2822.tcl
Package {clock::rfc2822 0.2}
See __clock
Platform *
Desc {Parsing RFC 2822 dates/times}
Package {clock::iso8601 0.2}
See __clock
Platform *
Desc {Parsing ISO 8601 dates/times}
#
# ##############
# ################
# Module "cmdline"
# [1] | "cmdline" (1.5.3)
# -------+
Package {cmdline 1.5.3}
Platform *
Desc {Procedures to process command lines and options.}
Base @TAP_DIR@/cmdline
Path cmdline.tcl
Path pkgIndex.tcl
#
# ################
# #############
# Module "comm"
# [1] | "comm" (4.7.3)
# -------+
Package {comm 4.7.3}
Platform *
Desc {A remote communication facility for Tcl (8.5 and later)}
Base @TAP_DIR@/comm
Path comm.tcl
Path pkgIndex.tcl
#
# #############
# ################
# Module "control"
# [1] | "control" (0.1.4)
# -------+
Package {control 0.1.4}
Platform *
Desc {Iterative directory traversal}
Base @TAP_DIR@/control
Path ascaller.tcl
Path assert.tcl
Path control.tcl
Path do.tcl
Path no-op.tcl
Path pkgIndex.tcl
Path tclIndex
#
# ################
# ##################
# Module "coroutine"
# [1] | "coroutine" (1.4)
# [2] | "coroutine::auto" (1.3)
# -------+
Package {__coroutine 0.0}
Platform *
Desc {Coroutine utilities}
Hidden
Base @TAP_DIR@/coroutine
Path coro_auto.tcl
Path coroutine.tcl
Path pkgIndex.tcl
Package {coroutine 1.4}
See __coroutine
Platform *
Desc {Coroutine based event and IO handling}
Package {coroutine::auto 1.3}
See __coroutine
Platform *
Desc {Automatic event and IO coroutine awareness}
#
# ##################
# ################
# Module "counter"
# [1] | "counter" (2.0.6)
# -------+
Package {counter 2.0.6}
Platform *
Desc {Procedures for counters and histograms}
Base @TAP_DIR@/counter
Path counter.tcl
Path pkgIndex.tcl
#
# ################
# ############
# Module "crc"
# [1] | "sum" (1.1.3)
# [2] | "crc32" (1.3.4)
# [3] | "crc16" (1.1.5)
# [4] | "cksum" (1.1.5)
# -------+
Package {__crc 0.0}
Platform *
Desc {Cyclic Redundancy Checks}
Hidden
Base @TAP_DIR@/crc
Path cksum.tcl
Path crc16.tcl
Path crc32.tcl
Path crc32c.tcl
Path pkgIndex.tcl
Path sum.tcl
Path sumc.tcl
Package {sum 1.1.3}
See __crc
Platform *
Desc {Calculate a sum(1) compatible checksum}
Package {crc32 1.3.4}
See __crc
Platform *
Desc {Perform a 32bit Cyclic Redundancy Check}
Package {crc16 1.1.5}
See __crc
Platform *
Desc {Perform a 16bit Cyclic Redundancy Check}
Package {cksum 1.1.5}
See __crc
Platform *
Desc {Calculate a cksum(1) compatible checksum}
#
# ############
# #############
# Module "cron"
# [1] | "cron" (2.2)
# -------+
Package {cron 2.2}
Platform *
Desc {A TclOO and coroutine based web server}
Base @TAP_DIR@/cron
Path cron.tcl
Path pkgIndex.tcl
#
# #############
# ############
# Module "csv"
# [1] | "csv" (0.10)
# -------+
Package {csv 0.10}
Platform *
Desc {Procedures to handle CSV data.}
Base @TAP_DIR@/csv
Path csv.tcl
Path pkgIndex.tcl
#
# ############
# ##############
# Module "debug"
# [1] | "debug::caller" (1.2)
# [2] | "debug::heartbeat" (1.0.2)
# [3] | "debug" (1.0.7)
# [4] | "debug::timestamp" (1.1)
# -------+
Package {__debug 0.0}
Platform *
Desc {debug narrative}
Hidden
Base @TAP_DIR@/debug
Path caller.tcl
Path debug.tcl
Path heartbeat.tcl
Path pkgIndex.tcl
Path timestamp.tcl
Package {debug::caller 1.2}
See __debug
Platform *
Desc {debug narrative - caller}
Package {debug::heartbeat 1.0.2}
See __debug
Platform *
Desc {debug narrative - heartbeat}
Package {debug 1.0.7}
See __debug
Platform *
Desc {debug narrative - core}
Package {debug::timestamp 1.1}
See __debug
Platform *
Desc {debug narrative - timestamping}
#
# ##############
# ##############
# Module "defer"
# [1] | "defer" (1.1)
# -------+
Package {defer 1.1}
Platform *
Desc {Defered execution}
Base @TAP_DIR@/defer
Path defer.tcl
Path pkgIndex.tcl
#
# ##############
# ############
# Module "des"
# [1] | "des" (1.2)
# [2] | "tclDESjr" (1.1)
# [3] | "tclDES" (1.1)
# -------+
Package {__des 0.0}
Platform *
Desc {Data Encryption Standard (DES)}
Hidden
Base @TAP_DIR@/des
Path des.tcl
Path pkgIndex.tcl
Path tcldes.tcl
Path tcldesjr.tcl
Package {des 1.2}
See __des
Platform *
Desc {Implementation of the DES and triple-DES ciphers}
Package {tclDESjr 1.1}
See __des
Platform *
Desc {Implementation of the DES and triple-DES ciphers}
Package {tclDES 1.1}
See __des
Platform *
Desc {Implementation of the DES and triple-DES ciphers}
#
# ############
# #################
# Module "dicttool"
# [1] | "dicttool" (1.2)
# -------+
Package {dicttool 1.2}
Platform *
Desc {TclOO Library (TOOL) Framework}
Base @TAP_DIR@/dicttool
Path dicttool.tcl
Path pkgIndex.tcl
#
# #################
# ############
# Module "dns"
# [1] | "ip" (1.5.1)
# [2] | "dns" (1.6.1)
# [3] | "spf" (1.1.2)
# [4] | "resolv" (1.0.4)
# -------+
Package {__dns 0.0}
Platform *
Desc {Domain Name Service}
Hidden
Base @TAP_DIR@/dns
Path dns.tcl
Path ip.tcl
Path ipMore.tcl
Path ipMoreC.tcl
Path msgs/en.msg
Path pkgIndex.tcl
Path resolv.tcl
Path spf.tcl
Package {ip 1.5.1}
See __dns
Platform *
Desc {IPv4 and IPv6 address manipulation}
Package {dns 1.6.1}
See __dns
Platform *
Desc {Tcl Domain Name Service Client}
Package {spf 1.1.2}
See __dns
Platform *
Desc {Tcllib package}
Package {resolv 1.0.4}
See __dns
Platform *
Desc {Tcllib package}
#
# ############
# #################
# Module "docstrip"
# [1] | "docstrip" (1.3)
# [2] | "docstrip::util" (1.3.3)
# -------+
Package {__docstrip 0.0}
Platform *
Desc {Literate programming tool}
Hidden
Base @TAP_DIR@/docstrip
Path docstrip.tcl
Path docstrip_util.tcl
Path pkgIndex.tcl
Package {docstrip 1.3}
See __docstrip
Platform *
Desc {Docstrip style source code extraction}
Package {docstrip::util 1.3.3}
See __docstrip
Platform *
Desc {Docstrip-related utilities}
#
# #################
# #################
# Module "doctools"
# [1] | "doctools::idx" (1.2.1)
# [2] | "doctools::toc" (1.3.1)
# [3] | "doctools::cvs" (1.1)
# [4] | "doctools::changelog" (1.2)
# [5] | "doctools" (1.6.1)
# -------+
Package {__doctools 0.0}
Platform *
Desc {Documentation tools}
Hidden
Base @TAP_DIR@/doctools
Path api.tcl
Path api_idx.tcl
Path api_toc.tcl
Path changelog.tcl
Path checker.tcl
Path checker_idx.tcl
Path checker_toc.tcl
Path cvs.tcl
Path docidx.tcl
Path doctoc.tcl
Path doctools.tcl
Path mpformats/_common.tcl
Path mpformats/_html.tcl
Path mpformats/_idx_common.tcl
Path mpformats/_markdown.tcl
Path mpformats/_nroff.tcl
Path mpformats/_text.tcl
Path mpformats/_text_bullets.tcl
Path mpformats/_text_ccore.tcl
Path mpformats/_text_cstack.tcl
Path mpformats/_text_dlist.tcl
Path mpformats/_text_margin.tcl
Path mpformats/_text_para.tcl
Path mpformats/_text_state.tcl
Path mpformats/_text_utils.tcl
Path mpformats/_toc_common.tcl
Path mpformats/_xml.tcl
Path mpformats/_xref.tcl
Path mpformats/c.msg
Path mpformats/de.msg
Path mpformats/en.msg
Path mpformats/fmt.desc
Path mpformats/fmt.html
Path mpformats/fmt.latex
Path mpformats/fmt.list
Path mpformats/fmt.markdown
Path mpformats/fmt.nroff
Path mpformats/fmt.null
Path mpformats/fmt.text
Path mpformats/fmt.tmml
Path mpformats/fmt.wiki
Path mpformats/fr.msg
Path mpformats/idx.html
Path mpformats/idx.markdown
Path mpformats/idx.nroff
Path mpformats/idx.null
Path mpformats/idx.text
Path mpformats/idx.wiki
Path mpformats/man.macros
Path mpformats/toc.html
Path mpformats/toc.markdown
Path mpformats/toc.nroff
Path mpformats/toc.null
Path mpformats/toc.text
Path mpformats/toc.tmml
Path mpformats/toc.wiki
Path pkgIndex.tcl
Package {doctools::idx 1.2.1}
See __doctools
Platform *
Desc {Holding keyword indices}
Package {doctools::toc 1.3.1}
See __doctools
Platform *
Desc {Holding tables of contents}
Package {doctools::cvs 1.1}
See __doctools
Platform *
Desc {Processing text in 'cvs log' format}
Package {doctools::changelog 1.2}
See __doctools
Platform *
Desc {Processing text in Emacs ChangeLog format}
Package {doctools 1.6.1}
See __doctools
Platform *
Desc {doctools - Processing documents}
#
# #################
# ######################
# Module "doctools2base"
# [1] | "doctools::html" (0.2)
# [2] | "doctools::text" (0.2)
# [3] | "doctools::html::cssdefaults" (0.2)
# [4] | "doctools::tcl::parse" (0.2)
# [5] | "doctools::nroff::man_macros" (0.2)
# [6] | "doctools::msgcat" (0.2)
# -------+
Package {__doctools2base 0.0}
Platform *
Desc {Documentation tools}
Hidden
Base @TAP_DIR@/doctools2base
Path html.tcl
Path html_cssdefaults.tcl
Path msgcat.tcl
Path nroff_manmacros.tcl
Path pkgIndex.tcl
Path tcl_parse.tcl
Path text.tcl
Package {doctools::html 0.2}
See __doctools2base
Platform *
Desc {Tcllib package}
Package {doctools::text 0.2}
See __doctools2base
Platform *
Desc {Tcllib package}
Package {doctools::html::cssdefaults 0.2}
See __doctools2base
Platform *
Desc {Default CSS style for HTML export plugins}
Package {doctools::tcl::parse 0.2}
See __doctools2base
Platform *
Desc {Processing text in 'subst -novariables' format}
Package {doctools::nroff::man_macros 0.2}
See __doctools2base
Platform *
Desc {Default CSS style for NROFF export plugins}
Package {doctools::msgcat 0.2}
See __doctools2base
Platform *
Desc {Message catalog management for the various document parsers}
#
# ######################
# #####################
# Module "doctools2idx"
# [1] | "doctools::idx::structure" (0.2)
# [2] | "doctools::idx::import::json" (0.2)
# [3] | "doctools::idx::export::nroff" (0.4)
# [4] | "doctools::idx::export" (0.2.2)
# [5] | "doctools::idx::import::docidx" (0.2)
# [6] | "doctools::msgcat::idx::fr" (0.2)
# [7] | "doctools::idx::parse" (0.2)
# [8] | "doctools::idx::export::html" (0.3)
# [9] | "doctools::msgcat::idx::de" (0.2)
# [10] | "doctools::idx" (2.1)
# [11] | "doctools::msgcat::idx::en" (0.2)
# [12] | "doctools::msgcat::idx::c" (0.2)
# [13] | "doctools::idx::export::json" (0.2)
# [14] | "doctools::idx::export::docidx" (0.2)
# [15] | "doctools::idx::export::wiki" (0.3)
# [16] | "doctools::idx::export::text" (0.3)
# [17] | "doctools::idx::import" (0.2.2)
# -------+
Package {__doctools2idx 0.0}
Platform *
Desc {Documentation tools}