File: test_debian_dists_testing_Contents

package info (click to toggle)
dh-make-perl 0.70-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 984 kB
  • ctags: 203
  • sloc: perl: 4,318; makefile: 88
file content (1150 lines) | stat: -rw-r--r-- 90,014 bytes parent folder | download
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
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
This file maps each file available in the Debian GNU/Linux system to
the package from which it originates.  It includes packages from the
DIST distribution for the ARCH architecture.

You can use this list to determine which package contains a specific
file, or whether or not a specific file is available.  The list is
updated weekly, each architecture on a different day.

When a file is contained in more than one package, all packages are
listed.  When a directory is contained in more than one package, only
the first is listed.

The best way to search quickly for a file is with the Unix `grep'
utility, as in `grep <regular expression> CONTENTS':

 $ grep nose Contents
 etc/nosendfile                                          net/sendfile
 usr/X11R6/bin/noseguy                                   x11/xscreensaver
 usr/X11R6/man/man1/noseguy.1x.gz                        x11/xscreensaver
 usr/doc/examples/ucbmpeg/mpeg_encode/nosearch.param     graphics/ucbmpeg
 usr/lib/cfengine/bin/noseyparker                        admin/cfengine

This list contains files in all packages, even though not all of the
packages are installed on an actual system at once.  If you want to
find out which packages on an installed Debian system provide a
particular file, you can use `dpkg --search <filename>':

 $ dpkg --search /usr/bin/dselect
 dpkg: /usr/bin/dselect


FILE                                                    LOCATION
bin/afio						    utils/afio
bin/ash							    shells/ash
bin/bash						    shells/bash
bin/bash-minimal					    shells/bash-minimal
bin/bash-static						    shells/bash-static
bin/bsd-csh						    shells/csh
bin/bunzip2						    utils/bzip2
bin/busybox						    utils/busybox,shells/busybox-static
bin/bzcat						    utils/bzip2
bin/bzcmp						    utils/bzip2
bin/bzdiff						    utils/bzip2
bin/bzegrep						    utils/bzip2
bin/bzexe						    utils/bzip2
bin/bzfgrep						    utils/bzip2
bin/bzgrep						    utils/bzip2
bin/bzip2						    utils/bzip2
bin/bzip2recover					    utils/bzip2
bin/bzless						    utils/bzip2
bin/bzmore						    utils/bzip2
bin/cat							    utils/coreutils
bin/cftp						    net/cftp
bin/check-foreground-console				    misc/libpam-foreground
bin/checkpassword					    admin/fgetty
bin/chgrp						    utils/coreutils
bin/chmod						    utils/coreutils
bin/chown						    utils/coreutils
bin/chvt						    utils/kbd
bin/con2fbmap						    admin/fbset
bin/cp							    utils/coreutils
bin/cpio						    utils/cpio
bin/cvssh						    devel/gforge-common
bin/dash						    shells/dash
bin/date						    utils/coreutils
bin/dd							    utils/coreutils
bin/dd_rescue						    utils/ddrescue
bin/df							    utils/coreutils
bin/dir							    utils/coreutils
bin/dmesg						    utils/util-linux
bin/dnsdomainname					    admin/hostname
bin/domainname						    net/nis
bin/dtc-xen_userconsole					    web/dtc-xen
bin/dumpkeys						    utils/kbd
bin/echo						    utils/coreutils
bin/ed							    editors/ed
bin/efibootmgr						    admin/efibootmgr
bin/egrep						    utils/grep
bin/elvis-tiny						    editors/elvis-tiny
bin/false						    utils/coreutils
bin/fbset						    admin/fbset
bin/fgconsole						    utils/console-tools,utils/kbd
bin/fgetty-login					    admin/fgetty
bin/fgetty-login2					    admin/fgetty
bin/fgrep						    utils/grep
bin/francine						    admin/francine
bin/fuser						    admin/psmisc
bin/grep						    utils/grep
bin/gunzip						    utils/gzip
bin/gzexe						    utils/gzip
bin/gzip						    utils/gzip
bin/hostname						    admin/hostname
bin/ip							    net/iproute
bin/kbd_mode						    utils/kbd
bin/keyctl						    misc/keyutils
bin/kill						    admin/procps
bin/ksh93						    shells/ksh
bin/ln							    utils/coreutils
bin/loadkeys						    utils/console-tools,utils/kbd
bin/login						    admin/login
usr/lib/perl5/File/Spec.pm				    perl/libfile-spec-perl
usr/share/perl/5.10.0/File/Spec.pm			    perl/perl-base
usr/share/perl5/File/Which.pm				    perl/libfile-which-perl
usr/share/perl5/XML/Generator.pm			    perl/libxml-generator-perl
usr/share/perl5/XML/Generator/DOM.pm			    perl/libxml-generator-perl
usr/share/perl5/Data/Page.pm				    perl/libdata-page-perl
usr/share/perl5/Data/Pager.pm				    perl/libdatapager-perl
usr/lib/lastfm/libMoose.so.1				    sound/lastfm
usr/lib/lastfm/libMoose.so.1.0				    sound/lastfm
usr/lib/lastfm/libMoose.so.1.0.0			    sound/lastfm
usr/share/games/lletters/images/Moose.png		    games/lletters-media
usr/share/games/lmemory/pixmaps/Moose.xpm		    games/lmemory
usr/share/man/man3/Moose.3pm.gz				    perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Basics::Recipe1.3pm.gz  perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Basics::Recipe10.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Basics::Recipe2.3pm.gz  perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Basics::Recipe3.3pm.gz  perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Basics::Recipe4.3pm.gz  perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Basics::Recipe5.3pm.gz  perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Basics::Recipe6.3pm.gz  perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Basics::Recipe7.3pm.gz  perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Basics::Recipe9.3pm.gz  perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Extending::Recipe1.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Extending::Recipe2.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Extending::Recipe3.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Extending::Recipe4.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::FAQ.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Meta::Recipe1.3pm.gz    perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Meta::Recipe2.3pm.gz    perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Meta::Recipe3.3pm.gz    perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Meta::Recipe4.3pm.gz    perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Meta::Recipe5.3pm.gz    perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Roles::Recipe1.3pm.gz   perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Roles::Recipe2.3pm.gz   perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Snack::Keywords.3pm.gz  perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Snack::Types.3pm.gz	    perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::Style.3pm.gz	    perl/libmoose-perl
usr/share/man/man3/Moose::Cookbook::WTF.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Error::Confess.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Error::Croak.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Error::Default.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Exporter.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Intro.3pm.gz			    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Attribute.3pm.gz	    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Class.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Instance.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Method.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Method::Accessor.3pm.gz	    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Method::Augmented.3pm.gz    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Method::Constructor.3pm.gz  perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Method::Delegation.3pm.gz   perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Method::Destructor.3pm.gz   perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Method::Overriden.3pm.gz    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Role.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Role::Application.3pm.gz    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Role::Application::RoleSummation.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Role::Application::ToClass.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Role::Application::ToInstance.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Role::Application::ToRole.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Role::Composite.3pm.gz	    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Role::Method.3pm.gz	    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::Role::Method::Required.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Meta::TypeCoercion.3pm.gz	    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::TypeCoercion::Union.3pm.gz  perl/libmoose-perl
usr/share/man/man3/Moose::Meta::TypeConstraint.3pm.gz	    perl/libmoose-perl
usr/share/man/man3/Moose::Meta::TypeConstraint::Class.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Meta::TypeConstraint::Enum.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Meta::TypeConstraint::Parameterizable.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Meta::TypeConstraint::Parameterized.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Meta::TypeConstraint::Registry.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Meta::TypeConstraint::Role.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Meta::TypeConstraint::Union.3pm.gz perl/libmoose-perl
usr/share/man/man3/Moose::Object.3pm.gz			    perl/libmoose-perl
usr/share/man/man3/Moose::Role.3pm.gz			    perl/libmoose-perl
usr/share/man/man3/Moose::Spec::Role.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Unsweetened.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Util.3pm.gz			    perl/libmoose-perl
usr/share/man/man3/Moose::Util::MetaRole.3pm.gz		    perl/libmoose-perl
usr/share/man/man3/Moose::Util::TypeConstraints.3pm.gz	    perl/libmoose-perl
usr/share/man/man3/Moose::Util::TypeConstraints::OptimizedConstraints.3pm.gz perl/libmoose-perl
usr/share/man/man3/MooseX::Adopt::Class::Accessor::Fast.3pm.gz perl/libmoosex-emulate-class-accessor-fast-perl
usr/share/man/man3/MooseX::Emulate::Class::Accessor::Fast.3pm.gz perl/libmoosex-emulate-class-accessor-fast-perl
usr/share/man/man3/MooseX::Getopt.3pm.gz		    perl/libmoosex-getopt-perl
usr/share/man/man3/MooseX::Getopt::Meta::Attribute.3pm.gz   perl/libmoosex-getopt-perl
usr/share/man/man3/MooseX::Getopt::Meta::Attribute::NoGetopt.3pm.gz perl/libmoosex-getopt-perl
usr/share/man/man3/MooseX::Getopt::Meta::Attribute::Trait.3pm.gz perl/libmoosex-getopt-perl
usr/share/man/man3/MooseX::Getopt::Meta::Attribute::Trait::NoGetopt.3pm.gz perl/libmoosex-getopt-perl
usr/share/man/man3/MooseX::Getopt::OptionTypeMap.3pm.gz	    perl/libmoosex-getopt-perl
usr/share/man/man3/MooseX::Getopt::Strict.3pm.gz	    perl/libmoosex-getopt-perl
usr/share/man/man3/MooseX::Object::Pluggable.3pm.gz	    perl/libmoosex-object-pluggable-perl
usr/share/man/man3/MooseX::StrictConstructor.3pm.gz	    perl/libmoosex-strictconstructor-perl
usr/share/man/man3/MooseX::StrictConstructor::Role::Meta::Method::Constructor.3pm.gz perl/libmoosex-strictconstructor-perl
usr/share/man/man3/MooseX::StrictConstructor::Role::Object.3pm.gz perl/libmoosex-strictconstructor-perl
usr/share/man/man3/Test::Moose.3pm.gz			    perl/libmoose-perl
usr/share/perl5/Moose.pm				    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook.pod			    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Basics/Recipe1.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Basics/Recipe10.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Basics/Recipe2.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Basics/Recipe3.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Basics/Recipe4.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Basics/Recipe5.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Basics/Recipe6.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Basics/Recipe7.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Basics/Recipe9.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Extending/Recipe1.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Extending/Recipe2.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Extending/Recipe3.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Extending/Recipe4.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/FAQ.pod			    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Meta/Recipe1.pod		    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Meta/Recipe2.pod		    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Meta/Recipe3.pod		    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Meta/Recipe4.pod		    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Meta/Recipe5.pod		    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Roles/Recipe1.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Roles/Recipe2.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Snack/Keywords.pod	    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Snack/Types.pod		    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/Style.pod		    perl/libmoose-perl
usr/share/perl5/Moose/Cookbook/WTF.pod			    perl/libmoose-perl
usr/share/perl5/Moose/Error/Confess.pm			    perl/libmoose-perl
usr/share/perl5/Moose/Error/Croak.pm			    perl/libmoose-perl
usr/share/perl5/Moose/Error/Default.pm			    perl/libmoose-perl
usr/share/perl5/Moose/Exporter.pm			    perl/libmoose-perl
usr/share/perl5/Moose/Intro.pod				    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Attribute.pm			    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Class.pm			    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Instance.pm			    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Method.pm			    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Method/Accessor.pm		    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Method/Augmented.pm		    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Method/Constructor.pm	    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Method/Delegation.pm		    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Method/Destructor.pm		    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Method/Overriden.pm		    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Role.pm			    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Role/Application.pm		    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Role/Application/RoleSummation.pm perl/libmoose-perl
usr/share/perl5/Moose/Meta/Role/Application/ToClass.pm	    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Role/Application/ToInstance.pm   perl/libmoose-perl
usr/share/perl5/Moose/Meta/Role/Application/ToRole.pm	    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Role/Composite.pm		    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Role/Method.pm		    perl/libmoose-perl
usr/share/perl5/Moose/Meta/Role/Method/Required.pm	    perl/libmoose-perl
usr/share/perl5/Moose/Meta/TypeCoercion.pm		    perl/libmoose-perl
usr/share/perl5/Moose/Meta/TypeCoercion/Union.pm	    perl/libmoose-perl
usr/share/perl5/Moose/Meta/TypeConstraint.pm		    perl/libmoose-perl
usr/share/perl5/Moose/Meta/TypeConstraint/Class.pm	    perl/libmoose-perl
usr/share/perl5/Moose/Meta/TypeConstraint/Enum.pm	    perl/libmoose-perl
usr/share/perl5/Moose/Meta/TypeConstraint/Parameterizable.pm perl/libmoose-perl
usr/share/perl5/Moose/Meta/TypeConstraint/Parameterized.pm  perl/libmoose-perl
usr/share/perl5/Moose/Meta/TypeConstraint/Registry.pm	    perl/libmoose-perl
usr/share/perl5/Moose/Meta/TypeConstraint/Role.pm	    perl/libmoose-perl
usr/share/perl5/Moose/Meta/TypeConstraint/Union.pm	    perl/libmoose-perl
usr/share/perl5/Moose/Object.pm				    perl/libmoose-perl
usr/share/perl5/Moose/Role.pm				    perl/libmoose-perl
usr/share/perl5/Moose/Spec/Role.pod			    perl/libmoose-perl
usr/share/perl5/Moose/Unsweetened.pod			    perl/libmoose-perl
usr/share/perl5/Moose/Util.pm				    perl/libmoose-perl
usr/share/perl5/Moose/Util/MetaRole.pm			    perl/libmoose-perl
usr/share/perl5/Moose/Util/TypeConstraints.pm		    perl/libmoose-perl
usr/share/perl5/Moose/Util/TypeConstraints/OptimizedConstraints.pm perl/libmoose-perl
usr/share/perl5/MooseX/Adopt/Class/Accessor/Fast.pm	    perl/libmoosex-emulate-class-accessor-fast-perl
usr/share/perl5/MooseX/Emulate/Class/Accessor/Fast.pm	    perl/libmoosex-emulate-class-accessor-fast-perl
usr/share/perl5/MooseX/Getopt.pm			    perl/libmoosex-getopt-perl
usr/share/perl5/MooseX/Getopt/Meta/Attribute.pm		    perl/libmoosex-getopt-perl
usr/share/perl5/MooseX/Getopt/Meta/Attribute/NoGetopt.pm    perl/libmoosex-getopt-perl
usr/share/perl5/MooseX/Getopt/Meta/Attribute/Trait.pm	    perl/libmoosex-getopt-perl
usr/share/perl5/MooseX/Getopt/Meta/Attribute/Trait/NoGetopt.pm perl/libmoosex-getopt-perl
usr/share/perl5/MooseX/Getopt/OptionTypeMap.pm		    perl/libmoosex-getopt-perl
usr/share/perl5/MooseX/Getopt/Strict.pm			    perl/libmoosex-getopt-perl
usr/share/perl5/MooseX/Object/Pluggable.pm		    perl/libmoosex-object-pluggable-perl
usr/share/perl5/MooseX/StrictConstructor.pm		    perl/libmoosex-strictconstructor-perl
usr/share/perl5/MooseX/StrictConstructor/Role/Meta/Method/Constructor.pm perl/libmoosex-strictconstructor-perl
usr/share/perl5/MooseX/StrictConstructor/Role/Object.pm	    perl/libmoosex-strictconstructor-perl
usr/share/perl5/Test/Moose.pm				    perl/libmoose-perl
usr/include/Poco/URI.h					    libdevel/libpoco-dev
usr/include/Poco/URIStreamFactory.h			    libdevel/libpoco-dev
usr/include/Poco/URIStreamOpener.h			    libdevel/libpoco-dev
usr/include/c++/4.2/java/net/URI.h			    libdevel/libgcj8-dev
usr/include/c++/4.2/java/net/URISyntaxException.h	    libdevel/libgcj8-dev
usr/include/c++/4.2/javax/print/URIException.h		    libdevel/libgcj8-dev
usr/include/c++/4.2/javax/print/attribute/URISyntax.h	    libdevel/libgcj8-dev
usr/include/c++/4.2/javax/print/attribute/standard/PrinterURI.h libdevel/libgcj8-dev
usr/include/c++/4.3/java/net/URI.h			    libdevel/libgcj9-dev
usr/include/c++/4.3/java/net/URISyntaxException.h	    libdevel/libgcj9-dev
usr/include/c++/4.3/javax/print/URIException.h		    libdevel/libgcj9-dev
usr/include/c++/4.3/javax/print/attribute/URISyntax.h	    libdevel/libgcj9-dev
usr/include/c++/4.3/javax/print/attribute/standard/PrinterURI.h libdevel/libgcj9-dev
usr/include/iceape/docshell/nsCDefaultURIFixup.h	    devel/iceape-dev
usr/include/iceape/docshell/nsIURIFixup.h		    devel/iceape-dev
usr/include/iceape/dom/nsIDOMSVGURIReference.h		    devel/iceape-dev
usr/include/iceape/editor/nsIURIRefObject.h		    devel/iceape-dev
usr/include/iceape/imgicon/nsIIconURI.h			    devel/iceape-dev
usr/include/iceape/jar/nsIJARURI.h			    devel/iceape-dev
usr/include/iceape/msgsmime/nsEncryptedSMIMEURIsService.h   devel/iceape-dev
usr/include/iceape/msgsmime/nsIEncryptedSMIMEURIsSrvc.h	    devel/iceape-dev
usr/include/iceape/necko/nsIURIChecker.h		    devel/iceape-dev
usr/include/iceape/necko/nsURIHashKey.h			    devel/iceape-dev
usr/include/iceape/nsIURI.h				    devel/iceape-dev
usr/include/iceape/nsIURIContentListener.h		    devel/iceape-dev
usr/include/iceape/uconv/nsITextToSubURI.h		    devel/iceape-dev
usr/include/iceape/uriloader/nsCURILoader.h		    devel/iceape-dev
usr/include/iceape/uriloader/nsIURILoader.h		    devel/iceape-dev
usr/include/iceape/uriloader/nsURILoader.h		    devel/iceape-dev
usr/include/iceape/webshell/nsIRefreshURI.h		    devel/iceape-dev
usr/include/icedove/docshell/nsCDefaultURIFixup.h	    mail/icedove-dev
usr/include/icedove/docshell/nsIURIFixup.h		    mail/icedove-dev
usr/include/icedove/dom/nsIDOMSVGURIReference.h		    mail/icedove-dev
usr/include/icedove/editor/nsIURIRefObject.h		    mail/icedove-dev
usr/include/icedove/imgicon/nsIIconURI.h		    mail/icedove-dev
usr/include/icedove/jar/nsIJARURI.h			    mail/icedove-dev
usr/include/icedove/msgsmime/nsEncryptedSMIMEURIsService.h  mail/icedove-dev
usr/include/icedove/msgsmime/nsIEncryptedSMIMEURIsSrvc.h    mail/icedove-dev
usr/include/icedove/necko/nsIURIChecker.h		    mail/icedove-dev
usr/include/icedove/necko/nsURIHashKey.h		    mail/icedove-dev
usr/include/icedove/nsIURI.h				    mail/icedove-dev
usr/include/icedove/nsIURIContentListener.h		    mail/icedove-dev
usr/include/icedove/uconv/nsITextToSubURI.h		    mail/icedove-dev
usr/include/icedove/uriloader/nsCURILoader.h		    mail/icedove-dev
usr/include/icedove/uriloader/nsIURILoader.h		    mail/icedove-dev
usr/include/icedove/uriloader/nsURILoader.h		    mail/icedove-dev
usr/include/icedove/webshell/nsIRefreshURI.h		    mail/icedove-dev
usr/include/iceowl/docshell/nsCDefaultURIFixup.h	    devel/iceowl-dev
usr/include/iceowl/docshell/nsIURIFixup.h		    devel/iceowl-dev
usr/include/iceowl/editor/nsIURIRefObject.h		    devel/iceowl-dev
usr/include/iceowl/imgicon/nsIIconURI.h			    devel/iceowl-dev
usr/include/iceowl/jar/nsIJARURI.h			    devel/iceowl-dev
usr/include/iceowl/necko/nsIURIChecker.h		    devel/iceowl-dev
usr/include/iceowl/necko/nsURIHashKey.h			    devel/iceowl-dev
usr/include/iceowl/nsIURI.h				    devel/iceowl-dev
usr/include/iceowl/nsIURIContentListener.h		    devel/iceowl-dev
usr/include/iceowl/uconv/nsITextToSubURI.h		    devel/iceowl-dev
usr/include/iceowl/uriloader/nsCURILoader.h		    devel/iceowl-dev
usr/include/iceowl/uriloader/nsIURILoader.h		    devel/iceowl-dev
usr/include/iceowl/uriloader/nsURILoader.h		    devel/iceowl-dev
usr/include/iceowl/webshell/nsIRefreshURI.h		    devel/iceowl-dev
usr/include/kde/dom/SVGURIReference.h			    devel/kdegraphics-dev
usr/include/omniORB4/omniURI.h				    libdevel/libomniorb4-dev
usr/include/xalanc/PlatformSupport/URISupport.hpp	    libdevel/libxalan110-dev
usr/include/xalanc/PlatformSupport/XalanParsedURI.hpp	    libdevel/libxalan110-dev
usr/include/xalanc/XPath/FunctionNamespaceURI.hpp	    libdevel/libxalan110-dev
usr/include/xalanc/XSLT/FunctionUnparsedEntityURI.hpp	    libdevel/libxalan110-dev
usr/include/xercesc/validators/datatype/AnyURIDatatypeValidator.hpp libdevel/libxerces-c2-dev
usr/include/xqilla/context/URIResolver.hpp		    libdevel/libxqilla-dev
usr/include/xqilla/functions/FunctionBaseURI.hpp	    libdevel/libxqilla-dev
usr/include/xqilla/functions/FunctionDocumentURI.hpp	    libdevel/libxqilla-dev
usr/include/xqilla/functions/FunctionNamespaceURIForPrefix.hpp libdevel/libxqilla-dev
usr/include/xqilla/functions/FunctionNamespaceURIFromQName.hpp libdevel/libxqilla-dev
usr/include/xqilla/functions/FunctionResolveURI.hpp	    libdevel/libxqilla-dev
usr/include/xqilla/functions/FunctionStaticBaseURI.hpp	    libdevel/libxqilla-dev
usr/include/xqilla/items/ATAnyURIOrDerived.hpp		    libdevel/libxqilla-dev
usr/include/xsec/framework/XSECURIResolver.hpp		    libdevel/libxml-security-c-dev
usr/include/xsec/framework/XSECURIResolverXerces.hpp	    libdevel/libxml-security-c-dev
usr/include/xsec/utils/unixutils/XSECBinHTTPURIInputStream.hpp libdevel/libxml-security-c-dev
usr/include/xsec/utils/unixutils/XSECURIResolverGenericUnix.hpp libdevel/libxml-security-c-dev
usr/include/xulrunner-1.9/stable/nsIURI.h		    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/stable/nsIURIContentListener.h    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsCDefaultURIFixup.h	    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsCURILoader.h	    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsIContentURIGrouper.h   libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsIDOMSVGURIReference.h  libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsIIconURI.h		    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsIJARURI.h		    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsINestedURI.h	    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsIRefreshURI.h	    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsITextToSubURI.h	    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsIURI.h		    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsIURIChecker.h	    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsIURIClassifier.h	    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsIURIContentListener.h  libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsIURIFixup.h	    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsIURILoader.h	    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsIURIRefObject.h	    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsURIHashKey.h	    libdevel/xulrunner-dev
usr/include/xulrunner-1.9/unstable/nsURILoader.h	    libdevel/xulrunner-dev
usr/lib/R/site-library/XML/R-ex/parseURI.R		    math/r-cran-xml
usr/lib/R/site-library/XML/help/parseURI		    math/r-cran-xml
usr/lib/R/site-library/XML/html/parseURI.html		    math/r-cran-xml
usr/lib/R/site-library/XML/latex/parseURI.tex		    math/r-cran-xml
usr/lib/R/site-library/fCalendar/R-ex/holidayZURICH.R	    math/r-cran-fcalendar
usr/lib/R/site-library/fCalendar/help/holidayZURICH	    math/r-cran-fcalendar
usr/lib/R/site-library/fCalendar/html/holidayZURICH.html    math/r-cran-fcalendar
usr/lib/R/site-library/fCalendar/latex/holidayZURICH.tex    math/r-cran-fcalendar
usr/lib/R/site-library/timeDate/R-ex/holidayZURICH.R	    math/r-cran-timedate
usr/lib/R/site-library/timeDate/help/holidayZURICH	    math/r-cran-timedate
usr/lib/R/site-library/timeDate/html/holidayZURICH.html	    math/r-cran-timedate
usr/lib/R/site-library/timeDate/latex/holidayZURICH.tex	    math/r-cran-timedate
usr/lib/gcc-snapshot/include/c++/4.4.0/java/net/URI.h	    devel/gcc-snapshot
usr/lib/gcc-snapshot/include/c++/4.4.0/java/net/URISyntaxException.h devel/gcc-snapshot
usr/lib/gcc-snapshot/include/c++/4.4.0/javax/print/URIException.h devel/gcc-snapshot
usr/lib/gcc-snapshot/include/c++/4.4.0/javax/print/attribute/URISyntax.h devel/gcc-snapshot
usr/lib/gcc-snapshot/include/c++/4.4.0/javax/print/attribute/standard/PrinterURI.h devel/gcc-snapshot
usr/lib/gdesklets/Controls/URI/IURI.py			    gnome/gdesklets
usr/lib/gdesklets/Controls/URI/__init__.py		    gnome/gdesklets
usr/lib/gdesklets/config/ConfigURI.py			    gnome/gdesklets
usr/lib/haskell-packages/ghc6/lib/HAppS-Server-0.9.2.1/ghc-6.8.2/HAppS/Server/SURI.hi libdevel/libghc6-happs-server-dev
usr/lib/haskell-packages/ghc6/lib/HAppS-Server-0.9.2.1/ghc-6.8.2/HAppS/Server/SURI/ParseURI.hi libdevel/libghc6-happs-server-dev
usr/lib/haskell-packages/ghc6/lib/gnomevfs-0.9.13/imports/System/Gnome/VFS/URI.hi libdevel/libghc6-gnomevfs-dev
usr/lib/hugs/oldlib/URI.hs				    interpreters/hugs
usr/lib/hugs/packages/network/Network/URI.hs		    devel/libhugs-network-bundled
usr/lib/jruby1.1/share/ri/1.8/system/DRb/DRbBadURI/cdesc-DRbBadURI.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/DRb/DRbURIOption/cdesc-DRbURIOption.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/Kernel/URI-i.yaml	    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/OpenURI/Buffer/cdesc-Buffer.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/OpenURI/HTTPError/cdesc-HTTPError.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/OpenURI/HTTPError/new-c.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/OpenURI/Meta/cdesc-Meta.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/OpenURI/Meta/charset-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/OpenURI/Meta/content_encoding-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/OpenURI/Meta/content_type-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/OpenURI/Meta/last_modified-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/OpenURI/OpenRead/cdesc-OpenRead.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/OpenURI/OpenRead/open-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/OpenURI/OpenRead/read-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/OpenURI/cdesc-OpenURI.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/SOAP/Mapping/URIFactory_/cdesc-URIFactory_.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/SOAP/Mapping/URIFactory_/obj2soap-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/SOAP/Mapping/URIFactory_/soap2obj-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/SOAP/SOAPAnyURI/cdesc-SOAPAnyURI.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/BadURIError/cdesc-BadURIError.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Error/cdesc-Error.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Escape/cdesc-Escape.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Escape/decode-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Escape/encode-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Escape/escape-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Escape/unescape-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/FTP/build-c.yaml   interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/FTP/cdesc-FTP.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/FTP/check_typecode-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/FTP/new-c.yaml	    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/FTP/new2-c.yaml    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/FTP/set_typecode-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/FTP/to_s-i.yaml    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/FTP/typecode%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/%2b-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/%2d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/%3d%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/absolute%3f-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/absolute-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/build-c.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/build2-c.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/cdesc-Generic.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/check_fragment-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/check_host-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/check_opaque-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/check_password-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/check_path-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/check_port-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/check_query-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/check_registry-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/check_scheme-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/check_user-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/check_userinfo-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/coerce-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/component-c.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/component-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/component_ary-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/default_port-c.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/default_port-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/eql%3f-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/escape_userpass-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/find_proxy-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/fragment%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/hash-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/hierarchical%3f-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/host%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/inspect-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/merge%21-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/merge-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/merge0-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/merge_path-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/new-c.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/normalize%21-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/normalize-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/opaque%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/password%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/password-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/path%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/path_query-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/port%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/query%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/registry%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/relative%3f-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/replace%21-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/route_from-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/route_from0-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/route_from_path-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/route_to-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/scheme%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/select-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/set_fragment-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/set_host-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/set_opaque-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/set_password-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/set_path-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/set_port-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/set_query-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/set_registry-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/set_scheme-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/set_user-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/set_userinfo-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/split_path-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/split_userinfo-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/to_s-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/use_registry-c.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/user%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/user-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/userinfo%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Generic/userinfo-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/HTTP/build-c.yaml  interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/HTTP/cdesc-HTTP.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/HTTP/new-c.yaml    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/HTTP/request_uri-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/HTTPS/cdesc-HTTPS.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/InvalidComponentError/cdesc-InvalidComponentError.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/InvalidURIError/cdesc-InvalidURIError.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/attributes%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/attributes-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/build-c.yaml  interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/build_path_query-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/cdesc-LDAP.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/dn%3d-i.yaml  interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/dn-i.yaml	    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/extensions%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/extensions-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/filter%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/filter-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/hierarchical%3f-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/new-c.yaml    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/parse_dn-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/parse_query-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/scope%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/scope-i.yaml  interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/set_attributes-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/set_dn-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/set_extensions-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/set_filter-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/LDAP/set_scope-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/MailTo/build-c.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/MailTo/cdesc-MailTo.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/MailTo/check_headers-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/MailTo/check_to-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/MailTo/headers%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/MailTo/new-c.yaml  interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/MailTo/set_headers-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/MailTo/set_to-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/MailTo/to%3d-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/MailTo/to_mailtext-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/MailTo/to_rfc822text-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/MailTo/to_s-i.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/REGEXP/PATTERN/cdesc-PATTERN.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/REGEXP/cdesc-REGEXP.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/Util/cdesc-Util.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/cdesc-URI.yaml	    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/extract-c.yaml	    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/join-c.yaml	    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/parse-c.yaml	    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/regexp-c.yaml	    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/URI/split-c.yaml	    interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/XSD/XSDAnyURI/cdesc-XSDAnyURI.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/XSD/XSDAnyURI/new-c.yaml interpreters/jruby1.1
usr/lib/jruby1.1/share/ri/1.8/system/XSD/XSDAnyURI/screen_data-i.yaml interpreters/jruby1.1
usr/lib/network-2.1.0.0/ghc-6.8.2/Network/URI.hi	    devel/libghc6-network-dev
usr/lib/network-2.1.0.0/ghc-6.8.2/Network/URI.p_hi	    devel/libghc6-network-prof
usr/lib/ocaml/3.10.2/galax/anyURI.cmi			    libdevel/libgalax-ocaml-dev
usr/lib/ocaml/3.10.2/galax/anyURI.mli			    libdevel/libgalax-ocaml-dev
usr/lib/ocaml/3.10.2/perl/pl_URI.cmi			    libdevel/libperl4caml-ocaml-dev
usr/lib/ocaml/3.10.2/perl/pl_URI.ml			    libdevel/libperl4caml-ocaml-dev
usr/lib/perl5/APR/URI.pm				    perl/libapache2-mod-perl2
usr/lib/perl5/Apache2/URI.pm				    perl/libapache2-mod-perl2
usr/lib/perl5/Gnome2/VFS/URI.pod			    perl/libgnome2-vfs-perl
usr/lib/perl5/auto/APR/URI/URI.bs			    perl/libapache2-mod-perl2
usr/lib/perl5/auto/APR/URI/URI.so			    perl/libapache2-mod-perl2
usr/lib/perl5/auto/Apache2/URI/URI.bs			    perl/libapache2-mod-perl2
usr/lib/perl5/auto/Apache2/URI/URI.so			    perl/libapache2-mod-perl2
usr/lib/pike/7.6.112/modules/Standards.pmod/URI.pike	    interpreters/pike7.6-core
usr/lib/zope2.10/lib/python/Testing/ZopeTestCase/doc/SECURITY.stx web/zope2.10
usr/share/apache2/error/HTTP_REQUEST_URI_TOO_LARGE.html.var net/apache2.2-common
usr/share/classpath/gnu/xml/libxmlj/transform/URIResolverEntityResolver.class libs/classpath-common-unzipped
usr/share/classpath/gnu/xml/transform/URIResolverEntityResolver.class libs/classpath-common-unzipped
usr/share/classpath/gnu/xml/transform/XSLURIResolver.class  libs/classpath-common-unzipped
usr/share/classpath/gnu/xml/validation/datatype/AnyURIType.class libs/classpath-common-unzipped
usr/share/classpath/java/net/URI.class			    libs/classpath-common-unzipped
usr/share/classpath/java/net/URISyntaxException.class	    libs/classpath-common-unzipped
usr/share/classpath/javax/print/URIException.class	    libs/classpath-common-unzipped
usr/share/classpath/javax/print/attribute/URISyntax.class   libs/classpath-common-unzipped
usr/share/classpath/javax/print/attribute/standard/PrinterURI.class libs/classpath-common-unzipped
usr/share/classpath/javax/xml/transform/URIResolver.class   libs/classpath-common-unzipped
usr/share/devscripts/Devscripts/URI.pm			    devel/devscripts
usr/share/doc/bsdgames-nonfree/SECURITY.gz		    non-free/games/bsdgames-nonfree
usr/share/doc/bsdgames/SECURITY.gz			    games/bsdgames
usr/share/doc/classpath-doc/api/java/net/URI-source.html    doc/classpath-doc
usr/share/doc/classpath-doc/api/java/net/URI-uses.html	    doc/classpath-doc
usr/share/doc/classpath-doc/api/java/net/URI.html	    doc/classpath-doc
usr/share/doc/classpath-doc/api/java/net/URISyntaxException-source.html doc/classpath-doc
usr/share/doc/classpath-doc/api/java/net/URISyntaxException-uses.html doc/classpath-doc
usr/share/doc/classpath-doc/api/java/net/URISyntaxException.html doc/classpath-doc
usr/share/doc/classpath-doc/api/javax/print/URIException-source.html doc/classpath-doc
usr/share/doc/classpath-doc/api/javax/print/URIException-uses.html doc/classpath-doc
usr/share/doc/classpath-doc/api/javax/print/URIException.html doc/classpath-doc
usr/share/doc/classpath-doc/api/javax/print/attribute/URISyntax-source.html doc/classpath-doc
usr/share/doc/classpath-doc/api/javax/print/attribute/URISyntax-uses.html doc/classpath-doc
usr/share/doc/classpath-doc/api/javax/print/attribute/URISyntax.html doc/classpath-doc
usr/share/doc/classpath-doc/api/javax/print/attribute/standard/PrinterURI-source.html doc/classpath-doc
usr/share/doc/classpath-doc/api/javax/print/attribute/standard/PrinterURI-uses.html doc/classpath-doc
usr/share/doc/classpath-doc/api/javax/print/attribute/standard/PrinterURI.html doc/classpath-doc
usr/share/doc/classpath-doc/api/javax/xml/transform/URIResolver-source.html doc/classpath-doc
usr/share/doc/classpath-doc/api/javax/xml/transform/URIResolver-uses.html doc/classpath-doc
usr/share/doc/classpath-doc/api/javax/xml/transform/URIResolver.html doc/classpath-doc
usr/share/doc/ddskk/nicola/README.URIs.ja		    utils/ddskk
usr/share/doc/dietlibc-doc/SECURITY			    doc/dietlibc-doc
usr/share/doc/flow-tools/SECURITY			    net/flow-tools
usr/share/doc/fop-doc/html/api/org/apache/fop/apps/FOURIResolver.html contrib/doc/fop-doc
usr/share/doc/fop-doc/html/api/org/apache/fop/apps/class-use/FOURIResolver.html contrib/doc/fop-doc
usr/share/doc/fop-doc/html/api/org/apache/fop/datatypes/URISpecification.html contrib/doc/fop-doc
usr/share/doc/fop-doc/html/api/org/apache/fop/datatypes/class-use/URISpecification.html contrib/doc/fop-doc
usr/share/doc/fop-doc/html/api/org/apache/fop/servlet/ServletContextURIResolver.html contrib/doc/fop-doc
usr/share/doc/fop-doc/html/api/org/apache/fop/servlet/class-use/ServletContextURIResolver.html contrib/doc/fop-doc
usr/share/doc/fop-doc/html/api/org/apache/fop/util/DataURIResolver.html contrib/doc/fop-doc
usr/share/doc/fop-doc/html/api/org/apache/fop/util/class-use/DataURIResolver.html contrib/doc/fop-doc
usr/share/doc/frox/SECURITY				    net/frox
usr/share/doc/gcj-4.3-base/html/java/net/URI-source.html    doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/java/net/URI-uses.html	    doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/java/net/URI.html	    doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/java/net/URISyntaxException-source.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/java/net/URISyntaxException-uses.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/java/net/URISyntaxException.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/javax/print/URIException-source.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/javax/print/URIException-uses.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/javax/print/URIException.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/javax/print/attribute/URISyntax-source.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/javax/print/attribute/URISyntax-uses.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/javax/print/attribute/URISyntax.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/javax/print/attribute/standard/PrinterURI-source.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/javax/print/attribute/standard/PrinterURI-uses.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/javax/print/attribute/standard/PrinterURI.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/javax/xml/transform/URIResolver-source.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/javax/xml/transform/URIResolver-uses.html doc/libgcj-doc
usr/share/doc/gcj-4.3-base/html/javax/xml/transform/URIResolver.html doc/libgcj-doc
usr/share/doc/ghc6-doc/libraries/network/Network-URI.html   doc/libghc6-network-doc
usr/share/doc/ghc6-doc/libraries/network/src/Network-URI.html doc/libghc6-network-doc
usr/share/doc/gtk2hs-doc/html/System-Gnome-VFS-URI.html	    doc/gtk2hs-doc
usr/share/doc/horde3/SECURITY.gz			    web/horde3
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kabc/html/URIValue-generated_8h-source.html doc/kdelibs4-doc
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kabc/html/URIValue_8cpp-source.html doc/kdelibs4-doc
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kabc/html/VCardURIValue_8h-source.html doc/kdelibs4-doc
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kio/kio/html/classKURIFilter-members.html doc/kdelibs4-doc
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kio/kio/html/classKURIFilter.html doc/kdelibs4-doc
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kio/kio/html/classKURIFilterData-members.html doc/kdelibs4-doc
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kio/kio/html/classKURIFilterData.html doc/kdelibs4-doc
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kio/kio/html/classKURIFilterPlugin-members.html doc/kdelibs4-doc
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kio/kio/html/classKURIFilterPlugin.html doc/kdelibs4-doc
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kio/kio/html/classKURIFilterPlugin.png doc/kdelibs4-doc
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kio/kio/html/classKURIFilterPluginList-members.html doc/kdelibs4-doc
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kio/kio/html/classKURIFilterPluginList.html doc/kdelibs4-doc
usr/share/doc/kde/HTML/en/kdelibs-apidocs/kio/kio/html/classKURIFilterPluginList.png doc/kdelibs4-doc
usr/share/doc/libactiveldap-ruby-doc/rdoc/classes/URI.html  doc/libactiveldap-ruby-doc
usr/share/doc/libactiveldap-ruby-doc/rdoc/classes/URI/LDAPS.html doc/libactiveldap-ruby-doc
usr/share/doc/libapache2-mod-perl2-doc/api/APR/URI.pod.gz   doc/libapache2-mod-perl2-doc
usr/share/doc/libapache2-mod-perl2-doc/api/Apache2/URI.pod.gz doc/libapache2-mod-perl2-doc
usr/share/doc/libaqbanking-doc/aqbanking.html/P_AB_SECURITY_PUBLIC.html doc/libaqbanking-doc
usr/share/doc/libaqbanking-doc/aqbanking.html/group__AB__IMEXPORTER__CONTEXT__SECURITY.html doc/libaqbanking-doc
usr/share/doc/libaqbanking-doc/aqbanking.html/structAB__SECURITY__LIST.html doc/libaqbanking-doc
usr/share/doc/libaqbanking-doc/aqbanking.html/structAB__SECURITY__LIST__ELEMENT.html doc/libaqbanking-doc
usr/share/doc/libaxis-java-doc/javadocs/org/apache/axis/holders/URIHolder-uses.html doc/libaxis-java-doc
usr/share/doc/libaxis-java-doc/javadocs/org/apache/axis/holders/URIHolder.html doc/libaxis-java-doc
usr/share/doc/libaxis-java-doc/javadocs/org/apache/axis/types/URI-uses.html doc/libaxis-java-doc
usr/share/doc/libaxis-java-doc/javadocs/org/apache/axis/types/URI.MalformedURIException-uses.html doc/libaxis-java-doc
usr/share/doc/libaxis-java-doc/javadocs/org/apache/axis/types/URI.MalformedURIException.html doc/libaxis-java-doc
usr/share/doc/libaxis-java-doc/javadocs/org/apache/axis/types/URI.html doc/libaxis-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/apidocs/org/apache/commons/httpclient/URI.DefaultCharsetChanged.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/apidocs/org/apache/commons/httpclient/URI.LocaleToCharsetMap.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/apidocs/org/apache/commons/httpclient/URI.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/apidocs/org/apache/commons/httpclient/URIException.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/apidocs/org/apache/commons/httpclient/class-use/URI.DefaultCharsetChanged.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/apidocs/org/apache/commons/httpclient/class-use/URI.LocaleToCharsetMap.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/apidocs/org/apache/commons/httpclient/class-use/URI.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/apidocs/org/apache/commons/httpclient/class-use/URIException.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/apidocs/org/apache/commons/httpclient/util/URIUtil.Coder.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/apidocs/org/apache/commons/httpclient/util/URIUtil.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/apidocs/org/apache/commons/httpclient/util/class-use/URIUtil.Coder.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/apidocs/org/apache/commons/httpclient/util/class-use/URIUtil.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/xref-test/org/apache/commons/httpclient/TestURI.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/xref-test/org/apache/commons/httpclient/TestURIUtil.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/xref-test/org/apache/commons/httpclient/TestURIUtil2.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/xref/org/apache/commons/httpclient/URI.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/xref/org/apache/commons/httpclient/URIException.html doc/libcommons-httpclient-java-doc
usr/share/doc/libcommons-httpclient-java-doc/docs/xref/org/apache/commons/httpclient/util/URIUtil.html doc/libcommons-httpclient-java-doc
usr/share/doc/libgalax-ocaml-dev/html/api/AnyURI.html	    doc/galax-doc
usr/share/doc/libgalax-ocaml-dev/html/api/Dm_atomic.atomicAnyURI.html doc/galax-doc
usr/share/doc/libgalax-ocaml-dev/html/api/type_AnyURI.html  doc/galax-doc
usr/share/doc/libgalax-ocaml-dev/html/api/type_Dm_atomic.atomicAnyURI.html doc/galax-doc
usr/share/doc/libgdome2-ocaml-dev/html/api/code_VALINode.get_namespaceURI.html libdevel/libgdome2-ocaml-dev
usr/share/doc/libglib2.0-doc/glib/glib-URI-Functions.html   doc/libglib2.0-doc
usr/share/doc/libgrinvin-core-java-doc/api/org/grinvin/graphs/GraphURI.html contrib/doc/libgrinvin-core-java-doc
usr/share/doc/libgrinvin-core-java-doc/api/org/grinvin/graphs/GraphURIException.html contrib/doc/libgrinvin-core-java-doc
usr/share/doc/libgrinvin-core-java-doc/api/org/grinvin/graphs/GraphURIType.html contrib/doc/libgrinvin-core-java-doc
usr/share/doc/libgrinvin-core-java-doc/api/org/grinvin/help/HelpURIResolver.html contrib/doc/libgrinvin-core-java-doc
usr/share/doc/libgrinvin-core-java-doc/api/org/grinvin/list/HasURI.html contrib/doc/libgrinvin-core-java-doc
usr/share/doc/libjaxme-java/api/org/apache/ws/jaxme/xs/types/XSAnyURI.html libs/libjaxme-java
usr/share/doc/libjaxme-java/api/org/apache/ws/jaxme/xs/xml/XsAnyURI.html libs/libjaxme-java
usr/share/doc/libnet-sftp-ruby1.8/api/classes/URI.html	    interpreters/libnet-sftp-ruby1.8
usr/share/doc/libnet-sftp-ruby1.8/api/classes/URI/SFTP.html interpreters/libnet-sftp-ruby1.8
usr/share/doc/libopenid-ruby/html/classes/OpenID/TypeURIMismatch.html libs/libopenid-ruby
usr/share/doc/libopenid-ruby/html/classes/OpenID/TypeURIMismatch.src/M000443.html libs/libopenid-ruby
usr/share/doc/libopenid-ruby/html/classes/OpenID/URINorm.html libs/libopenid-ruby
usr/share/doc/libopenid-ruby/html/classes/OpenID/URINorm.src/M000126.html libs/libopenid-ruby
usr/share/doc/libpdfbox-java-doc/html/org/pdfbox/pdmodel/interactive/action/type/PDActionURI-uses.html contrib/doc/libpdfbox-java-doc
usr/share/doc/libpdfbox-java-doc/html/org/pdfbox/pdmodel/interactive/action/type/PDActionURI.html contrib/doc/libpdfbox-java-doc
usr/share/doc/libperl4caml-ocaml-doc/html/Pl_URI.html	    doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/Pl_URI.uri.html   doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.abs.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.as_string.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.canonical.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.default_port.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.fragment.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.host.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.host_port.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.opaque.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.path.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.port.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.rel.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.scheme.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.set_fragment.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.set_host.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.set_host_port.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.set_no_fragment.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.set_opaque.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.set_path.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.set_port.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.set_scheme.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_METHODPl_URI.uri.sv.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_VALPl_URI.new_.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/code_VALPl_URI.new_abs.html doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/type_Pl_URI.html  doc/libperl4caml-ocaml-doc
usr/share/doc/libperl4caml-ocaml-doc/html/type_Pl_URI.uri.html doc/libperl4caml-ocaml-doc
usr/share/doc/libpoco-doc/html/Poco.URI.html		    doc/libpoco-doc
usr/share/doc/libpoco-doc/html/Poco.URIRedirection.html	    doc/libpoco-doc
usr/share/doc/libpoco-doc/html/Poco.URIStreamFactory.html   doc/libpoco-doc
usr/share/doc/libpoco-doc/html/Poco.URIStreamOpener.html    doc/libpoco-doc
usr/share/doc/libpoco-doc/html/Poco.UnknownURISchemeException.html doc/libpoco-doc
usr/share/doc/libpoco-doc/html/package-Foundation.URI-index.html doc/libpoco-doc
usr/share/doc/libsablot-doc/html/jsdom-ref/apidocs/api-Node.namespaceURI.html doc/libsablot-doc
usr/share/doc/libsablot-doc/html/sablot/apidocs/api-.URIs.html doc/libsablot-doc
usr/share/doc/libsablot-doc/html/sxp/apidocs/api-getNodeNameURI.html doc/libsablot-doc
usr/share/doc/libsaxon-java-doc/api/com/icl/saxon/StandardURIResolver.html doc/libsaxon-java-doc
usr/share/doc/libsaxon-java-doc/api/com/icl/saxon/functions/NamespaceURI.html doc/libsaxon-java-doc
usr/share/doc/libsaxon-java-doc/api/com/icl/saxon/functions/UnparsedEntityURI.html doc/libsaxon-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/CollectionURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/NonDelegatingURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/OutputURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/RelativeURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/StandardURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/dotnet/DotNetCollectionURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/dotnet/DotNetStandardModuleURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/dotnet/DotNetURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/event/HTMLURIEscaper.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/event/XHTMLURIEscaper.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/functions/BaseURI.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/functions/EscapeURI.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/functions/ResolveURI.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/functions/StandardCollectionURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/functions/StaticBaseURI.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/functions/URIQueryParameters.RegexFilter.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/functions/URIQueryParameters.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/query/ModuleURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/query/StandardModuleURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/sort/CollationURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/sort/StandardCollationURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/trans/UnparsedTextURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/type/SchemaURIResolver.html doc/libsaxonb-java-doc
usr/share/doc/libsaxon8-java-doc/api/net/sf/saxon/value/AnyURIValue.html doc/libsaxonb-java-doc
usr/share/doc/libupnp3-dev/html/ixml/ixmlNode_getNamespaceURI.html libdevel/libupnp3-dev
usr/share/doc/libupnp4-dev/html/ixml/ixmlNode_getNamespaceURI.html libdevel/libupnp4-dev
usr/share/doc/libwww-mechanize-ruby-doc/rdoc/classes/WWW/Mechanize/Chain/URIResolver.html doc/libwww-mechanize-ruby-doc
usr/share/doc/libxalan110-doc/apiDocs/FunctionNamespaceURI_8hpp-source.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/FunctionNamespaceURI_8hpp.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/FunctionUnparsedEntityURI_8hpp-source.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/FunctionUnparsedEntityURI_8hpp.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/URISupport_8hpp-source.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/URISupport_8hpp.html  doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/XalanParsedURI_8hpp-source.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/XalanParsedURI_8hpp.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classFunctionNamespaceURI-members.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classFunctionNamespaceURI.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classFunctionNamespaceURI.png doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classFunctionUnparsedEntityURI-members.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classFunctionUnparsedEntityURI.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classFunctionUnparsedEntityURI.png doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classURISupport-members.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classURISupport.html  doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classURISupport_1_1InvalidURIException-members.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classURISupport_1_1InvalidURIException.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classURISupport_1_1InvalidURIException.png doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classXalanEXSLTFunctionDecodeURI-members.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classXalanEXSLTFunctionDecodeURI.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classXalanEXSLTFunctionDecodeURI.png doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classXalanEXSLTFunctionEncodeURI-members.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classXalanEXSLTFunctionEncodeURI.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classXalanEXSLTFunctionEncodeURI.png doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classXalanParsedURI-members.html doc/libxalan110-doc
usr/share/doc/libxalan110-doc/apiDocs/classXalanParsedURI.html doc/libxalan110-doc
usr/share/doc/libxalan2-java-doc/api/org/apache/xml/serializer/utils/URI.MalformedURIException-uses.html doc/libxalan2-java-doc
usr/share/doc/libxalan2-java-doc/api/org/apache/xml/serializer/utils/URI.MalformedURIException.html doc/libxalan2-java-doc
usr/share/doc/libxalan2-java-doc/api/org/apache/xml/utils/URI-uses.html doc/libxalan2-java-doc
usr/share/doc/libxalan2-java-doc/api/org/apache/xml/utils/URI.MalformedURIException-uses.html doc/libxalan2-java-doc
usr/share/doc/libxalan2-java-doc/api/org/apache/xml/utils/URI.MalformedURIException.html doc/libxalan2-java-doc
usr/share/doc/libxalan2-java-doc/api/org/apache/xml/utils/URI.html doc/libxalan2-java-doc
usr/share/doc/libxalan2-java-doc/api/org/apache/xpath/functions/FuncUnparsedEntityURI-uses.html doc/libxalan2-java-doc
usr/share/doc/libxalan2-java-doc/api/org/apache/xpath/functions/FuncUnparsedEntityURI.html doc/libxalan2-java-doc
usr/share/doc/libxerces2-java-doc/api/xerces2/org/apache/xerces/impl/dv/xs/AnyURIDV.html doc/libxerces2-java-doc
usr/share/doc/libxerces2-java-doc/api/xerces2/org/apache/xerces/util/URI.MalformedURIException.html doc/libxerces2-java-doc
usr/share/doc/libxerces2-java-doc/api/xerces2/org/apache/xerces/util/URI.html doc/libxerces2-java-doc
usr/share/doc/libxmlrpc-c3-dev/SECURITY			    libdevel/libxmlrpc-c3-dev
usr/share/doc/libxom-java-doc/apidocs/nu/xom/MalformedURIException-uses.html doc/libxom-java-doc
usr/share/doc/libxom-java-doc/apidocs/nu/xom/MalformedURIException.html doc/libxom-java-doc
usr/share/doc/linux-igd/SECURITY.Debian			    net/linux-igd
usr/share/doc/linuxlogo/README.SECURITY			    misc/linuxlogo
usr/share/doc/lprng/README.SSL.SECURITY.gz		    net/lprng
usr/share/doc/mailagent/SECURITY.gz			    mail/mailagent
usr/share/doc/mimedefang/README.SECURITY		    mail/mimedefang
usr/share/doc/mongrel-doc/rdoc/classes/Mongrel/URIClassifier.html doc/mongrel-doc
usr/share/doc/mongrel-doc/rdoc/classes/Mongrel/URIClassifier.src/M000066.html doc/mongrel-doc
usr/share/doc/mongrel-doc/rdoc/classes/Mongrel/URIClassifier.src/M000067.html doc/mongrel-doc
usr/share/doc/mongrel-doc/rdoc/classes/Mongrel/URIClassifier.src/M000068.html doc/mongrel-doc
usr/share/doc/mongrel-doc/rdoc/classes/Mongrel/URIClassifier.src/M000069.html doc/mongrel-doc
usr/share/doc/mongrel-doc/rdoc/classes/Mongrel/URIClassifier.src/M000070.html doc/mongrel-doc
usr/share/doc/mongrel-doc/rdoc/classes/Mongrel/URIClassifier/RegistrationError.html doc/mongrel-doc
usr/share/doc/mongrel-doc/rdoc/classes/Mongrel/URIClassifier/UsageError.html doc/mongrel-doc
usr/share/doc/mtr/SECURITY				    net/mtr
usr/share/doc/muse/SECURITY.gz				    sound/muse
usr/share/doc/mutt/README.SECURITY			    mail/mutt
usr/share/doc/nagios-nrpe-server/SECURITY		    net/nagios-nrpe-server
usr/share/doc/openais/SECURITY.gz			    admin/openais
usr/share/doc/openjdk-6-jre/api/java/net/URI.html	    doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/java/net/URISyntaxException.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/java/net/class-use/URI.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/java/net/class-use/URISyntaxException.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/java/security/URIParameter.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/java/security/class-use/URIParameter.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/print/URIException.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/print/attribute/URISyntax.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/print/attribute/class-use/URISyntax.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/print/attribute/standard/PrinterURI.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/print/attribute/standard/class-use/PrinterURI.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/print/class-use/URIException.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/xml/crypto/URIDereferencer.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/xml/crypto/URIReference.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/xml/crypto/URIReferenceException.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/xml/crypto/class-use/URIDereferencer.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/xml/crypto/class-use/URIReference.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/xml/crypto/class-use/URIReferenceException.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/xml/crypto/dom/DOMURIReference.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/xml/crypto/dom/class-use/DOMURIReference.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/xml/transform/URIResolver.html doc/openjdk-6-doc
usr/share/doc/openjdk-6-jre/api/javax/xml/transform/class-use/URIResolver.html doc/openjdk-6-doc
usr/share/doc/openoffice.org-dev/docs/common/ref/com/sun/star/script/provider/ScriptURIHelper.html doc/openoffice.org-dev-doc
usr/share/doc/openoffice.org-dev/docs/common/ref/com/sun/star/script/provider/XScriptURIHelper-xref.html doc/openoffice.org-dev-doc
usr/share/doc/openoffice.org-dev/docs/common/ref/com/sun/star/script/provider/XScriptURIHelper.html doc/openoffice.org-dev-doc
usr/share/doc/pcscd/SECURITY				    misc/pcscd
usr/share/doc/php-openid/html/OpenID/Auth_OpenID_TypeURIMismatch.html web/php-openid
usr/share/doc/phpgroupware-0.9.16-doc/SECURITY		    doc/phpgroupware-0.9.16-doc
usr/share/doc/phpgroupware-0.9.16-phpgwapi-doc/SECURITY	    doc/phpgroupware-0.9.16-phpgwapi-doc
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Standards/URI.html doc/pike7.6-reference
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Standards/URI/_backtick_2D_3E_eq.html doc/pike7.6-reference
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Standards/URI/_backtick_5B_5D_eq.html doc/pike7.6-reference
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Standards/URI/_backtick_eq_eq.html doc/pike7.6-reference
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Standards/URI/cast.html doc/pike7.6-reference
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Standards/URI/create.html doc/pike7.6-reference
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Standards/URI/get_path_query.html doc/pike7.6-reference
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Standards/URI/reparse_uri.html doc/pike7.6-reference
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Web/RDF/URIResource.html doc/pike7.6-reference
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Web/RDF/URIResource/create.html doc/pike7.6-reference
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Web/RDF/URIResource/get_namespace.html doc/pike7.6-reference
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Web/RDF/URIResource/get_qname.html doc/pike7.6-reference
usr/share/doc/pike7.6-doc/html/reference/ex/predef_3A_3A/Web/RDF/URIResource/get_uri.html doc/pike7.6-reference
usr/share/doc/prayer-accountd/SECURITY			    mail/prayer-accountd
usr/share/doc/prayer/SECURITY				    mail/prayer
usr/share/doc/python-gammu-doc/html/gammu.ERR_SECURITYERROR-class.html doc/python-gammu-doc
usr/share/doc/python-kde3-doc/html/classref/kio/KURIFilter.html doc/python-kde3-doc
usr/share/doc/python-kde3-doc/html/classref/kio/KURIFilterData.html doc/python-kde3-doc
usr/share/doc/python-kde3-doc/html/classref/kio/KURIFilterPlugin.html doc/python-kde3-doc
usr/share/doc/python-libxml2/examples/tstURI.py		    python/python-libxml2
usr/share/doc/rssh/SECURITY.gz				    net/rssh
usr/share/doc/sendmail-doc/sendmail/SECURITY.gz		    doc/sendmail-doc
usr/share/doc/socat/SECURITY				    net/socat
usr/share/doc/sqwebmail/SECURITY.gz			    mail/sqwebmail
usr/share/doc/sqwebmail/SECURITY.html			    mail/sqwebmail
usr/share/doc/vlock/SECURITY				    utils/vlock
usr/share/doc/vsftpd/SECURITY/DESIGN.gz			    net/vsftpd
usr/share/doc/vsftpd/SECURITY/IMPLEMENTATION		    net/vsftpd
usr/share/doc/vsftpd/SECURITY/OVERVIEW			    net/vsftpd
usr/share/doc/vsftpd/SECURITY/TRUST.gz			    net/vsftpd
usr/share/doc/wfo/classes/OpenURI.html			    web/wfo
usr/share/doc/wfo/classes/OpenURI/Meta.html		    web/wfo
usr/share/doc/wfo/classes/OpenURI/Meta.src/M000163.html	    web/wfo
usr/share/doc/wfo/classes/OpenURI/Meta.src/M000164.html	    web/wfo
usr/share/doc/yate-doc/api/TelEngine__URI.html		    doc/yate-doc
usr/share/doc/yate-doc/api/full-list-TelEngine__URI.html    doc/yate-doc
usr/share/doc/zgv/SECURITY				    graphics/zgv
usr/share/doc/zope2.10-sandbox/SECURITY.txt		    web/zope2.10-sandbox
usr/share/doc/zope2.10/SECURITY.txt			    web/zope2.10
usr/share/gtk-doc/html/libsoup-2.4/libsoup-24-SoupURI.html  doc/libsoup2.4-doc
usr/share/gtk-doc/html/rhythmbox/RBURIDialog.html	    gnome/rhythmbox
usr/share/idl/iceape/nsCDefaultURIFixup.idl		    devel/iceape-dev
usr/share/idl/iceape/nsCURILoader.idl			    devel/iceape-dev
usr/share/idl/iceape/nsIDOMSVGURIReference.idl		    devel/iceape-dev
usr/share/idl/iceape/nsIEncryptedSMIMEURIsSrvc.idl	    devel/iceape-dev
usr/share/idl/iceape/nsIIconURI.idl			    devel/iceape-dev
usr/share/idl/iceape/nsIJARURI.idl			    devel/iceape-dev
usr/share/idl/iceape/nsIRefreshURI.idl			    devel/iceape-dev
usr/share/idl/iceape/nsITextToSubURI.idl		    devel/iceape-dev
usr/share/idl/iceape/nsIURI.idl				    devel/iceape-dev
usr/share/idl/iceape/nsIURIChecker.idl			    devel/iceape-dev
usr/share/idl/iceape/nsIURIContentListener.idl		    devel/iceape-dev
usr/share/idl/iceape/nsIURIFixup.idl			    devel/iceape-dev
usr/share/idl/iceape/nsIURILoader.idl			    devel/iceape-dev
usr/share/idl/iceape/nsIURIRefObject.idl		    devel/iceape-dev
usr/share/idl/icedove/nsCDefaultURIFixup.idl		    mail/icedove-dev
usr/share/idl/icedove/nsCURILoader.idl			    mail/icedove-dev
usr/share/idl/icedove/nsIDOMSVGURIReference.idl		    mail/icedove-dev
usr/share/idl/icedove/nsIEncryptedSMIMEURIsSrvc.idl	    mail/icedove-dev
usr/share/idl/icedove/nsIIconURI.idl			    mail/icedove-dev
usr/share/idl/icedove/nsIJARURI.idl			    mail/icedove-dev
usr/share/idl/icedove/nsIRefreshURI.idl			    mail/icedove-dev
usr/share/idl/icedove/nsITextToSubURI.idl		    mail/icedove-dev
usr/share/idl/icedove/nsIURI.idl			    mail/icedove-dev
usr/share/idl/icedove/nsIURIChecker.idl			    mail/icedove-dev
usr/share/idl/icedove/nsIURIContentListener.idl		    mail/icedove-dev
usr/share/idl/icedove/nsIURIFixup.idl			    mail/icedove-dev
usr/share/idl/icedove/nsIURILoader.idl			    mail/icedove-dev
usr/share/idl/icedove/nsIURIRefObject.idl		    mail/icedove-dev
usr/share/idl/iceowl/nsCDefaultURIFixup.idl		    devel/iceowl-dev
usr/share/idl/iceowl/nsCURILoader.idl			    devel/iceowl-dev
usr/share/idl/iceowl/nsIIconURI.idl			    devel/iceowl-dev
usr/share/idl/iceowl/nsIJARURI.idl			    devel/iceowl-dev
usr/share/idl/iceowl/nsIRefreshURI.idl			    devel/iceowl-dev
usr/share/idl/iceowl/nsITextToSubURI.idl		    devel/iceowl-dev
usr/share/idl/iceowl/nsIURI.idl				    devel/iceowl-dev
usr/share/idl/iceowl/nsIURIChecker.idl			    devel/iceowl-dev
usr/share/idl/iceowl/nsIURIContentListener.idl		    devel/iceowl-dev
usr/share/idl/iceowl/nsIURIFixup.idl			    devel/iceowl-dev
usr/share/idl/iceowl/nsIURILoader.idl			    devel/iceowl-dev
usr/share/idl/iceowl/nsIURIRefObject.idl		    devel/iceowl-dev
usr/share/idl/openoffice/com/sun/star/script/provider/ScriptURIHelper.idl devel/openoffice.org-dev
usr/share/idl/openoffice/com/sun/star/script/provider/XScriptURIHelper.idl devel/openoffice.org-dev
usr/share/idl/xulrunner-1.9/stable/nsIURI.idl		    libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/stable/nsIURIContentListener.idl libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsCDefaultURIFixup.idl libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsCURILoader.idl	    libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsIContentURIGrouper.idl libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsIDOMSVGURIReference.idl libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsIIconURI.idl	    libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsIJARURI.idl	    libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsINestedURI.idl	    libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsIRefreshURI.idl	    libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsITextToSubURI.idl    libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsIURI.idl		    libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsIURIChecker.idl	    libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsIURIClassifier.idl   libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsIURIContentListener.idl libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsIURIFixup.idl	    libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsIURILoader.idl	    libdevel/xulrunner-dev
usr/share/idl/xulrunner-1.9/unstable/nsIURIRefObject.idl    libdevel/xulrunner-dev
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/AttrDef/CSS/URI.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/AttrDef/URI.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/AttrDef/URI/Email.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/AttrDef/URI/Host.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/AttrDef/URI/IPv4.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/AttrDef/URI/IPv6.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/URIScheme.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/URIScheme/ftp.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/URIScheme/http.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/URIScheme/https.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/URIScheme/mailto.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/URIScheme/news.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/URIScheme/nntp.php web/knowledgeroot
usr/share/knowledgeroot/system/extension/libsecure/htmlpurifier/HTMLPurifier/URISchemeRegistry.php web/knowledgeroot
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/URI.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/AttrDef/URI.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/AttrDef/URI/Email.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/AttrDef/URI/Host.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/AttrDef/URI/IPv4.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/AttrDef/URI/IPv6.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URI.php	    web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIDefinition.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIFilter.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIFilter/DisableExternal.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIFilter/DisableExternalResources.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIFilter/HostBlacklist.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIFilter/MakeAbsolute.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIParser.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIScheme.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIScheme/ftp.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIScheme/http.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIScheme/https.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIScheme/mailto.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIScheme/news.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URIScheme/nntp.php web/mahara
usr/share/mahara/lib/htmlpurifier/HTMLPurifier/URISchemeRegistry.php web/mahara
usr/share/man/man3/APR::URI.3pm.gz			    perl/libapache2-mod-perl2
usr/share/man/man3/Apache2::URI.3pm.gz			    perl/libapache2-mod-perl2
usr/share/man/man3/Gnome2::VFS::URI.3pm.gz		    perl/libgnome2-vfs-perl
usr/share/man/man3/Jifty::DBI::Filter::URI.3pm.gz	    perl/libjifty-dbi-perl
usr/share/man/man3/Mail::Message::Field::URIs.3pm.gz	    perl/libmail-box-perl
usr/share/man/man3/Mail::SpamAssassin::Plugin::URIDNSBL.3pm.gz mail/spamassassin
usr/share/man/man3/Mail::SpamAssassin::Plugin::URIDetail.3pm.gz mail/spamassassin
usr/share/man/man3/RDF::Redland::URI.3pm.gz		    perl/librdf-perl
usr/share/man/man3/RDF::Redland::URINode.3pm.gz		    perl/librdf-perl
usr/share/man/man3/RT::URI::a.3pm.gz			    misc/rt3.6-rtfm
usr/share/man/man3/RT::URI::fsck_com_rtfm.3pm.gz	    misc/rt3.6-rtfm
usr/share/man/man3/Regexp::Common::URI.3pm.gz		    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::RFC1035.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::RFC1738.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::RFC1808.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::RFC2384.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::RFC2396.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::RFC2806.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::fax.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::file.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::ftp.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::gopher.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::http.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::news.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::pop.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::prospero.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::tel.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::telnet.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::tv.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/Regexp::Common::URI::wais.3pm.gz	    perl/libregexp-common-perl
usr/share/man/man3/URI.3pm.gz				    perl/liburi-perl
usr/share/man/man3/URI::Escape.3pm.gz			    perl/liburi-perl
usr/share/man/man3/URI::Fetch.3pm.gz			    perl/liburi-fetch-perl
usr/share/man/man3/URI::Fetch::Response.3pm.gz		    perl/liburi-fetch-perl
usr/share/man/man3/URI::Find.3pm.gz			    perl/liburi-find-perl
usr/share/man/man3/URI::Find::Delimited.3pm.gz		    perl/liburi-find-delimited-perl
usr/share/man/man3/URI::Find::Schemeless.3pm.gz		    perl/liburi-find-perl
usr/share/man/man3/URI::Heuristic.3pm.gz		    perl/liburi-perl
usr/share/man/man3/URI::Query.3pm.gz			    perl/liburi-query-perl
usr/share/man/man3/URI::QueryParam.3pm.gz		    perl/liburi-perl
usr/share/man/man3/URI::Split.3pm.gz			    perl/liburi-perl
usr/share/man/man3/URI::Template.3pm.gz			    perl/liburi-template-perl
usr/share/man/man3/URI::URL.3pm.gz			    perl/liburi-perl
usr/share/man/man3/URI::WithBase.3pm.gz			    perl/liburi-perl
usr/share/man/man3/URI::data.3pm.gz			    perl/liburi-perl
usr/share/man/man3/URI::file.3pm.gz			    perl/liburi-perl
usr/share/man/man3/URI::ldap.3pm.gz			    perl/liburi-perl
usr/share/mediawiki-semediawiki/includes/SMW_DV_URI.php	    web/mediawiki-semediawiki
usr/share/mediawiki-semediawiki/specials/URIResolver/SMW_SpecialURIResolver.php web/mediawiki-semediawiki
usr/share/mibs/ietf/URI-TC-MIB				    misc/libsmi2-common
usr/share/mozilla-extensions/ctxextensions/chrome/ctxextensions/content/ctxextensions/pref/pref-sendURI.xul web/mozilla-ctxextensions
usr/share/perl5/Jifty/DBI/Filter/URI.pm			    perl/libjifty-dbi-perl
usr/share/perl5/Mail/Message/Field/URIs.pm		    perl/libmail-box-perl
usr/share/perl5/Mail/Message/Field/URIs.pod		    perl/libmail-box-perl
usr/share/perl5/Mail/SpamAssassin/Plugin/URIDNSBL.pm	    mail/spamassassin
usr/share/perl5/Mail/SpamAssassin/Plugin/URIDetail.pm	    mail/spamassassin
usr/share/perl5/Mail/SpamAssassin/Plugin/URIEval.pm	    mail/spamassassin
usr/share/perl5/RDF/Redland/URI.pm			    perl/librdf-perl
usr/share/perl5/RDF/Redland/URINode.pm			    perl/librdf-perl
usr/share/perl5/Regexp/Common/URI.pm			    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/RFC1035.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/RFC1738.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/RFC1808.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/RFC2384.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/RFC2396.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/RFC2806.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/fax.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/file.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/ftp.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/gopher.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/http.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/news.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/pop.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/prospero.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/tel.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/telnet.pm		    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/tv.pm			    perl/libregexp-common-perl
usr/share/perl5/Regexp/Common/URI/wais.pm		    perl/libregexp-common-perl
usr/share/perl5/URI.pm					    perl/liburi-perl
usr/share/perl5/URI/Escape.pm				    perl/liburi-perl
usr/share/perl5/URI/Fetch.pm				    perl/liburi-fetch-perl
usr/share/perl5/URI/Fetch/Response.pm			    perl/liburi-fetch-perl
usr/share/perl5/URI/Find.pm				    perl/liburi-find-perl
usr/share/perl5/URI/Find/Delimited.pm			    perl/liburi-find-delimited-perl
usr/share/perl5/URI/Find/Schemeless.pm			    perl/liburi-find-perl
usr/share/perl5/URI/Heuristic.pm			    perl/liburi-perl
usr/share/perl5/URI/Query.pm				    perl/liburi-query-perl
usr/share/perl5/URI/QueryParam.pm			    perl/liburi-perl
usr/share/perl5/URI/Split.pm				    perl/liburi-perl
usr/share/perl5/URI/Template.pm				    perl/liburi-template-perl
usr/share/perl5/URI/URL.pm				    perl/liburi-perl
usr/share/perl5/URI/WithBase.pm				    perl/liburi-perl
usr/share/perl5/URI/_foreign.pm				    perl/liburi-perl
usr/share/perl5/URI/_generic.pm				    perl/liburi-perl
usr/share/perl5/URI/_ldap.pm				    perl/liburi-perl
usr/share/perl5/URI/_login.pm				    perl/liburi-perl
usr/share/perl5/URI/_query.pm				    perl/liburi-perl
usr/share/perl5/URI/_segment.pm				    perl/liburi-perl
usr/share/perl5/URI/_server.pm				    perl/liburi-perl
usr/share/perl5/URI/_userpass.pm			    perl/liburi-perl
usr/share/perl5/URI/data.pm				    perl/liburi-perl
usr/share/perl5/URI/file.pm				    perl/liburi-perl
usr/share/perl5/URI/file/Base.pm			    perl/liburi-perl
usr/share/perl5/URI/file/FAT.pm				    perl/liburi-perl
usr/share/perl5/URI/file/Mac.pm				    perl/liburi-perl
usr/share/perl5/URI/file/OS2.pm				    perl/liburi-perl
usr/share/perl5/URI/file/QNX.pm				    perl/liburi-perl
usr/share/perl5/URI/file/Unix.pm			    perl/liburi-perl
usr/share/perl5/URI/file/Win32.pm			    perl/liburi-perl
usr/share/perl5/URI/ftp.pm				    perl/liburi-perl
usr/share/perl5/URI/gopher.pm				    perl/liburi-perl
usr/share/perl5/URI/http.pm				    perl/liburi-perl
usr/share/perl5/URI/https.pm				    perl/liburi-perl
usr/share/perl5/URI/ldap.pm				    perl/liburi-perl
usr/share/perl5/URI/ldapi.pm				    perl/liburi-perl
usr/share/perl5/URI/ldaps.pm				    perl/liburi-perl
usr/share/perl5/URI/mailto.pm				    perl/liburi-perl
usr/share/perl5/URI/mms.pm				    perl/liburi-perl
usr/share/perl5/URI/news.pm				    perl/liburi-perl
usr/share/perl5/URI/nntp.pm				    perl/liburi-perl
usr/share/perl5/URI/pop.pm				    perl/liburi-perl
usr/share/perl5/URI/rlogin.pm				    perl/liburi-perl
usr/share/perl5/URI/rsync.pm				    perl/liburi-perl
usr/share/perl5/URI/rtsp.pm				    perl/liburi-perl
usr/share/perl5/URI/rtspu.pm				    perl/liburi-perl
usr/share/perl5/URI/sip.pm				    perl/liburi-perl
usr/share/perl5/URI/sips.pm				    perl/liburi-perl
usr/share/perl5/URI/snews.pm				    perl/liburi-perl
usr/share/perl5/URI/ssh.pm				    perl/liburi-perl
usr/share/perl5/URI/telnet.pm				    perl/liburi-perl
usr/share/perl5/URI/tn3270.pm				    perl/liburi-perl
usr/share/perl5/URI/urn.pm				    perl/liburi-perl
usr/share/perl5/URI/urn/isbn.pm				    perl/liburi-perl
usr/share/perl5/URI/urn/oid.pm				    perl/liburi-perl
usr/share/perl5/XML/SAX/PurePerl/Reader/URI.pm		    perl/libxml-sax-perl
usr/share/php/Auth/OpenID/URINorm.php			    web/php-openid
usr/share/pyaimt/src/legacy/services/AIMURITranslate.py	    net/pyaimt
usr/share/pyshared/omniORB/URI.py			    python/python-omniorb
usr/share/python-support/python-rdflib/rdflib/URIRef.py	    python/python-rdflib
usr/share/request-tracker3.6/lib/RT/URI.pm		    misc/request-tracker3.6
usr/share/request-tracker3.6/lib/RT/URI/a.pm		    misc/rt3.6-rtfm
usr/share/request-tracker3.6/lib/RT/URI/base.pm		    misc/request-tracker3.6
usr/share/request-tracker3.6/lib/RT/URI/fsck_com_rt.pm	    misc/request-tracker3.6
usr/share/request-tracker3.6/lib/RT/URI/fsck_com_rtfm.pm    misc/rt3.6-rtfm
usr/share/request-tracker3.6/lib/RT/URI/t.pm		    misc/request-tracker3.6