aboutsummaryrefslogtreecommitdiff
path: root/irc/bitchx/pkg-plist
blob: c18dc55c734344c6a3cfa58ed5b6cc95a96108d1 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
@unexec if [ -f %D/share/bx/script/bxglobal.old ]; then rm -f %D/share/bx/script/bxglobal.old; fi
%%NOGNOME%%bin/BitchX
%%NOGNOME%%bin/BitchX-1.1-final
%%GNOME%%bin/gtkBitchX
%%GNOME%%bin/gtkBitchX-1.1-final
%%NOGNOME%%bin/scr-bx
share/bx/BitchX.help
share/bx/BitchX.ircnames
share/bx/BitchX.quit
share/bx/BitchX.kick
%%PORTDOCS%%share/bx/help/1_General/1_General
%%PORTDOCS%%share/bx/help/1_General/4op
%%PORTDOCS%%share/bx/help/1_General/about
%%PORTDOCS%%share/bx/help/1_General/addforward
%%PORTDOCS%%share/bx/help/1_General/addidle
%%PORTDOCS%%share/bx/help/1_General/addlamenick
%%PORTDOCS%%share/bx/help/1_General/addnoflood
%%PORTDOCS%%share/bx/help/1_General/addshit
%%PORTDOCS%%share/bx/help/1_General/adduser
%%PORTDOCS%%share/bx/help/1_General/addword
%%PORTDOCS%%share/bx/help/1_General/ajoin
%%PORTDOCS%%share/bx/help/1_General/ajoinlist
%%PORTDOCS%%share/bx/help/1_General/away
%%PORTDOCS%%share/bx/help/1_General/awaylog
%%PORTDOCS%%share/bx/help/1_General/awaymsg
%%PORTDOCS%%share/bx/help/1_General/b
%%PORTDOCS%%share/bx/help/1_General/back
%%PORTDOCS%%share/bx/help/1_General/ban
%%PORTDOCS%%share/bx/help/1_General/banstat
%%PORTDOCS%%share/bx/help/1_General/bantype
%%PORTDOCS%%share/bx/help/1_General/banwords
%%PORTDOCS%%share/bx/help/1_General/bk
%%PORTDOCS%%share/bx/help/1_General/bki
%%PORTDOCS%%share/bx/help/1_General/bye
%%PORTDOCS%%share/bx/help/1_General/channel
%%PORTDOCS%%share/bx/help/1_General/chat
%%PORTDOCS%%share/bx/help/1_General/ctcp/action
%%PORTDOCS%%share/bx/help/1_General/ctcp/bdcc
%%PORTDOCS%%share/bx/help/1_General/ctcp/cdcc
%%PORTDOCS%%share/bx/help/1_General/ctcp/clientinfo
%%PORTDOCS%%share/bx/help/1_General/ctcp/ctcp
%%PORTDOCS%%share/bx/help/1_General/ctcp/echo
%%PORTDOCS%%share/bx/help/1_General/ctcp/finger
%%PORTDOCS%%share/bx/help/1_General/ctcp/ident
%%PORTDOCS%%share/bx/help/1_General/ctcp/invite
%%PORTDOCS%%share/bx/help/1_General/ctcp/op
%%PORTDOCS%%share/bx/help/1_General/ctcp/ops
%%PORTDOCS%%share/bx/help/1_General/ctcp/ping
%%PORTDOCS%%share/bx/help/1_General/ctcp/time
%%PORTDOCS%%share/bx/help/1_General/ctcp/unban
%%PORTDOCS%%share/bx/help/1_General/ctcp/uptime
%%PORTDOCS%%share/bx/help/1_General/ctcp/userinfo
%%PORTDOCS%%share/bx/help/1_General/ctcp/utc
%%PORTDOCS%%share/bx/help/1_General/ctcp/version
%%PORTDOCS%%share/bx/help/1_General/ctcp/whoami
%%PORTDOCS%%share/bx/help/1_General/ctcp/xdcc
%%PORTDOCS%%share/bx/help/1_General/dcc/activecount
%%PORTDOCS%%share/bx/help/1_General/dcc/autoget
%%PORTDOCS%%share/bx/help/1_General/dcc/autooverwrite
%%PORTDOCS%%share/bx/help/1_General/dcc/autorename
%%PORTDOCS%%share/bx/help/1_General/dcc/autoresume
%%PORTDOCS%%share/bx/help/1_General/dcc/bot
%%PORTDOCS%%share/bx/help/1_General/dcc/chat
%%PORTDOCS%%share/bx/help/1_General/dcc/close
%%PORTDOCS%%share/bx/help/1_General/dcc/closeall
%%PORTDOCS%%share/bx/help/1_General/dcc/dcc
%%PORTDOCS%%share/bx/help/1_General/dcc/exempt
%%PORTDOCS%%share/bx/help/1_General/dcc/ftp
%%PORTDOCS%%share/bx/help/1_General/dcc/get
%%PORTDOCS%%share/bx/help/1_General/dcc/list
%%PORTDOCS%%share/bx/help/1_General/dcc/quietmode
%%PORTDOCS%%share/bx/help/1_General/dcc/raw
%%PORTDOCS%%share/bx/help/1_General/dcc/reget
%%PORTDOCS%%share/bx/help/1_General/dcc/rename
%%PORTDOCS%%share/bx/help/1_General/dcc/resend
%%PORTDOCS%%share/bx/help/1_General/dcc/resume
%%PORTDOCS%%share/bx/help/1_General/dcc/send
%%PORTDOCS%%share/bx/help/1_General/dcc/showpaths
%%PORTDOCS%%share/bx/help/1_General/dcc/stats
%%PORTDOCS%%share/bx/help/1_General/dcc/tget
%%PORTDOCS%%share/bx/help/1_General/dcc/treget
%%PORTDOCS%%share/bx/help/1_General/dcc/tresend
%%PORTDOCS%%share/bx/help/1_General/dcc/tsend
%%PORTDOCS%%share/bx/help/1_General/describe
%%PORTDOCS%%share/bx/help/1_General/disconnect
%%PORTDOCS%%share/bx/help/1_General/gone
%%PORTDOCS%%share/bx/help/1_General/help
%%PORTDOCS%%share/bx/help/1_General/ignore
%%PORTDOCS%%share/bx/help/1_General/invite
%%PORTDOCS%%share/bx/help/1_General/j
%%PORTDOCS%%share/bx/help/1_General/join
%%PORTDOCS%%share/bx/help/1_General/k
%%PORTDOCS%%share/bx/help/1_General/kb
%%PORTDOCS%%share/bx/help/1_General/kbi
%%PORTDOCS%%share/bx/help/1_General/kick
%%PORTDOCS%%share/bx/help/1_General/kickidle
%%PORTDOCS%%share/bx/help/1_General/l
%%PORTDOCS%%share/bx/help/1_General/lamenicklist
%%PORTDOCS%%share/bx/help/1_General/lastlog
%%PORTDOCS%%share/bx/help/1_General/leave
%%PORTDOCS%%share/bx/help/1_General/m
%%PORTDOCS%%share/bx/help/1_General/me
%%PORTDOCS%%share/bx/help/1_General/mode
%%PORTDOCS%%share/bx/help/1_General/msg
%%PORTDOCS%%share/bx/help/1_General/nick
%%PORTDOCS%%share/bx/help/1_General/nochat
%%PORTDOCS%%share/bx/help/1_General/noforward
%%PORTDOCS%%share/bx/help/1_General/notice
%%PORTDOCS%%share/bx/help/1_General/notify
%%PORTDOCS%%share/bx/help/1_General/nslookup
%%PORTDOCS%%share/bx/help/1_General/offers
%%PORTDOCS%%share/bx/help/1_General/p
%%PORTDOCS%%share/bx/help/1_General/part
%%PORTDOCS%%share/bx/help/1_General/partall
%%PORTDOCS%%share/bx/help/1_General/ping
%%PORTDOCS%%share/bx/help/1_General/query
%%PORTDOCS%%share/bx/help/1_General/quit
%%PORTDOCS%%share/bx/help/1_General/reconnect
%%PORTDOCS%%share/bx/help/1_General/say
%%PORTDOCS%%share/bx/help/1_General/server
%%PORTDOCS%%share/bx/help/1_General/shitlist
%%PORTDOCS%%share/bx/help/1_General/showwordkick
%%PORTDOCS%%share/bx/help/1_General/silence
%%PORTDOCS%%share/bx/help/1_General/spam
%%PORTDOCS%%share/bx/help/1_General/t
%%PORTDOCS%%share/bx/help/1_General/topic
%%PORTDOCS%%share/bx/help/1_General/unajoin
%%PORTDOCS%%share/bx/help/1_General/unforward
%%PORTDOCS%%share/bx/help/1_General/unidle
%%PORTDOCS%%share/bx/help/1_General/unlamenick
%%PORTDOCS%%share/bx/help/1_General/unshit
%%PORTDOCS%%share/bx/help/1_General/unuser
%%PORTDOCS%%share/bx/help/1_General/unwordkick
%%PORTDOCS%%share/bx/help/1_General/uping
%%PORTDOCS%%share/bx/help/1_General/url
%%PORTDOCS%%share/bx/help/1_General/ver
%%PORTDOCS%%share/bx/help/1_General/wordlist
%%PORTDOCS%%share/bx/help/2_Queries/2_Queries
%%PORTDOCS%%share/bx/help/2_Queries/admin
%%PORTDOCS%%share/bx/help/2_Queries/flush
%%PORTDOCS%%share/bx/help/2_Queries/info
%%PORTDOCS%%share/bx/help/2_Queries/ison
%%PORTDOCS%%share/bx/help/2_Queries/links
%%PORTDOCS%%share/bx/help/2_Queries/list
%%PORTDOCS%%share/bx/help/2_Queries/lusers
%%PORTDOCS%%share/bx/help/2_Queries/map
%%PORTDOCS%%share/bx/help/2_Queries/motd
%%PORTDOCS%%share/bx/help/2_Queries/n
%%PORTDOCS%%share/bx/help/2_Queries/names
%%PORTDOCS%%share/bx/help/2_Queries/sc
%%PORTDOCS%%share/bx/help/2_Queries/scan
%%PORTDOCS%%share/bx/help/2_Queries/scanf
%%PORTDOCS%%share/bx/help/2_Queries/scani
%%PORTDOCS%%share/bx/help/2_Queries/scann
%%PORTDOCS%%share/bx/help/2_Queries/scano
%%PORTDOCS%%share/bx/help/2_Queries/scans
%%PORTDOCS%%share/bx/help/2_Queries/scanv
%%PORTDOCS%%share/bx/help/2_Queries/stats
%%PORTDOCS%%share/bx/help/2_Queries/time
%%PORTDOCS%%share/bx/help/2_Queries/trace
%%PORTDOCS%%share/bx/help/2_Queries/userhost
%%PORTDOCS%%share/bx/help/2_Queries/userip
%%PORTDOCS%%share/bx/help/2_Queries/users
%%PORTDOCS%%share/bx/help/2_Queries/version
%%PORTDOCS%%share/bx/help/2_Queries/who
%%PORTDOCS%%share/bx/help/2_Queries/whois
%%PORTDOCS%%share/bx/help/2_Queries/whowas
%%PORTDOCS%%share/bx/help/2_Queries/wi
%%PORTDOCS%%share/bx/help/2_Queries/wii
%%PORTDOCS%%share/bx/help/2_Queries/wilc
%%PORTDOCS%%share/bx/help/2_Queries/wilcr
%%PORTDOCS%%share/bx/help/2_Queries/wilm
%%PORTDOCS%%share/bx/help/2_Queries/wiln
%%PORTDOCS%%share/bx/help/2_Queries/ww
%%PORTDOCS%%share/bx/help/3_Operators/3_Operators
%%PORTDOCS%%share/bx/help/3_Operators/connect
%%PORTDOCS%%share/bx/help/3_Operators/deoper
%%PORTDOCS%%share/bx/help/3_Operators/die
%%PORTDOCS%%share/bx/help/3_Operators/dline
%%PORTDOCS%%share/bx/help/3_Operators/hash
%%PORTDOCS%%share/bx/help/3_Operators/helpop
%%PORTDOCS%%share/bx/help/3_Operators/helpserv
%%PORTDOCS%%share/bx/help/3_Operators/kill
%%PORTDOCS%%share/bx/help/3_Operators/kline
%%PORTDOCS%%share/bx/help/3_Operators/locop
%%PORTDOCS%%share/bx/help/3_Operators/oper
%%PORTDOCS%%share/bx/help/3_Operators/rehash
%%PORTDOCS%%share/bx/help/3_Operators/restart
%%PORTDOCS%%share/bx/help/3_Operators/rping
%%PORTDOCS%%share/bx/help/3_Operators/sping
%%PORTDOCS%%share/bx/help/3_Operators/squit
%%PORTDOCS%%share/bx/help/3_Operators/swallop
%%PORTDOCS%%share/bx/help/3_Operators/tkline
%%PORTDOCS%%share/bx/help/3_Operators/unkline
%%PORTDOCS%%share/bx/help/3_Operators/uping
%%PORTDOCS%%share/bx/help/3_Operators/wallops
%%PORTDOCS%%share/bx/help/4_Misc/4_Misc
%%PORTDOCS%%share/bx/help/4_Misc/abort
%%PORTDOCS%%share/bx/help/4_Misc/beep
%%PORTDOCS%%share/bx/help/4_Misc/bind/backspace
%%PORTDOCS%%share/bx/help/4_Misc/bind/backward_character
%%PORTDOCS%%share/bx/help/4_Misc/bind/backward_history
%%PORTDOCS%%share/bx/help/4_Misc/bind/backward_word
%%PORTDOCS%%share/bx/help/4_Misc/bind/beginning_of_line
%%PORTDOCS%%share/bx/help/4_Misc/bind/bind
%%PORTDOCS%%share/bx/help/4_Misc/bind/blink
%%PORTDOCS%%share/bx/help/4_Misc/bind/bold
%%PORTDOCS%%share/bx/help/4_Misc/bind/clear_screen
%%PORTDOCS%%share/bx/help/4_Misc/bind/command_completion
%%PORTDOCS%%share/bx/help/4_Misc/bind/delete_character
%%PORTDOCS%%share/bx/help/4_Misc/bind/delete_next_word
%%PORTDOCS%%share/bx/help/4_Misc/bind/delete_previous_word
%%PORTDOCS%%share/bx/help/4_Misc/bind/delete_to_previous_space
%%PORTDOCS%%share/bx/help/4_Misc/bind/end_of_line
%%PORTDOCS%%share/bx/help/4_Misc/bind/enter_digraph
%%PORTDOCS%%share/bx/help/4_Misc/bind/enter_menu
%%PORTDOCS%%share/bx/help/4_Misc/bind/erase_line
%%PORTDOCS%%share/bx/help/4_Misc/bind/erase_to_beg_of_line
%%PORTDOCS%%share/bx/help/4_Misc/bind/erase_to_end_of_line
%%PORTDOCS%%share/bx/help/4_Misc/bind/forward_character
%%PORTDOCS%%share/bx/help/4_Misc/bind/forward_history
%%PORTDOCS%%share/bx/help/4_Misc/bind/forward_word
%%PORTDOCS%%share/bx/help/4_Misc/bind/highlight_off
%%PORTDOCS%%share/bx/help/4_Misc/bind/meta1_character
%%PORTDOCS%%share/bx/help/4_Misc/bind/meta4_character
%%PORTDOCS%%share/bx/help/4_Misc/bind/next_window
%%PORTDOCS%%share/bx/help/4_Misc/bind/nothing
%%PORTDOCS%%share/bx/help/4_Misc/bind/parse_command
%%PORTDOCS%%share/bx/help/4_Misc/bind/paste_to_input
%%PORTDOCS%%share/bx/help/4_Misc/bind/previous_window
%%PORTDOCS%%share/bx/help/4_Misc/bind/quit_irc
%%PORTDOCS%%share/bx/help/4_Misc/bind/quote_character
%%PORTDOCS%%share/bx/help/4_Misc/bind/refresh_inputline
%%PORTDOCS%%share/bx/help/4_Misc/bind/refresh_screen
%%PORTDOCS%%share/bx/help/4_Misc/bind/reverse
%%PORTDOCS%%share/bx/help/4_Misc/bind/scroll_backward
%%PORTDOCS%%share/bx/help/4_Misc/bind/scroll_end
%%PORTDOCS%%share/bx/help/4_Misc/bind/scroll_forward
%%PORTDOCS%%share/bx/help/4_Misc/bind/scroll_start
%%PORTDOCS%%share/bx/help/4_Misc/bind/self_insert
%%PORTDOCS%%share/bx/help/4_Misc/bind/send_line
%%PORTDOCS%%share/bx/help/4_Misc/bind/shove_to_history
%%PORTDOCS%%share/bx/help/4_Misc/bind/stop_irc
%%PORTDOCS%%share/bx/help/4_Misc/bind/swap_last_window
%%PORTDOCS%%share/bx/help/4_Misc/bind/swap_next_window
%%PORTDOCS%%share/bx/help/4_Misc/bind/swap_previous_window
%%PORTDOCS%%share/bx/help/4_Misc/bind/switch_channels
%%PORTDOCS%%share/bx/help/4_Misc/bind/toggle_insert_mode
%%PORTDOCS%%share/bx/help/4_Misc/bind/toggle_stop_screen
%%PORTDOCS%%share/bx/help/4_Misc/bind/transpose_characters
%%PORTDOCS%%share/bx/help/4_Misc/bind/type_text
%%PORTDOCS%%share/bx/help/4_Misc/bind/unclear_screen
%%PORTDOCS%%share/bx/help/4_Misc/bind/underline
%%PORTDOCS%%share/bx/help/4_Misc/bind/unstop_all_windows
%%PORTDOCS%%share/bx/help/4_Misc/bind/yank_from_cutbuffer
%%PORTDOCS%%share/bx/help/4_Misc/cd
%%PORTDOCS%%share/bx/help/4_Misc/clear
%%PORTDOCS%%share/bx/help/4_Misc/digraph
%%PORTDOCS%%share/bx/help/4_Misc/encrypt
%%PORTDOCS%%share/bx/help/4_Misc/history
%%PORTDOCS%%share/bx/help/4_Misc/hostname
%%PORTDOCS%%share/bx/help/4_Misc/ircuser
%%PORTDOCS%%share/bx/help/4_Misc/mesg
%%PORTDOCS%%share/bx/help/4_Misc/mlist
%%PORTDOCS%%share/bx/help/4_Misc/mload
%%PORTDOCS%%share/bx/help/4_Misc/note
%%PORTDOCS%%share/bx/help/4_Misc/rbind
%%PORTDOCS%%share/bx/help/4_Misc/realname
%%PORTDOCS%%share/bx/help/4_Misc/set/always_split_biggest
%%PORTDOCS%%share/bx/help/4_Misc/set/auto_new_nick
%%PORTDOCS%%share/bx/help/4_Misc/set/auto_reconnect_delay
%%PORTDOCS%%share/bx/help/4_Misc/set/auto_rejoin
%%PORTDOCS%%share/bx/help/4_Misc/set/auto_rejoin_delay
%%PORTDOCS%%share/bx/help/4_Misc/set/auto_unmark_away
%%PORTDOCS%%share/bx/help/4_Misc/set/auto_whowas
%%PORTDOCS%%share/bx/help/4_Misc/set/banner
%%PORTDOCS%%share/bx/help/4_Misc/set/banner_expand
%%PORTDOCS%%share/bx/help/4_Misc/set/beep
%%PORTDOCS%%share/bx/help/4_Misc/set/beep_max
%%PORTDOCS%%share/bx/help/4_Misc/set/beep_on_msg
%%PORTDOCS%%share/bx/help/4_Misc/set/beep_when_away
%%PORTDOCS%%share/bx/help/4_Misc/set/blink_video
%%PORTDOCS%%share/bx/help/4_Misc/set/bold_video
%%PORTDOCS%%share/bx/help/4_Misc/set/channel_name_width
%%PORTDOCS%%share/bx/help/4_Misc/set/client_information
%%PORTDOCS%%share/bx/help/4_Misc/set/clock
%%PORTDOCS%%share/bx/help/4_Misc/set/clock_24hour
%%PORTDOCS%%share/bx/help/4_Misc/set/clock_alarm
%%PORTDOCS%%share/bx/help/4_Misc/set/clock_format
%%PORTDOCS%%share/bx/help/4_Misc/set/cmdchars
%%PORTDOCS%%share/bx/help/4_Misc/set/color
%%PORTDOCS%%share/bx/help/4_Misc/set/command_mode
%%PORTDOCS%%share/bx/help/4_Misc/set/comment_hack
%%PORTDOCS%%share/bx/help/4_Misc/set/connect_timeout
%%PORTDOCS%%share/bx/help/4_Misc/set/continued_line
%%PORTDOCS%%share/bx/help/4_Misc/set/cpu_saver_after
%%PORTDOCS%%share/bx/help/4_Misc/set/cpu_saver_every
%%PORTDOCS%%share/bx/help/4_Misc/set/current_window_level
%%PORTDOCS%%share/bx/help/4_Misc/set/dcc_auto_timeout
%%PORTDOCS%%share/bx/help/4_Misc/set/dcc_long_pathnames
%%PORTDOCS%%share/bx/help/4_Misc/set/dcc_sliding_window
%%PORTDOCS%%share/bx/help/4_Misc/set/dcc_store_path
%%PORTDOCS%%share/bx/help/4_Misc/set/debug
%%PORTDOCS%%share/bx/help/4_Misc/set/dispatch_unknown_command
%%PORTDOCS%%share/bx/help/4_Misc/set/display
%%PORTDOCS%%share/bx/help/4_Misc/set/display_ansi
%%PORTDOCS%%share/bx/help/4_Misc/set/do_notify_immediately
%%PORTDOCS%%share/bx/help/4_Misc/set/eight_bit_characters
%%PORTDOCS%%share/bx/help/4_Misc/set/encrypt_program
%%PORTDOCS%%share/bx/help/4_Misc/set/floating_point_math
%%PORTDOCS%%share/bx/help/4_Misc/set/flood_after
%%PORTDOCS%%share/bx/help/4_Misc/set/flood_rate
%%PORTDOCS%%share/bx/help/4_Misc/set/flood_users
%%PORTDOCS%%share/bx/help/4_Misc/set/flood_warning
%%PORTDOCS%%share/bx/help/4_Misc/set/full_status_line
%%PORTDOCS%%share/bx/help/4_Misc/set/help_pager
%%PORTDOCS%%share/bx/help/4_Misc/set/help_path
%%PORTDOCS%%share/bx/help/4_Misc/set/help_prompt
%%PORTDOCS%%share/bx/help/4_Misc/set/help_window
%%PORTDOCS%%share/bx/help/4_Misc/set/hide_private_channels
%%PORTDOCS%%share/bx/help/4_Misc/set/high_bit_escape
%%PORTDOCS%%share/bx/help/4_Misc/set/highlight_char
%%PORTDOCS%%share/bx/help/4_Misc/set/history
%%PORTDOCS%%share/bx/help/4_Misc/set/history_file
%%PORTDOCS%%share/bx/help/4_Misc/set/hold_mode
%%PORTDOCS%%share/bx/help/4_Misc/set/indent
%%PORTDOCS%%share/bx/help/4_Misc/set/input_aliases
%%PORTDOCS%%share/bx/help/4_Misc/set/input_prompt
%%PORTDOCS%%share/bx/help/4_Misc/set/insert_mode
%%PORTDOCS%%share/bx/help/4_Misc/set/inverse_video
%%PORTDOCS%%share/bx/help/4_Misc/set/lastlog
%%PORTDOCS%%share/bx/help/4_Misc/set/lastlog_level
%%PORTDOCS%%share/bx/help/4_Misc/set/load_path
%%PORTDOCS%%share/bx/help/4_Misc/set/log
%%PORTDOCS%%share/bx/help/4_Misc/set/logfile
%%PORTDOCS%%share/bx/help/4_Misc/set/mail
%%PORTDOCS%%share/bx/help/4_Misc/set/max_recursions
%%PORTDOCS%%share/bx/help/4_Misc/set/menu
%%PORTDOCS%%share/bx/help/4_Misc/set/mirc_broken_dcc_resume
%%PORTDOCS%%share/bx/help/4_Misc/set/mode_stripper
%%PORTDOCS%%share/bx/help/4_Misc/set/nd_space_max
%%PORTDOCS%%share/bx/help/4_Misc/set/no_control_log
%%PORTDOCS%%share/bx/help/4_Misc/set/no_ctcp_flood
%%PORTDOCS%%share/bx/help/4_Misc/set/no_fail_disconnect
%%PORTDOCS%%share/bx/help/4_Misc/set/notify_handler
%%PORTDOCS%%share/bx/help/4_Misc/set/notify_interval
%%PORTDOCS%%share/bx/help/4_Misc/set/notify_level
%%PORTDOCS%%share/bx/help/4_Misc/set/notify_on_termination
%%PORTDOCS%%share/bx/help/4_Misc/set/notify_userhost_automatic
%%PORTDOCS%%share/bx/help/4_Misc/set/novice
%%PORTDOCS%%share/bx/help/4_Misc/set/num_of_whowas
%%PORTDOCS%%share/bx/help/4_Misc/set/pad_char
%%PORTDOCS%%share/bx/help/4_Misc/set/quit_message
%%PORTDOCS%%share/bx/help/4_Misc/set/realname
%%PORTDOCS%%share/bx/help/4_Misc/set/reverse_status_line
%%PORTDOCS%%share/bx/help/4_Misc/set/reverse_video
%%PORTDOCS%%share/bx/help/4_Misc/set/screen_options
%%PORTDOCS%%share/bx/help/4_Misc/set/scroll
%%PORTDOCS%%share/bx/help/4_Misc/set/scroll_lines
%%PORTDOCS%%share/bx/help/4_Misc/set/scrollback
%%PORTDOCS%%share/bx/help/4_Misc/set/scrollback_ratio
%%PORTDOCS%%share/bx/help/4_Misc/set/security
%%PORTDOCS%%share/bx/help/4_Misc/set/send_ignore_msg
%%PORTDOCS%%share/bx/help/4_Misc/set/set
%%PORTDOCS%%share/bx/help/4_Misc/set/shell
%%PORTDOCS%%share/bx/help/4_Misc/set/shell_flags
%%PORTDOCS%%share/bx/help/4_Misc/set/shell_limit
%%PORTDOCS%%share/bx/help/4_Misc/set/show_away_once
%%PORTDOCS%%share/bx/help/4_Misc/set/show_channel_names
%%PORTDOCS%%share/bx/help/4_Misc/set/show_end_of_msgs
%%PORTDOCS%%share/bx/help/4_Misc/set/show_numerics
%%PORTDOCS%%share/bx/help/4_Misc/set/show_status_all
%%PORTDOCS%%share/bx/help/4_Misc/set/show_who_hopcount
%%PORTDOCS%%share/bx/help/4_Misc/set/status_away
%%PORTDOCS%%share/bx/help/4_Misc/set/status_channel
%%PORTDOCS%%share/bx/help/4_Misc/set/status_chanop
%%PORTDOCS%%share/bx/help/4_Misc/set/status_clock
%%PORTDOCS%%share/bx/help/4_Misc/set/status_does_expandos
%%PORTDOCS%%share/bx/help/4_Misc/set/status_format
%%PORTDOCS%%share/bx/help/4_Misc/set/status_hold
%%PORTDOCS%%share/bx/help/4_Misc/set/status_hold_lines
%%PORTDOCS%%share/bx/help/4_Misc/set/status_insert
%%PORTDOCS%%share/bx/help/4_Misc/set/status_mail
%%PORTDOCS%%share/bx/help/4_Misc/set/status_mode
%%PORTDOCS%%share/bx/help/4_Misc/set/status_nick
%%PORTDOCS%%share/bx/help/4_Misc/set/status_no_repeat
%%PORTDOCS%%share/bx/help/4_Misc/set/status_notify
%%PORTDOCS%%share/bx/help/4_Misc/set/status_oper
%%PORTDOCS%%share/bx/help/4_Misc/set/status_overwrite
%%PORTDOCS%%share/bx/help/4_Misc/set/status_query
%%PORTDOCS%%share/bx/help/4_Misc/set/status_scrollback
%%PORTDOCS%%share/bx/help/4_Misc/set/status_server
%%PORTDOCS%%share/bx/help/4_Misc/set/status_truncate_rhs
%%PORTDOCS%%share/bx/help/4_Misc/set/status_umode
%%PORTDOCS%%share/bx/help/4_Misc/set/status_user
%%PORTDOCS%%share/bx/help/4_Misc/set/status_voice
%%PORTDOCS%%share/bx/help/4_Misc/set/status_window
%%PORTDOCS%%share/bx/help/4_Misc/set/suppress_from_remote_server
%%PORTDOCS%%share/bx/help/4_Misc/set/suppress_server_motd
%%PORTDOCS%%share/bx/help/4_Misc/set/tab
%%PORTDOCS%%share/bx/help/4_Misc/set/tab_max
%%PORTDOCS%%share/bx/help/4_Misc/set/underline_video
%%PORTDOCS%%share/bx/help/4_Misc/set/user_information
%%PORTDOCS%%share/bx/help/4_Misc/set/verbose_ctcp
%%PORTDOCS%%share/bx/help/4_Misc/set/warn_of_ignores
%%PORTDOCS%%share/bx/help/4_Misc/set/xterm
%%PORTDOCS%%share/bx/help/4_Misc/set/xterm_options
%%PORTDOCS%%share/bx/help/4_Misc/summon
%%PORTDOCS%%share/bx/help/4_Misc/unclear
%%PORTDOCS%%share/bx/help/4_Misc/which
%%PORTDOCS%%share/bx/help/4_Misc/window/add
%%PORTDOCS%%share/bx/help/4_Misc/window/back
%%PORTDOCS%%share/bx/help/4_Misc/window/balance
%%PORTDOCS%%share/bx/help/4_Misc/window/beep_always
%%PORTDOCS%%share/bx/help/4_Misc/window/bind
%%PORTDOCS%%share/bx/help/4_Misc/window/channel
%%PORTDOCS%%share/bx/help/4_Misc/window/create
%%PORTDOCS%%share/bx/help/4_Misc/window/delete
%%PORTDOCS%%share/bx/help/4_Misc/window/discon
%%PORTDOCS%%share/bx/help/4_Misc/window/double
%%PORTDOCS%%share/bx/help/4_Misc/window/echo
%%PORTDOCS%%share/bx/help/4_Misc/window/fixed
%%PORTDOCS%%share/bx/help/4_Misc/window/font
%%PORTDOCS%%share/bx/help/4_Misc/window/goto
%%PORTDOCS%%share/bx/help/4_Misc/window/grow
%%PORTDOCS%%share/bx/help/4_Misc/window/hide
%%PORTDOCS%%share/bx/help/4_Misc/window/hide_others
%%PORTDOCS%%share/bx/help/4_Misc/window/hold_mode
%%PORTDOCS%%share/bx/help/4_Misc/window/kill
%%PORTDOCS%%share/bx/help/4_Misc/window/kill_others
%%PORTDOCS%%share/bx/help/4_Misc/window/killswap
%%PORTDOCS%%share/bx/help/4_Misc/window/last
%%PORTDOCS%%share/bx/help/4_Misc/window/lastlog
%%PORTDOCS%%share/bx/help/4_Misc/window/lastlog_level
%%PORTDOCS%%share/bx/help/4_Misc/window/level
%%PORTDOCS%%share/bx/help/4_Misc/window/list
%%PORTDOCS%%share/bx/help/4_Misc/window/log
%%PORTDOCS%%share/bx/help/4_Misc/window/logfile
%%PORTDOCS%%share/bx/help/4_Misc/window/menu
%%PORTDOCS%%share/bx/help/4_Misc/window/move
%%PORTDOCS%%share/bx/help/4_Misc/window/name
%%PORTDOCS%%share/bx/help/4_Misc/window/new
%%PORTDOCS%%share/bx/help/4_Misc/window/next
%%PORTDOCS%%share/bx/help/4_Misc/window/noserv
%%PORTDOCS%%share/bx/help/4_Misc/window/notify
%%PORTDOCS%%share/bx/help/4_Misc/window/notify_level
%%PORTDOCS%%share/bx/help/4_Misc/window/number
%%PORTDOCS%%share/bx/help/4_Misc/window/pop
%%PORTDOCS%%share/bx/help/4_Misc/window/previous
%%PORTDOCS%%share/bx/help/4_Misc/window/prompt
%%PORTDOCS%%share/bx/help/4_Misc/window/push
%%PORTDOCS%%share/bx/help/4_Misc/window/query
%%PORTDOCS%%share/bx/help/4_Misc/window/refnum
%%PORTDOCS%%share/bx/help/4_Misc/window/remove
%%PORTDOCS%%share/bx/help/4_Misc/window/scratch
%%PORTDOCS%%share/bx/help/4_Misc/window/scroll
%%PORTDOCS%%share/bx/help/4_Misc/window/server
%%PORTDOCS%%share/bx/help/4_Misc/window/setwindowpos
%%PORTDOCS%%share/bx/help/4_Misc/window/show
%%PORTDOCS%%share/bx/help/4_Misc/window/shrink
%%PORTDOCS%%share/bx/help/4_Misc/window/size
%%PORTDOCS%%share/bx/help/4_Misc/window/skip
%%PORTDOCS%%share/bx/help/4_Misc/window/stack
%%PORTDOCS%%share/bx/help/4_Misc/window/status_special
%%PORTDOCS%%share/bx/help/4_Misc/window/swap
%%PORTDOCS%%share/bx/help/4_Misc/window/unbind
%%PORTDOCS%%share/bx/help/4_Misc/window/window
%%PORTDOCS%%share/bx/help/5_Programming/5_Programming
%%PORTDOCS%%share/bx/help/5_Programming/alias
%%PORTDOCS%%share/bx/help/5_Programming/assign
%%PORTDOCS%%share/bx/help/5_Programming/bless
%%PORTDOCS%%share/bx/help/5_Programming/break
%%PORTDOCS%%share/bx/help/5_Programming/call
%%PORTDOCS%%share/bx/help/5_Programming/comment
%%PORTDOCS%%share/bx/help/5_Programming/continue
%%PORTDOCS%%share/bx/help/5_Programming/do
%%PORTDOCS%%share/bx/help/5_Programming/dump
%%PORTDOCS%%share/bx/help/5_Programming/echo
%%PORTDOCS%%share/bx/help/5_Programming/eval
%%PORTDOCS%%share/bx/help/5_Programming/exec
%%PORTDOCS%%share/bx/help/5_Programming/fe
%%PORTDOCS%%share/bx/help/5_Programming/fec
%%PORTDOCS%%share/bx/help/5_Programming/filedialog
%%PORTDOCS%%share/bx/help/5_Programming/fontdialog
%%PORTDOCS%%share/bx/help/5_Programming/for
%%PORTDOCS%%share/bx/help/5_Programming/foreach
%%PORTDOCS%%share/bx/help/5_Programming/hook
%%PORTDOCS%%share/bx/help/5_Programming/if
%%PORTDOCS%%share/bx/help/5_Programming/input
%%PORTDOCS%%share/bx/help/5_Programming/load
%%PORTDOCS%%share/bx/help/5_Programming/loaddll
%%PORTDOCS%%share/bx/help/5_Programming/loadtcl
%%PORTDOCS%%share/bx/help/5_Programming/local
%%PORTDOCS%%share/bx/help/5_Programming/menu
%%PORTDOCS%%share/bx/help/5_Programming/menuitem
%%PORTDOCS%%share/bx/help/5_Programming/on/action
%%PORTDOCS%%share/bx/help/5_Programming/on/channel_nick
%%PORTDOCS%%share/bx/help/5_Programming/on/channel_signoff
%%PORTDOCS%%share/bx/help/5_Programming/on/connect
%%PORTDOCS%%share/bx/help/5_Programming/on/ctcp
%%PORTDOCS%%share/bx/help/5_Programming/on/ctcp_reply
%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_chat
%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_connect
%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_list
%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_lost
%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_offer
%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_raw
%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_request
%%PORTDOCS%%share/bx/help/5_Programming/on/disconnect
%%PORTDOCS%%share/bx/help/5_Programming/on/encrypted_notice
%%PORTDOCS%%share/bx/help/5_Programming/on/encrypted_privmsg
%%PORTDOCS%%share/bx/help/5_Programming/on/exec
%%PORTDOCS%%share/bx/help/5_Programming/on/exec_errors
%%PORTDOCS%%share/bx/help/5_Programming/on/exec_exit
%%PORTDOCS%%share/bx/help/5_Programming/on/exec_prompt
%%PORTDOCS%%share/bx/help/5_Programming/on/exit
%%PORTDOCS%%share/bx/help/5_Programming/on/flood
%%PORTDOCS%%share/bx/help/5_Programming/on/help
%%PORTDOCS%%share/bx/help/5_Programming/on/hook
%%PORTDOCS%%share/bx/help/5_Programming/on/idle
%%PORTDOCS%%share/bx/help/5_Programming/on/input
%%PORTDOCS%%share/bx/help/5_Programming/on/invite
%%PORTDOCS%%share/bx/help/5_Programming/on/join
%%PORTDOCS%%share/bx/help/5_Programming/on/kick
%%PORTDOCS%%share/bx/help/5_Programming/on/kill
%%PORTDOCS%%share/bx/help/5_Programming/on/leave
%%PORTDOCS%%share/bx/help/5_Programming/on/list
%%PORTDOCS%%share/bx/help/5_Programming/on/mail
%%PORTDOCS%%share/bx/help/5_Programming/on/mode
%%PORTDOCS%%share/bx/help/5_Programming/on/mode_stripped
%%PORTDOCS%%share/bx/help/5_Programming/on/msg
%%PORTDOCS%%share/bx/help/5_Programming/on/msg_group
%%PORTDOCS%%share/bx/help/5_Programming/on/names
%%PORTDOCS%%share/bx/help/5_Programming/on/nickname
%%PORTDOCS%%share/bx/help/5_Programming/on/note
%%PORTDOCS%%share/bx/help/5_Programming/on/notice
%%PORTDOCS%%share/bx/help/5_Programming/on/notify_signoff
%%PORTDOCS%%share/bx/help/5_Programming/on/notify_signon
%%PORTDOCS%%share/bx/help/5_Programming/on/odd_server_stuff
%%PORTDOCS%%share/bx/help/5_Programming/on/on
%%PORTDOCS%%share/bx/help/5_Programming/on/oper_notice
%%PORTDOCS%%share/bx/help/5_Programming/on/pong
%%PORTDOCS%%share/bx/help/5_Programming/on/public
%%PORTDOCS%%share/bx/help/5_Programming/on/public_msg
%%PORTDOCS%%share/bx/help/5_Programming/on/public_notice
%%PORTDOCS%%share/bx/help/5_Programming/on/public_other
%%PORTDOCS%%share/bx/help/5_Programming/on/raw_irc
%%PORTDOCS%%share/bx/help/5_Programming/on/redirect
%%PORTDOCS%%share/bx/help/5_Programming/on/send_action
%%PORTDOCS%%share/bx/help/5_Programming/on/send_ctcp
%%PORTDOCS%%share/bx/help/5_Programming/on/send_dcc_chat
%%PORTDOCS%%share/bx/help/5_Programming/on/send_msg
%%PORTDOCS%%share/bx/help/5_Programming/on/send_notice
%%PORTDOCS%%share/bx/help/5_Programming/on/send_public
%%PORTDOCS%%share/bx/help/5_Programming/on/send_to_server
%%PORTDOCS%%share/bx/help/5_Programming/on/server_lost
%%PORTDOCS%%share/bx/help/5_Programming/on/server_notice
%%PORTDOCS%%share/bx/help/5_Programming/on/set
%%PORTDOCS%%share/bx/help/5_Programming/on/signoff
%%PORTDOCS%%share/bx/help/5_Programming/on/silence
%%PORTDOCS%%share/bx/help/5_Programming/on/status_update
%%PORTDOCS%%share/bx/help/5_Programming/on/timer
%%PORTDOCS%%share/bx/help/5_Programming/on/topic
%%PORTDOCS%%share/bx/help/5_Programming/on/unload
%%PORTDOCS%%share/bx/help/5_Programming/on/wall
%%PORTDOCS%%share/bx/help/5_Programming/on/wallop
%%PORTDOCS%%share/bx/help/5_Programming/on/who
%%PORTDOCS%%share/bx/help/5_Programming/on/widelist
%%PORTDOCS%%share/bx/help/5_Programming/on/window
%%PORTDOCS%%share/bx/help/5_Programming/on/window_create
%%PORTDOCS%%share/bx/help/5_Programming/on/window_kill
%%PORTDOCS%%share/bx/help/5_Programming/on/yell
%%PORTDOCS%%share/bx/help/5_Programming/package
%%PORTDOCS%%share/bx/help/5_Programming/parsekey
%%PORTDOCS%%share/bx/help/5_Programming/pmpaste
%%PORTDOCS%%share/bx/help/5_Programming/pop
%%PORTDOCS%%share/bx/help/5_Programming/popupmenu
%%PORTDOCS%%share/bx/help/5_Programming/popupmsg
%%PORTDOCS%%share/bx/help/5_Programming/pretend
%%PORTDOCS%%share/bx/help/5_Programming/properties
%%PORTDOCS%%share/bx/help/5_Programming/push
%%PORTDOCS%%share/bx/help/5_Programming/queue
%%PORTDOCS%%share/bx/help/5_Programming/quote
%%PORTDOCS%%share/bx/help/5_Programming/redirect
%%PORTDOCS%%share/bx/help/5_Programming/repeat
%%PORTDOCS%%share/bx/help/5_Programming/return
%%PORTDOCS%%share/bx/help/5_Programming/save
%%PORTDOCS%%share/bx/help/5_Programming/saveirc
%%PORTDOCS%%share/bx/help/5_Programming/send
%%PORTDOCS%%share/bx/help/5_Programming/sendline
%%PORTDOCS%%share/bx/help/5_Programming/setenv
%%PORTDOCS%%share/bx/help/5_Programming/shook
%%PORTDOCS%%share/bx/help/5_Programming/sleep
%%PORTDOCS%%share/bx/help/5_Programming/stack
%%PORTDOCS%%share/bx/help/5_Programming/stub
%%PORTDOCS%%share/bx/help/5_Programming/submenu
%%PORTDOCS%%share/bx/help/5_Programming/switch
%%PORTDOCS%%share/bx/help/5_Programming/timer
%%PORTDOCS%%share/bx/help/5_Programming/type
%%PORTDOCS%%share/bx/help/5_Programming/unload
%%PORTDOCS%%share/bx/help/5_Programming/unshift
%%PORTDOCS%%share/bx/help/5_Programming/usleep
%%PORTDOCS%%share/bx/help/5_Programming/wait
%%PORTDOCS%%share/bx/help/5_Programming/while
%%PORTDOCS%%share/bx/help/5_Programming/xecho
%%PORTDOCS%%share/bx/help/5_Programming/xeval
%%PORTDOCS%%share/bx/help/5_Programming/xtype
%%PORTDOCS%%share/bx/help/6_Functions/6_Functions
%%PORTDOCS%%share/bx/help/6_Functions/absstrlen
%%PORTDOCS%%share/bx/help/6_Functions/addtabkey
%%PORTDOCS%%share/bx/help/6_Functions/after
%%PORTDOCS%%share/bx/help/6_Functions/afterw
%%PORTDOCS%%share/bx/help/6_Functions/ajoinitem
%%PORTDOCS%%share/bx/help/6_Functions/aliasctl
%%PORTDOCS%%share/bx/help/6_Functions/annoy
%%PORTDOCS%%share/bx/help/6_Functions/ascii
%%PORTDOCS%%share/bx/help/6_Functions/before
%%PORTDOCS%%share/bx/help/6_Functions/bitchx
%%PORTDOCS%%share/bx/help/6_Functions/center
%%PORTDOCS%%share/bx/help/6_Functions/cexist
%%PORTDOCS%%share/bx/help/6_Functions/chanmode
%%PORTDOCS%%share/bx/help/6_Functions/channel
%%PORTDOCS%%share/bx/help/6_Functions/chmod
%%PORTDOCS%%share/bx/help/6_Functions/chngw
%%PORTDOCS%%share/bx/help/6_Functions/chop
%%PORTDOCS%%share/bx/help/6_Functions/chops
%%PORTDOCS%%share/bx/help/6_Functions/chr
%%PORTDOCS%%share/bx/help/6_Functions/close
%%PORTDOCS%%share/bx/help/6_Functions/common
%%PORTDOCS%%share/bx/help/6_Functions/connect
%%PORTDOCS%%share/bx/help/6_Functions/convert
%%PORTDOCS%%share/bx/help/6_Functions/copattern
%%PORTDOCS%%share/bx/help/6_Functions/count
%%PORTDOCS%%share/bx/help/6_Functions/cparse
%%PORTDOCS%%share/bx/help/6_Functions/crypt
%%PORTDOCS%%share/bx/help/6_Functions/curpos
%%PORTDOCS%%share/bx/help/6_Functions/currchans
%%PORTDOCS%%share/bx/help/6_Functions/decode
%%PORTDOCS%%share/bx/help/6_Functions/delarray
%%PORTDOCS%%share/bx/help/6_Functions/delitem
%%PORTDOCS%%share/bx/help/6_Functions/deuhc
%%PORTDOCS%%share/bx/help/6_Functions/encode
%%PORTDOCS%%share/bx/help/6_Functions/eof
%%PORTDOCS%%share/bx/help/6_Functions/epic
%%PORTDOCS%%share/bx/help/6_Functions/fexist
%%PORTDOCS%%share/bx/help/6_Functions/filter
%%PORTDOCS%%share/bx/help/6_Functions/finditem
%%PORTDOCS%%share/bx/help/6_Functions/findw
%%PORTDOCS%%share/bx/help/6_Functions/fnexist
%%PORTDOCS%%share/bx/help/6_Functions/fromw
%%PORTDOCS%%share/bx/help/6_Functions/fsize
%%PORTDOCS%%share/bx/help/6_Functions/ftime
%%PORTDOCS%%share/bx/help/6_Functions/geom
%%PORTDOCS%%share/bx/help/6_Functions/getarrays
%%PORTDOCS%%share/bx/help/6_Functions/getenv
%%PORTDOCS%%share/bx/help/6_Functions/getgid
%%PORTDOCS%%share/bx/help/6_Functions/getitem
%%PORTDOCS%%share/bx/help/6_Functions/getlogin
%%PORTDOCS%%share/bx/help/6_Functions/getmatches
%%PORTDOCS%%share/bx/help/6_Functions/getopt
%%PORTDOCS%%share/bx/help/6_Functions/getpgrp
%%PORTDOCS%%share/bx/help/6_Functions/getsets
%%PORTDOCS%%share/bx/help/6_Functions/gettmatch
%%PORTDOCS%%share/bx/help/6_Functions/getuid
%%PORTDOCS%%share/bx/help/6_Functions/glob
%%PORTDOCS%%share/bx/help/6_Functions/gui
%%PORTDOCS%%share/bx/help/6_Functions/idle
%%PORTDOCS%%share/bx/help/6_Functions/ifindfirst
%%PORTDOCS%%share/bx/help/6_Functions/ifinditem
%%PORTDOCS%%share/bx/help/6_Functions/igetmatches
%%PORTDOCS%%share/bx/help/6_Functions/igmask
%%PORTDOCS%%share/bx/help/6_Functions/igtype
%%PORTDOCS%%share/bx/help/6_Functions/index
%%PORTDOCS%%share/bx/help/6_Functions/indextoitem
%%PORTDOCS%%share/bx/help/6_Functions/info
%%PORTDOCS%%share/bx/help/6_Functions/insertw
%%PORTDOCS%%share/bx/help/6_Functions/iptoname
%%PORTDOCS%%share/bx/help/6_Functions/irclib
%%PORTDOCS%%share/bx/help/6_Functions/isalpha
%%PORTDOCS%%share/bx/help/6_Functions/ischannel
%%PORTDOCS%%share/bx/help/6_Functions/ischanop
%%PORTDOCS%%share/bx/help/6_Functions/ischanvoice
%%PORTDOCS%%share/bx/help/6_Functions/isconnected
%%PORTDOCS%%share/bx/help/6_Functions/iscurchan
%%PORTDOCS%%share/bx/help/6_Functions/isdigit
%%PORTDOCS%%share/bx/help/6_Functions/isnumber
%%PORTDOCS%%share/bx/help/6_Functions/itemtoindex
%%PORTDOCS%%share/bx/help/6_Functions/jot
%%PORTDOCS%%share/bx/help/6_Functions/key
%%PORTDOCS%%share/bx/help/6_Functions/lastclickline
%%PORTDOCS%%share/bx/help/6_Functions/lastclickx
%%PORTDOCS%%share/bx/help/6_Functions/lastclicky
%%PORTDOCS%%share/bx/help/6_Functions/lastserver
%%PORTDOCS%%share/bx/help/6_Functions/left
%%PORTDOCS%%share/bx/help/6_Functions/leftpc
%%PORTDOCS%%share/bx/help/6_Functions/leftw
%%PORTDOCS%%share/bx/help/6_Functions/listarray
%%PORTDOCS%%share/bx/help/6_Functions/listen
%%PORTDOCS%%share/bx/help/6_Functions/mask
%%PORTDOCS%%share/bx/help/6_Functions/match
%%PORTDOCS%%share/bx/help/6_Functions/matchitem
%%PORTDOCS%%share/bx/help/6_Functions/menucontrol
%%PORTDOCS%%share/bx/help/6_Functions/mid
%%PORTDOCS%%share/bx/help/6_Functions/midw
%%PORTDOCS%%share/bx/help/6_Functions/mkdir
%%PORTDOCS%%share/bx/help/6_Functions/msar
%%PORTDOCS%%share/bx/help/6_Functions/mychannels
%%PORTDOCS%%share/bx/help/6_Functions/myservers
%%PORTDOCS%%share/bx/help/6_Functions/nametoip
%%PORTDOCS%%share/bx/help/6_Functions/nohighlight
%%PORTDOCS%%share/bx/help/6_Functions/notify
%%PORTDOCS%%share/bx/help/6_Functions/numarrays
%%PORTDOCS%%share/bx/help/6_Functions/numitems
%%PORTDOCS%%share/bx/help/6_Functions/numonchannel
%%PORTDOCS%%share/bx/help/6_Functions/numwords
%%PORTDOCS%%share/bx/help/6_Functions/onchannel
%%PORTDOCS%%share/bx/help/6_Functions/open
%%PORTDOCS%%share/bx/help/6_Functions/pad
%%PORTDOCS%%share/bx/help/6_Functions/pattern
%%PORTDOCS%%share/bx/help/6_Functions/pid
%%PORTDOCS%%share/bx/help/6_Functions/pipe
%%PORTDOCS%%share/bx/help/6_Functions/pop
%%PORTDOCS%%share/bx/help/6_Functions/ppid
%%PORTDOCS%%share/bx/help/6_Functions/printlen
%%PORTDOCS%%share/bx/help/6_Functions/querywin
%%PORTDOCS%%share/bx/help/6_Functions/rand
%%PORTDOCS%%share/bx/help/6_Functions/randread
%%PORTDOCS%%share/bx/help/6_Functions/read
%%PORTDOCS%%share/bx/help/6_Functions/regex
%%PORTDOCS%%share/bx/help/6_Functions/remw
%%PORTDOCS%%share/bx/help/6_Functions/remws
%%PORTDOCS%%share/bx/help/6_Functions/rename
%%PORTDOCS%%share/bx/help/6_Functions/repeat
%%PORTDOCS%%share/bx/help/6_Functions/rest
%%PORTDOCS%%share/bx/help/6_Functions/restw
%%PORTDOCS%%share/bx/help/6_Functions/reverse
%%PORTDOCS%%share/bx/help/6_Functions/revw
%%PORTDOCS%%share/bx/help/6_Functions/rigmask
%%PORTDOCS%%share/bx/help/6_Functions/rigtype
%%PORTDOCS%%share/bx/help/6_Functions/rmdir
%%PORTDOCS%%share/bx/help/6_Functions/sar
%%PORTDOCS%%share/bx/help/6_Functions/servergroup
%%PORTDOCS%%share/bx/help/6_Functions/servername
%%PORTDOCS%%share/bx/help/6_Functions/servernick
%%PORTDOCS%%share/bx/help/6_Functions/serverport
%%PORTDOCS%%share/bx/help/6_Functions/servnum
%%PORTDOCS%%share/bx/help/6_Functions/servports
%%PORTDOCS%%share/bx/help/6_Functions/setitem
%%PORTDOCS%%share/bx/help/6_Functions/shift
%%PORTDOCS%%share/bx/help/6_Functions/sort
%%PORTDOCS%%share/bx/help/6_Functions/splice
%%PORTDOCS%%share/bx/help/6_Functions/split
%%PORTDOCS%%share/bx/help/6_Functions/srand
%%PORTDOCS%%share/bx/help/6_Functions/status
%%PORTDOCS%%share/bx/help/6_Functions/stime
%%PORTDOCS%%share/bx/help/6_Functions/strchr
%%PORTDOCS%%share/bx/help/6_Functions/strftime
%%PORTDOCS%%share/bx/help/6_Functions/strip
%%PORTDOCS%%share/bx/help/6_Functions/stripansi
%%PORTDOCS%%share/bx/help/6_Functions/stripansicodes
%%PORTDOCS%%share/bx/help/6_Functions/stripc
%%PORTDOCS%%share/bx/help/6_Functions/strlen
%%PORTDOCS%%share/bx/help/6_Functions/strrchr
%%PORTDOCS%%share/bx/help/6_Functions/substr
%%PORTDOCS%%share/bx/help/6_Functions/tdiff
%%PORTDOCS%%share/bx/help/6_Functions/time
%%PORTDOCS%%share/bx/help/6_Functions/tolower
%%PORTDOCS%%share/bx/help/6_Functions/topic
%%PORTDOCS%%share/bx/help/6_Functions/toupper
%%PORTDOCS%%share/bx/help/6_Functions/tow
%%PORTDOCS%%share/bx/help/6_Functions/tr
%%PORTDOCS%%share/bx/help/6_Functions/trunc
%%PORTDOCS%%share/bx/help/6_Functions/twiddle
%%PORTDOCS%%share/bx/help/6_Functions/uhc
%%PORTDOCS%%share/bx/help/6_Functions/umask
%%PORTDOCS%%share/bx/help/6_Functions/uname
%%PORTDOCS%%share/bx/help/6_Functions/uniq
%%PORTDOCS%%share/bx/help/6_Functions/unlink
%%PORTDOCS%%share/bx/help/6_Functions/unshift
%%PORTDOCS%%share/bx/help/6_Functions/userhost
%%PORTDOCS%%share/bx/help/6_Functions/usermode
%%PORTDOCS%%share/bx/help/6_Functions/utime
%%PORTDOCS%%share/bx/help/6_Functions/version
%%PORTDOCS%%share/bx/help/6_Functions/which
%%PORTDOCS%%share/bx/help/6_Functions/winbound
%%PORTDOCS%%share/bx/help/6_Functions/winchan
%%PORTDOCS%%share/bx/help/6_Functions/winitem
%%PORTDOCS%%share/bx/help/6_Functions/winlevel
%%PORTDOCS%%share/bx/help/6_Functions/winnam
%%PORTDOCS%%share/bx/help/6_Functions/winnicklist
%%PORTDOCS%%share/bx/help/6_Functions/winnum
%%PORTDOCS%%share/bx/help/6_Functions/winrefs
%%PORTDOCS%%share/bx/help/6_Functions/winserv
%%PORTDOCS%%share/bx/help/6_Functions/winsize
%%PORTDOCS%%share/bx/help/6_Functions/winvisible
%%PORTDOCS%%share/bx/help/6_Functions/word
%%PORTDOCS%%share/bx/help/6_Functions/write
%%PORTDOCS%%share/bx/help/6_Functions/writeb
%%PORTDOCS%%share/bx/help/6_Functions/ovserver
%%PORTDOCS%%share/bx/help/7_Docs/7_Docs
%%PORTDOCS%%share/bx/help/7_Docs/About_BitchX
%%PORTDOCS%%share/bx/help/7_Docs/Arrays
%%PORTDOCS%%share/bx/help/7_Docs/Command_Line
%%PORTDOCS%%share/bx/help/7_Docs/Compile_Opts
%%PORTDOCS%%share/bx/help/7_Docs/Copyright
%%PORTDOCS%%share/bx/help/7_Docs/Environment
%%PORTDOCS%%share/bx/help/7_Docs/Etiquette
%%PORTDOCS%%share/bx/help/7_Docs/Expressions
%%PORTDOCS%%share/bx/help/7_Docs/Introduction
%%PORTDOCS%%share/bx/help/7_Docs/Key_Bindings
%%PORTDOCS%%share/bx/help/7_Docs/New_User
%%PORTDOCS%%share/bx/help/7_Docs/Patterns
%%PORTDOCS%%share/bx/help/7_Docs/Programming
%%PORTDOCS%%share/bx/help/7_Docs/Security
%%PORTDOCS%%share/bx/help/7_Docs/Serial_Numbers
%%PORTDOCS%%share/bx/help/7_Docs/Server_List
%%PORTDOCS%%share/bx/help/7_Docs/Server_Numerics
%%PORTDOCS%%share/bx/help/7_Docs/Signals
%%PORTDOCS%%share/bx/help/7_Docs/Special_Vars
%%PORTDOCS%%share/bx/help/7_Docs/Status_Line
%%PORTDOCS%%share/bx/help/7_Docs/Text_Highlight
%%PORTDOCS%%share/bx/help/7_Docs/Updates
%%PORTDOCS%%share/bx/help/8_Scripts/2.8script
%%PORTDOCS%%share/bx/help/8_Scripts/8_Scripts
%%PORTDOCS%%share/bx/help/8_Scripts/action
%%PORTDOCS%%share/bx/help/8_Scripts/alias
%%PORTDOCS%%share/bx/help/8_Scripts/autokick
%%PORTDOCS%%share/bx/help/8_Scripts/autoop
%%PORTDOCS%%share/bx/help/8_Scripts/away
%%PORTDOCS%%share/bx/help/8_Scripts/basical
%%PORTDOCS%%share/bx/help/8_Scripts/bigcheese
%%PORTDOCS%%share/bx/help/8_Scripts/brc
%%PORTDOCS%%share/bx/help/8_Scripts/channel
%%PORTDOCS%%share/bx/help/8_Scripts/columns
%%PORTDOCS%%share/bx/help/8_Scripts/commander
%%PORTDOCS%%share/bx/help/8_Scripts/compl.mods
%%PORTDOCS%%share/bx/help/8_Scripts/complete
%%PORTDOCS%%share/bx/help/8_Scripts/country
%%PORTDOCS%%share/bx/help/8_Scripts/cursor
%%PORTDOCS%%share/bx/help/8_Scripts/deban
%%PORTDOCS%%share/bx/help/8_Scripts/deutsch
%%PORTDOCS%%share/bx/help/8_Scripts/disc
%%PORTDOCS%%share/bx/help/8_Scripts/edit
%%PORTDOCS%%share/bx/help/8_Scripts/english
%%PORTDOCS%%share/bx/help/8_Scripts/environment
%%PORTDOCS%%share/bx/help/8_Scripts/events
%%PORTDOCS%%share/bx/help/8_Scripts/events.hop
%%PORTDOCS%%share/bx/help/8_Scripts/fake-dcc
%%PORTDOCS%%share/bx/help/8_Scripts/fe
%%PORTDOCS%%share/bx/help/8_Scripts/files
%%PORTDOCS%%share/bx/help/8_Scripts/finger
%%PORTDOCS%%share/bx/help/8_Scripts/fnet
%%PORTDOCS%%share/bx/help/8_Scripts/follow
%%PORTDOCS%%share/bx/help/8_Scripts/functions
%%PORTDOCS%%share/bx/help/8_Scripts/funnyban
%%PORTDOCS%%share/bx/help/8_Scripts/genalias
%%PORTDOCS%%share/bx/help/8_Scripts/global
%%PORTDOCS%%share/bx/help/8_Scripts/guh
%%PORTDOCS%%share/bx/help/8_Scripts/history
%%PORTDOCS%%share/bx/help/8_Scripts/history-match
%%PORTDOCS%%share/bx/help/8_Scripts/imap
%%PORTDOCS%%share/bx/help/8_Scripts/ircprimer
%%PORTDOCS%%share/bx/help/8_Scripts/ircrc
%%PORTDOCS%%share/bx/help/8_Scripts/keybinds
%%PORTDOCS%%share/bx/help/8_Scripts/kickmenu
%%PORTDOCS%%share/bx/help/8_Scripts/killpath
%%PORTDOCS%%share/bx/help/8_Scripts/kpstat
%%PORTDOCS%%share/bx/help/8_Scripts/less
%%PORTDOCS%%share/bx/help/8_Scripts/list
%%PORTDOCS%%share/bx/help/8_Scripts/local
%%PORTDOCS%%share/bx/help/8_Scripts/log
%%PORTDOCS%%share/bx/help/8_Scripts/ls
%%PORTDOCS%%share/bx/help/8_Scripts/lynx_ircrc
%%PORTDOCS%%share/bx/help/8_Scripts/man
%%PORTDOCS%%share/bx/help/8_Scripts/meta
%%PORTDOCS%%share/bx/help/8_Scripts/meta1
%%PORTDOCS%%share/bx/help/8_Scripts/modes
%%PORTDOCS%%share/bx/help/8_Scripts/more
%%PORTDOCS%%share/bx/help/8_Scripts/msg
%%PORTDOCS%%share/bx/help/8_Scripts/mudirc
%%PORTDOCS%%share/bx/help/8_Scripts/mudlike
%%PORTDOCS%%share/bx/help/8_Scripts/multi
%%PORTDOCS%%share/bx/help/8_Scripts/nemesis
%%PORTDOCS%%share/bx/help/8_Scripts/netsplit
%%PORTDOCS%%share/bx/help/8_Scripts/netsplit.env
%%PORTDOCS%%share/bx/help/8_Scripts/newaway
%%PORTDOCS%%share/bx/help/8_Scripts/newformat
%%PORTDOCS%%share/bx/help/8_Scripts/nicks
%%PORTDOCS%%share/bx/help/8_Scripts/old-dcc
%%PORTDOCS%%share/bx/help/8_Scripts/oldping
%%PORTDOCS%%share/bx/help/8_Scripts/ping
%%PORTDOCS%%share/bx/help/8_Scripts/pipe
%%PORTDOCS%%share/bx/help/8_Scripts/prefix
%%PORTDOCS%%share/bx/help/8_Scripts/recursion
%%PORTDOCS%%share/bx/help/8_Scripts/repeat
%%PORTDOCS%%share/bx/help/8_Scripts/screen
%%PORTDOCS%%share/bx/help/8_Scripts/shell
%%PORTDOCS%%share/bx/help/8_Scripts/silent
%%PORTDOCS%%share/bx/help/8_Scripts/smileys
%%PORTDOCS%%share/bx/help/8_Scripts/sound
%%PORTDOCS%%share/bx/help/8_Scripts/spfix
%%PORTDOCS%%share/bx/help/8_Scripts/starutils
%%PORTDOCS%%share/bx/help/8_Scripts/stat
%%PORTDOCS%%share/bx/help/8_Scripts/tabkey
%%PORTDOCS%%share/bx/help/8_Scripts/tabkey.wc
%%PORTDOCS%%share/bx/help/8_Scripts/tc
%%PORTDOCS%%share/bx/help/8_Scripts/time
%%PORTDOCS%%share/bx/help/8_Scripts/tls
%%PORTDOCS%%share/bx/help/8_Scripts/troy
%%PORTDOCS%%share/bx/help/8_Scripts/uhnotify
%%PORTDOCS%%share/bx/help/8_Scripts/uping
%%PORTDOCS%%share/bx/help/8_Scripts/wallopstat
%%PORTDOCS%%share/bx/help/8_Scripts/webster
%%PORTDOCS%%share/bx/help/8_Scripts/window
%%PORTDOCS%%share/bx/help/README_FIRST
%%PORTDOCS%%share/bx/help/commands
%%PORTDOCS%%share/bx/help/findcomm
%%PORTDOCS%%share/bx/help/functions
%%PORTDOCS%%share/bx/help/out
%%PLUGINS%%share/bx/plugins/BitchX.hints
%%PLUGINS%%share/bx/plugins/acro.so
%%PLUGINS%%share/bx/plugins/autobot.so
%%PLUGINS%%share/bx/plugins/blowfish.so
%%PLUGINS%%share/bx/plugins/encrypt.so
%%PLUGINS%%share/bx/plugins/fserv.so
%%PLUGINS%%share/bx/plugins/hint.so
%%PLUGINS%%share/bx/plugins/nap.so
%%PLUGINS%%share/bx/plugins/pkga.so
%%PLUGINS%%share/bx/plugins/possum.so
%%PLUGINS%%share/bx/plugins/qmail.so
%%PLUGINS%%share/bx/plugins/scan.so
%%PLUGINS%%share/bx/plugins/wavplay.so
%%PLUGINS%%share/bx/plugins/qbx.so
%%PLUGINS%%share/bx/plugins/aim.so
%%PLUGINS%%share/bx/plugins/arcfour.so
%%PLUGINS%%share/bx/plugins/autocycle.so
%%PLUGINS%%share/bx/plugins/cavlink.so
%%PLUGINS%%share/bx/plugins/identd.so
%%XMMS%%share/bx/plugins/xmms.so
share/bx/plugins/.placeholder
share/bx/script/SCRIPTS
share/bx/script/actplug.gmz
share/bx/script/bxglobal
share/bx/script/bxtcl.tcl
share/bx/script/cyp1.0k.tar.gz
share/bx/script/dcc_fserve-0.50.tgz
share/bx/script/example-.bitchxrc
share/bx/script/file.tcl
share/bx/script/fserve+vfs.tar.gz
share/bx/script/logger.bx
share/bx/script/menu.bx
share/bx/script/operchallenge-1.3.tar
share/bx/script/query.bx
share/bx/script/auto_resume
share/bx/script/fserve.irc
share/bx/script/query
share/bx/translation/ASCII
share/bx/translation/CP437
share/bx/translation/CP850
share/bx/translation/DANISH
share/bx/translation/DEC_MCS
share/bx/translation/DG_MCS
share/bx/translation/DUTCH
share/bx/translation/FINNISH
share/bx/translation/FRENCH
share/bx/translation/FRENCH_CANADIAN
share/bx/translation/GERMAN
share/bx/translation/HP_MCS
share/bx/translation/IRV
share/bx/translation/ITALIAN
share/bx/translation/JIS
share/bx/translation/MACINTOSH
share/bx/translation/NEXT
share/bx/translation/NORWEGIAN_1
share/bx/translation/NORWEGIAN_2
share/bx/translation/POLISH
share/bx/translation/POLISH_NOPL
share/bx/translation/PORTUGUESE
share/bx/translation/PORTUGUESE_COM
share/bx/translation/RUSSIAN
share/bx/translation/RUSSIAN_ALT
share/bx/translation/RUSSIAN_WIN
share/bx/translation/SPANISH
share/bx/translation/SWEDISH
share/bx/translation/SWEDISH_NAMES
share/bx/translation/SWEDISH_NAMES_COM
share/bx/translation/SWISS
share/bx/translation/UNITED_KINGDOM
share/bx/translation/UNITED_KINGDOM_COM
%%NOGNOME%%share/bx/wserv
@dirrm share/bx/translation
@dirrm share/bx/script
@dirrm share/bx/plugins
%%PORTDOCS%%@dirrm share/bx/help/8_Scripts
%%PORTDOCS%%@dirrm share/bx/help/7_Docs
%%PORTDOCS%%@dirrm share/bx/help/6_Functions
%%PORTDOCS%%@dirrm share/bx/help/5_Programming/on
%%PORTDOCS%%@dirrm share/bx/help/5_Programming
%%PORTDOCS%%@dirrm share/bx/help/4_Misc/window
%%PORTDOCS%%@dirrm share/bx/help/4_Misc/set
%%PORTDOCS%%@dirrm share/bx/help/4_Misc/bind
%%PORTDOCS%%@dirrm share/bx/help/4_Misc
%%PORTDOCS%%@dirrm share/bx/help/3_Operators
%%PORTDOCS%%@dirrm share/bx/help/2_Queries
%%PORTDOCS%%@dirrm share/bx/help/1_General/dcc
%%PORTDOCS%%@dirrm share/bx/help/1_General/ctcp
%%PORTDOCS%%@dirrm share/bx/help/1_General
%%PORTDOCS%%@dirrm share/bx/help
@dirrm share/bx