summaryrefslogtreecommitdiffstats
path: root/deskutils/phpcollab/pkg-plist
blob: 3d59357bd02736157c4a7e651ac68d0eb5e9e527 (plain)
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
%%WWWDIR%%/administration/admin.php
%%WWWDIR%%/administration/index.php
%%WWWDIR%%/administration/listlogs.php
%%WWWDIR%%/administration/mycompany.php
%%WWWDIR%%/administration/phpinfo.php
%%WWWDIR%%/administration/phpmyadmin.php
%%WWWDIR%%/administration/phppgadmin.php
%%WWWDIR%%/administration/support.php
%%WWWDIR%%/administration/systeminfo.php
%%WWWDIR%%/administration/updatedatabase.php
%%WWWDIR%%/administration/updatesettings.php
%%WWWDIR%%/alerts/daily_alert.php
%%WWWDIR%%/bookmarks/deletebookmarks.php
%%WWWDIR%%/bookmarks/editbookmark.php
%%WWWDIR%%/bookmarks/index.php
%%WWWDIR%%/bookmarks/listbookmarks.php
%%WWWDIR%%/bookmarks/viewbookmark.php
%%WWWDIR%%/browsecvs/browsecvs.class.php
%%WWWDIR%%/browsecvs/browsecvs.php
%%WWWDIR%%/browsecvs/header.php
%%WWWDIR%%/browsecvs/images/back.gif
%%WWWDIR%%/browsecvs/images/dir.gif
%%WWWDIR%%/browsecvs/images/file.gif
%%WWWDIR%%/browsecvs/index.php
%%WWWDIR%%/browsecvs/style.css
%%WWWDIR%%/browsecvs/textutil.php
%%WWWDIR%%/browsecvs/theme.php
%%WWWDIR%%/calendar/deletecalendar.php
%%WWWDIR%%/calendar/exportcalendar.php
%%WWWDIR%%/calendar/graphtasks.php
%%WWWDIR%%/calendar/index.php
%%WWWDIR%%/calendar/viewcalendar.php
%%WWWDIR%%/clients/deleteclients.php
%%WWWDIR%%/clients/editclient.php
%%WWWDIR%%/clients/index.php
%%WWWDIR%%/clients/listclients.php
%%WWWDIR%%/clients/viewclient.php
%%WWWDIR%%/dev-kit/list_notoggle_icons.php
%%WWWDIR%%/dev-kit/list_notoggle_icons_limititems.php
%%WWWDIR%%/dev-kit/list_notoggle_icons_nocheckbox_nosorting.php
%%WWWDIR%%/dev-kit/list_notoggle_noicons.php
%%WWWDIR%%/dev-kit/list_toggle_icons.php
%%WWWDIR%%/dev-kit/list_toggle_noicons.php
%%WWWDIR%%/dev-kit/page.php
%%WWWDIR%%/dev-kit/readme.txt
%%WWWDIR%%/dev-kit/sheet_notoggle_icons.php
%%WWWDIR%%/dev-kit/sheet_notoggle_noicons.php
%%WWWDIR%%/dev-kit/sheet_toggle_icons.php
%%WWWDIR%%/dev-kit/sheet_toggle_noicons.php
%%WWWDIR%%/docs/changes.txt
%%WWWDIR%%/docs/copying.txt
%%WWWDIR%%/docs/developers.txt
%%WWWDIR%%/docs/index.php
%%WWWDIR%%/docs/install.txt
%%WWWDIR%%/docs/mdc.png
%%WWWDIR%%/docs/modules/cvs.zip
%%WWWDIR%%/docs/modules/mantis.zip
%%WWWDIR%%/docs/modules/phases.txt
%%WWWDIR%%/docs/modules/ssl.zip
%%WWWDIR%%/docs/modules/support.txt
%%WWWDIR%%/docs/notes.txt
%%WWWDIR%%/docs/readme.txt
%%WWWDIR%%/docs/todo.txt
%%WWWDIR%%/files/.htaccess
%%WWWDIR%%/files/index.php
%%WWWDIR%%/general/data_funcs.inc.php
%%WWWDIR%%/general/error.php
%%WWWDIR%%/general/home.php
%%WWWDIR%%/general/index.php
%%WWWDIR%%/general/license.php
%%WWWDIR%%/general/login.php
%%WWWDIR%%/general/permissiondenied.php
%%WWWDIR%%/general/sendpassword.php
%%WWWDIR%%/general/systemrequirements.php
%%WWWDIR%%/includes/calendar.php
%%WWWDIR%%/includes/class.ezpdf.php
%%WWWDIR%%/includes/class.pdf.php
%%WWWDIR%%/includes/customvalues.php
%%WWWDIR%%/includes/cvslib.php
%%WWWDIR%%/includes/db_var.inc.php
%%WWWDIR%%/includes/download.php
%%WWWDIR%%/includes/files_types.php
%%WWWDIR%%/includes/fonts/Courier-Bold.afm
%%WWWDIR%%/includes/fonts/Courier-BoldOblique.afm
%%WWWDIR%%/includes/fonts/Courier-Oblique.afm
%%WWWDIR%%/includes/fonts/Courier.afm
%%WWWDIR%%/includes/fonts/Helvetica-Bold.afm
%%WWWDIR%%/includes/fonts/Helvetica-BoldOblique.afm
%%WWWDIR%%/includes/fonts/Helvetica-Oblique.afm
%%WWWDIR%%/includes/fonts/Helvetica.afm
%%WWWDIR%%/includes/fonts/Symbol.afm
%%WWWDIR%%/includes/fonts/Times-Bold.afm
%%WWWDIR%%/includes/fonts/Times-BoldItalic.afm
%%WWWDIR%%/includes/fonts/Times-Italic.afm
%%WWWDIR%%/includes/fonts/Times-Roman.afm
%%WWWDIR%%/includes/fonts/ZapfDingbats.afm
%%WWWDIR%%/includes/fonts/php_Courier-Bold.afm
%%WWWDIR%%/includes/fonts/php_Courier-BoldOblique.afm
%%WWWDIR%%/includes/fonts/php_Courier-Oblique.afm
%%WWWDIR%%/includes/fonts/php_Courier.afm
%%WWWDIR%%/includes/fonts/php_Helvetica-Bold.afm
%%WWWDIR%%/includes/fonts/php_Helvetica-BoldOblique.afm
%%WWWDIR%%/includes/fonts/php_Helvetica-Oblique.afm
%%WWWDIR%%/includes/fonts/php_Helvetica.afm
%%WWWDIR%%/includes/fonts/php_Symbol.afm
%%WWWDIR%%/includes/fonts/php_Times-Bold.afm
%%WWWDIR%%/includes/fonts/php_Times-BoldItalic.afm
%%WWWDIR%%/includes/fonts/php_Times-Italic.afm
%%WWWDIR%%/includes/fonts/php_Times-Roman.afm
%%WWWDIR%%/includes/fonts/php_ZapfDingbats.afm
%%WWWDIR%%/includes/fonts/php_a0100131.afm
%%WWWDIR%%/includes/fonts/php_a010013l.afm
%%WWWDIR%%/includes/htmlarea/dialog.js
%%WWWDIR%%/includes/htmlarea/htmlarea.css
%%WWWDIR%%/includes/htmlarea/htmlarea.js
%%WWWDIR%%/includes/htmlarea/images/ed_about.gif
%%WWWDIR%%/includes/htmlarea/images/ed_align_center.gif
%%WWWDIR%%/includes/htmlarea/images/ed_align_justify.gif
%%WWWDIR%%/includes/htmlarea/images/ed_align_left.gif
%%WWWDIR%%/includes/htmlarea/images/ed_align_right.gif
%%WWWDIR%%/includes/htmlarea/images/ed_blank.gif
%%WWWDIR%%/includes/htmlarea/images/ed_charmap.gif
%%WWWDIR%%/includes/htmlarea/images/ed_color_bg.gif
%%WWWDIR%%/includes/htmlarea/images/ed_color_fg.gif
%%WWWDIR%%/includes/htmlarea/images/ed_copy.gif
%%WWWDIR%%/includes/htmlarea/images/ed_custom.gif
%%WWWDIR%%/includes/htmlarea/images/ed_cut.gif
%%WWWDIR%%/includes/htmlarea/images/ed_delete.gif
%%WWWDIR%%/includes/htmlarea/images/ed_format_bold.gif
%%WWWDIR%%/includes/htmlarea/images/ed_format_italic.gif
%%WWWDIR%%/includes/htmlarea/images/ed_format_strike.gif
%%WWWDIR%%/includes/htmlarea/images/ed_format_sub.gif
%%WWWDIR%%/includes/htmlarea/images/ed_format_sup.gif
%%WWWDIR%%/includes/htmlarea/images/ed_format_underline.gif
%%WWWDIR%%/includes/htmlarea/images/ed_help.gif
%%WWWDIR%%/includes/htmlarea/images/ed_hr.gif
%%WWWDIR%%/includes/htmlarea/images/ed_html.gif
%%WWWDIR%%/includes/htmlarea/images/ed_image.gif
%%WWWDIR%%/includes/htmlarea/images/ed_indent_less.gif
%%WWWDIR%%/includes/htmlarea/images/ed_indent_more.gif
%%WWWDIR%%/includes/htmlarea/images/ed_left_to_right.gif
%%WWWDIR%%/includes/htmlarea/images/ed_link.gif
%%WWWDIR%%/includes/htmlarea/images/ed_list_bullet.gif
%%WWWDIR%%/includes/htmlarea/images/ed_list_num.gif
%%WWWDIR%%/includes/htmlarea/images/ed_paste.gif
%%WWWDIR%%/includes/htmlarea/images/ed_redo.gif
%%WWWDIR%%/includes/htmlarea/images/ed_right_to_left.gif
%%WWWDIR%%/includes/htmlarea/images/ed_save.gif
%%WWWDIR%%/includes/htmlarea/images/ed_save.png
%%WWWDIR%%/includes/htmlarea/images/ed_show_border.gif
%%WWWDIR%%/includes/htmlarea/images/ed_splitcel.gif
%%WWWDIR%%/includes/htmlarea/images/ed_undo.gif
%%WWWDIR%%/includes/htmlarea/images/fullscreen_maximize.gif
%%WWWDIR%%/includes/htmlarea/images/fullscreen_minimize.gif
%%WWWDIR%%/includes/htmlarea/images/insert_table.gif
%%WWWDIR%%/includes/htmlarea/lang/b5.js
%%WWWDIR%%/includes/htmlarea/lang/cz.js
%%WWWDIR%%/includes/htmlarea/lang/da.js
%%WWWDIR%%/includes/htmlarea/lang/de.js
%%WWWDIR%%/includes/htmlarea/lang/ee.js
%%WWWDIR%%/includes/htmlarea/lang/el.js
%%WWWDIR%%/includes/htmlarea/lang/en.js
%%WWWDIR%%/includes/htmlarea/lang/es.js
%%WWWDIR%%/includes/htmlarea/lang/fi.js
%%WWWDIR%%/includes/htmlarea/lang/fr.js
%%WWWDIR%%/includes/htmlarea/lang/gb.js
%%WWWDIR%%/includes/htmlarea/lang/he.js
%%WWWDIR%%/includes/htmlarea/lang/hu.js
%%WWWDIR%%/includes/htmlarea/lang/it.js
%%WWWDIR%%/includes/htmlarea/lang/ja-euc.js
%%WWWDIR%%/includes/htmlarea/lang/ja-jis.js
%%WWWDIR%%/includes/htmlarea/lang/ja-sjis.js
%%WWWDIR%%/includes/htmlarea/lang/ja-utf8.js
%%WWWDIR%%/includes/htmlarea/lang/lt.js
%%WWWDIR%%/includes/htmlarea/lang/lv.js
%%WWWDIR%%/includes/htmlarea/lang/makefile.xml
%%WWWDIR%%/includes/htmlarea/lang/nb.js
%%WWWDIR%%/includes/htmlarea/lang/nl.js
%%WWWDIR%%/includes/htmlarea/lang/no.js
%%WWWDIR%%/includes/htmlarea/lang/pl.js
%%WWWDIR%%/includes/htmlarea/lang/pt_br.js
%%WWWDIR%%/includes/htmlarea/lang/ro.js
%%WWWDIR%%/includes/htmlarea/lang/ru.js
%%WWWDIR%%/includes/htmlarea/lang/se.js
%%WWWDIR%%/includes/htmlarea/lang/si.js
%%WWWDIR%%/includes/htmlarea/lang/vn.js
%%WWWDIR%%/includes/htmlarea/plugins/CSS/css.js
%%WWWDIR%%/includes/htmlarea/plugins/CSS/lang/en.js
%%WWWDIR%%/includes/htmlarea/plugins/CSS/lang/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/CSS/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/ContextMenu/1.pl
%%WWWDIR%%/includes/htmlarea/plugins/ContextMenu/context-menu.js
%%WWWDIR%%/includes/htmlarea/plugins/ContextMenu/lang/de.js
%%WWWDIR%%/includes/htmlarea/plugins/ContextMenu/lang/el.js
%%WWWDIR%%/includes/htmlarea/plugins/ContextMenu/lang/en.js
%%WWWDIR%%/includes/htmlarea/plugins/ContextMenu/lang/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/ContextMenu/lang/nl.js
%%WWWDIR%%/includes/htmlarea/plugins/ContextMenu/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/ContextMenu/menu.css
%%WWWDIR%%/includes/htmlarea/plugins/FullPage/full-page.js
%%WWWDIR%%/includes/htmlarea/plugins/FullPage/img/docprop.gif
%%WWWDIR%%/includes/htmlarea/plugins/FullPage/img/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/FullPage/lang/en.js
%%WWWDIR%%/includes/htmlarea/plugins/FullPage/lang/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/FullPage/lang/ro.js
%%WWWDIR%%/includes/htmlarea/plugins/FullPage/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/FullPage/popups/docprop.html
%%WWWDIR%%/includes/htmlarea/plugins/FullPage/popups/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/FullPage/test.html
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/img/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/img/spell-check.gif
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/lang/cz.js
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/lang/da.js
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/lang/de.js
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/lang/en.js
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/lang/hu.js
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/lang/it.js
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/lang/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/lang/ro.js
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/readme-tech.html
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/spell-check-logic.cgi
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/spell-check-style.css
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/spell-check-ui.html
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/spell-check-ui.js
%%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/spell-checker.js
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/cell-delete.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/cell-insert-after.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/cell-insert-before.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/cell-merge.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/cell-prop.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/cell-split.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/col-delete.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/col-insert-after.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/col-insert-before.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/col-split.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/row-delete.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/row-insert-above.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/row-insert-under.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/row-prop.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/row-split.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img/table-prop.gif
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/lang/cz.js
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/lang/en.js
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/lang/fi.js
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/lang/it.js
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/lang/ro.js
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/makefile.xml
%%WWWDIR%%/includes/htmlarea/plugins/TableOperations/table-operations.js
%%WWWDIR%%/includes/htmlarea/popupdiv.js
%%WWWDIR%%/includes/htmlarea/popups/about.html
%%WWWDIR%%/includes/htmlarea/popups/blank.html
%%WWWDIR%%/includes/htmlarea/popups/custom2.html
%%WWWDIR%%/includes/htmlarea/popups/editor_help.html
%%WWWDIR%%/includes/htmlarea/popups/fullscreen.html
%%WWWDIR%%/includes/htmlarea/popups/insert_image.html
%%WWWDIR%%/includes/htmlarea/popups/insert_table.html
%%WWWDIR%%/includes/htmlarea/popups/old-fullscreen.html
%%WWWDIR%%/includes/htmlarea/popups/old_insert_image.html
%%WWWDIR%%/includes/htmlarea/popups/popup.js
%%WWWDIR%%/includes/htmlarea/popups/select_color.html
%%WWWDIR%%/includes/htmlarea/popupwin.js
%%WWWDIR%%/includes/htpasswd.class.php
%%WWWDIR%%/includes/index.php
%%WWWDIR%%/includes/initrequests.php
%%WWWDIR%%/includes/jpgraph/gd_image.inc.php
%%WWWDIR%%/includes/jpgraph/jpg-config.inc
%%WWWDIR%%/includes/jpgraph/jpgraph.php
%%WWWDIR%%/includes/jpgraph/jpgraph_errhandler.inc.php
%%WWWDIR%%/includes/jpgraph/jpgraph_error.php
%%WWWDIR%%/includes/jpgraph/jpgraph_gantt.php
%%WWWDIR%%/includes/jpgraph/jpgraph_gradient.php
%%WWWDIR%%/includes/jpgraph/jpgraph_iconplot.php
%%WWWDIR%%/includes/jpgraph/jpgraph_plotband.php
%%WWWDIR%%/includes/jpgraph/jpgraph_plotmark.inc
%%WWWDIR%%/includes/library.php
%%WWWDIR%%/includes/messages.php
%%WWWDIR%%/includes/mimetypes.php
%%WWWDIR%%/includes/notification.class.php
%%WWWDIR%%/includes/phplib/template.php
%%WWWDIR%%/includes/phpmailer/class.phpmailer.php
%%WWWDIR%%/includes/phpmailer/class.smtp.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-br.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-ca.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-cz.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-de.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-dk.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-en.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-es.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-fi.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-fo.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-fr.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-hu.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-it.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-ja.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-nl.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-no.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-pl.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-ro.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-ru.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-se.php
%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-tr.php
%%WWWDIR%%/includes/phpmyadmin/bookmark.lib.php
%%WWWDIR%%/includes/phpmyadmin/build_dump.lib.php
%%WWWDIR%%/includes/phpmyadmin/common.lib.php
%%WWWDIR%%/includes/phpmyadmin/config.auth.lib.php
%%WWWDIR%%/includes/phpmyadmin/config.inc.php
%%WWWDIR%%/includes/phpmyadmin/db_details.php
%%WWWDIR%%/includes/phpmyadmin/defines.lib.php
%%WWWDIR%%/includes/phpmyadmin/english.inc.php
%%WWWDIR%%/includes/phpmyadmin/footer.inc.php
%%WWWDIR%%/includes/phpmyadmin/functions.js
%%WWWDIR%%/includes/phpmyadmin/grab_globals.lib.php
%%WWWDIR%%/includes/phpmyadmin/header.inc.php
%%WWWDIR%%/includes/phpmyadmin/ob.lib.php
%%WWWDIR%%/includes/phpmyadmin/read_dump.php
%%WWWDIR%%/includes/phpmyadmin/select_lang.lib.php
%%WWWDIR%%/includes/phpmyadmin/tbl_dump.php
%%WWWDIR%%/includes/phpmyadmin/user_details.js
%%WWWDIR%%/includes/phpmyadmin/zip.lib.php
%%WWWDIR%%/includes/phppgadmin/config.inc.php
%%WWWDIR%%/includes/phppgadmin/db_details.php
%%WWWDIR%%/includes/phppgadmin/db_dump.php
%%WWWDIR%%/includes/phppgadmin/english.inc.php
%%WWWDIR%%/includes/phppgadmin/footer.inc.php
%%WWWDIR%%/includes/phppgadmin/header.inc.php
%%WWWDIR%%/includes/phppgadmin/lib.inc.php
%%WWWDIR%%/includes/phppgadmin/tbl_dump.php
%%WWWDIR%%/includes/request.class.php
%%WWWDIR%%/includes/settings_blank.php
%%WWWDIR%%/includes/settings_default.php
%%WWWDIR%%/includes/setup_db.php
%%WWWDIR%%/includes/update_db.php
%%WWWDIR%%/includes/upgrade_funcs.inc.php
%%WWWDIR%%/includes/vcard.class.php
%%WWWDIR%%/index.php
%%WWWDIR%%/installation/fixFilesPublished.php
%%WWWDIR%%/installation/fixFilesSize.php
%%WWWDIR%%/installation/index.php
%%WWWDIR%%/installation/remove_files.php
%%WWWDIR%%/installation/setup.php
%%WWWDIR%%/installation/upgrade.php
%%WWWDIR%%/interface/icones/ai.gif
%%WWWDIR%%/interface/icones/doc.gif
%%WWWDIR%%/interface/icones/fic.gif
%%WWWDIR%%/interface/icones/gif.gif
%%WWWDIR%%/interface/icones/htm.gif
%%WWWDIR%%/interface/icones/jpg.gif
%%WWWDIR%%/interface/icones/js.gif
%%WWWDIR%%/interface/icones/mdb.gif
%%WWWDIR%%/interface/icones/pdf.gif
%%WWWDIR%%/interface/icones/php.gif
%%WWWDIR%%/interface/icones/png.gif
%%WWWDIR%%/interface/icones/ppt.gif
%%WWWDIR%%/interface/icones/psd.gif
%%WWWDIR%%/interface/icones/rar.gif
%%WWWDIR%%/interface/icones/rm.gif
%%WWWDIR%%/interface/icones/stc.gif
%%WWWDIR%%/interface/icones/std.gif
%%WWWDIR%%/interface/icones/sti.gif
%%WWWDIR%%/interface/icones/stw.gif
%%WWWDIR%%/interface/icones/swf.gif
%%WWWDIR%%/interface/icones/sxc.gif
%%WWWDIR%%/interface/icones/sxd.gif
%%WWWDIR%%/interface/icones/sxg.gif
%%WWWDIR%%/interface/icones/sxi.gif
%%WWWDIR%%/interface/icones/sxm.gif
%%WWWDIR%%/interface/icones/sxw.gif
%%WWWDIR%%/interface/icones/ttf.gif
%%WWWDIR%%/interface/icones/txt.gif
%%WWWDIR%%/interface/icones/xls.gif
%%WWWDIR%%/interface/icones/zip.gif
%%WWWDIR%%/interface/index.php
%%WWWDIR%%/invoicing/editinvoice.php
%%WWWDIR%%/invoicing/editinvoiceitem.php
%%WWWDIR%%/invoicing/exportinvoice.php
%%WWWDIR%%/invoicing/index.php
%%WWWDIR%%/invoicing/listinvoices.php
%%WWWDIR%%/invoicing/tpl_invoice.html
%%WWWDIR%%/invoicing/viewinvoice.php
%%WWWDIR%%/javascript/calendar/calendar-setup.js
%%WWWDIR%%/javascript/calendar/calendar.js
%%WWWDIR%%/javascript/calendar/css/calendar-blue.css
%%WWWDIR%%/javascript/calendar/css/calendar-blue2.css
%%WWWDIR%%/javascript/calendar/css/calendar-brown.css
%%WWWDIR%%/javascript/calendar/css/calendar-green.css
%%WWWDIR%%/javascript/calendar/css/calendar-system.css
%%WWWDIR%%/javascript/calendar/css/calendar-tas.css
%%WWWDIR%%/javascript/calendar/css/calendar-win2k-1.css
%%WWWDIR%%/javascript/calendar/css/calendar-win2k-2.css
%%WWWDIR%%/javascript/calendar/css/calendar-win2k-cold-1.css
%%WWWDIR%%/javascript/calendar/css/calendar-win2k-cold-2.css
%%WWWDIR%%/javascript/calendar/css/menuarrow.gif
%%WWWDIR%%/javascript/calendar/css/menuarrow2.gif
%%WWWDIR%%/javascript/calendar/lang/calendar-af.js
%%WWWDIR%%/javascript/calendar/lang/calendar-al.js
%%WWWDIR%%/javascript/calendar/lang/calendar-bg.js
%%WWWDIR%%/javascript/calendar/lang/calendar-big5-utf8.js
%%WWWDIR%%/javascript/calendar/lang/calendar-big5.js
%%WWWDIR%%/javascript/calendar/lang/calendar-br.js
%%WWWDIR%%/javascript/calendar/lang/calendar-ca.js
%%WWWDIR%%/javascript/calendar/lang/calendar-cs-utf8.js
%%WWWDIR%%/javascript/calendar/lang/calendar-cs-win.js
%%WWWDIR%%/javascript/calendar/lang/calendar-da.js
%%WWWDIR%%/javascript/calendar/lang/calendar-de.js
%%WWWDIR%%/javascript/calendar/lang/calendar-du.js
%%WWWDIR%%/javascript/calendar/lang/calendar-el.js
%%WWWDIR%%/javascript/calendar/lang/calendar-en.js
%%WWWDIR%%/javascript/calendar/lang/calendar-es.js
%%WWWDIR%%/javascript/calendar/lang/calendar-fi.js
%%WWWDIR%%/javascript/calendar/lang/calendar-fr.js
%%WWWDIR%%/javascript/calendar/lang/calendar-he-utf8.js
%%WWWDIR%%/javascript/calendar/lang/calendar-hr-utf8.js
%%WWWDIR%%/javascript/calendar/lang/calendar-hr.js
%%WWWDIR%%/javascript/calendar/lang/calendar-hu.js
%%WWWDIR%%/javascript/calendar/lang/calendar-it.js
%%WWWDIR%%/javascript/calendar/lang/calendar-jp.js
%%WWWDIR%%/javascript/calendar/lang/calendar-ko-utf8.js
%%WWWDIR%%/javascript/calendar/lang/calendar-ko.js
%%WWWDIR%%/javascript/calendar/lang/calendar-lt-utf8.js
%%WWWDIR%%/javascript/calendar/lang/calendar-lt.js
%%WWWDIR%%/javascript/calendar/lang/calendar-lv.js
%%WWWDIR%%/javascript/calendar/lang/calendar-nl.js
%%WWWDIR%%/javascript/calendar/lang/calendar-no.js
%%WWWDIR%%/javascript/calendar/lang/calendar-pl-utf8.js
%%WWWDIR%%/javascript/calendar/lang/calendar-pl.js
%%WWWDIR%%/javascript/calendar/lang/calendar-pt.js
%%WWWDIR%%/javascript/calendar/lang/calendar-ro.js
%%WWWDIR%%/javascript/calendar/lang/calendar-ru.js
%%WWWDIR%%/javascript/calendar/lang/calendar-ru_win_.js
%%WWWDIR%%/javascript/calendar/lang/calendar-si.js
%%WWWDIR%%/javascript/calendar/lang/calendar-sk.js
%%WWWDIR%%/javascript/calendar/lang/calendar-sp.js
%%WWWDIR%%/javascript/calendar/lang/calendar-sv.js
%%WWWDIR%%/javascript/calendar/lang/calendar-tr.js
%%WWWDIR%%/javascript/calendar/lang/calendar-zh.js
%%WWWDIR%%/javascript/calendar/lang/cn_utf8.js
%%WWWDIR%%/javascript/general.js
%%WWWDIR%%/javascript/index.php
%%WWWDIR%%/javascript/overlib_mini.js
%%WWWDIR%%/languages/custom_bg.php
%%WWWDIR%%/languages/custom_da.php
%%WWWDIR%%/languages/custom_de.php
%%WWWDIR%%/languages/custom_en.php
%%WWWDIR%%/languages/custom_es.php
%%WWWDIR%%/languages/custom_fr.php
%%WWWDIR%%/languages/custom_it.php
%%WWWDIR%%/languages/custom_ja.php
%%WWWDIR%%/languages/custom_nl.php
%%WWWDIR%%/languages/custom_no.php
%%WWWDIR%%/languages/custom_pl.php
%%WWWDIR%%/languages/custom_pt-br.php
%%WWWDIR%%/languages/help_ar.php
%%WWWDIR%%/languages/help_az.php
%%WWWDIR%%/languages/help_bg.php
%%WWWDIR%%/languages/help_ca.php
%%WWWDIR%%/languages/help_cs-iso.php
%%WWWDIR%%/languages/help_cs-win1250.php
%%WWWDIR%%/languages/help_da.php
%%WWWDIR%%/languages/help_de.php
%%WWWDIR%%/languages/help_en.php
%%WWWDIR%%/languages/help_es.php
%%WWWDIR%%/languages/help_et.php
%%WWWDIR%%/languages/help_fr.php
%%WWWDIR%%/languages/help_hu.php
%%WWWDIR%%/languages/help_in.php
%%WWWDIR%%/languages/help_is.php
%%WWWDIR%%/languages/help_it.php
%%WWWDIR%%/languages/help_ja.php
%%WWWDIR%%/languages/help_ko.php
%%WWWDIR%%/languages/help_lv.php
%%WWWDIR%%/languages/help_nl.php
%%WWWDIR%%/languages/help_no.php
%%WWWDIR%%/languages/help_pl.php
%%WWWDIR%%/languages/help_pt-br.php
%%WWWDIR%%/languages/help_pt.php
%%WWWDIR%%/languages/help_ro.php
%%WWWDIR%%/languages/help_ru.php
%%WWWDIR%%/languages/help_sk-win1250.php
%%WWWDIR%%/languages/help_tr.php
%%WWWDIR%%/languages/help_uk.php
%%WWWDIR%%/languages/help_zh-tw.php
%%WWWDIR%%/languages/help_zh.php
%%WWWDIR%%/languages/index.php
%%WWWDIR%%/languages/lang_ar.php
%%WWWDIR%%/languages/lang_az.php
%%WWWDIR%%/languages/lang_bg.php
%%WWWDIR%%/languages/lang_ca.php
%%WWWDIR%%/languages/lang_cs-iso.php
%%WWWDIR%%/languages/lang_cs-win1250.php
%%WWWDIR%%/languages/lang_da.php
%%WWWDIR%%/languages/lang_de.php
%%WWWDIR%%/languages/lang_en.php
%%WWWDIR%%/languages/lang_es.php
%%WWWDIR%%/languages/lang_et.php
%%WWWDIR%%/languages/lang_fr.php
%%WWWDIR%%/languages/lang_hu.php
%%WWWDIR%%/languages/lang_in.php
%%WWWDIR%%/languages/lang_is.php
%%WWWDIR%%/languages/lang_it.php
%%WWWDIR%%/languages/lang_ja.php
%%WWWDIR%%/languages/lang_ko.php
%%WWWDIR%%/languages/lang_lv.php
%%WWWDIR%%/languages/lang_nl.php
%%WWWDIR%%/languages/lang_no.php
%%WWWDIR%%/languages/lang_pl.php
%%WWWDIR%%/languages/lang_pt-br.php
%%WWWDIR%%/languages/lang_pt.php
%%WWWDIR%%/languages/lang_ro.php
%%WWWDIR%%/languages/lang_ru.php
%%WWWDIR%%/languages/lang_sk-win1250.php
%%WWWDIR%%/languages/lang_tr.php
%%WWWDIR%%/languages/lang_uk.php
%%WWWDIR%%/languages/lang_zh-tw.php
%%WWWDIR%%/languages/lang_zh.php
%%WWWDIR%%/languages/readme.txt
%%WWWDIR%%/linkedcontent/accessfile.php
%%WWWDIR%%/linkedcontent/addfile.php
%%WWWDIR%%/linkedcontent/deletefiles.php
%%WWWDIR%%/linkedcontent/index.php
%%WWWDIR%%/linkedcontent/viewfile.php
%%WWWDIR%%/logos_clients/index.php
%%WWWDIR%%/mantis/config_inc.php
%%WWWDIR%%/mantis/constant_inc.php
%%WWWDIR%%/mantis/core_API.php
%%WWWDIR%%/mantis/core_database_API.php
%%WWWDIR%%/mantis/core_helper_API.php
%%WWWDIR%%/mantis/core_print_API.php
%%WWWDIR%%/mantis/core_proj_user_API.php
%%WWWDIR%%/mantis/core_user_API.php
%%WWWDIR%%/mantis/create_new_user.php
%%WWWDIR%%/mantis/proj_add.php
%%WWWDIR%%/mantis/proj_delete.php
%%WWWDIR%%/mantis/proj_update.php
%%WWWDIR%%/mantis/user_delete.php
%%WWWDIR%%/mantis/user_profile.php
%%WWWDIR%%/mantis/user_proj_add.php
%%WWWDIR%%/mantis/user_proj_delete.php
%%WWWDIR%%/mantis/user_reset_pwd.php
%%WWWDIR%%/mantis/user_update.php
%%WWWDIR%%/newsdesk/editmessage.php
%%WWWDIR%%/newsdesk/editnews.php
%%WWWDIR%%/newsdesk/index.php
%%WWWDIR%%/newsdesk/listnews.php
%%WWWDIR%%/newsdesk/newsdesk.php
%%WWWDIR%%/newsdesk/rdf.php
%%WWWDIR%%/newsdesk/rss.php
%%WWWDIR%%/newsdesk/viewnews.php
%%WWWDIR%%/notes/deletenotes.php
%%WWWDIR%%/notes/editnote.php
%%WWWDIR%%/notes/index.php
%%WWWDIR%%/notes/listnotes.php
%%WWWDIR%%/notes/viewnote.php
%%WWWDIR%%/phases/editphase.php
%%WWWDIR%%/phases/graphtasks.php
%%WWWDIR%%/phases/index.php
%%WWWDIR%%/phases/listphases.php
%%WWWDIR%%/phases/viewphase.php
%%WWWDIR%%/preferences/index.php
%%WWWDIR%%/preferences/updatenotifications.php
%%WWWDIR%%/preferences/updatepassword.php
%%WWWDIR%%/preferences/updateuser.php
%%WWWDIR%%/projects/addprojectsite.php
%%WWWDIR%%/projects/deleteproject.php
%%WWWDIR%%/projects/deleteprojectsite.php
%%WWWDIR%%/projects/editproject.php
%%WWWDIR%%/projects/exportproject.php
%%WWWDIR%%/projects/index.php
%%WWWDIR%%/projects/listprojects.php
%%WWWDIR%%/projects/viewproject.php
%%WWWDIR%%/projects/viewprojectsite.php
%%WWWDIR%%/projects_site/addsupport.php
%%WWWDIR%%/projects_site/addsupportpost.php
%%WWWDIR%%/projects_site/addteamtask.php
%%WWWDIR%%/projects_site/bg_header.jpg
%%WWWDIR%%/projects_site/changepassword.php
%%WWWDIR%%/projects_site/clientaccessfile.php
%%WWWDIR%%/projects_site/clientfiledetail.php
%%WWWDIR%%/projects_site/clientsubtaskdetail.php
%%WWWDIR%%/projects_site/clienttaskdetail.php
%%WWWDIR%%/projects_site/contactdetail.php
%%WWWDIR%%/projects_site/createthread.php
%%WWWDIR%%/projects_site/docitemapproval.php
%%WWWDIR%%/projects_site/doclists.php
%%WWWDIR%%/projects_site/graphsubtasks.php
%%WWWDIR%%/projects_site/graphtasks.php
%%WWWDIR%%/projects_site/home.php
%%WWWDIR%%/projects_site/ico_arrow_normal.gif
%%WWWDIR%%/projects_site/ico_arrow_over.gif
%%WWWDIR%%/projects_site/ico_folder.gif
%%WWWDIR%%/projects_site/ico_logout.gif
%%WWWDIR%%/projects_site/ico_prefs.gif
%%WWWDIR%%/projects_site/include_footer.php
%%WWWDIR%%/projects_site/include_header.php
%%WWWDIR%%/projects_site/index.php
%%WWWDIR%%/projects_site/login.php
%%WWWDIR%%/projects_site/navigation.php
%%WWWDIR%%/projects_site/noti_uploadfile.php
%%WWWDIR%%/projects_site/showallclienttasks.php
%%WWWDIR%%/projects_site/showallcontacts.php
%%WWWDIR%%/projects_site/showallsupport.php
%%WWWDIR%%/projects_site/showallteamtasks.php
%%WWWDIR%%/projects_site/showallthreads.php
%%WWWDIR%%/projects_site/showallthreadtopics.php
%%WWWDIR%%/projects_site/showcalendar.php
%%WWWDIR%%/projects_site/spacer.gif
%%WWWDIR%%/projects_site/spacer_black.gif
%%WWWDIR%%/projects_site/suprequestdetail.php
%%WWWDIR%%/projects_site/teamsubtaskdetail.php
%%WWWDIR%%/projects_site/teamtaskdetail.php
%%WWWDIR%%/projects_site/threadpost.php
%%WWWDIR%%/projects_site/uploadfile.php
%%WWWDIR%%/reports/createreport.php
%%WWWDIR%%/reports/deletereports.php
%%WWWDIR%%/reports/exportreport.php
%%WWWDIR%%/reports/graphtasks.php
%%WWWDIR%%/reports/index.php
%%WWWDIR%%/reports/listreports.php
%%WWWDIR%%/reports/resultsreport.php
%%WWWDIR%%/robots.txt
%%WWWDIR%%/search/createsearch.php
%%WWWDIR%%/search/index.php
%%WWWDIR%%/search/resultssearch.php
%%WWWDIR%%/services/deleteservices.php
%%WWWDIR%%/services/editservice.php
%%WWWDIR%%/services/index.php
%%WWWDIR%%/services/listservices.php
%%WWWDIR%%/services/viewservice.php
%%WWWDIR%%/subtasks/deletesubtasks.php
%%WWWDIR%%/subtasks/editsubtask.php
%%WWWDIR%%/subtasks/graphsubtasks.php
%%WWWDIR%%/subtasks/historysubtask.php
%%WWWDIR%%/subtasks/index.php
%%WWWDIR%%/subtasks/noti_duedatetaskchange.php
%%WWWDIR%%/subtasks/noti_prioritytaskchange.php
%%WWWDIR%%/subtasks/noti_statustaskchange.php
%%WWWDIR%%/subtasks/noti_taskassignment.php
%%WWWDIR%%/subtasks/viewsubtask.php
%%WWWDIR%%/support/addpost.php
%%WWWDIR%%/support/deleterequests.php
%%WWWDIR%%/support/index.php
%%WWWDIR%%/support/listrequests.php
%%WWWDIR%%/support/noti_newpost.php
%%WWWDIR%%/support/noti_newrequest.php
%%WWWDIR%%/support/noti_statusrequestchange.php
%%WWWDIR%%/support/support.php
%%WWWDIR%%/support/viewrequest.php
%%WWWDIR%%/tasks/assignmentcomment.php
%%WWWDIR%%/tasks/deletetasks.php
%%WWWDIR%%/tasks/edittask.php
%%WWWDIR%%/tasks/graphtasks.php
%%WWWDIR%%/tasks/historytask.php
%%WWWDIR%%/tasks/index.php
%%WWWDIR%%/tasks/listtasks.php
%%WWWDIR%%/tasks/noti_clientaddtask.php
%%WWWDIR%%/tasks/noti_duedatetaskchange.php
%%WWWDIR%%/tasks/noti_prioritytaskchange.php
%%WWWDIR%%/tasks/noti_statustaskchange.php
%%WWWDIR%%/tasks/noti_taskassignment.php
%%WWWDIR%%/tasks/updatetasks.php
%%WWWDIR%%/tasks/viewtask.php
%%WWWDIR%%/teams/addclientuser.php
%%WWWDIR%%/teams/adduser.php
%%WWWDIR%%/teams/deleteclientusers.php
%%WWWDIR%%/teams/deleteusers.php
%%WWWDIR%%/teams/index.php
%%WWWDIR%%/teams/listusers.php
%%WWWDIR%%/teams/noti_addprojectteam.php
%%WWWDIR%%/teams/noti_removeprojectteam.php
%%WWWDIR%%/themes/default/block.class.php
%%WWWDIR%%/themes/default/btn_add_dim.gif
%%WWWDIR%%/themes/default/btn_add_norm.gif
%%WWWDIR%%/themes/default/btn_add_over.gif
%%WWWDIR%%/themes/default/btn_add_projectsite_dim.gif
%%WWWDIR%%/themes/default/btn_add_projectsite_norm.gif
%%WWWDIR%%/themes/default/btn_add_projectsite_over.gif
%%WWWDIR%%/themes/default/btn_bug_dim.gif
%%WWWDIR%%/themes/default/btn_bug_norm.gif
%%WWWDIR%%/themes/default/btn_bug_over.gif
%%WWWDIR%%/themes/default/btn_copy_dim.gif
%%WWWDIR%%/themes/default/btn_copy_norm.gif
%%WWWDIR%%/themes/default/btn_copy_over.gif
%%WWWDIR%%/themes/default/btn_cvs_dim.gif
%%WWWDIR%%/themes/default/btn_cvs_norm.gif
%%WWWDIR%%/themes/default/btn_cvs_over.gif
%%WWWDIR%%/themes/default/btn_edit_dim.gif
%%WWWDIR%%/themes/default/btn_edit_norm.gif
%%WWWDIR%%/themes/default/btn_edit_over.gif
%%WWWDIR%%/themes/default/btn_email_dim.gif
%%WWWDIR%%/themes/default/btn_email_norm.gif
%%WWWDIR%%/themes/default/btn_email_over.gif
%%WWWDIR%%/themes/default/btn_export_dim.gif
%%WWWDIR%%/themes/default/btn_export_norm.gif
%%WWWDIR%%/themes/default/btn_export_over.gif
%%WWWDIR%%/themes/default/btn_import_dim.gif
%%WWWDIR%%/themes/default/btn_import_norm.gif
%%WWWDIR%%/themes/default/btn_import_over.gif
%%WWWDIR%%/themes/default/btn_info_dim.gif
%%WWWDIR%%/themes/default/btn_info_norm.gif
%%WWWDIR%%/themes/default/btn_info_over.gif
%%WWWDIR%%/themes/default/btn_invoicing_dim.gif
%%WWWDIR%%/themes/default/btn_invoicing_norm.gif
%%WWWDIR%%/themes/default/btn_invoicing_over.gif
%%WWWDIR%%/themes/default/btn_lock_dim.gif
%%WWWDIR%%/themes/default/btn_lock_norm.gif
%%WWWDIR%%/themes/default/btn_lock_over.gif
%%WWWDIR%%/themes/default/btn_remove_dim.gif
%%WWWDIR%%/themes/default/btn_remove_norm.gif
%%WWWDIR%%/themes/default/btn_remove_over.gif
%%WWWDIR%%/themes/default/btn_remove_projectsite_dim.gif
%%WWWDIR%%/themes/default/btn_remove_projectsite_norm.gif
%%WWWDIR%%/themes/default/btn_remove_projectsite_over.gif
%%WWWDIR%%/themes/default/calendar.css
%%WWWDIR%%/themes/default/checkbox_off_16.gif
%%WWWDIR%%/themes/default/checkbox_on_16.gif
%%WWWDIR%%/themes/default/footer.php
%%WWWDIR%%/themes/default/gfx_priority/0.gif
%%WWWDIR%%/themes/default/gfx_priority/1.gif
%%WWWDIR%%/themes/default/gfx_priority/2.gif
%%WWWDIR%%/themes/default/gfx_priority/3.gif
%%WWWDIR%%/themes/default/gfx_priority/4.gif
%%WWWDIR%%/themes/default/gfx_priority/5.gif
%%WWWDIR%%/themes/default/header.php
%%WWWDIR%%/themes/default/icon_sort_az.gif
%%WWWDIR%%/themes/default/icon_sort_za.gif
%%WWWDIR%%/themes/default/menuarrow.gif
%%WWWDIR%%/themes/default/menuarrow2.gif
%%WWWDIR%%/themes/default/module_toggle_closed.gif
%%WWWDIR%%/themes/default/module_toggle_open.gif
%%WWWDIR%%/themes/default/spacer.gif
%%WWWDIR%%/themes/default/stylesheet.css
%%WWWDIR%%/themes/index.php
%%WWWDIR%%/themes/ordinarylife/block.class.php
%%WWWDIR%%/themes/ordinarylife/btn_add_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_add_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_add_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_add_projectsite_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_add_projectsite_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_add_projectsite_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_bug_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_bug_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_bug_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_copy_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_copy_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_copy_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_cvs_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_cvs_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_cvs_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_edit_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_edit_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_edit_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_email_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_email_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_email_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_export_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_export_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_export_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_import_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_import_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_import_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_info_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_info_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_info_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_invoicing_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_invoicing_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_invoicing_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_lock_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_lock_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_lock_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_remove_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_remove_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_remove_over.gif
%%WWWDIR%%/themes/ordinarylife/btn_remove_projectsite_dim.gif
%%WWWDIR%%/themes/ordinarylife/btn_remove_projectsite_norm.gif
%%WWWDIR%%/themes/ordinarylife/btn_remove_projectsite_over.gif
%%WWWDIR%%/themes/ordinarylife/calendar.css
%%WWWDIR%%/themes/ordinarylife/checkbox_off_16.gif
%%WWWDIR%%/themes/ordinarylife/checkbox_on_16.gif
%%WWWDIR%%/themes/ordinarylife/footer.php
%%WWWDIR%%/themes/ordinarylife/gfx_priority/0.gif
%%WWWDIR%%/themes/ordinarylife/gfx_priority/1.gif
%%WWWDIR%%/themes/ordinarylife/gfx_priority/2.gif
%%WWWDIR%%/themes/ordinarylife/gfx_priority/3.gif
%%WWWDIR%%/themes/ordinarylife/gfx_priority/4.gif
%%WWWDIR%%/themes/ordinarylife/gfx_priority/5.gif
%%WWWDIR%%/themes/ordinarylife/header.php
%%WWWDIR%%/themes/ordinarylife/icon_sort_az.gif
%%WWWDIR%%/themes/ordinarylife/icon_sort_za.gif
%%WWWDIR%%/themes/ordinarylife/menuarrow.gif
%%WWWDIR%%/themes/ordinarylife/menuarrow2.gif
%%WWWDIR%%/themes/ordinarylife/module_toggle_closed.gif
%%WWWDIR%%/themes/ordinarylife/module_toggle_open.gif
%%WWWDIR%%/themes/ordinarylife/spacer.gif
%%WWWDIR%%/themes/ordinarylife/stylesheet.css
%%WWWDIR%%/themes/phpkaox/block.class.php
%%WWWDIR%%/themes/phpkaox/btn_add_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_add_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_add_over.gif
%%WWWDIR%%/themes/phpkaox/btn_add_projectsite_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_add_projectsite_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_add_projectsite_over.gif
%%WWWDIR%%/themes/phpkaox/btn_bug_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_bug_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_bug_over.gif
%%WWWDIR%%/themes/phpkaox/btn_copy_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_copy_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_copy_over.gif
%%WWWDIR%%/themes/phpkaox/btn_cvs_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_cvs_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_cvs_over.gif
%%WWWDIR%%/themes/phpkaox/btn_edit_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_edit_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_edit_over.gif
%%WWWDIR%%/themes/phpkaox/btn_email_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_email_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_email_over.gif
%%WWWDIR%%/themes/phpkaox/btn_export_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_export_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_export_over.gif
%%WWWDIR%%/themes/phpkaox/btn_import_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_import_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_import_over.gif
%%WWWDIR%%/themes/phpkaox/btn_info_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_info_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_info_over.gif
%%WWWDIR%%/themes/phpkaox/btn_invoicing_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_invoicing_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_invoicing_over.gif
%%WWWDIR%%/themes/phpkaox/btn_lock_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_lock_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_lock_over.gif
%%WWWDIR%%/themes/phpkaox/btn_remove_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_remove_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_remove_over.gif
%%WWWDIR%%/themes/phpkaox/btn_remove_projectsite_dim.gif
%%WWWDIR%%/themes/phpkaox/btn_remove_projectsite_norm.gif
%%WWWDIR%%/themes/phpkaox/btn_remove_projectsite_over.gif
%%WWWDIR%%/themes/phpkaox/calendar.css
%%WWWDIR%%/themes/phpkaox/checkbox_off_16.gif
%%WWWDIR%%/themes/phpkaox/checkbox_on_16.gif
%%WWWDIR%%/themes/phpkaox/footer.php
%%WWWDIR%%/themes/phpkaox/gfx_priority/0.gif
%%WWWDIR%%/themes/phpkaox/gfx_priority/1.gif
%%WWWDIR%%/themes/phpkaox/gfx_priority/2.gif
%%WWWDIR%%/themes/phpkaox/gfx_priority/3.gif
%%WWWDIR%%/themes/phpkaox/gfx_priority/4.gif
%%WWWDIR%%/themes/phpkaox/gfx_priority/5.gif
%%WWWDIR%%/themes/phpkaox/header.php
%%WWWDIR%%/themes/phpkaox/icon_sort_az.gif
%%WWWDIR%%/themes/phpkaox/icon_sort_za.gif
%%WWWDIR%%/themes/phpkaox/menuarrow.gif
%%WWWDIR%%/themes/phpkaox/menuarrow2.gif
%%WWWDIR%%/themes/phpkaox/module_toggle_closed.gif
%%WWWDIR%%/themes/phpkaox/module_toggle_open.gif
%%WWWDIR%%/themes/phpkaox/spacer.gif
%%WWWDIR%%/themes/phpkaox/stylesheet.css
%%WWWDIR%%/themes/xp-blue/block.class.php
%%WWWDIR%%/themes/xp-blue/btn_add_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_add_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_add_over.gif
%%WWWDIR%%/themes/xp-blue/btn_add_projectsite_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_add_projectsite_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_add_projectsite_over.gif
%%WWWDIR%%/themes/xp-blue/btn_bug_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_bug_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_bug_over.gif
%%WWWDIR%%/themes/xp-blue/btn_copy_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_copy_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_copy_over.gif
%%WWWDIR%%/themes/xp-blue/btn_cvs_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_cvs_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_cvs_over.gif
%%WWWDIR%%/themes/xp-blue/btn_edit_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_edit_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_edit_over.gif
%%WWWDIR%%/themes/xp-blue/btn_email_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_email_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_email_over.gif
%%WWWDIR%%/themes/xp-blue/btn_export_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_export_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_export_over.gif
%%WWWDIR%%/themes/xp-blue/btn_import_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_import_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_import_over.gif
%%WWWDIR%%/themes/xp-blue/btn_info_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_info_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_info_over.gif
%%WWWDIR%%/themes/xp-blue/btn_invoicing_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_invoicing_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_invoicing_over.gif
%%WWWDIR%%/themes/xp-blue/btn_lock_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_lock_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_lock_over.gif
%%WWWDIR%%/themes/xp-blue/btn_remove_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_remove_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_remove_over.gif
%%WWWDIR%%/themes/xp-blue/btn_remove_projectsite_dim.gif
%%WWWDIR%%/themes/xp-blue/btn_remove_projectsite_norm.gif
%%WWWDIR%%/themes/xp-blue/btn_remove_projectsite_over.gif
%%WWWDIR%%/themes/xp-blue/calendar.css
%%WWWDIR%%/themes/xp-blue/calendar_blue_bg.gif
%%WWWDIR%%/themes/xp-blue/checkbox_off_16.gif
%%WWWDIR%%/themes/xp-blue/checkbox_on_16.gif
%%WWWDIR%%/themes/xp-blue/footer.php
%%WWWDIR%%/themes/xp-blue/gfx_priority/0.gif
%%WWWDIR%%/themes/xp-blue/gfx_priority/1.gif
%%WWWDIR%%/themes/xp-blue/gfx_priority/2.gif
%%WWWDIR%%/themes/xp-blue/gfx_priority/3.gif
%%WWWDIR%%/themes/xp-blue/gfx_priority/4.gif
%%WWWDIR%%/themes/xp-blue/gfx_priority/5.gif
%%WWWDIR%%/themes/xp-blue/header.php
%%WWWDIR%%/themes/xp-blue/icon_sort_az.gif
%%WWWDIR%%/themes/xp-blue/icon_sort_za.gif
%%WWWDIR%%/themes/xp-blue/menuarrow.gif
%%WWWDIR%%/themes/xp-blue/menuarrow2.gif
%%WWWDIR%%/themes/xp-blue/module_toggle_closed.gif
%%WWWDIR%%/themes/xp-blue/module_toggle_open.gif
%%WWWDIR%%/themes/xp-blue/spacer.gif
%%WWWDIR%%/themes/xp-blue/stylesheet.css
%%WWWDIR%%/themes/xp-blue/xp-blue.psd
%%WWWDIR%%/tools/import_settings_to_db.php
%%WWWDIR%%/topics/addpost.php
%%WWWDIR%%/topics/addtopic.php
%%WWWDIR%%/topics/deletepost.php
%%WWWDIR%%/topics/deletetopics.php
%%WWWDIR%%/topics/index.php
%%WWWDIR%%/topics/listtopics.php
%%WWWDIR%%/topics/noti_newpost.php
%%WWWDIR%%/topics/noti_newtopic.php
%%WWWDIR%%/topics/viewtopic.php
%%WWWDIR%%/users/addclientuser.php
%%WWWDIR%%/users/deleteclientusers.php
%%WWWDIR%%/users/deleteusers.php
%%WWWDIR%%/users/edituser.php
%%WWWDIR%%/users/emailusers.php
%%WWWDIR%%/users/exportuser.php
%%WWWDIR%%/users/exportusers.php
%%WWWDIR%%/users/index.php
%%WWWDIR%%/users/listusers.php
%%WWWDIR%%/users/updateclientuser.php
%%WWWDIR%%/users/viewclientuser.php
%%WWWDIR%%/users/viewuser.php
@dirrm %%WWWDIR%%/users
@dirrm %%WWWDIR%%/topics
@dirrm %%WWWDIR%%/tools
@dirrm %%WWWDIR%%/themes/xp-blue/gfx_priority
@dirrm %%WWWDIR%%/themes/xp-blue
@dirrm %%WWWDIR%%/themes/phpkaox/gfx_priority
@dirrm %%WWWDIR%%/themes/phpkaox
@dirrm %%WWWDIR%%/themes/ordinarylife/gfx_priority
@dirrm %%WWWDIR%%/themes/ordinarylife
@dirrm %%WWWDIR%%/themes/default/gfx_priority
@dirrm %%WWWDIR%%/themes/default
@dirrm %%WWWDIR%%/themes
@dirrm %%WWWDIR%%/teams
@dirrm %%WWWDIR%%/tasks
@dirrm %%WWWDIR%%/support
@dirrm %%WWWDIR%%/subtasks
@dirrm %%WWWDIR%%/services
@dirrm %%WWWDIR%%/search
@dirrm %%WWWDIR%%/reports
@dirrm %%WWWDIR%%/projects_site
@dirrm %%WWWDIR%%/projects
@dirrm %%WWWDIR%%/preferences
@dirrm %%WWWDIR%%/phases
@dirrm %%WWWDIR%%/notes
@dirrm %%WWWDIR%%/newsdesk
@dirrm %%WWWDIR%%/mantis
@dirrm %%WWWDIR%%/logos_clients
@dirrm %%WWWDIR%%/linkedcontent
@dirrm %%WWWDIR%%/languages
@dirrm %%WWWDIR%%/javascript/calendar/lang
@dirrm %%WWWDIR%%/javascript/calendar/css
@dirrm %%WWWDIR%%/javascript/calendar
@dirrm %%WWWDIR%%/javascript
@dirrm %%WWWDIR%%/invoicing
@dirrm %%WWWDIR%%/interface/icones
@dirrm %%WWWDIR%%/interface
@dirrm %%WWWDIR%%/installation
@dirrm %%WWWDIR%%/includes/phppgadmin
@dirrm %%WWWDIR%%/includes/phpmyadmin
@dirrm %%WWWDIR%%/includes/phpmailer/language
@dirrm %%WWWDIR%%/includes/phpmailer
@dirrm %%WWWDIR%%/includes/phplib
@dirrm %%WWWDIR%%/includes/jpgraph
@dirrm %%WWWDIR%%/includes/htmlarea/popups
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/TableOperations/lang
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/TableOperations/img
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/TableOperations
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/lang
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/SpellChecker/img
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/SpellChecker
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/FullPage/popups
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/FullPage/lang
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/FullPage/img
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/FullPage
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/ContextMenu/lang
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/ContextMenu
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/CSS/lang
@dirrm %%WWWDIR%%/includes/htmlarea/plugins/CSS
@dirrm %%WWWDIR%%/includes/htmlarea/plugins
@dirrm %%WWWDIR%%/includes/htmlarea/lang
@dirrm %%WWWDIR%%/includes/htmlarea/images
@dirrm %%WWWDIR%%/includes/htmlarea
@dirrm %%WWWDIR%%/includes/fonts
@dirrmtry %%WWWDIR%%/includes
@dirrm %%WWWDIR%%/general
@dirrm %%WWWDIR%%/files
@dirrm %%WWWDIR%%/docs/modules
@dirrm %%WWWDIR%%/docs
@dirrm %%WWWDIR%%/dev-kit
@dirrm %%WWWDIR%%/clients
@dirrm %%WWWDIR%%/calendar
@dirrm %%WWWDIR%%/browsecvs/images
@dirrm %%WWWDIR%%/browsecvs
@dirrm %%WWWDIR%%/bookmarks
@dirrm %%WWWDIR%%/alerts
@dirrm %%WWWDIR%%/administration
OpenPOWER on IntegriCloud