-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtest-files.txt
2897 lines (2897 loc) · 128 KB
/
test-files.txt
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
./HandleAjaxCall.php
./service/v4/soap.php
./service/v4/rest.php
./service/v4/SugarWebServiceUtilv4.php
./service/v4/registry.php
./service/v4/SugarWebServiceImplv4.php
./service/v2_1/soap.php
./service/v2_1/rest.php
./service/v2_1/SugarWebServiceImplv2_1.php
./service/v2_1/registry.php
./service/v3_1/soap.php
./service/v3_1/SugarWebServiceImplv3_1.php
./service/v3_1/SugarWebServiceUtilv3_1.php
./service/v3_1/rest.php
./service/v3_1/registry.php
./service/core/SugarWebService.php
./service/core/PHP5Soap.php
./service/core/SugarSoapService.php
./service/core/SoapHelperWebService.php
./service/core/SugarRestServiceImpl.php
./service/core/SugarRestService.php
./service/core/REST/SugarRest.php
./service/core/REST/SugarRestJSON.php
./service/core/REST/SugarRestRSS.php
./service/core/REST/SugarRestSerialize.php
./service/core/webservice.php
./service/core/SugarRestUtils.php
./service/core/SugarWebServiceImpl.php
./service/core/NusoapSoap.php
./service/example/Rest_Proxy.php
./service/v4_1/SugarWebServiceImplv4_1.php
./service/v4_1/soap.php
./service/v4_1/rest.php
./service/v4_1/SugarWebServiceUtilv4_1.php
./service/v4_1/registry.php
./service/v2/soap.php
./service/v2/rest.php
./service/v2/SugarSoapService2.php
./service/v2/registry.php
./service/v3/soap.php
./service/v3/SugarWebServiceUtilv3.php
./service/v3/rest.php
./service/v3/SugarWebServiceImplv3.php
./service/v3/registry.php
./sugar_version.php
#./json_server.php
./soap.php
#./soap/SoapDeprecated.php
./soap/SoapError.php
./soap/SoapHelperFunctions.php
#./soap/SoapData.php
./soap/SoapRelationshipHelper.php
#./soap/SoapSugarUsers.php
#./soap/SoapTypes.php
./soap/SoapErrorDefinitions.php
#./soap/SoapPortalUsers.php
./soap/SoapPortalHelper.php
#./soap/SoapStudio.php
./XTemplate/xtpl.php
./config_override.php
./metagen.php
./index.php
./include/GroupedTabs/GroupedTabStructure.php
./include/Smarty/internals/core.assign_smarty_interface.php
./include/Smarty/internals/core.smarty_include_php.php
./include/Smarty/internals/core.process_cached_inserts.php
./include/Smarty/internals/core.is_secure.php
./include/Smarty/internals/core.display_debug_console.php
./include/Smarty/internals/core.rm_auto.php
./include/Smarty/internals/core.read_cache_file.php
./include/Smarty/internals/core.assemble_plugin_filepath.php
./include/Smarty/internals/core.load_plugins.php
./include/Smarty/internals/core.is_trusted.php
./include/Smarty/internals/core.write_file.php
./include/Smarty/internals/core.process_compiled_include.php
./include/Smarty/internals/core.write_compiled_include.php
./include/Smarty/internals/core.get_microtime.php
./include/Smarty/internals/core.write_cache_file.php
./include/Smarty/internals/core.get_php_resource.php
./include/Smarty/internals/core.load_resource_plugin.php
./include/Smarty/internals/core.write_compiled_resource.php
./include/Smarty/internals/core.run_insert_handler.php
./include/Smarty/internals/core.get_include_path.php
./include/Smarty/internals/core.rmdir.php
./include/Smarty/internals/core.create_dir_structure.php
./include/Smarty/Smarty_Compiler.class.php
./include/Smarty/plugins/function.counter.php
./include/Smarty/plugins/function.cycle.php
./include/Smarty/plugins/modifier.regex_replace.php
./include/Smarty/plugins/function.html_select_date.php
./include/Smarty/plugins/function.sugar_getscript.php
./include/Smarty/plugins/modifier.upper.php
./include/Smarty/plugins/function.sugar_link.php
./include/Smarty/plugins/block.nocache.php
./include/Smarty/plugins/modifier.strip_semicolon.php
./include/Smarty/plugins/function.sugar_number_format.php
./include/Smarty/plugins/shared.escape_special_chars.php
./include/Smarty/plugins/function.sugar_fetch.php
./include/Smarty/plugins/modifier.indent.php
./include/Smarty/plugins/modifier.lookup.php
./include/Smarty/plugins/function.html_table.php
./include/Smarty/plugins/modifier.to_url.php
./include/Smarty/plugins/function.sugar_actions_link.php
./include/Smarty/plugins/modifier.spacify.php
./include/Smarty/plugins/block.textformat.php
./include/Smarty/plugins/function.sugar_currency_format.php
./include/Smarty/plugins/modifier.replace.php
./include/Smarty/plugins/outputfilter.trimwhitespace.php
./include/Smarty/plugins/modifier.wordwrap.php
./include/Smarty/plugins/function.mailto.php
./include/Smarty/plugins/function.sugar_help.php
./include/Smarty/plugins/function.sugarvar.php
./include/Smarty/plugins/function.multienum_to_array.php
./include/Smarty/plugins/function.sugar_run_helper.php
./include/Smarty/plugins/modifier.string_format.php
./include/Smarty/plugins/function.eval.php
./include/Smarty/plugins/modifier.debug_print_var.php
./include/Smarty/plugins/function.html_image.php
./include/Smarty/plugins/modifier.lower.php
./include/Smarty/plugins/function.sugar_action_menu.php
./include/Smarty/plugins/function.sugar_include.php
./include/Smarty/plugins/modifier.cat.php
./include/Smarty/plugins/modifier.count_paragraphs.php
./include/Smarty/plugins/function.sugar_getlink.php
./include/Smarty/plugins/function.sugar_field.php
./include/Smarty/plugins/function.html_select_time.php
./include/Smarty/plugins/function.sugar_getimagepath.php
./include/Smarty/plugins/function.assign_debug_info.php
./include/Smarty/plugins/function.sugar_phone.php
./include/Smarty/plugins/modifier.in_array.php
./include/Smarty/plugins/function.html_options.php
./include/Smarty/plugins/modifier.escape.php
./include/Smarty/plugins/modifier.truncate.php
./include/Smarty/plugins/modifier.count_words.php
./include/Smarty/plugins/modifier.capitalize.php
./include/Smarty/plugins/function.config_load.php
./include/Smarty/plugins/modifier.multienum_to_ac.php
./include/Smarty/plugins/function.sugar_getwebpath.php
./include/Smarty/plugins/modifier.json.php
./include/Smarty/plugins/modifier.nl2br.php
./include/Smarty/plugins/function.sugar_getjspath.php
./include/Smarty/plugins/modifier.default_date_value.php
./include/Smarty/plugins/modifier.strip.php
./include/Smarty/plugins/function.sugar_evalcolumn.php
./include/Smarty/plugins/function.sugar_button.php
./include/Smarty/plugins/modifier.default.php
./include/Smarty/plugins/function.html_checkboxes.php
./include/Smarty/plugins/modifier.count_sentences.php
./include/Smarty/plugins/function.sugar_image.php
./include/Smarty/plugins/function.fetch.php
./include/Smarty/plugins/function.sugar_evalcolumn_old.php
./include/Smarty/plugins/function.popup_init.php
./include/Smarty/plugins/compiler.assign.php
./include/Smarty/plugins/modifier.strip_tags.php
./include/Smarty/plugins/function.sugar_button_slider.php
./include/Smarty/plugins/function.sugarvar_connector.php
./include/Smarty/plugins/function.sugar_translate.php
./include/Smarty/plugins/modifier.count_characters.php
./include/Smarty/plugins/function.sugar_connector_display.php
./include/Smarty/plugins/function.sugar_ajax_url.php
./include/Smarty/plugins/function.debug.php
./include/Smarty/plugins/function.ext_includes.php
#./include/Smarty/plugins/modifier.date_format.php
./include/Smarty/plugins/function.sugar_email_btn.php
./include/Smarty/plugins/function.math.php
./include/Smarty/plugins/compiler.append.php
./include/Smarty/plugins/function.sugar_replace_vars.php
./include/Smarty/plugins/function.sugar_menu.php
./include/Smarty/plugins/function.sugar_variable_constructor.php
./include/Smarty/plugins/function.sugar_getimage.php
./include/Smarty/plugins/shared.make_timestamp.php
./include/Smarty/plugins/function.popup.php
./include/Smarty/plugins/function.html_radios.php
./include/Smarty/Config_File.class.php
./include/Smarty/Smarty.class.php
./include/SugarLogger/SugarLogger.php
./include/SugarLogger/LoggerManager.php
./include/SugarLogger/LoggerTemplate.php
./include/TemplateHandler/TemplateHandler.php
./include/javascript/javascript.php
./include/javascript/getYUIComboFile.php
./include/javascript/jsAlerts.php
./include/SugarSQLValidate.php
./include/pclzip/pclzip.lib.php
./include/dir_inc.php
./include/ytree/Node.php
./include/ytree/Tree.php
./include/ytree/ExtNode.php
./include/reCaptcha/recaptchalib.php
./include/timezone/timezones.php
./include/SugarOAuthServer.php
./include/tcpdf/unicode_data.php
./include/tcpdf/2dbarcodes.php
./include/tcpdf/htmlcolors.php
#./include/tcpdf/tcpdf.php
./include/tcpdf/barcodes.php
./include/tcpdf/fonts/utils/makefont.php
./include/tcpdf/fonts/uni2cid_aj16.php
./include/tcpdf/fonts/uni2cid_ac15.php
./include/tcpdf/fonts/uni2cid_ag15.php
./include/tcpdf/fonts/uni2cid_ak12.php
./include/tcpdf/config/lang/ita.php
./include/tcpdf/config/lang/eng.php
#./include/tcpdf/config/tcpdf_config.php
#./include/tcpdf/config/tcpdf_config_alt.php
./include/generic/LayoutManager.php
./include/generic/SugarWidgets/SugarWidgetFieldrelate.php
./include/generic/SugarWidgets/SugarWidgetFieldsingleenum.php
./include/generic/SugarWidgets/SugarWidgetSubPanelActivitiesStatusField.php
./include/generic/SugarWidgets/SugarWidgetFieldmultienum.php
./include/generic/SugarWidgets/SugarWidgetFielddouble.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopButtonQuickCreate.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopScheduleCallButton.php
./include/generic/SugarWidgets/SugarWidgetFielddecimal.php
./include/generic/SugarWidgets/SugarWidgetFieldnum.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopComposeEmailButton.php
./include/generic/SugarWidgets/SugarWidgetFieldcurrency.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopCreateNoteButton.php
./include/generic/SugarWidgets/SugarWidgetFieldenum.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopCreateAccountNameButton.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopSelectAccountButton.php
./include/generic/SugarWidgets/SugarWidgetSubPanelDeleteButton.php
./include/generic/SugarWidgets/SugarWidgetFieldreadonly.php
./include/generic/SugarWidgets/SugarWidget.php
./include/generic/SugarWidgets/SugarWidgetFieldcurrency_id.php
./include/generic/SugarWidgets/SugarWidgetFieldchar.php
./include/generic/SugarWidgets/SugarWidgetFielddatetime.php
./include/generic/SugarWidgets/SugarWidgetFieldfloat.php
./include/generic/SugarWidgets/SugarWidgetFieldid.php
./include/generic/SugarWidgets/SugarWidgetFielddatepicker.php
./include/generic/SugarWidgets/SugarWidgetSubPanelGetLatestButton.php
./include/generic/SugarWidgets/SugarWidgetSubPanelLoadSignedButton.php
./include/generic/SugarWidgets/SugarWidgetFieldurl.php
./include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonAccount.php
./include/generic/SugarWidgets/SugarWidgetFieldphone.php
./include/generic/SugarWidgets/SugarWidgetSubPanelEmailLink.php
./include/generic/SugarWidgets/SugarWidgetFieldbool.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopScheduleMeetingButton.php
./include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonMeetings.php
./include/generic/SugarWidgets/SugarWidgetSubPanelConcat.php
./include/generic/SugarWidgets/SugarWidgetFieldradioenum.php
./include/generic/SugarWidgets/SugarWidgetFieldfile.php
./include/generic/SugarWidgets/SugarWidgetFieldparent_type.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopCreateLeadNameButton.php
./include/generic/SugarWidgets/SugarWidgetSubPanelEditRoleButton.php
./include/generic/SugarWidgets/SugarWidgetFielddate.php
./include/generic/SugarWidgets/SugarWidgetSubPanelRelFieldEditButton.php
./include/generic/SugarWidgets/SugarWidgetFieldtime.php
./include/generic/SugarWidgets/SugarWidgetSubPanelDetailViewLink.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopSummaryButton.php
./include/generic/SugarWidgets/SugarWidgetFieldemail.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopSelectUsersButton.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopCreateCampaignLogEntryButton.php
./include/generic/SugarWidgets/SugarWidgetField.php
./include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButton.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopArchiveEmailButton.php
./include/generic/SugarWidgets/SugarWidgetFieldlongtext.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopCreateTaskButton.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopSelectContactsButton.php
./include/generic/SugarWidgets/SugarWidgetFieldname.php
./include/generic/SugarWidgets/SugarWidgetFieldimage.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopMessage.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopButton.php
./include/generic/SugarWidgets/SugarWidgetFielduser_name.php
./include/generic/SugarWidgets/SugarWidgetFieldlong.php
./include/generic/SugarWidgets/SugarWidgetSubPanelTopSelectButton.php
./include/generic/SugarWidgets/SugarWidgetSubPanelIcon.php
./include/generic/SugarWidgets/SugarWidgetFieldtext.php
./include/generic/SugarWidgets/SugarWidgetSubPanelCloseButton.php
./include/generic/SugarWidgets/SugarWidgetFielddatetimecombo.php
./include/generic/SugarWidgets/SugarWidgetFieldint.php
./include/generic/SugarWidgets/SugarWidgetFieldvarchar.php
./include/generic/SugarWidgets/SugarWidgetSubPanelRemoveButtonProjects.php
./include/generic/SugarWidgets/SugarWidgetReportField.php
./include/generic/SugarWidgets/SugarWidgetSubPanelEditButton.php
./include/generic/SugarWidgets/SugarWidgetFieldfullname.php
#./include/generic/DeleteRelationship.php
#./include/generic/Save2.php
./include/utils.php
./include/SugarXHprof/xhprof_lib/utils/xhprof_runs.php
./include/SugarXHprof/xhprof_lib/utils/callgraph_utils.php
./include/SugarXHprof/xhprof_lib/utils/xhprof_lib.php
./include/SugarXHprof/xhprof_lib/display/xhprof.php
#./include/SugarXHprof/xhprof_lib/display/typeahead_common.php
./include/SugarXHprof/SugarXHprof.php
./include/templates/Template.php
./include/templates/TemplateDragDropChooser.php
./include/templates/TemplateGroupChooser.php
./include/entryPoint.php
./include/Dashlets/DashletCacheBuilder.php
./include/Dashlets/DashletGenericChart.php
./include/Dashlets/Dashlet.php
./include/Dashlets/DashletGeneric.php
./include/Dashlets/DashletRssFeedTitle.php
./include/database/FreeTDSHelper.php
./include/database/FreeTDSManager.php
./include/database/DBManager.php
./include/database/MssqlManager.php
./include/database/MysqlManager.php
./include/database/DBHelper.php
./include/database/DBManagerFactory.php
./include/database/SqlsrvManager.php
./include/database/MysqlHelper.php
./include/database/MysqliManager.php
./include/database/MssqlHelper.php
./include/vCard.php
./include/upload_file.php
./include/externalAPI/Base/WebDocument.php
./include/externalAPI/Base/ExternalAPIBase.php
./include/externalAPI/Base/WebMeeting.php
./include/externalAPI/Base/ExternalOAuthAPIPlugin.php
./include/externalAPI/Base/OAuthPluginBase.php
./include/externalAPI/Base/ExternalAPIPlugin.php
./include/externalAPI/Base/WebFeed.php
./include/externalAPI/cmis_repository_wrapper.php
./include/externalAPI/ExternalAPIFactory.php
./include/utils/encryption_utils.php
./include/utils/sugar_file_utils.php
./include/utils/file_utils.php
./include/utils/activity_utils.php
./include/utils/security_utils.php
./include/utils/mvc_utils.php
./include/utils/layout_utils.php
./include/utils/autoloader.php
./include/utils/zip_utils.php
./include/utils/LogicHook.php
./include/utils/logic_utils.php
./include/utils/array_utils.php
./include/utils/php_zip_utils.php
./include/utils/external_cache.php
./include/utils/progress_bar_utils.php
./include/utils/db_utils.php
./include/Popups/PopupSmarty.php
./include/Popups/Popup_picker.php
./include/phpmailer/class.smtp.php
./include/phpmailer/class.phpmailer.php
./include/phpmailer/language/phpmailer.lang-pt.php
./include/phpmailer/language/phpmailer.lang-lv.php
./include/phpmailer/language/phpmailer.lang-it.php
./include/phpmailer/language/phpmailer.lang-zh_cn.php
./include/phpmailer/language/phpmailer.lang-cs.php
./include/phpmailer/language/phpmailer.lang-ru.php
./include/phpmailer/language/phpmailer.lang-hu.php
./include/phpmailer/language/phpmailer.lang-et.php
./include/phpmailer/language/phpmailer.lang-ms.php
./include/phpmailer/language/phpmailer.lang-ch.php
./include/phpmailer/language/phpmailer.lang-ro.php
./include/phpmailer/language/phpmailer.lang-id.php
./include/phpmailer/language/phpmailer.lang-fa.php
./include/phpmailer/language/phpmailer.lang-tr.php
./include/phpmailer/language/phpmailer.lang-lt.php
./include/phpmailer/language/phpmailer.lang-fi.php
./include/phpmailer/language/phpmailer.lang-ar.php
./include/phpmailer/language/phpmailer.lang-sk.php
./include/phpmailer/language/phpmailer.lang-pl.php
./include/phpmailer/language/phpmailer.lang-uk.php
./include/phpmailer/language/phpmailer.lang-sl.php
./include/phpmailer/language/phpmailer.lang-hr.php
./include/phpmailer/language/phpmailer.lang-fo.php
./include/phpmailer/language/phpmailer.lang-be.php
./include/phpmailer/language/phpmailer.lang-da.php
./include/phpmailer/language/phpmailer.lang-bg.php
./include/phpmailer/language/phpmailer.lang-ja.php
./include/phpmailer/language/phpmailer.lang-eo.php
./include/phpmailer/language/phpmailer.lang-pt_br.php
./include/phpmailer/language/phpmailer.lang-es.php
./include/phpmailer/language/phpmailer.lang-sr.php
./include/phpmailer/language/phpmailer.lang-el.php
./include/phpmailer/language/phpmailer.lang-nl.php
./include/phpmailer/language/phpmailer.lang-az.php
./include/phpmailer/language/phpmailer.lang-zh.php
./include/phpmailer/language/phpmailer.lang-ka.php
./include/phpmailer/language/phpmailer.lang-am.php
./include/phpmailer/language/phpmailer.lang-nb.php
./include/phpmailer/language/phpmailer.lang-sv.php
./include/phpmailer/language/phpmailer.lang-ca.php
./include/phpmailer/language/phpmailer.lang-he.php
./include/phpmailer/language/phpmailer.lang-de.php
./include/phpmailer/language/phpmailer.lang-ko.php
./include/phpmailer/language/phpmailer.lang-gl.php
./include/phpmailer/language/phpmailer.lang-fr.php
./include/phpmailer/language/phpmailer.lang-vi.php
./include/php-sql-parser.php
./include/MySugar/DashletsDialog/DashletsDialog.php
./include/MySugar/MySugar.php
./include/VarDefHandler/vardef_meta_arrays.php
./include/VarDefHandler/VarDefHandler.php
#./include/VarDefHandler/listvardefoverride.php
./include/modules.php
./include/SugarTinyMCE.php
./include/MassUpdate.php
./include/connectors/sources/ext/soap/soap.php
./include/connectors/sources/ext/rest/rest.php
./include/connectors/sources/ext/eapm/eapm.php
./include/connectors/sources/loc/xml.php
./include/connectors/sources/SourceFactory.php
./include/connectors/sources/default/source.php
./include/connectors/component.php
./include/connectors/utils/ConnectorHtmlHelperFactory.php
./include/connectors/utils/ConnectorHtmlHelper.php
./include/connectors/utils/ConnectorUtils.php
./include/connectors/formatters/FormatterFactory.php
./include/connectors/formatters/default/formatter.php
./include/connectors/ConnectorFactory.php
./include/connectors/filters/FilterFactory.php
./include/connectors/filters/default/filter.php
./include/QuickSearchDefaults.php
./include/SugarObjects/forms/FormBase.php
./include/SugarObjects/forms/PersonFormBase.php
./include/SugarObjects/SugarRegistry.php
./include/SugarObjects/templates/sale/Sale.php
#./include/SugarObjects/templates/sale/vardefs.php
./include/SugarObjects/templates/sale/Chance.php
./include/SugarObjects/templates/sale/metadata/metafiles.php
./include/SugarObjects/templates/sale/metadata/subpanels/default.php
./include/SugarObjects/templates/sale/metadata/searchdefs.php
./include/SugarObjects/templates/sale/metadata/editviewdefs.php
./include/SugarObjects/templates/sale/metadata/SearchFields.php
./include/SugarObjects/templates/sale/metadata/listviewdefs.php
./include/SugarObjects/templates/sale/metadata/detailviewdefs.php
./include/SugarObjects/templates/sale/metadata/quickcreatedefs.php
./include/SugarObjects/templates/sale/metadata/popupdefs.php
#./include/SugarObjects/templates/sale/metadata/dashletviewdefs.php
#./include/SugarObjects/templates/sale/language/en_us.lang.php
#./include/SugarObjects/templates/sale/language/application/en_us.lang.php
./include/SugarObjects/templates/sale/config.php
#./include/SugarObjects/templates/company/vardefs.php
./include/SugarObjects/templates/company/metadata/metafiles.php
./include/SugarObjects/templates/company/metadata/subpanels/default.php
./include/SugarObjects/templates/company/metadata/searchdefs.php
./include/SugarObjects/templates/company/metadata/editviewdefs.php
./include/SugarObjects/templates/company/metadata/SearchFields.php
./include/SugarObjects/templates/company/metadata/listviewdefs.php
./include/SugarObjects/templates/company/metadata/detailviewdefs.php
./include/SugarObjects/templates/company/metadata/quickcreatedefs.php
./include/SugarObjects/templates/company/metadata/popupdefs.php
#./include/SugarObjects/templates/company/metadata/dashletviewdefs.php
./include/SugarObjects/templates/company/Company.php
./include/SugarObjects/templates/company/language/en_us.lang.php
#./include/SugarObjects/templates/company/language/application/en_us.lang.php
./include/SugarObjects/templates/company/config.php
#-./include/SugarObjects/templates/basic/Dashlets/Dashlet/m-n-Dashlet.meta.php
#-./include/SugarObjects/templates/basic/Dashlets/Dashlet/m-n-Dashlet.php
#./include/SugarObjects/templates/basic/vardefs.php
./include/SugarObjects/templates/basic/metadata/metafiles.php
./include/SugarObjects/templates/basic/metadata/subpanels/default.php
./include/SugarObjects/templates/basic/metadata/searchdefs.php
./include/SugarObjects/templates/basic/metadata/editviewdefs.php
./include/SugarObjects/templates/basic/metadata/SearchFields.php
./include/SugarObjects/templates/basic/metadata/listviewdefs.php
./include/SugarObjects/templates/basic/metadata/detailviewdefs.php
./include/SugarObjects/templates/basic/metadata/quickcreatedefs.php
./include/SugarObjects/templates/basic/metadata/popupdefs.php
#./include/SugarObjects/templates/basic/metadata/dashletviewdefs.php
./include/SugarObjects/templates/basic/language/en_us.lang.php
#./include/SugarObjects/templates/basic/Basic.php
#./include/SugarObjects/templates/issue/vardefs.php
#./include/SugarObjects/templates/issue/Issue.php
./include/SugarObjects/templates/issue/metadata/metafiles.php
./include/SugarObjects/templates/issue/metadata/subpanels/default.php
./include/SugarObjects/templates/issue/metadata/searchdefs.php
./include/SugarObjects/templates/issue/metadata/editviewdefs.php
./include/SugarObjects/templates/issue/metadata/SearchFields.php
./include/SugarObjects/templates/issue/metadata/listviewdefs.php
./include/SugarObjects/templates/issue/metadata/detailviewdefs.php
./include/SugarObjects/templates/issue/metadata/quickcreatedefs.php
./include/SugarObjects/templates/issue/metadata/popupdefs.php
#./include/SugarObjects/templates/issue/metadata/dashletviewdefs.php
./include/SugarObjects/templates/issue/language/en_us.lang.php
#./include/SugarObjects/templates/issue/language/application/en_us.lang.php
./include/SugarObjects/templates/issue/config.php
./include/SugarObjects/templates/file/vardefs.php
#./include/SugarObjects/templates/file/controller.php
#-./include/SugarObjects/templates/file/views/view.edit.php
./include/SugarObjects/templates/file/metadata/metafiles.php
./include/SugarObjects/templates/file/metadata/subpanels/default.php
./include/SugarObjects/templates/file/metadata/searchdefs.php
./include/SugarObjects/templates/file/metadata/editviewdefs.php
./include/SugarObjects/templates/file/metadata/SearchFields.php
./include/SugarObjects/templates/file/metadata/listviewdefs.php
./include/SugarObjects/templates/file/metadata/detailviewdefs.php
./include/SugarObjects/templates/file/metadata/quickcreatedefs.php
#./include/SugarObjects/templates/file/metadata/dashletviewdefs.php
./include/SugarObjects/templates/file/language/en_us.lang.php
#./include/SugarObjects/templates/file/language/application/en_us.lang.php
#./include/SugarObjects/templates/file/File.php
#./include/SugarObjects/templates/person/vardefs.php
#./include/SugarObjects/templates/person/Person.php
./include/SugarObjects/templates/person/metadata/metafiles.php
./include/SugarObjects/templates/person/metadata/subpanels/default.php
./include/SugarObjects/templates/person/metadata/searchdefs.php
./include/SugarObjects/templates/person/metadata/editviewdefs.php
./include/SugarObjects/templates/person/metadata/SearchFields.php
./include/SugarObjects/templates/person/metadata/listviewdefs.php
./include/SugarObjects/templates/person/metadata/detailviewdefs.php
./include/SugarObjects/templates/person/metadata/quickcreatedefs.php
./include/SugarObjects/templates/person/metadata/popupdefs.php
#./include/SugarObjects/templates/person/metadata/dashletviewdefs.php
./include/SugarObjects/templates/person/language/en_us.lang.php
./include/SugarObjects/templates/person/config.php
./include/SugarObjects/SugarConfig.php
./include/SugarObjects/LanguageManager.php
#./include/SugarObjects/implements/team_security/vardefs.php
./include/SugarObjects/implements/team_security/language/en_us.lang.php
#./include/SugarObjects/implements/assignable/vardefs.php
./include/SugarObjects/implements/assignable/language/en_us.lang.php
./include/SugarObjects/SugarSession.php
./include/SugarObjects/VardefManager.php
./include/resource/ResourceManager.php
./include/resource/Observers/WebResourceObserver.php
./include/resource/Observers/ResourceObserver.php
./include/resource/Observers/SoapResourceObserver.php
./include/JSON.php
#./include/controller/Controller.php
./include/export_utils.php
#./include/SugarTheme/getImage.php
./include/SugarTheme/SugarTheme.php
./include/SugarTheme/cssmin.php
./include/SugarTheme/SugarSprites.php
./include/parsecsv.lib.php
./include/SugarFields/SugarFieldHandler.php
./include/SugarFields/Fields/Base/SugarFieldBase.php
./include/SugarFields/Fields/Datetimecombo/SugarFieldDatetimecombo.php
#./include/SugarFields/Fields/Currency/SugarFieldCurrency.php
#./include/SugarFields/Fields/Collection/view.sugarfieldcollection.php
./include/SugarFields/Fields/Collection/SugarFieldCollection.php
./include/SugarFields/Fields/Collection/ViewSugarFieldCollection.php
./include/SugarFields/Fields/Fullname/SugarFieldFullname.php
./include/SugarFields/Fields/Phone/SugarFieldPhone.php
./include/SugarFields/Fields/Readonly/SugarFieldReadonly.php
./include/SugarFields/Fields/Time/SugarFieldTime.php
./include/SugarFields/Fields/Bool/SugarFieldBool.php
./include/SugarFields/Fields/Html/SugarFieldHtml.php
./include/SugarFields/Fields/Relate/SugarFieldRelate.php
./include/SugarFields/Fields/Enum/SugarFieldEnum.php
./include/SugarFields/Fields/Radioenum/SugarFieldRadioenum.php
./include/SugarFields/Fields/Assigned_user_name/SugarFieldAssigned_user_name.php
./include/SugarFields/Fields/Download/SugarFieldDownload.php
./include/SugarFields/Fields/Address/SugarFieldAddress.php
#./include/SugarFields/Fields/Float/SugarFieldFloat.php
#./include/SugarFields/Fields/Int/SugarFieldInt.php
./include/SugarFields/Fields/Parent/SugarFieldParent.php
./include/SugarFields/Fields/Password/SugarFieldPassword.php
./include/SugarFields/Fields/File/SugarFieldFile.php
./include/SugarFields/Fields/Datetime/SugarFieldDatetime.php
./include/SugarFields/Fields/Username/SugarFieldUsername.php
./include/SugarFields/Fields/Text/SugarFieldText.php
./include/SugarFields/Fields/Multienum/SugarFieldMultienum.php
./include/SugarFields/Fields/Id/SugarFieldId.php
./include/SugarFields/Parsers/Rules/EmptyRowRule.php
./include/SugarFields/Parsers/Rules/AddressRule.php
./include/SugarFields/Parsers/Rules/CallsParseRule.php
./include/SugarFields/Parsers/Rules/CampaignsParseRule.php
./include/SugarFields/Parsers/Rules/DocumentsParseRule.php
./include/SugarFields/Parsers/Rules/ProductsParseRule.php
./include/SugarFields/Parsers/Rules/ContractsParseRule.php
./include/SugarFields/Parsers/Rules/VariableSubstitutionRule.php
./include/SugarFields/Parsers/Rules/OpportunitiesParseRule.php
./include/SugarFields/Parsers/Rules/QuotesParseRule.php
./include/SugarFields/Parsers/Rules/ParseRules.php
./include/SugarFields/Parsers/Rules/BaseRule.php
./include/SugarFields/Parsers/Rules/UndefinedVardefRule.php
./include/SugarFields/Parsers/Rules/BugsParseRule.php
./include/SugarFields/Parsers/Rules/NotesParseRule.php
./include/SugarFields/Parsers/Rules/LeadsParseRule.php
./include/SugarFields/Parsers/Rules/MeetingsParseRule.php
./include/SugarFields/Parsers/Rules/VariableCleanupRule.php
./include/SugarFields/Parsers/Rules/AccountsParseRule.php
./include/SugarFields/Parsers/Rules/ContactsParseRule.php
./include/SugarFields/Parsers/Rules/ActivitiesParseRule.php
./include/SugarFields/Parsers/Rules/EmailAddressRule.php
./include/SugarFields/Parsers/QuickCreateMetaParser.php
./include/SugarFields/Parsers/MetaParser.php
./include/SugarFields/Parsers/SearchFormMetaParser.php
./include/SugarFields/Parsers/EditViewMetaParser.php
./include/SugarFields/Parsers/DetailViewMetaParser.php
#./include/globalControlLinks.php
./include/SugarCache/SugarCacheMemcache.php
./include/SugarCache/SugarCacheRedis.php
./include/SugarCache/SugarCacheZend.php
./include/SugarCache/SugarCacheAPC.php
./include/SugarCache/SugarCacheWincache.php
./include/SugarCache/SugarCacheFile.php
./include/SugarCache/SugarCachesMash.php
./include/SugarCache/SugarCache.php
./include/SugarCache/SugarCacheMemcached.php
./include/SugarCache/SugarCacheAbstract.php
./include/SugarCache/SugarCacheMemory.php
#./include/DetailView/DetailView.php
./include/DetailView/DetailView2.php
./include/HTTP_WebDAV_Server/Tools/_parse_propfind.php
./include/HTTP_WebDAV_Server/Tools/_parse_proppatch.php
./include/HTTP_WebDAV_Server/Tools/_parse_lockinfo.php
./include/HTTP_WebDAV_Server/Server.php
#./include/SugarQueue/SugarJobQueue.php
#./include/SugarQueue/SugarCronJobs.php
#./include/SugarQueue/SugarCronRemoteJobs.php
#./include/SugarDependentDropdown/metadata/dependentDropdown.php
./include/SugarDependentDropdown/SugarDependentDropdown.php
./include/SubPanel/SubPanelViewer.php
./include/SubPanel/SubPanelTiles.php
./include/SubPanel/SugarTab.php
./include/SubPanel/SubPanelDefinitions.php
./include/SubPanel/SubPanelTilesTabs.php
./include/SubPanel/registered_layout_defs.php
./include/SubPanel/SubPanel.php
#./include/language/en_us.lang.php
./include/language/jsLanguage.php
./include/language/getJSLanguage.php
./include/Pear/XML_HTMLSax3/HTMLSax3/States.php
./include/Pear/XML_HTMLSax3/HTMLSax3/Decorators.php
./include/Pear/XML_HTMLSax3/HTMLSax3.php
./include/Pear/Crypt_Blowfish/Blowfish/DefaultKey.php
./include/Pear/Crypt_Blowfish/Blowfish.php
./include/SugarPHPMailer.php
./include/formbase.php
#./include/Sugar_Smarty.php
./include/Localization/Localization.php
./include/ListView/ListViewSmarty.php
./include/ListView/ListViewData.php
./include/ListView/ListViewFacade.php
./include/ListView/ListView.php
./include/ListView/ListViewXTPL.php
./include/ListView/ListViewDisplay.php
./include/SugarDateTime.php
./include/SugarHtml/SugarHtml.php
#./include/google-api-php-client/autoload.php
./include/google-api-php-client/src/Google/autoload.php
./include/google-api-php-client/src/Google/Logger/Psr.php
./include/google-api-php-client/src/Google/Logger/Exception.php
./include/google-api-php-client/src/Google/Logger/Null.php
./include/google-api-php-client/src/Google/Logger/File.php
./include/google-api-php-client/src/Google/Logger/Abstract.php
./include/google-api-php-client/src/Google/Http/Request.php
./include/google-api-php-client/src/Google/Http/MediaFileUpload.php
./include/google-api-php-client/src/Google/Http/CacheParser.php
./include/google-api-php-client/src/Google/Http/REST.php
./include/google-api-php-client/src/Google/Http/Batch.php
./include/google-api-php-client/src/Google/Service.php
./include/google-api-php-client/src/Google/Verifier/Abstract.php
./include/google-api-php-client/src/Google/Verifier/Pem.php
./include/google-api-php-client/src/Google/Client.php
./include/google-api-php-client/src/Google/IO/Curl.php
./include/google-api-php-client/src/Google/IO/Stream.php
./include/google-api-php-client/src/Google/IO/Exception.php
./include/google-api-php-client/src/Google/IO/Abstract.php
#./include/google-api-php-client/src/Google/Service/Replicapoolupdater.php
#./include/google-api-php-client/src/Google/Service/Mirror.php
#./include/google-api-php-client/src/Google/Service/AndroidEnterprise.php
#./include/google-api-php-client/src/Google/Service/CloudMonitoring.php
#./include/google-api-php-client/src/Google/Service/Books.php
#./include/google-api-php-client/src/Google/Service/Tasks.php
#./include/google-api-php-client/src/Google/Service/Webfonts.php
#./include/google-api-php-client/src/Google/Service/Resourceviews.php
#./include/google-api-php-client/src/Google/Service/Taskqueue.php
#./include/google-api-php-client/src/Google/Service/Audit.php
#./include/google-api-php-client/src/Google/Service/Playmoviespartner.php
#./include/google-api-php-client/src/Google/Service/Cloudresourcemanager.php
#./include/google-api-php-client/src/Google/Service/Pagespeedonline.php
#./include/google-api-php-client/src/Google/Service/Gmail.php
#./include/google-api-php-client/src/Google/Service/Logging.php
#./include/google-api-php-client/src/Google/Service/Autoscaler.php
#./include/google-api-php-client/src/Google/Service/CloudUserAccounts.php
#./include/google-api-php-client/src/Google/Service/SiteVerification.php
#./include/google-api-php-client/src/Google/Service/Oauth2.php
#./include/google-api-php-client/src/Google/Service/QPXExpress.php
#./include/google-api-php-client/src/Google/Service/Calendar.php
#./include/google-api-php-client/src/Google/Service/Fitness.php
./include/google-api-php-client/src/Google/Service/Resource.php
#./include/google-api-php-client/src/Google/Service/PlusDomains.php
#./include/google-api-php-client/src/Google/Service/AppState.php
#./include/google-api-php-client/src/Google/Service/CivicInfo.php
#./include/google-api-php-client/src/Google/Service/Datastore.php
#./include/google-api-php-client/src/Google/Service/Translate.php
#./include/google-api-php-client/src/Google/Service/Games.php
#./include/google-api-php-client/src/Google/Service/Analytics.php
#./include/google-api-php-client/src/Google/Service/Computeaccounts.php
#./include/google-api-php-client/src/Google/Service/DoubleClickBidManager.php
#./include/google-api-php-client/src/Google/Service/AdSenseHost.php
#./include/google-api-php-client/src/Google/Service/Admin.php
#./include/google-api-php-client/src/Google/Service/AdExchangeSeller.php
#./include/google-api-php-client/src/Google/Service/Manager.php
#./include/google-api-php-client/src/Google/Service/IdentityToolkit.php
#./include/google-api-php-client/src/Google/Service/DeploymentManager.php
#./include/google-api-php-client/src/Google/Service/AndroidPublisher.php
#./include/google-api-php-client/src/Google/Service/Licensing.php
#./include/google-api-php-client/src/Google/Service/Dataflow.php
#./include/google-api-php-client/src/Google/Service/SQLAdmin.php
#./include/google-api-php-client/src/Google/Service/AdExchangeBuyer.php
#./include/google-api-php-client/src/Google/Service/GamesConfiguration.php
#./include/google-api-php-client/src/Google/Service/Pubsub.php
#./include/google-api-php-client/src/Google/Service/GamesManagement.php
#./include/google-api-php-client/src/Google/Service/Drive.php
#./include/google-api-php-client/src/Google/Service/Groupssettings.php
#./include/google-api-php-client/src/Google/Service/Plus.php
#./include/google-api-php-client/src/Google/Service/Webmasters.php
./include/google-api-php-client/src/Google/Service/Exception.php
#./include/google-api-php-client/src/Google/Service/Reports.php
#./include/google-api-php-client/src/Google/Service/Spectrum.php
#./include/google-api-php-client/src/Google/Service/TagManager.php
#./include/google-api-php-client/src/Google/Service/Storage.php
#./include/google-api-php-client/src/Google/Service/Cloudsearch.php
#./include/google-api-php-client/src/Google/Service/ShoppingContent.php
#./include/google-api-php-client/src/Google/Service/Urlshortener.php
#./include/google-api-php-client/src/Google/Service/Blogger.php
#./include/google-api-php-client/src/Google/Service/Prediction.php
#./include/google-api-php-client/src/Google/Service/Compute.php
#./include/google-api-php-client/src/Google/Service/Fusiontables.php
#./include/google-api-php-client/src/Google/Service/Bigquery.php
#./include/google-api-php-client/src/Google/Service/GroupsMigration.php
#./include/google-api-php-client/src/Google/Service/AdSense.php
#./include/google-api-php-client/src/Google/Service/Replicapool.php
#./include/google-api-php-client/src/Google/Service/Directory.php
#./include/google-api-php-client/src/Google/Service/Freebase.php
#./include/google-api-php-client/src/Google/Service/Container.php
#./include/google-api-php-client/src/Google/Service/YouTubeAnalytics.php
#./include/google-api-php-client/src/Google/Service/YouTube.php
#./include/google-api-php-client/src/Google/Service/Coordinate.php
#./include/google-api-php-client/src/Google/Service/Dns.php
#./include/google-api-php-client/src/Google/Service/Appsactivity.php
#./include/google-api-php-client/src/Google/Service/Reseller.php
#./include/google-api-php-client/src/Google/Service/Customsearch.php
#./include/google-api-php-client/src/Google/Service/Cloudlatencytest.php
#./include/google-api-php-client/src/Google/Service/Classroom.php
#./include/google-api-php-client/src/Google/Service/Genomics.php
#./include/google-api-php-client/src/Google/Service/Dfareporting.php
#./include/google-api-php-client/src/Google/Service/MapsEngine.php
#./include/google-api-php-client/src/Google/Service/Doubleclicksearch.php
./include/google-api-php-client/src/Google/Auth/OAuth2.php
./include/google-api-php-client/src/Google/Auth/ComputeEngine.php
./include/google-api-php-client/src/Google/Auth/AssertionCredentials.php
./include/google-api-php-client/src/Google/Auth/LoginTicket.php
./include/google-api-php-client/src/Google/Auth/Exception.php
./include/google-api-php-client/src/Google/Auth/AppIdentity.php
./include/google-api-php-client/src/Google/Auth/Abstract.php
./include/google-api-php-client/src/Google/Auth/Simple.php
./include/google-api-php-client/src/Google/Config.php
./include/google-api-php-client/src/Google/Signer/P12.php
./include/google-api-php-client/src/Google/Signer/Abstract.php
./include/google-api-php-client/src/Google/Utils.php
./include/google-api-php-client/src/Google/Model.php
./include/google-api-php-client/src/Google/Exception.php
./include/google-api-php-client/src/Google/Utils/URITemplate.php
./include/google-api-php-client/src/Google/Collection.php
./include/google-api-php-client/src/Google/Cache/Exception.php
./include/google-api-php-client/src/Google/Cache/Apc.php
./include/google-api-php-client/src/Google/Cache/Memcache.php
./include/google-api-php-client/src/Google/Cache/Null.php
./include/google-api-php-client/src/Google/Cache/File.php
./include/google-api-php-client/src/Google/Cache/Abstract.php
./include/google-api-php-client/src/Google/Task/Runner.php
./include/google-api-php-client/src/Google/Task/Retryable.php
./include/google-api-php-client/src/Google/Task/Exception.php
./include/google-api-php-client/examples/simple-query.php
./include/google-api-php-client/examples/multi-api.php
./include/google-api-php-client/examples/fileupload.php
./include/google-api-php-client/examples/index.php
./include/google-api-php-client/examples/idtoken.php
./include/google-api-php-client/examples/templates/base.php
./include/google-api-php-client/examples/simplefileupload.php
./include/google-api-php-client/examples/batch.php
./include/google-api-php-client/examples/service-account.php
./include/google-api-php-client/examples/user-example.php
#./include/google-api-php-client/examples/appengineauth.php
#./include/google-api-php-client/tests/pagespeed/PageSpeedTest.php
#./include/google-api-php-client/tests/bootstrap.php
#./include/google-api-php-client/tests/BaseTest.php
#./include/google-api-php-client/tests/adsense/AdSenseTest.php
#./include/google-api-php-client/tests/youtube/YouTubeTest.php
#./include/google-api-php-client/tests/tasks/TasksTest.php
#./include/google-api-php-client/tests/OAuthHelper.php
#./include/google-api-php-client/tests/urlshortener/UrlShortenerTests.php
#./include/google-api-php-client/tests/general/AuthTest.php
#./include/google-api-php-client/tests/general/Http/BatchTest.php
#./include/google-api-php-client/tests/general/Http/RequestTest.php
#./include/google-api-php-client/tests/general/ComputeEngineAuthTest.php
#./include/google-api-php-client/tests/general/TaskTest.php
#./include/google-api-php-client/tests/general/IoTest.php
#./include/google-api-php-client/tests/general/ApiModelTest.php
#./include/google-api-php-client/tests/general/RestTest.php
#./include/google-api-php-client/tests/general/ApiClientTest.php
#./include/google-api-php-client/tests/general/ApiMediaFileUploadTest.php
#./include/google-api-php-client/tests/general/LoggerTest.php
#./include/google-api-php-client/tests/general/CacheTest.php
#./include/google-api-php-client/tests/general/ApiCacheParserTest.php
#./include/google-api-php-client/tests/general/ResourceTest.php
#./include/google-api-php-client/tests/general/URITemplateTest.php
#./include/google-api-php-client/tests/general/ServiceTest.php
#./include/google-api-php-client/tests/general/ApiOAuth2Test.php
#./include/google-api-php-client/tests/general/RequestTest.php
#./include/google-api-php-client/tests/general/ApiBatchRequestTest.php
#./include/google-api-php-client/tests/plus/PlusTest.php
./include/SugarHttpClient.php
./include/HTMLPurifier/HTMLPurifier.standalone.php
#./include/HTMLPurifier/HTMLPurifier.autoload.php
./include/HTMLPurifier/standalone/HTMLPurifier/ConfigSchema/InterchangeBuilder.php
./include/HTMLPurifier/standalone/HTMLPurifier/ConfigSchema/Interchange.php
./include/HTMLPurifier/standalone/HTMLPurifier/ConfigSchema/Interchange/Directive.php
./include/HTMLPurifier/standalone/HTMLPurifier/ConfigSchema/Interchange/Id.php
./include/HTMLPurifier/standalone/HTMLPurifier/ConfigSchema/Validator.php
#./include/HTMLPurifier/standalone/HTMLPurifier/ConfigSchema/Exception.php
./include/HTMLPurifier/standalone/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php
./include/HTMLPurifier/standalone/HTMLPurifier/ConfigSchema/Builder/Xml.php
./include/HTMLPurifier/standalone/HTMLPurifier/ConfigSchema/ValidatorAtom.php
#./include/HTMLPurifier/standalone/HTMLPurifier/Filter/ExtractStyleBlocks.php
#./include/HTMLPurifier/standalone/HTMLPurifier/Filter/YouTube.php
#./include/HTMLPurifier/standalone/HTMLPurifier/Lexer/PEARSax3.php
#./include/HTMLPurifier/standalone/HTMLPurifier/Lexer/PH5P.php
#./include/HTMLPurifier/standalone/HTMLPurifier/Language/classes/en-x-test.php
./include/HTMLPurifier/standalone/HTMLPurifier/Language/messages/en-x-test.php
./include/HTMLPurifier/standalone/HTMLPurifier/Language/messages/en.php
./include/HTMLPurifier/standalone/HTMLPurifier/Language/messages/en-x-testmini.php
#./include/HTMLPurifier/standalone/HTMLPurifier/Printer/ConfigForm.php
#./include/HTMLPurifier/standalone/HTMLPurifier/Printer/CSSDefinition.php
#./include/HTMLPurifier/standalone/HTMLPurifier/Printer/HTMLDefinition.php
./include/HTMLPurifier/standalone/HTMLPurifier/Printer.php
./include/SugarOauth.php
./include/MVC/SugarApplication.php
./include/MVC/Controller/SugarController.php
./include/MVC/Controller/ControllerFactory.php
./include/MVC/Controller/file_access_control_map.php
./include/MVC/Controller/entry_point_registry.php
./include/MVC/Controller/action_file_map.php
./include/MVC/Controller/action_view_map.php
./include/MVC/View/SugarView.php
./include/MVC/View/views/view.list.php
#./include/MVC/View/views/view.vcard.php
#./include/MVC/View/views/view.edit.php
#./include/MVC/View/views/view.detail.php
#./include/MVC/View/views/view.xml.php
#./include/MVC/View/views/view.multiedit.php
#./include/MVC/View/views/view.metadata.php
#./include/MVC/View/views/view.json.php
./include/MVC/View/views/view.classic.config.php
./include/MVC/View/views/view.quickcreate.php
#./include/MVC/View/views/view.popup.php
./include/MVC/View/views/view.quickedit.php
#./include/MVC/View/views/view.favorites.php
#./include/MVC/View/views/view.serialized.php
#./include/MVC/View/views/view.quick.php
./include/MVC/View/views/view.config.php
./include/MVC/View/views/view.ajax.php
./include/MVC/View/views/view.classic.php
#./include/MVC/View/views/view.importvcardsave.php
#./include/MVC/View/views/view.importvcard.php
#./include/MVC/View/views/view.sugarpdf.php
./include/MVC/View/views/view.sugarpdf.config.php
./include/MVC/View/views/view.html.php
./include/MVC/View/views/view.ajaxui.php
#./include/MVC/View/views/view.noaccess.php
./include/MVC/View/views/view.detail.config.php
./include/MVC/View/views/view.modulelistmenu.php
./include/MVC/View/ViewFactory.php
./include/MVC/preDispatch.php
./include/MVC/SugarModule.php
./include/SugarFolders/SugarFolders.php
./include/OutboundEmail/OutboundEmail.php
#./include/json_config.php
#./include/SugarEmailAddress/SugarEmailAddress.php
./include/SugarCharts/Jit/JitReports.php
#./include/SugarCharts/Jit/FlashCanvas/save.php
./include/SugarCharts/Jit/FlashCanvas/proxy.php
./include/SugarCharts/Jit/Jit.php
./include/SugarCharts/JsChart.php
./include/SugarCharts/SugarChart.php
./include/SugarCharts/SugarChartFactory.php
./include/tabConfig.php
./include/EditView/EditView.php
./include/EditView/EditView2.php
./include/EditView/PopupQuickCreate.php
./include/EditView/SugarVCR.php
./include/EditView/QuickCreate.php
./include/EditView/SubpanelQuickEdit.php
./include/EditView/SubpanelQuickCreate.php
#./include/tabs.php
./include/clean.php
#./include/Sugarpdf/sugarpdf_default.php
#./include/Sugarpdf/SugarpdfFactory.php
#./include/Sugarpdf/sugarpdf_config.php
#./include/Sugarpdf/Sugarpdf.php
#./include/Sugarpdf/FontManager.php
./include/Sugarpdf/SugarpdfHelper.php
#./include/Sugarpdf/sugarpdf/sugarpdf.smarty.php
./include/contextMenus/menuDefs/sugarAccount.php
./include/contextMenus/menuDefs/sugarPerson.php
./include/contextMenus/menuDefs/sugarObject.php
./include/contextMenus/contextMenu.php
#./include/nusoap/nusoapmime.php
#./include/nusoap/class.soap_transport_http.php
#./include/nusoap/class.soap_server.php
#./include/nusoap/class.soap_val.php
#./include/nusoap/class.xmlschema.php
#./include/nusoap/class.soapclient.php
#./include/nusoap/class.nusoap_base.php
#./include/nusoap/class.soap_parser.php
#./include/nusoap/class.wsdl.php
./include/nusoap/class.wsdlcache.php
./include/nusoap/class.soap_fault.php
./include/nusoap/nusoap.php
./include/SearchForm/SearchForm2.php
./include/SearchForm/SearchForm.php
./include/SearchForm/SugarSpot.php
./include/TimeDate.php
#./vCard.php
#./WebToLeadCapture.php
./vcal_server.php
./download.php
./modules/Employees/field_arrays.php
#./modules/Employees/WapMenu.php
#./modules/Employees/Menu.php
#./modules/Employees/WapAuthenticate.php
./modules/Employees/vardefs.php
#./modules/Employees/EmployeesSearchForm.php
#./modules/Employees/controller.php
#./modules/Employees/Employee.php
./modules/Employees/views/view.list.php
#./modules/Employees/views/view.edit.php
#./modules/Employees/views/view.detail.php
#./modules/Employees/Save.php
./modules/Employees/Forms.php
./modules/Employees/Error.php
./modules/Employees/metadata/searchdefs.php
#./modules/Employees/metadata/editviewdefs.php
./modules/Employees/metadata/SearchFields.php
./modules/Employees/metadata/listviewdefs.php
./modules/Employees/metadata/detailviewdefs.php
./modules/Employees/metadata/quickcreatedefs.php
./modules/Employees/metadata/studio.php
./modules/Employees/language/en_us.lang.php
./modules/Employees/Popup_picker.php
./modules/Employees/EmployeeStatus.php
./modules/Employees/EmployeesStudioModule.php
#./modules/EmailMarketing/EditView.php
#./modules/EmailMarketing/SubPanelView.php
#./modules/EmailMarketing/DetailView.php
./modules/EmailMarketing/field_arrays.php
./modules/EmailMarketing/Menu.php
./modules/EmailMarketing/subpanels/default.php
./modules/EmailMarketing/vardefs.php
#./modules/EmailMarketing/Save.php
./modules/EmailMarketing/Forms.php
./modules/EmailMarketing/metadata/subpanels/default.php
./modules/EmailMarketing/metadata/subpaneldefs.php
./modules/EmailMarketing/language/en_us.lang.php
#./modules/EmailMarketing/Delete.php
#./modules/EmailMarketing/EmailMarketing.php
#./modules/Home/LastViewed.php
./modules/Home/SaveSubpanelLayout.php
#./modules/Home/index.php
./modules/Home/Menu.php
#./modules/Home/QuickSearch.php
./modules/Home/Dashlets/JotPadDashlet/JotPadDashlet.meta.php
#./modules/Home/Dashlets/JotPadDashlet/JotPadDashlet.php
./modules/Home/Dashlets/JotPadDashlet/JotPadDashlet.en_us.lang.php
./modules/Home/Dashlets/RSSDashlet/RSSDashlet.meta.php
./modules/Home/Dashlets/RSSDashlet/RSSDashlet.en_us.lang.php
#./modules/Home/Dashlets/RSSDashlet/RSSDashlet.php
#./modules/Home/Dashlets/iFrameDashlet/iFrameDashlet.php
./modules/Home/Dashlets/iFrameDashlet/iFrameDashlet.meta.php
#./modules/Home/Dashlets/SugarNewsDashlet/SugarNewsDashlet.meta.php
#./modules/Home/Dashlets/SugarNewsDashlet/SugarNewsDashlet.php
./modules/Home/Dashlets/InvadersDashlet/InvadersDashlet.en_us.lang.php
./modules/Home/Dashlets/InvadersDashlet/InvadersDashlet.meta.php
#./modules/Home/Dashlets/InvadersDashlet/InvadersDashlet.php
#./modules/Home/Dashlets/ChartsDashlet/ChartsDashlet.php
./modules/Home/Dashlets/ChartsDashlet/ChartsDashlet.en_us.lang.php
./modules/Home/Dashlets/ChartsDashlet/ChartsDashlet.meta.php
#./modules/Home/sitemap.php
./modules/Home/dashlets.php
./modules/Home/views/view.list.php
./modules/Home/views/view.additionaldetailsretrieve.php
./modules/Home/views/view.tour.php
./modules/Home/views/view.modulelistmenu.php
#./modules/Home/UnifiedSearch.php
./modules/Home/UnifiedSearchAdvanced.php
#./modules/Home/PopupSugar.php
#./modules/Home/SubpanelCreates.php
./modules/Home/language/en_us.lang.php
./modules/Home/action_view_map.php
#./modules/Home/DynamicAction.php
./modules/Home/AddToFavorites.php
#./modules/Home/SubpanelEdits.php
#./modules/Home/About.php
#./modules/Home/TrainingPortal.php
#./modules/Home/quicksearchQuery.php
#./modules/EmailAddresses/EmailAddress.php
./modules/EmailAddresses/vardefs.php
./modules/EmailAddresses/language/en_us.lang.php
#./modules/SugarFeed/AdminSettings.php
./modules/SugarFeed/Menu.php
#./modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.meta.php
#./modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.php
#./modules/SugarFeed/vardefs.php
./modules/SugarFeed/feedLogicBase.php
#./modules/SugarFeed/SugarFeed.php
#./modules/SugarFeed/views/view.adminsettings.php
./modules/SugarFeed/Forms.php
./modules/SugarFeed/metadata/metafiles.php
./modules/SugarFeed/metadata/subpanels/default.php
./modules/SugarFeed/metadata/searchdefs.php