blob: 54c563b19f66a091394ab4cc7e2c3f10150a4338 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
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
|
%%ETC_DIR%%/local.inc-dist
%%ETC_DIR%%/sample-apache.vhost-dist
%%PORTDOCS%%%%DOCSDIR%%/images/sflogo2-105a.png
%%PORTDOCS%%%%DOCSDIR%%/architecture/stats/stats-process.sda
%%PORTDOCS%%%%DOCSDIR%%/docbook/build/.keepme
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/introduction/introduction.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/administration_guide/administration_guide.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/contribution_guide/include/howto_localization.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/contribution_guide/include/howto_contribute.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/contribution_guide/include/howto_documentation.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/contribution_guide/include/coding_standards.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/contribution_guide/include/howto_xhtml.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/contribution_guide/include/templating.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/contribution_guide/include/cvs_repository.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/contribution_guide/contribution_guide.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/getting_started/getting_started.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/introduction/introduction.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/project_functions/tracker.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/project_functions/docman.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/project_functions/file_releases.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/project_functions/forums.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/project_functions/index.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/project_functions/mailing_lists.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/project_functions/news.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/project_functions/project_admin.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/project_functions/project_summary.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/project_functions/surveys.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/project_functions/task_manager.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/project_functions/cvs.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/sitewide_functions/index.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/sitewide_functions/project_help.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/sitewide_functions/search.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/sitewide_functions/snippet.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/sitewide_functions/trove.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/user_functions/index.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/user_guide/user_guide.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/installation_guide/installation_guide.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/entities/authors/roland_mas.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/entities/authors/ken_mccullagh.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/entities/authors/reinhard_spisser.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/entities/authors/guillaume_smet.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/entities/authors/tim_perdue.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/entities/authors/tom_copeland.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/entities/authors/ognyan_kulev.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/entities/authors.ent
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/entities/xinclude.ent
%%PORTDOCS%%%%DOCSDIR%%/docbook/docbook/gforge_manual.xml
%%PORTDOCS%%%%DOCSDIR%%/docbook/xsl/include/common_html.xsl
%%PORTDOCS%%%%DOCSDIR%%/docbook/xsl/include/common_html_chunk.xsl
%%PORTDOCS%%%%DOCSDIR%%/docbook/xsl/include/common_pdf.xsl
%%PORTDOCS%%%%DOCSDIR%%/docbook/xsl/article_html_chunk.xsl
%%PORTDOCS%%%%DOCSDIR%%/docbook/xsl/article_pdf.xsl
%%PORTDOCS%%%%DOCSDIR%%/docbook/xsl/article_html.xsl
%%PORTDOCS%%%%DOCSDIR%%/docbook/xsl/book_html_chunk.xsl
%%PORTDOCS%%%%DOCSDIR%%/docbook/xsl/book_pdf.xsl
%%PORTDOCS%%%%DOCSDIR%%/docbook/xsl/book_html.xsl
%%PORTDOCS%%%%DOCSDIR%%/docbook/INSTALL
%%PORTDOCS%%%%DOCSDIR%%/docbook/Makefile
%%PORTDOCS%%%%DOCSDIR%%/docbook/README
%%PORTDOCS%%%%DOCSDIR%%/log_formats.txt
%%PORTDOCS%%%%DOCSDIR%%/index.php
%%PORTDOCS%%%%DOCSDIR%%/gforge-themes-HOWTO.html
%%PORTDOCS%%%%DOCSDIR%%/doc_utils.php
%%PORTDOCS%%%%DOCSDIR%%/debian-installguidefornewbies.html
%%PORTDOCS%%%%DOCSDIR%%/debian-guide.html
%%PORTDOCS%%%%DOCSDIR%%/README.TuningLDAP
%%PORTDOCS%%%%DOCSDIR%%/README.Themes
%%PORTDOCS%%%%DOCSDIR%%/README.Soap
%%PORTDOCS%%%%DOCSDIR%%/README.Plugins
%%PORTDOCS%%%%DOCSDIR%%/README.KnownBugs
%%PORTDOCS%%%%DOCSDIR%%/README.Custom
%%PORTDOCS%%%%DOCSDIR%%/webalizer-HOWTO.html
%%PORTDOCS%%%%DOCSDIR%%/README.ConvertToUTF8
%%PORTDOCS%%%%DOCSDIR%%/migrating-to-gforge-REPORT.txt
%%PORTDOCS%%%%DOCSDIR%%/migrating-to-gforge-HOWTO.html
%%BACKEND_DIR%%/backend/zones/aliases.zone
%%BACKEND_DIR%%/backend/zones/dns.zone
%%BACKEND_DIR%%/backend/zones/sendmail.cw.zone
%%BACKEND_DIR%%/backend/shell/apache.sh
%%BACKEND_DIR%%/backend/include.pl
%%BACKEND_DIR%%/backend/DatabaseDump.pl
%%BACKEND_DIR%%/cronjobs/tarballs/tarballs.php
%%BACKEND_DIR%%/cronjobs/tarballs/tarballs.sh
%%BACKEND_DIR%%/cronjobs/mail/mailaliases.php
%%BACKEND_DIR%%/cronjobs/mail/mailing_lists_create.php
%%BACKEND_DIR%%/cronjobs/dav-svn/svn-index.php
%%BACKEND_DIR%%/cronjobs/dav-svn/create_docman.php
%%BACKEND_DIR%%/cronjobs/dav-svn/create_group_home.php
%%BACKEND_DIR%%/cronjobs/dav-svn/create_groups.php
%%BACKEND_DIR%%/cronjobs/dav-svn/create_svn.php
%%BACKEND_DIR%%/cronjobs/dav-svn/create_users.php
%%BACKEND_DIR%%/cronjobs/dav-svn/default_page.php
%%BACKEND_DIR%%/cronjobs/dav-svn/README
%%BACKEND_DIR%%/cronjobs/cvs-cron/history_parse.php
%%BACKEND_DIR%%/cronjobs/cvs-cron/cvs.php
%%BACKEND_DIR%%/cronjobs/cvs-cron/grap.c
%%BACKEND_DIR%%/cronjobs/cvs-cron/cvscreate.sh
%%BACKEND_DIR%%/cronjobs/cvs-cron/ssh_create.php
%%BACKEND_DIR%%/cronjobs/cvs-cron/usergroup.php
%%BACKEND_DIR%%/cronjobs/cvs-cron/default_page.php
%%BACKEND_DIR%%/cronjobs/stats_projects.inc
%%BACKEND_DIR%%/cronjobs/stats_projects-backfill.php
%%BACKEND_DIR%%/cronjobs/site_stats.php
%%BACKEND_DIR%%/cronjobs/send_pending_items_mail.php
%%BACKEND_DIR%%/cronjobs/rotate_activity.php
%%BACKEND_DIR%%/cronjobs/reporting_cron.php
%%BACKEND_DIR%%/cronjobs/rating_stats.php
%%BACKEND_DIR%%/cronjobs/project_weekly_metric.php
%%BACKEND_DIR%%/cronjobs/project_weekly_metric-backfill.php
%%BACKEND_DIR%%/cronjobs/project_cleanup.php
%%BACKEND_DIR%%/cronjobs/massmail.php
%%BACKEND_DIR%%/cronjobs/forum_gateway.php
%%BACKEND_DIR%%/cronjobs/db_trove_maint.php
%%BACKEND_DIR%%/cronjobs/crontab.in
%%BACKEND_DIR%%/cronjobs/db_stats_agg.php
%%BACKEND_DIR%%/cronjobs/db_project_sums.php
%%BACKEND_DIR%%/cronjobs/check_stale_tracker_items.php
%%BACKEND_DIR%%/cronjobs/calculate_user_metric.php
%%BACKEND_DIR%%/cronjobs/vacuum.php
%%BACKEND_DIR%%/cronjobs/README.root
%%BACKEND_DIR%%/cronjobs/update_filesize.php
%%BACKEND_DIR%%/cronjobs/tracker_gateway.php
%%BACKEND_DIR%%/cronjobs/stats_site.inc
%%BACKEND_DIR%%/monitor/systemdaemon
%%BACKEND_DIR%%/monitor/check-system.pl
%%BACKEND_DIR%%/utils/underworld-dummy/ssh_dump.pl
%%BACKEND_DIR%%/utils/underworld-dummy/dns_conf.pl
%%BACKEND_DIR%%/utils/underworld-dummy/dump_database.pl
%%BACKEND_DIR%%/utils/underworld-dummy/ia64_dump.pl
%%BACKEND_DIR%%/utils/underworld-dummy/mail_aliases.pl
%%BACKEND_DIR%%/utils/underworld-dummy/mailing_lists_dump.pl
%%BACKEND_DIR%%/utils/underworld-dummy/new_aliases.pl
%%BACKEND_DIR%%/utils/underworld-dummy/aliases.zone
%%BACKEND_DIR%%/utils/cvs1/cvscreate.sh
%%BACKEND_DIR%%/utils/cvs1/cvstar_genlist.pl
%%BACKEND_DIR%%/utils/cvs1/cvstar_superscript.pl
%%BACKEND_DIR%%/utils/ldap/ldap-check-replica
%%BACKEND_DIR%%/utils/ldap/ldap-clean
%%BACKEND_DIR%%/utils/ldap/ldap-del-user
%%BACKEND_DIR%%/utils/ldap/ldap-dump
%%BACKEND_DIR%%/utils/ldap/ldap-import
%%BACKEND_DIR%%/utils/ldap/sql2ldif.pl
%%BACKEND_DIR%%/utils/fixscripts/upgrade_bug_data.php
%%BACKEND_DIR%%/utils/fixscripts/fix_image_data.php
%%BACKEND_DIR%%/utils/fixscripts/tools_data_cleanup.php
%%BACKEND_DIR%%/utils/fixscripts/fix_broken_uids.php
%%BACKEND_DIR%%/utils/fixscripts/upgrade_filerelease_data.php
%%BACKEND_DIR%%/utils/fixscripts/upgrade_forum_data.php
%%BACKEND_DIR%%/utils/fixscripts/upgrade_task_data.php
%%BACKEND_DIR%%/utils/change_default_shell
%%BACKEND_DIR%%/utils/grap.c
%%BACKEND_DIR%%/utils/install-apache.sh
%%BACKEND_DIR%%/utils/fill-in-the-blanks.pl
%%BACKEND_DIR%%/utils/default_page.php
%%BACKEND_DIR%%/utils/decode_images.sh
%%BACKEND_DIR%%/utils/sffingerd.c
%%BACKEND_DIR%%/utils/include.pl
%%DATADIR%%/contrib/rh8_apache20_config/httpd.conf
%%DATADIR%%/contrib/rh8_apache20_config/local.inc
%%DATADIR%%/contrib/rh8_apache20_config/php.conf
%%DATADIR%%/contrib/rh8_apache20_config/php.ini
%%DATADIR%%/contrib/rh8_apache20_config/readme.txt
%%DATADIR%%/contrib/autoconf/autom4te253.cache/requests
%%DATADIR%%/contrib/autoconf/autom4te253.cache/output.0
%%DATADIR%%/contrib/autoconf/autom4te253.cache/traces.0
%%DATADIR%%/contrib/autoconf/configure
%%DATADIR%%/contrib/autoconf/configure.ac
%%DATADIR%%/contrib/autoconf/local.inc.in
%%DATADIR%%/contrib/autoconf/sample-apache.vhost.in
%%DATADIR%%/contrib/autoconf/config.status
%%DATADIR%%/contrib/autoconf/local.inc
%%DATADIR%%/contrib/autoconf/README.configure
%%DATADIR%%/contrib/autoconf/sample-apache.vhost
%%DATADIR%%/contrib/tracker-cc.patch
%%DATADIR%%/contrib/tracker-cc.README
%%DATADIR%%/contrib/gforge.conf
%%DATADIR%%/contrib/gforge-3.0-php_path.patch
%%DATADIR%%/contrib/userlist.patch
%%DATADIR%%/contrib/gforge-3.0-init_sql.patch
%%DATADIR%%/contrib/gforge-3.0-cronjobs.patch
%%DATADIR%%/contrib/cmd-line-prototype.tar.gz
%%DATADIR%%/contrib/beta1_install_from_scratch_install.php
%%DATADIR%%/contrib/beta1_install_from_scratch.txt
%%DATADIR%%/contrib/gforge-3.0-local_config.patch
%%DATADIR%%/contrib/userlist.README
%%DATADIR%%/db/SQL_2.6/user_rating.sql
%%DATADIR%%/db/SQL_2.6/SourceForge.sql
%%DATADIR%%/db/SQL_2.6/dbusers.sql
%%DATADIR%%/db/SQL_2.6/languages.tab
%%DATADIR%%/db/SQL_2.6/replicate.sh
%%DATADIR%%/db/SQL_2.6/replication-master.sql
%%DATADIR%%/db/SQL_2.6/replication-reset-master.sql
%%DATADIR%%/db/SQL_2.6/replication-reset-slave.sql
%%DATADIR%%/db/SQL_2.6/replication-slave.sql
%%DATADIR%%/db/SQL_2.6/replication.plan
%%DATADIR%%/db/SQL_2.6/trove_cat.tab
%%DATADIR%%/db/SQL_2.6/DefaultValues.sql
%%DATADIR%%/db/SQL_2.5/DefaultValues_2_5.sql
%%DATADIR%%/db/SQL_2.5/SourceForge_2_5.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010511.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/artifact-conversion.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/artifact-convert-files.php
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/artifact-fkeys.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/artifact-man.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20001209.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20001214.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20001220.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010109.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010112.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010126.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010206.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010301.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010304.NOTE
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010305.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010313.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010317.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010409.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010412.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010507.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/sqlchanges20010509.sql
%%DATADIR%%/db/SQL_migrate-2.5-to-2.6/README
%%DATADIR%%/db/oci8port/pssonline/DefaultValues.sql
%%DATADIR%%/db/oci8port/pssonline/Languages.sql
%%DATADIR%%/db/oci8port/pssonline/SourceForge.sql
%%DATADIR%%/db/oci8port/pssonline/database-oci8.php
%%DATADIR%%/db/oci8port/pssonline/trove_defaults.sql
%%DATADIR%%/db/oci8port/shaguo/SourceForge2.5_oci8.sql
%%DATADIR%%/db/oci8port/shaguo/SourceForge2.5oci8-Trigger_auto.sql
%%DATADIR%%/db/oci8port/shaguo/SourceForge2.5oci8-Trigger_er.sql
%%DATADIR%%/db/oci8port/shaguo/database.php
%%DATADIR%%/db/oci8port/shaguo/pgdb-convert.pl
%%DATADIR%%/db/README
%%DATADIR%%/db/20041104.sql
%%DATADIR%%/db/20041031.sql
%%DATADIR%%/db/20041025-gforge-4.0
%%DATADIR%%/db/20041020.sql
%%DATADIR%%/db/20041014.sql
%%DATADIR%%/db/20041006.sql
%%DATADIR%%/db/20041005.sql
%%DATADIR%%/db/20041001.sql
%%DATADIR%%/db/20040914.sql
%%DATADIR%%/db/20040826_migraterbac.php
%%DATADIR%%/db/20040826_migrateforum.php
%%DATADIR%%/db/20040826.sql
%%DATADIR%%/db/20040804.sql
%%DATADIR%%/db/20040729.sql
%%DATADIR%%/db/20040722.sql
%%DATADIR%%/db/20040507.sql
%%DATADIR%%/db/20040329.sql
%%DATADIR%%/db/20040326-gforge-3.3
%%DATADIR%%/db/200403252.sql
%%DATADIR%%/db/20040325.sql
%%DATADIR%%/db/20040315.sql
%%DATADIR%%/db/20040204.sql
%%DATADIR%%/db/20040130.sql
%%DATADIR%%/db/20040108-gforge-3.21
%%DATADIR%%/db/20031205.sql
%%DATADIR%%/db/20031129.sql
%%DATADIR%%/db/20031126.sql
%%DATADIR%%/db/20031124.sql
%%DATADIR%%/db/20031105.sql
%%DATADIR%%/db/20031026-gforge-3.1
%%DATADIR%%/db/20030822.sql
%%DATADIR%%/db/20030701-gforge-3.0
%%DATADIR%%/db/20030513.sql
%%DATADIR%%/db/20030312.sql
%%DATADIR%%/db/20030209.sql
%%DATADIR%%/db/20030131.sql
%%DATADIR%%/db/20030115.sql
%%DATADIR%%/db/20030113.sql
%%DATADIR%%/db/20030113-drops.sql
%%DATADIR%%/db/20030112.sql
%%DATADIR%%/db/20030109.sql
%%DATADIR%%/db/20030107.sql
%%DATADIR%%/db/20030105.sql
%%DATADIR%%/db/20030102.sql
%%DATADIR%%/db/20030102-drops.sql
%%DATADIR%%/db/20021230.sql
%%DATADIR%%/db/20021223.sql
%%DATADIR%%/db/20021223-drops.sql
%%DATADIR%%/db/20021216.sql
%%DATADIR%%/db/20021215.sql
%%DATADIR%%/db/20021214.sql
%%DATADIR%%/db/20021213_doc_data-migrate.php
%%DATADIR%%/db/20021213.sql
%%DATADIR%%/db/20021212.sql
%%DATADIR%%/db/20021125.sql
%%DATADIR%%/db/20021124-3_gforge-debian-sf-sync.sql
%%DATADIR%%/db/20021124-2_theming.sql
%%DATADIR%%/db/20021124-1_drop_foundry.sql
%%DATADIR%%/db/gforge2.6.sql
%%DATADIR%%/db/gforge.sql
%%DATADIR%%/db/gforge-pgsql7.3.sql
%%WWW_ROOT%%/gforge/common/pm/ProjectTask.class
%%WWW_ROOT%%/gforge/common/pm/ProjectGroup.class
%%WWW_ROOT%%/gforge/common/pm/ProjectGroupFactory.class
%%WWW_ROOT%%/gforge/common/pm/ProjectCategory.class
%%WWW_ROOT%%/gforge/common/pm/ProjectTaskFactory.class
%%WWW_ROOT%%/gforge/common/pm/Validator.class
%%WWW_ROOT%%/gforge/common/pm/ProjectTasksForUser.class
%%WWW_ROOT%%/gforge/common/survey/Survey.class
%%WWW_ROOT%%/gforge/common/survey/SurveyFactory.class
%%WWW_ROOT%%/gforge/common/survey/SurveyQuestion.class
%%WWW_ROOT%%/gforge/common/survey/SurveyQuestionFactory.class
%%WWW_ROOT%%/gforge/common/survey/SurveyResponse.class
%%WWW_ROOT%%/gforge/common/survey/SurveyResponseFactory.class
%%WWW_ROOT%%/gforge/common/search/TrackersSearchQuery.class
%%WWW_ROOT%%/gforge/common/search/ExportProjectSearchQuery.class
%%WWW_ROOT%%/gforge/common/search/ForumSearchQuery.class
%%WWW_ROOT%%/gforge/common/search/PeopleSearchQuery.class
%%WWW_ROOT%%/gforge/common/search/ProjectSearchQuery.class
%%WWW_ROOT%%/gforge/common/search/SearchQuery.class
%%WWW_ROOT%%/gforge/common/search/SkillSearchQuery.class
%%WWW_ROOT%%/gforge/common/search/DocsSearchQuery.class
%%WWW_ROOT%%/gforge/common/search/ForumsSearchQuery.class
%%WWW_ROOT%%/gforge/common/search/FrsSearchQuery.class
%%WWW_ROOT%%/gforge/common/search/NewsSearchQuery.class
%%WWW_ROOT%%/gforge/common/search/TasksSearchQuery.class
%%WWW_ROOT%%/gforge/common/search/ArtifactSearchQuery.class
%%WWW_ROOT%%/gforge/common/scm/SCMFactory.class
%%WWW_ROOT%%/gforge/common/reporting/report_utils.php
%%WWW_ROOT%%/gforge/common/reporting/ReportGroupAdded.class
%%WWW_ROOT%%/gforge/common/reporting/ReportGroupCum.class
%%WWW_ROOT%%/gforge/common/reporting/ReportProjectAct.class
%%WWW_ROOT%%/gforge/common/reporting/ReportProjectTime.class
%%WWW_ROOT%%/gforge/common/reporting/ReportSetup.class
%%WWW_ROOT%%/gforge/common/reporting/ReportSiteAct.class
%%WWW_ROOT%%/gforge/common/reporting/ReportSiteTime.class
%%WWW_ROOT%%/gforge/common/reporting/ReportTrackerAct.class
%%WWW_ROOT%%/gforge/common/reporting/ReportUserAct.class
%%WWW_ROOT%%/gforge/common/reporting/ReportUserAdded.class
%%WWW_ROOT%%/gforge/common/reporting/ReportUserCum.class
%%WWW_ROOT%%/gforge/common/reporting/ReportUserTime.class
%%WWW_ROOT%%/gforge/common/reporting/Report.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactExtraFieldElement.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactCanned.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactCategory.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactFile.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactFromID.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactGroup.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactResolution.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactType.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactTypes.class
%%WWW_ROOT%%/gforge/common/tracker/Artifacts.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactTypeFactory.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactFactory.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactsForUser.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactHistory.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactMessage.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactBoxOptions.class
%%WWW_ROOT%%/gforge/common/tracker/ArtifactExtraField.class
%%WWW_ROOT%%/gforge/common/tracker/Artifact.class
%%WWW_ROOT%%/gforge/common/mail/MailingList.class
%%WWW_ROOT%%/gforge/common/mail/MailingListFactory.class
%%WWW_ROOT%%/gforge/common/include/system/LDAP.class
%%WWW_ROOT%%/gforge/common/include/system/UNIX.class
%%WWW_ROOT%%/gforge/common/include/system/pgsql.class
%%WWW_ROOT%%/gforge/common/include/cvsweb/DirectoryHandler.class
%%WWW_ROOT%%/gforge/common/include/cvsweb/ErrorHandler.class
%%WWW_ROOT%%/gforge/common/include/cvsweb/FileHandler.class
%%WWW_ROOT%%/gforge/common/include/cvsweb/RCSHandler.class
%%WWW_ROOT%%/gforge/common/include/Jabber.class
%%WWW_ROOT%%/gforge/common/include/Permission.class
%%WWW_ROOT%%/gforge/common/include/Plugin.class
%%WWW_ROOT%%/gforge/common/include/PluginManager.class
%%WWW_ROOT%%/gforge/common/include/User.class
%%WWW_ROOT%%/gforge/common/include/account.php
%%WWW_ROOT%%/gforge/common/include/database.php
%%WWW_ROOT%%/gforge/common/include/scm.php
%%WWW_ROOT%%/gforge/common/include/session.php
%%WWW_ROOT%%/gforge/common/include/timezones.php
%%WWW_ROOT%%/gforge/common/include/utils.php
%%WWW_ROOT%%/gforge/common/include/GForge.class
%%WWW_ROOT%%/gforge/common/include/Stats.class
%%WWW_ROOT%%/gforge/common/include/cron_utils.php
%%WWW_ROOT%%/gforge/common/include/escapingUtils.php
%%WWW_ROOT%%/gforge/common/include/constants.php
%%WWW_ROOT%%/gforge/common/include/MailParser.class
%%WWW_ROOT%%/gforge/common/include/Role.class
%%WWW_ROOT%%/gforge/common/include/RoleObserver.class
%%WWW_ROOT%%/gforge/common/include/SCM.class
%%WWW_ROOT%%/gforge/common/include/System.class
%%WWW_ROOT%%/gforge/common/include/Error.class
%%WWW_ROOT%%/gforge/common/include/license.php
%%WWW_ROOT%%/gforge/common/include/Group.class
%%WWW_ROOT%%/gforge/common/frs/FRSFile.class
%%WWW_ROOT%%/gforge/common/frs/FRSPackage.class
%%WWW_ROOT%%/gforge/common/frs/FRSRelease.class
%%WWW_ROOT%%/gforge/common/forum/Forum.class
%%WWW_ROOT%%/gforge/common/forum/ForumFactory.class
%%WWW_ROOT%%/gforge/common/forum/ForumMessage.class
%%WWW_ROOT%%/gforge/common/forum/ForumMessageFactory.class
%%WWW_ROOT%%/gforge/common/forum/ForumsForUser.class
%%WWW_ROOT%%/gforge/common/docman/Document.class
%%WWW_ROOT%%/gforge/common/docman/DocumentFactory.class
%%WWW_ROOT%%/gforge/common/docman/DocumentGroup.class
%%WWW_ROOT%%/gforge/www/reporting/usertime_graph.php
%%WWW_ROOT%%/gforge/www/reporting/groupadded_graph.php
%%WWW_ROOT%%/gforge/www/reporting/groupcum.php
%%WWW_ROOT%%/gforge/www/reporting/groupcum_graph.php
%%WWW_ROOT%%/gforge/www/reporting/index.php
%%WWW_ROOT%%/gforge/www/reporting/projectact.php
%%WWW_ROOT%%/gforge/www/reporting/projectact_graph.php
%%WWW_ROOT%%/gforge/www/reporting/projecttime.php
%%WWW_ROOT%%/gforge/www/reporting/projecttime_graph.php
%%WWW_ROOT%%/gforge/www/reporting/rebuild.php
%%WWW_ROOT%%/gforge/www/reporting/siteact.php
%%WWW_ROOT%%/gforge/www/reporting/siteact_graph.php
%%WWW_ROOT%%/gforge/www/reporting/sitetime.php
%%WWW_ROOT%%/gforge/www/reporting/sitetime_graph.php
%%WWW_ROOT%%/gforge/www/reporting/sitetimebar.php
%%WWW_ROOT%%/gforge/www/reporting/sitetimebar_graph.php
%%WWW_ROOT%%/gforge/www/reporting/timeadd.php
%%WWW_ROOT%%/gforge/www/reporting/timecategory.php
%%WWW_ROOT%%/gforge/www/reporting/useract.php
%%WWW_ROOT%%/gforge/www/reporting/toolspie.php
%%WWW_ROOT%%/gforge/www/reporting/toolspie_graph.php
%%WWW_ROOT%%/gforge/www/reporting/trackerpie_graph.php
%%WWW_ROOT%%/gforge/www/reporting/useract_graph.php
%%WWW_ROOT%%/gforge/www/reporting/useradded.php
%%WWW_ROOT%%/gforge/www/reporting/useradded_graph.php
%%WWW_ROOT%%/gforge/www/reporting/usercum.php
%%WWW_ROOT%%/gforge/www/reporting/usercum_graph.php
%%WWW_ROOT%%/gforge/www/reporting/usersummary.php
%%WWW_ROOT%%/gforge/www/reporting/usertime.php
%%WWW_ROOT%%/gforge/www/reporting/groupadded.php
%%WWW_ROOT%%/gforge/www/tracker/include/ArtifactFileHtml.class
%%WWW_ROOT%%/gforge/www/tracker/include/ArtifactHtml.class
%%WWW_ROOT%%/gforge/www/tracker/include/ArtifactTypeHtml.class
%%WWW_ROOT%%/gforge/www/tracker/reporting/index.php
%%WWW_ROOT%%/gforge/www/tracker/reporting/trackeract_graph.php
%%WWW_ROOT%%/gforge/www/tracker/reporting/trackerpie_graph.php
%%WWW_ROOT%%/gforge/www/tracker/admin/updates.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-addcanned.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-addcategory.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-addextrafield.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-addextrafieldoption.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-addgroup.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-deletetracker.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-extrafieldcopy.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-updatecanned.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-updatecategory.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-updateextrafield.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-updateextrafieldelement.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-updategroup.php
%%WWW_ROOT%%/gforge/www/tracker/admin/form-updatetracker.php
%%WWW_ROOT%%/gforge/www/tracker/admin/ind.php
%%WWW_ROOT%%/gforge/www/tracker/admin/tracker.php
%%WWW_ROOT%%/gforge/www/tracker/admin/index.php
%%WWW_ROOT%%/gforge/www/tracker/download.php
%%WWW_ROOT%%/gforge/www/tracker/index.php
%%WWW_ROOT%%/gforge/www/tracker/mod.php
%%WWW_ROOT%%/gforge/www/tracker/mod-limited.php
%%WWW_ROOT%%/gforge/www/tracker/taskmgr.php
%%WWW_ROOT%%/gforge/www/tracker/ind.php
%%WWW_ROOT%%/gforge/www/tracker/browse.php
%%WWW_ROOT%%/gforge/www/tracker/tracker.php
%%WWW_ROOT%%/gforge/www/tracker/add.php
%%WWW_ROOT%%/gforge/www/tracker/detail.php
%%WWW_ROOT%%/gforge/www/top/index.php
%%WWW_ROOT%%/gforge/www/top/mostactive.php
%%WWW_ROOT%%/gforge/www/top/toplist.php
%%WWW_ROOT%%/gforge/www/top/topusers.php
%%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs/topright.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs/bottomleft.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs/bottomright-inner.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs/bottomright.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs/topleft-dark.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs/topleft-inner-dark.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs/topleft-inner.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs/topleft.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs/topright-dark.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs/topright-inner-dark.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs/topright-inner.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs/bottomleft-inner.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/xmail16w.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/cfolder15.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/check.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/cvs16b.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/docman16b.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/forum20g.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/forum20w.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/ftp16b.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/halfcheck.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/home16b.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/index.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/mail16b.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/mail16d.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/mail16w.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/manual16c.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/msg.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/ofolder15.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/pencil.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/save.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/survey16b.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/taskman20g.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/taskman20w.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/tracker20g.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/tracker20w.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/trash-x.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/trash.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/write16w.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/ic/caret.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/logo.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/t.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/t2.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/box-grad.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/box-topleft.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/box-topright.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-bottomtab-end-notselected.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-bottomtab-end-selected.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-bottomtab-notselected-bg.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-bottomtab-notselected-end.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-bottomtab-notselected-notselected.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-bottomtab-notselected-selected.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-top-blue.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/vert-grad.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-bottomtab-selected-bg.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-bottomtab-selected-end.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-bottomtab-selected-notselected.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-toptab-end-notselected.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-toptab-end-selected.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-toptab-notselected-bg.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-toptab-notselected-end.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-toptab-notselected-notselected.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-toptab-notselected-selected.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-toptab-selected-bg.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-toptab-selected-end.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/clear.png
%%WWW_ROOT%%/gforge/www/themes/gforge/images/theme-toptab-selected-notselected.png
%%WWW_ROOT%%/gforge/www/themes/gforge/Theme.class
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/xmail16w.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Admin.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Bugs.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/CVS.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Docs.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Files.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Forums.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Homepage.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Lists.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/News.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Patches.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Summary.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Support.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Surveys.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Tasks.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/Tracker.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/caret.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/cfolder15.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/check.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/cvs16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/docman16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/forum20g.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/forum20w.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/ftp16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/halfcheck.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/home16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/index.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/mail16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/mail16d.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/manual16c.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/ofolder15.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/pencil.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/save.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/survey16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/taskman20g.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/taskman20w.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/tracker20g.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/tracker20w.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/trash-x.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/trash.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/mail16w.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/write16w.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/ic/msg.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/proj/taskman16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/proj/docman16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/proj/ftp16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/proj/home16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/proj/mail16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/proj/mail16d.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/proj/manual16c.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/proj/notes16.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/proj/survey16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/proj/cvs16b.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/tabs/select.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/tabs/leftblenddeselect.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/tabs/leftblendselect.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/tabs/leftdeselect.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/tabs/leftselect.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/tabs/rightblenddeselect.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/tabs/rightblendselect.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/tabs/rightdeselect.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/tabs/rightselect.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/tabs/ruledeselect.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/tabs/ruleselect.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/tabs/deselect.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/clear.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/logo.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/logohover.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/point1.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/rateit.png
%%WWW_ROOT%%/gforge/www/themes/osx/images/background.png
%%WWW_ROOT%%/gforge/www/themes/osx/Theme.class
%%WWW_ROOT%%/gforge/www/themes/osx/README
%%WWW_ROOT%%/gforge/www/themes/ultralite/Theme.class
%%WWW_ROOT%%/gforge/www/themes/index.php
%%WWW_ROOT%%/gforge/www/account/verify.php
%%WWW_ROOT%%/gforge/www/account/change_email.php
%%WWW_ROOT%%/gforge/www/account/change_pw.php
%%WWW_ROOT%%/gforge/www/account/editsshkeys.php
%%WWW_ROOT%%/gforge/www/account/first.php
%%WWW_ROOT%%/gforge/www/account/index.php
%%WWW_ROOT%%/gforge/www/account/login.php
%%WWW_ROOT%%/gforge/www/account/logout.php
%%WWW_ROOT%%/gforge/www/account/lostlogin.php
%%WWW_ROOT%%/gforge/www/account/lostpw.php
%%WWW_ROOT%%/gforge/www/account/pending-resend.php
%%WWW_ROOT%%/gforge/www/account/register.php
%%WWW_ROOT%%/gforge/www/account/setlang.php
%%WWW_ROOT%%/gforge/www/account/unsubscribe.php
%%WWW_ROOT%%/gforge/www/account/change_email-complete.php
%%WWW_ROOT%%/gforge/www/survey/admin/survey.php
%%WWW_ROOT%%/gforge/www/survey/admin/add_survey.php
%%WWW_ROOT%%/gforge/www/survey/admin/edit_question.php
%%WWW_ROOT%%/gforge/www/survey/admin/edit_survey.php
%%WWW_ROOT%%/gforge/www/survey/admin/index.php
%%WWW_ROOT%%/gforge/www/survey/admin/show_questions.php
%%WWW_ROOT%%/gforge/www/survey/admin/show_results.php
%%WWW_ROOT%%/gforge/www/survey/admin/show_results_aggregate.php
%%WWW_ROOT%%/gforge/www/survey/admin/show_results_comments.php
%%WWW_ROOT%%/gforge/www/survey/admin/show_results_csv.php
%%WWW_ROOT%%/gforge/www/survey/admin/show_results_individual.php
%%WWW_ROOT%%/gforge/www/survey/admin/graphs.php
%%WWW_ROOT%%/gforge/www/survey/admin/question.php
%%WWW_ROOT%%/gforge/www/survey/admin/survey_utils.php
%%WWW_ROOT%%/gforge/www/survey/admin/add_question.php
%%WWW_ROOT%%/gforge/www/survey/include/SurveyHTML.class
%%WWW_ROOT%%/gforge/www/survey/privacy.php
%%WWW_ROOT%%/gforge/www/survey/rating_resp.php
%%WWW_ROOT%%/gforge/www/survey/survey_utils.php
%%WWW_ROOT%%/gforge/www/survey/survey.php
%%WWW_ROOT%%/gforge/www/survey/survey_resp.php
%%WWW_ROOT%%/gforge/www/survey/index.php
%%WWW_ROOT%%/gforge/www/stats/users_graph.php
%%WWW_ROOT%%/gforge/www/stats/i18n.php
%%WWW_ROOT%%/gforge/www/stats/index.php
%%WWW_ROOT%%/gforge/www/stats/lastlogins.php
%%WWW_ROOT%%/gforge/www/stats/projects.php
%%WWW_ROOT%%/gforge/www/stats/site_stats_utils.php
%%WWW_ROOT%%/gforge/www/stats/views_graph.php
%%WWW_ROOT%%/gforge/www/stats/graphs.php
%%WWW_ROOT%%/gforge/www/squal/get_session_hash.php
%%WWW_ROOT%%/gforge/www/admin/trove/trove_cat_add.php
%%WWW_ROOT%%/gforge/www/admin/trove/trove_cat_edit.php
%%WWW_ROOT%%/gforge/www/admin/trove/trove_cat_list.php
%%WWW_ROOT%%/gforge/www/admin/languages/seetranstabfiles.php
%%WWW_ROOT%%/gforge/www/admin/languages/editdouble.php
%%WWW_ROOT%%/gforge/www/admin/languages/editnotinbasetabfiles.php
%%WWW_ROOT%%/gforge/www/admin/languages/editnotranstabfiles.php
%%WWW_ROOT%%/gforge/www/admin/languages/edittabfiles.php
%%WWW_ROOT%%/gforge/www/admin/languages/edittranstabfiles.php
%%WWW_ROOT%%/gforge/www/admin/languages/gettabfiles.php
%%WWW_ROOT%%/gforge/www/admin/languages/loadtabfiles.php
%%WWW_ROOT%%/gforge/www/admin/languages/seenotinbasetabfiles.php
%%WWW_ROOT%%/gforge/www/admin/languages/seenotranstabfiles.php
%%WWW_ROOT%%/gforge/www/admin/languages/seetabfiles.php
%%WWW_ROOT%%/gforge/www/admin/languages/admintabfiles.php
%%WWW_ROOT%%/gforge/www/admin/admin_table.php
%%WWW_ROOT%%/gforge/www/admin/approve-pending.php
%%WWW_ROOT%%/gforge/www/admin/cronman.php
%%WWW_ROOT%%/gforge/www/admin/database.php
%%WWW_ROOT%%/gforge/www/admin/edit_frs_filetype.php
%%WWW_ROOT%%/gforge/www/admin/edit_frs_processor.php
%%WWW_ROOT%%/gforge/www/admin/edit_licenses.php
%%WWW_ROOT%%/gforge/www/admin/edit_supported_languages.php
%%WWW_ROOT%%/gforge/www/admin/edit_theme.php
%%WWW_ROOT%%/gforge/www/admin/groupedit.php
%%WWW_ROOT%%/gforge/www/admin/grouplist.php
%%WWW_ROOT%%/gforge/www/admin/index.php
%%WWW_ROOT%%/gforge/www/admin/massmail.php
%%WWW_ROOT%%/gforge/www/admin/responses_admin.php
%%WWW_ROOT%%/gforge/www/admin/search.php
%%WWW_ROOT%%/gforge/www/admin/unsubscribe.php
%%WWW_ROOT%%/gforge/www/admin/useredit.php
%%WWW_ROOT%%/gforge/www/admin/userlist.php
%%WWW_ROOT%%/gforge/www/admin/vhost.php
%%WWW_ROOT%%/gforge/www/admin/admin_utils.php
%%WWW_ROOT%%/gforge/www/softwaremap/index.php
%%WWW_ROOT%%/gforge/www/softwaremap/trove_list.php
%%WWW_ROOT%%/gforge/www/soap/common/group.php
%%WWW_ROOT%%/gforge/www/soap/common/user.php
%%WWW_ROOT%%/gforge/www/soap/tracker/tracker.php
%%WWW_ROOT%%/gforge/www/soap/pm/pm.php
%%WWW_ROOT%%/gforge/www/soap/SoapAPI.php
%%WWW_ROOT%%/gforge/www/soap/index.php
%%WWW_ROOT%%/gforge/www/soap/nusoap.php
%%WWW_ROOT%%/gforge/www/snippet/submit.php
%%WWW_ROOT%%/gforge/www/snippet/addversion.php
%%WWW_ROOT%%/gforge/www/snippet/browse.php
%%WWW_ROOT%%/gforge/www/snippet/delete.php
%%WWW_ROOT%%/gforge/www/snippet/detail.php
%%WWW_ROOT%%/gforge/www/snippet/download.php
%%WWW_ROOT%%/gforge/www/snippet/index.php
%%WWW_ROOT%%/gforge/www/snippet/package.php
%%WWW_ROOT%%/gforge/www/snippet/snippet_utils.php
%%WWW_ROOT%%/gforge/www/snippet/add_snippet_to_package.php
%%WWW_ROOT%%/gforge/www/developer/diary.php
%%WWW_ROOT%%/gforge/www/developer/index.php
%%WWW_ROOT%%/gforge/www/developer/monitor.php
%%WWW_ROOT%%/gforge/www/developer/rate.php
%%WWW_ROOT%%/gforge/www/search/include/engines/ArtifactSearchEngine.class
%%WWW_ROOT%%/gforge/www/search/include/engines/ForumSearchEngine.class
%%WWW_ROOT%%/gforge/www/search/include/engines/GroupSearchEngine.class
%%WWW_ROOT%%/gforge/www/search/include/engines/SearchEngine.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/TrackersHtmlSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/DocsHtmlSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/ForumHtmlSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/ForumsHtmlSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/FrsHtmlSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/HtmlGroupSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/HtmlSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/NewsHtmlSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/PeopleHtmlSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/ProjectHtmlSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/ProjectRssSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/RssSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/SearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/SkillHtmlSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/TasksHtmlSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/renderers/ArtifactHtmlSearchRenderer.class
%%WWW_ROOT%%/gforge/www/search/include/SearchManager.class
%%WWW_ROOT%%/gforge/www/search/index.php
%%WWW_ROOT%%/gforge/www/scm/admin/index.php
%%WWW_ROOT%%/gforge/www/scm/include/scm_utils.php
%%WWW_ROOT%%/gforge/www/scm/index.php
%%WWW_ROOT%%/gforge/www/images/ic/write16w.png
%%WWW_ROOT%%/gforge/www/images/ic/cfolder15.png
%%WWW_ROOT%%/gforge/www/images/ic/check.png
%%WWW_ROOT%%/gforge/www/images/ic/cvs16b.png
%%WWW_ROOT%%/gforge/www/images/ic/docman16b.png
%%WWW_ROOT%%/gforge/www/images/ic/ftp16b.png
%%WWW_ROOT%%/gforge/www/images/ic/halfcheck.png
%%WWW_ROOT%%/gforge/www/images/ic/home16b.png
%%WWW_ROOT%%/gforge/www/images/ic/index.png
%%WWW_ROOT%%/gforge/www/images/ic/mail16b.png
%%WWW_ROOT%%/gforge/www/images/ic/mail16d.png
%%WWW_ROOT%%/gforge/www/images/ic/mail16w.png
%%WWW_ROOT%%/gforge/www/images/ic/manual16c.png
%%WWW_ROOT%%/gforge/www/images/ic/notes16.png
%%WWW_ROOT%%/gforge/www/images/ic/ofolder15.png
%%WWW_ROOT%%/gforge/www/images/ic/pencil.png
%%WWW_ROOT%%/gforge/www/images/ic/save.png
%%WWW_ROOT%%/gforge/www/images/ic/support16b.jpg
%%WWW_ROOT%%/gforge/www/images/ic/survey16b.png
%%WWW_ROOT%%/gforge/www/images/ic/taskman16b.png
%%WWW_ROOT%%/gforge/www/images/ic/trash-x.png
%%WWW_ROOT%%/gforge/www/images/ic/trash.png
%%WWW_ROOT%%/gforge/www/images/ic/msg.png
%%WWW_ROOT%%/gforge/www/images/ic/xmail16w.png
%%WWW_ROOT%%/gforge/www/images/ic/forum20g.png
%%WWW_ROOT%%/gforge/www/images/ic/forum20w.png
%%WWW_ROOT%%/gforge/www/images/ic/taskman20g.png
%%WWW_ROOT%%/gforge/www/images/ic/taskman20w.png
%%WWW_ROOT%%/gforge/www/images/ic/tracker20g.png
%%WWW_ROOT%%/gforge/www/images/ic/tracker20w.png
%%WWW_ROOT%%/gforge/www/images/ic/caret.png
%%WWW_ROOT%%/gforge/www/images/blank.png
%%WWW_ROOT%%/gforge/www/images/clear.png
%%WWW_ROOT%%/gforge/www/images/debian-sf-icon.png
%%WWW_ROOT%%/gforge/www/images/favicon.ico
%%WWW_ROOT%%/gforge/www/images/gantt.png
%%WWW_ROOT%%/gforge/www/images/gforge.jpg
%%WWW_ROOT%%/gforge/www/images/icon.png
%%WWW_ROOT%%/gforge/www/images/msg.png
%%WWW_ROOT%%/gforge/www/images/sf-for-debian.png
%%WWW_ROOT%%/gforge/www/images/t.png
%%WWW_ROOT%%/gforge/www/images/t2.png
%%WWW_ROOT%%/gforge/www/images/pow-gforge.png
%%WWW_ROOT%%/gforge/www/register/index.php
%%WWW_ROOT%%/gforge/www/register/projectinfo.php
%%WWW_ROOT%%/gforge/www/docman/admin/index.php
%%WWW_ROOT%%/gforge/www/docman/include/doc_utils.php
%%WWW_ROOT%%/gforge/www/docman/view.php
%%WWW_ROOT%%/gforge/www/docman/index.php
%%WWW_ROOT%%/gforge/www/docman/new.php
%%WWW_ROOT%%/gforge/www/docman/display_doc.php
%%WWW_ROOT%%/gforge/www/project/admin/massfinish.php
%%WWW_ROOT%%/gforge/www/project/admin/editgroupinfo.php
%%WWW_ROOT%%/gforge/www/project/admin/editimages.php
%%WWW_ROOT%%/gforge/www/project/admin/index.php
%%WWW_ROOT%%/gforge/www/project/admin/vhost.php
%%WWW_ROOT%%/gforge/www/project/admin/group_trove.php
%%WWW_ROOT%%/gforge/www/project/admin/history.php
%%WWW_ROOT%%/gforge/www/project/admin/project_admin_utils.php
%%WWW_ROOT%%/gforge/www/project/admin/roleedit.php
%%WWW_ROOT%%/gforge/www/project/admin/massadd.php
%%WWW_ROOT%%/gforge/www/project/admin/database.php
%%WWW_ROOT%%/gforge/www/project/stats/index.php
%%WWW_ROOT%%/gforge/www/project/stats/project_stats_utils.php
%%WWW_ROOT%%/gforge/www/project/showfiles.php
%%WWW_ROOT%%/gforge/www/project/index.php
%%WWW_ROOT%%/gforge/www/project/memberlist.php
%%WWW_ROOT%%/gforge/www/pro/index.php
%%WWW_ROOT%%/gforge/www/pro/gfgps_banner_small.gif
%%WWW_ROOT%%/gforge/www/pm/include/ProjectGroupHTML.class
%%WWW_ROOT%%/gforge/www/pm/include/ProjectTaskHTML.class
%%WWW_ROOT%%/gforge/www/pm/admin/index.php
%%WWW_ROOT%%/gforge/www/pm/reporting/index.php
%%WWW_ROOT%%/gforge/www/pm/add_task.php
%%WWW_ROOT%%/gforge/www/pm/detail_task.php
%%WWW_ROOT%%/gforge/www/pm/gantt.php
%%WWW_ROOT%%/gforge/www/pm/ganttpage.php
%%WWW_ROOT%%/gforge/www/pm/index.php
%%WWW_ROOT%%/gforge/www/pm/mod_task.php
%%WWW_ROOT%%/gforge/www/pm/task.php
%%WWW_ROOT%%/gforge/www/pm/browse_task.php
%%WWW_ROOT%%/gforge/www/pm/calendar.php
%%WWW_ROOT%%/gforge/www/export/forum_0.1.dtd
%%WWW_ROOT%%/gforge/www/export/projhtml.php
%%WWW_ROOT%%/gforge/www/export/projnews.php
%%WWW_ROOT%%/gforge/www/export/projtitl.php
%%WWW_ROOT%%/gforge/www/export/rss_sfnewreleases.php
%%WWW_ROOT%%/gforge/www/export/rss_sfnews.php
%%WWW_ROOT%%/gforge/www/export/rss_sfprojects.php
%%WWW_ROOT%%/gforge/www/export/rss_utils.inc
%%WWW_ROOT%%/gforge/www/export/tracker.php
%%WWW_ROOT%%/gforge/www/export/tracker.xsd
%%WWW_ROOT%%/gforge/www/export/trove_tree.php
%%WWW_ROOT%%/gforge/www/export/trove_tree_0.1.dtd
%%WWW_ROOT%%/gforge/www/export/forum.php
%%WWW_ROOT%%/gforge/www/export/index.php
%%WWW_ROOT%%/gforge/www/forum/admin/index.php
%%WWW_ROOT%%/gforge/www/forum/include/ForumHTML.class
%%WWW_ROOT%%/gforge/www/forum/index.php
%%WWW_ROOT%%/gforge/www/forum/message.php
%%WWW_ROOT%%/gforge/www/forum/monitor.php
%%WWW_ROOT%%/gforge/www/forum/new.php
%%WWW_ROOT%%/gforge/www/forum/save.php
%%WWW_ROOT%%/gforge/www/forum/forum.php
%%WWW_ROOT%%/gforge/www/news/admin/index.php
%%WWW_ROOT%%/gforge/www/news/admin/news_admin_utils.php
%%WWW_ROOT%%/gforge/www/news/index.php
%%WWW_ROOT%%/gforge/www/news/news_utils.php
%%WWW_ROOT%%/gforge/www/news/submit.php
%%WWW_ROOT%%/gforge/www/new/index.php
%%WWW_ROOT%%/gforge/www/my/bookmark_add.php
%%WWW_ROOT%%/gforge/www/my/bookmark_delete.php
%%WWW_ROOT%%/gforge/www/my/bookmark_edit.php
%%WWW_ROOT%%/gforge/www/my/diary.php
%%WWW_ROOT%%/gforge/www/my/index.php
%%WWW_ROOT%%/gforge/www/my/rmproject.php
%%WWW_ROOT%%/gforge/www/mail/admin/index.php
%%WWW_ROOT%%/gforge/www/mail/index.php
%%WWW_ROOT%%/gforge/www/mail/mail_utils.php
%%WWW_ROOT%%/gforge/www/frs/admin/editrelease.php
%%WWW_ROOT%%/gforge/www/frs/admin/index.php
%%WWW_ROOT%%/gforge/www/frs/admin/qrs.php
%%WWW_ROOT%%/gforge/www/frs/admin/showreleases.php
%%WWW_ROOT%%/gforge/www/frs/admin/deletepackage.php
%%WWW_ROOT%%/gforge/www/frs/admin/deleterelease.php
%%WWW_ROOT%%/gforge/www/frs/include/frs_utils.php
%%WWW_ROOT%%/gforge/www/frs/download.php
%%WWW_ROOT%%/gforge/www/frs/index.php
%%WWW_ROOT%%/gforge/www/frs/monitor.php
%%WWW_ROOT%%/gforge/www/frs/shownotes.php
%%WWW_ROOT%%/gforge/www/help/index.php
%%WWW_ROOT%%/gforge/www/help/tracker.php
%%WWW_ROOT%%/gforge/www/help/trove_cat.php
%%WWW_ROOT%%/gforge/www/include/languages/Basque.tab
%%WWW_ROOT%%/gforge/www/include/languages/Bulgarian.tab
%%WWW_ROOT%%/gforge/www/include/languages/Catalan.tab
%%WWW_ROOT%%/gforge/www/include/languages/Chinese.tab
%%WWW_ROOT%%/gforge/www/include/languages/Dutch.tab
%%WWW_ROOT%%/gforge/www/include/languages/English.tab
%%WWW_ROOT%%/gforge/www/include/languages/Esperanto.tab
%%WWW_ROOT%%/gforge/www/include/languages/French.tab
%%WWW_ROOT%%/gforge/www/include/languages/German.tab
%%WWW_ROOT%%/gforge/www/include/languages/Greek.tab
%%WWW_ROOT%%/gforge/www/include/languages/Hebrew.tab
%%WWW_ROOT%%/gforge/www/include/languages/Indonesian.tab
%%WWW_ROOT%%/gforge/www/include/languages/Italian.tab
%%WWW_ROOT%%/gforge/www/include/languages/Japanese.tab
%%WWW_ROOT%%/gforge/www/include/languages/Korean.tab
%%WWW_ROOT%%/gforge/www/include/languages/Norwegian.tab
%%WWW_ROOT%%/gforge/www/include/languages/Polish.tab
%%WWW_ROOT%%/gforge/www/include/languages/Portuguese.tab
%%WWW_ROOT%%/gforge/www/include/languages/PortugueseBrazilian.tab
%%WWW_ROOT%%/gforge/www/include/languages/Russian.tab
%%WWW_ROOT%%/gforge/www/include/languages/SimplifiedChinese.tab
%%WWW_ROOT%%/gforge/www/include/languages/Spanish.tab
%%WWW_ROOT%%/gforge/www/include/languages/Swedish.tab
%%WWW_ROOT%%/gforge/www/include/languages/Thai.tab
%%WWW_ROOT%%/gforge/www/include/languages/Latin.tab
%%WWW_ROOT%%/gforge/www/include/languages/Base.tab
%%WWW_ROOT%%/gforge/www/include/BaseLanguage.class
%%WWW_ROOT%%/gforge/www/include/HTML_Graphs.php
%%WWW_ROOT%%/gforge/www/include/Layout.class
%%WWW_ROOT%%/gforge/www/include/bookmarks.php
%%WWW_ROOT%%/gforge/www/include/browser.php
%%WWW_ROOT%%/gforge/www/include/canned_responses.php
%%WWW_ROOT%%/gforge/www/include/database-mysql.php
%%WWW_ROOT%%/gforge/www/include/database-oci8.php
%%WWW_ROOT%%/gforge/www/include/database-pgsql.php
%%WWW_ROOT%%/gforge/www/include/exit.php
%%WWW_ROOT%%/gforge/www/include/features_boxes.php
%%WWW_ROOT%%/gforge/www/include/filechecks.php
%%WWW_ROOT%%/gforge/www/include/graph_lib.php
%%WWW_ROOT%%/gforge/www/include/help.php
%%WWW_ROOT%%/gforge/www/include/html.php
%%WWW_ROOT%%/gforge/www/include/logger.php
%%WWW_ROOT%%/gforge/www/include/pre.php
%%WWW_ROOT%%/gforge/www/include/proj_email.php
%%WWW_ROOT%%/gforge/www/include/project_home.php
%%WWW_ROOT%%/gforge/www/include/project_summary.php
%%WWW_ROOT%%/gforge/www/include/squal_pre.php
%%WWW_ROOT%%/gforge/www/include/squal_exit.php
%%WWW_ROOT%%/gforge/www/include/user_home.php
%%WWW_ROOT%%/gforge/www/include/stats_function.php
%%WWW_ROOT%%/gforge/www/include/tool_reports.php
%%WWW_ROOT%%/gforge/www/include/trove.php
%%WWW_ROOT%%/gforge/www/include/vote_function.php
%%WWW_ROOT%%/gforge/www/include/overrides.inc
%%WWW_ROOT%%/gforge/www/include/LayoutSF.class
%%WWW_ROOT%%/gforge/www/include/menuSF.php
%%WWW_ROOT%%/gforge/www/include/note.php
%%WWW_ROOT%%/gforge/www/include/role_utils.php
%%WWW_ROOT%%/gforge/www/people/admin/index.php
%%WWW_ROOT%%/gforge/www/people/createjob.php
%%WWW_ROOT%%/gforge/www/people/editjob.php
%%WWW_ROOT%%/gforge/www/people/editprofile.php
%%WWW_ROOT%%/gforge/www/people/helpwanted-latest.php
%%WWW_ROOT%%/gforge/www/people/index.php
%%WWW_ROOT%%/gforge/www/people/viewjob.php
%%WWW_ROOT%%/gforge/www/people/viewprofile.php
%%WWW_ROOT%%/gforge/www/people/people_utils.php
%%WWW_ROOT%%/gforge/www/people/skills_utils.php
%%WWW_ROOT%%/gforge/www/404.php
%%WWW_ROOT%%/gforge/www/index_std.php
%%WWW_ROOT%%/gforge/www/notepad.php
%%WWW_ROOT%%/gforge/www/users
%%WWW_ROOT%%/gforge/www/download.php
%%WWW_ROOT%%/gforge/www/projects
%%WWW_ROOT%%/gforge/www/sendmessage.php
%%WWW_ROOT%%/gforge/www/dbimage.php
%%WWW_ROOT%%/gforge/www/source.php
%%WWW_ROOT%%/gforge/www/tarballs.php
%%WWW_ROOT%%/gforge/www/index.php
@unexec rmdir %D/%%ETC_DIR%% 2>/dev/null || true
@unexec rmdir %D/%%BACKEND_DIR%%/backend/zones 2>/dev/null || true
@unexec rmdir %D/%%BACKEND_DIR%%/backend/shell 2>/dev/null || true
@unexec rmdir %D/%%BACKEND_DIR%%/backend 2>/dev/null || true
@unexec rmdir %D/%%BACKEND_DIR%%/cronjobs/mail 2>/dev/null || true
@unexec rmdir %D/%%BACKEND_DIR%%/cronjobs/tarballs 2>/dev/null || true
@unexec rmdir %D/%%BACKEND_DIR%%/cronjobs/dav-svn 2>/dev/null || true
@unexec rmdir %D/%%BACKEND_DIR%%/cronjobs/cvs-cron 2>/dev/null || true
@unexec rmdir %D/%%BACKEND_DIR%%/cronjobs 2>/dev/null || true
@dirrm %%BACKEND_DIR%%/monitor
@dirrm %%BACKEND_DIR%%/utils/underworld-dummy
@dirrm %%BACKEND_DIR%%/utils/cvs1
@dirrm %%BACKEND_DIR%%/utils/fixscripts
@dirrm %%BACKEND_DIR%%/utils/ldap
@dirrm %%BACKEND_DIR%%/utils
@unexec rmdir %D/%%BACKEND_DIR%% 2>/dev/null || true
@dirrm %%DATADIR%%/contrib/autoconf/autom4te253.cache
@dirrm %%DATADIR%%/contrib/autoconf
@dirrm %%DATADIR%%/contrib/rh8_apache20_config
@dirrm %%DATADIR%%/contrib
@dirrm %%DATADIR%%/db/SQL_2.5
@dirrm %%DATADIR%%/db/SQL_2.6
@dirrm %%DATADIR%%/db/SQL_migrate-2.5-to-2.6
@dirrm %%DATADIR%%/db/oci8port/pssonline
@dirrm %%DATADIR%%/db/oci8port/shaguo
@dirrm %%DATADIR%%/db/oci8port
@dirrm %%DATADIR%%/db
@dirrm %%DATADIR%%
@dirrm %%WWW_ROOT%%/gforge/common/tracker
@dirrm %%WWW_ROOT%%/gforge/common/pm
@dirrm %%WWW_ROOT%%/gforge/common/include/system
@dirrm %%WWW_ROOT%%/gforge/common/include/cvsweb
@dirrm %%WWW_ROOT%%/gforge/common/include
@dirrm %%WWW_ROOT%%/gforge/common/frs
@dirrm %%WWW_ROOT%%/gforge/common/forum
@dirrm %%WWW_ROOT%%/gforge/common/docman
@dirrm %%WWW_ROOT%%/gforge/common/survey
@dirrm %%WWW_ROOT%%/gforge/common/search
@dirrm %%WWW_ROOT%%/gforge/common/scm
@dirrm %%WWW_ROOT%%/gforge/common/mail
@dirrm %%WWW_ROOT%%/gforge/common/reporting
@dirrm %%WWW_ROOT%%/gforge/common
@dirrm %%WWW_ROOT%%/gforge/www/register
@dirrm %%WWW_ROOT%%/gforge/www/help
@dirrm %%WWW_ROOT%%/gforge/www/forum/admin
@dirrm %%WWW_ROOT%%/gforge/www/forum/include
@dirrm %%WWW_ROOT%%/gforge/www/forum
@dirrm %%WWW_ROOT%%/gforge/www/export
@dirrm %%WWW_ROOT%%/gforge/www/top
@dirrm %%WWW_ROOT%%/gforge/www/docman/admin
@dirrm %%WWW_ROOT%%/gforge/www/docman/include
@dirrm %%WWW_ROOT%%/gforge/www/docman
@dirrm %%WWW_ROOT%%/gforge/www/developer
@dirrm %%WWW_ROOT%%/gforge/www/softwaremap
@dirrm %%WWW_ROOT%%/gforge/www/snippet
@dirrm %%WWW_ROOT%%/gforge/www/admin/trove
@dirrm %%WWW_ROOT%%/gforge/www/admin/languages
@dirrm %%WWW_ROOT%%/gforge/www/admin
@dirrm %%WWW_ROOT%%/gforge/www/account
@dirrm %%WWW_ROOT%%/gforge/www/themes/gforge/images/tabs
@dirrm %%WWW_ROOT%%/gforge/www/themes/gforge/images/ic
@dirrm %%WWW_ROOT%%/gforge/www/themes/gforge/images
@dirrm %%WWW_ROOT%%/gforge/www/themes/gforge
@dirrm %%WWW_ROOT%%/gforge/www/themes/osx/images/ic
@dirrm %%WWW_ROOT%%/gforge/www/themes/osx/images/proj
@dirrm %%WWW_ROOT%%/gforge/www/themes/osx/images/tabs
@dirrm %%WWW_ROOT%%/gforge/www/themes/osx/images
@dirrm %%WWW_ROOT%%/gforge/www/themes/osx
@dirrm %%WWW_ROOT%%/gforge/www/themes/ultralite
@dirrm %%WWW_ROOT%%/gforge/www/themes
@unexec rmdir %D/%%WWW_ROOT%%/gforge/www/themes 2>/dev/null || true
@dirrm %%WWW_ROOT%%/gforge/www/search/include/engines
@dirrm %%WWW_ROOT%%/gforge/www/search/include/renderers
@dirrm %%WWW_ROOT%%/gforge/www/search/include
@dirrm %%WWW_ROOT%%/gforge/www/search
@dirrm %%WWW_ROOT%%/gforge/www/scm/admin
@dirrm %%WWW_ROOT%%/gforge/www/scm/include
@dirrm %%WWW_ROOT%%/gforge/www/scm
@dirrm %%WWW_ROOT%%/gforge/www/images/ic
@dirrm %%WWW_ROOT%%/gforge/www/images
@dirrm %%WWW_ROOT%%/gforge/www/tracker/include
@dirrm %%WWW_ROOT%%/gforge/www/tracker/reporting
@dirrm %%WWW_ROOT%%/gforge/www/tracker/admin
@dirrm %%WWW_ROOT%%/gforge/www/tracker
@dirrm %%WWW_ROOT%%/gforge/www/survey/admin
@dirrm %%WWW_ROOT%%/gforge/www/survey/include
@dirrm %%WWW_ROOT%%/gforge/www/survey
@dirrm %%WWW_ROOT%%/gforge/www/project/admin
@dirrm %%WWW_ROOT%%/gforge/www/project/stats
@dirrm %%WWW_ROOT%%/gforge/www/project
@dirrm %%WWW_ROOT%%/gforge/www/pro
@dirrm %%WWW_ROOT%%/gforge/www/pm/include
@dirrm %%WWW_ROOT%%/gforge/www/pm/admin
@dirrm %%WWW_ROOT%%/gforge/www/pm/reporting
@dirrm %%WWW_ROOT%%/gforge/www/pm
@dirrm %%WWW_ROOT%%/gforge/www/people/admin
@dirrm %%WWW_ROOT%%/gforge/www/people
@dirrm %%WWW_ROOT%%/gforge/www/news/admin
@dirrm %%WWW_ROOT%%/gforge/www/news
@dirrm %%WWW_ROOT%%/gforge/www/new
@dirrm %%WWW_ROOT%%/gforge/www/my
@dirrm %%WWW_ROOT%%/gforge/www/mail/admin
@dirrm %%WWW_ROOT%%/gforge/www/mail
@dirrm %%WWW_ROOT%%/gforge/www/stats
@dirrm %%WWW_ROOT%%/gforge/www/squal
@dirrm %%WWW_ROOT%%/gforge/www/include/languages
@dirrm %%WWW_ROOT%%/gforge/www/include
@dirrm %%WWW_ROOT%%/gforge/www/reporting
@dirrm %%WWW_ROOT%%/gforge/www/soap/common
@dirrm %%WWW_ROOT%%/gforge/www/soap/pm
@dirrm %%WWW_ROOT%%/gforge/www/soap/tracker
@dirrm %%WWW_ROOT%%/gforge/www/soap
@dirrm %%WWW_ROOT%%/gforge/www/frs/admin
@dirrm %%WWW_ROOT%%/gforge/www/frs/include
@dirrm %%WWW_ROOT%%/gforge/www/frs
@dirrm %%WWW_ROOT%%/gforge/www
@unexec rmdir %D/%%WWW_ROOT%%/gforge || true
%%PORTDOCS%%@dirrm %%DOCSDIR%%/images
%%PORTDOCS%%@dirrm %%DOCSDIR%%/architecture/stats
%%PORTDOCS%%@dirrm %%DOCSDIR%%/architecture
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/build
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/introduction
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/administration_guide
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/contribution_guide/include
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/contribution_guide
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/user_guide/getting_started
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/user_guide/introduction
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/user_guide/project_functions
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/user_guide/sitewide_functions
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/user_guide/user_functions
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/user_guide
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/installation_guide
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/entities/authors
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook/entities
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/xsl/include
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/xsl
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook/docbook
%%PORTDOCS%%@dirrm %%DOCSDIR%%/docbook
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|