-
Notifications
You must be signed in to change notification settings - Fork 29
/
d3v.html
executable file
·1838 lines (1726 loc) · 76.8 KB
/
d3v.html
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
<!DOCTYPE html>
<!--
Copyright (c) 2020, Phil Rymek
All rights reserved.
@date 2/19/2012
@description d3v - an alternative to force.com ide
-->
<html>
<!-- D3V HEAD -->
<head>
<link rel="shortcut icon" href="images/favicon.ico" />
<title>loading</title>
<!-- D3V CSS -->
<link href="css/d3v.css?v=1.0.2" rel="stylesheet" type="text/css" id="aside-css" />
<!-- jQuery ui theme -->
<link href="css/jquery-ui.css?v=1.0.2" rel="stylesheet" type="text/css" />
<!-- Perfect Scrollbar -->
<link href="css/perfect-scrollbar.min.css?v=1.0.2" rel="stylesheet" type="text/css" />
<!-- Slickgrid css -->
<link href="css/slick.grid.css?v=1.0.2" rel="stylesheet" type="text/css" />
<link href="css/examples.css?v=1.0.2" rel="stylesheet" type="text/css" />
<link href="css/slick.pager.css?v=1.0.2" rel="stylesheet" type="text/css" />
<link href="css/slick.columnpicker.css?v=1.0.2" rel="stylesheet" type="text/css" />
<!-- Chosen CSS -->
<link href="css/chosen.css?v=1.0.2" rel="stylesheet" type="text/css" />
<!-- jQuery & jQuery UI -->
<script src="js/jquery/jquery.min.js?v=1.0.2"></script>
<script src="js/jquery/jquery-ui.min.js?v=1.0.2"></script>
<script src="js/jquery/jquery.multisortable.js?v=1.0.2"></script>
<!-- ACE - the text editor which powers the code portion of d3v
Themes are different color schemes the editor takes on
Mode is code context highlighting -->
<script src="js/ace/ace.js?v=1.0.2"></script>
<script src="js/ace/ext-language_tools.js?v=1.0.2"></script>
<script src="js/ace/theme-ambiance.js?v=1.0.2"></script>
<script src="js/ace/theme-chaos.js?v=1.0.2"></script>
<script src="js/ace/theme-chrome.js?v=1.0.2"></script>
<script src="js/ace/theme-clouds_midnight.js?v=1.0.2"></script>
<script src="js/ace/theme-clouds.js?v=1.0.2"></script>
<script src="js/ace/theme-cobalt.js?v=1.0.2"></script>
<script src="js/ace/theme-crimson_editor.js?v=1.0.2"></script>
<script src="js/ace/theme-dawn.js?v=1.0.2"></script>
<script src="js/ace/theme-dreamweaver.js?v=1.0.2"></script>
<script src="js/ace/theme-eclipse.js?v=1.0.2"></script>
<script src="js/ace/theme-github.js?v=1.0.2"></script>
<script src="js/ace/theme-idle_fingers.js?v=1.0.2"></script>
<script src="js/ace/theme-kr.js?v=1.0.2"></script>
<script src="js/ace/theme-kr_theme.js?v=1.0.2"></script>
<script src="js/ace/theme-kuroir.js?v=1.0.2"></script>
<script src="js/ace/theme-merbivore_soft.js?v=1.0.2"></script>
<script src="js/ace/theme-merbivore.js?v=1.0.2"></script>
<script src="js/ace/theme-mono_industrial.js?v=1.0.2"></script>
<script src="js/ace/theme-monokai.js?v=1.0.2"></script>
<script src="js/ace/theme-pastel_on_dark.js?v=1.0.2"></script>
<script src="js/ace/theme-solarized_dark.js?v=1.0.2"></script>
<script src="js/ace/theme-solarized_light.js?v=1.0.2"></script>
<script src="js/ace/theme-textmate.js?v=1.0.2"></script>
<script src="js/ace/theme-tomorrow_night_blue.js?v=1.0.2"></script>
<script src="js/ace/theme-tomorrow_night_bright.js?v=1.0.2"></script>
<script src="js/ace/theme-tomorrow_night_eighties.js?v=1.0.2"></script>
<script src="js/ace/theme-tomorrow_night.js?v=1.0.2"></script>
<script src="js/ace/theme-terminal.js?v=1.0.2"></script>
<script src="js/ace/theme-twilight.js?v=1.0.2"></script>
<script src="js/ace/theme-vibrant_ink.js?v=1.0.2"></script>
<script src="js/ace/theme-xcode.js?v=1.0.2"></script>
<script src="js/ace/mode-html.js?v=1.0.2"></script>
<script src="js/ace/mode-java.js?v=1.0.2"></script>
<script src="js/ace/mode-javascript.js?v=1.0.2"></script>
<script src="js/ace/mode-css.js?v=1.0.2"></script>
<script src="js/ace/mode-xml.js?v=1.0.2"></script>
<script src="js/ace/keybinding-vim.js?v=1.0.2"></script>
<script src="js/ace/keybinding-emacs.js?v=1.0.2"></script>
<!-- Stuff the slickgrid wants -->
<script src="js/slickgrid/firebugx.js?v=1.0.2"></script>
<script src="js/jquery/jquery.event.drag-2.0.min.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.core.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.dataview.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.checkboxselectcolumn.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.autotooltips.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.cellrangedecorator.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.cellrangeselector.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.cellcopymanager.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.cellselectionmodel.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.rowselectionmodel.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.formatters.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.editors.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.grid.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.pager.js?v=1.0.2"></script>
<script src="js/slickgrid/slick.columnpicker.js?v=1.0.2"></script>
<!-- filesaver -->
<script src="js/filesaver/Blob.js?v=1.0.2"></script>
<script src="js/filesaver/BlobBuilder.min.js?v=1.0.2"></script>
<script src="js/filesaver/FileSaver.min.js?v=1.0.2"></script>
<!-- jszip -->
<script src="js/jszip/jszip.js?v=1.0.2"></script>
<script src="js/jszip/jszip-load.js?v=1.0.2"></script>
<script src="js/jszip/jszip-deflate.js?v=1.0.2"></script>
<script src="js/jszip/jszip-inflate.js?v=1.0.2"></script>
<!-- Chosen -->
<script src="js/chosen/chosen.jquery.min.js?v=1.0.2"></script>
<!-- stacktracejs -->
<script src="js/stacktrace/stacktrace.js?v=1.0.2"></script>
<!-- intercom -->
<script src="js/intercom/intercom.min.js?v=1.0.2"></script>
<!-- Keymaster -->
<script src="js/keymaster/keymaster.js?v=1.0.2"></script>
<!-- Mousetrap -->
<script src="js/mousetrap/mousetrap.min.js?v=1.0.2"></script>
<script src="js/mousetrap/mousetrap-global-bind.min.js?v=1.0.2"></script>
<!-- Easy Pie Chart -->
<script src="js/easypiechart/canvas.js?v=1.0.2"></script>
<script src="js/easypiechart/easypiechart.js?v=1.0.2"></script>
<script src="js/easypiechart/jquery.plugin.js?v=1.0.2"></script>
<!-- Perfect Scrollbar -->
<script src="js/perfectscrollbar/perfect-scrollbar.min.js?v=1.0.2"></script>
<!-- Diff Match Patch -->
<script src="js/diffmatchpatch/dmp.js?v=1.0.2"></script>
<!-- Ace Diff -->
<script src="js/acediff/ace-diff.js?v=1.0.2"></script>
<!-- JS-Beautify -->
<script src="js/beautify/beautify-html.js?v=1.0.2"></script>
<script src="js/beautify/beautify-css.js?v=1.0.2"></script>
<script src="js/beautify/beautify.js?v=1.0.2"></script>
<!-- HTML-Minifier -->
<script src="js/minify/htmlminifier.min.js"></script>
<!-- D3V! -->
<script src="js/d3v/d3vApex-min.js?v=1.0.2"></script>
<script src="js/d3v/ServerAction.js?v=1.0.2"></script>
<script src="js/d3v/CookieUtil.js?v=1.0.2"></script>
<script src="js/d3v/d3vConstants.js?v=1.0.2"></script>
<script src="js/d3v/d3vGlobals.js?v=1.0.2"></script>
<script src="js/d3v/d3vUtil.js?v=1.0.2"></script>
<script src="js/d3v/d3vCode.js?v=1.0.2"></script>
<script src="js/d3v/d3vData.js?v=1.0.2"></script>
<script src="js/d3v/d3vPopups.js?v=1.0.2"></script>
<script src="js/d3v/d3vTest.js?v=1.0.2"></script>
<script src="js/d3v/d3vArchive.js?v=1.0.2"></script>
<script src="js/d3v/d3vPush.js?v=1.0.2"></script>
<script src="js/d3v/d3vSync.js?v=1.0.2"></script>
<!-- Start 'er up -->
<script>
$(function() {
d3vUtil.initializeD3V();
});
</script>
</head>
<!-- D3V Body -->
<body>
<!-- D3V HEADER -->
<div id="d3v-header" class="unselectable">
<!-- HEADER LEFT -->
<div id="left">
<!-- Code Helper -->
<span id="code-helper" class="helper-section">
<span id="loading-logo">ASIDE.IO</span>
<select id="code-helper-input" class="hidden"></select>
<div id="zip-handler-btn" class="button gen-btn keep-left thin-btn unselectable hidden">
<img src="css/images/zip-icon.png" style="margin-right:5px;" />
<span>open</span>
</div>
<div id="debug-handler-btn" class="button gen-btn keep-left thin-btn unselectable hidden">
<span>close debug log</span>
</div>
</span>
<!-- Data Helper -->
<span id="data-helper" class="helper-section hidden">
<span id="data-delete-link" class="button keep-left">
delete
</span>
<span id="data-export-link" class="button keep-left">
export
</span>
<span id="data-share-link" class="button keep-left">
share
</span>
<span id="data-query-link" class="button keep-left">
query
</span>
</span>
<!-- Test Helper -->
<span id="test-helper" class="helper-section hidden">
<span id="test-all-link" class="button keep-left">
run all
</span>
<span id="test-some-link" class="button keep-left">
run some
</span>
<span id="filter-results-link" class="button keep-left">
set view
</span>
<span id="coverage-report-link" class="button keep-left">
code coverage
</span>
</span>
<!-- Push Helper -->
<span id="push-helper" class="helper-section hidden">
<select id="retrieve-filter" class="keep-left"></select>
<span class="button keep-right" id="push-edit-filter">Edit Filter</span>
<span class="button keep-right" id="push-add-filter">Add Filter</span>
</span>
</div>
<!-- HEADER CENTER (alert replacement) -->
<span id="center">
<div id="alert-replacement">
</div>
</span>
<!-- HEADER RIGHT -->
<div id="right">
<div id="mode-buttons" class="keep-left">
<span class="mode-button active keep-left admin-req">code</span>
<span class="mode-button inactive keep-left admin-req">test</span>
<span class="mode-button inactive keep-left admin-req">push</span>
<span class="mode-button inactive keep-left" id="non-admin-helper">data</span>
</div>
</div>
</div>
<!-- Instance slideout -->
<div id="sub-container" class="unselectable">
<div id="instance-tabs"></div>
<div id="sub-controls">
<div class="dropdown">
<div class="dropbtn"></div>
<div class="dropdown-content">
<a href="/help" target="_blank" class="menu-divider" title="shortcut: ⌘ + shift + 0">help</a>
<a id="help-tab" title="shortcut: ⌘ + shift + p">options</a>
<a href="/shortcuts" target="_blank" title="shortcut: ⌘ + shift + h">shortcuts</a>
<a id="foot-logs" title="shortcut: ⌘ + shift + u" class="menu-divider">debug logs</a>
<a id="foot-devmode" title="shortcut: ⌘ + shift + v">development mode</a>
<a id="foot-ois" title="shortcut: ⌘ + shift + o">open in salesforce</a>
<a id="user-detail" title="shortcut: ⌘ + shift + u">user detail</a>
<a id="exit-tab" title="shortcut: ⌘ + shift + x" class="menu-divider">logout</a>
</div>
</div>
</div>
</div>
<!-- D3V BODY -->
<div id="d3v-body">
<!-- Push -->
<div id="push-content" class="content-section hidden">
<div class="push-block">
<div class="push-header">
<input type="text" id="retrieve-filter-filter" placeholder="Enter text to filter metadata" />
<span id="retrieve-filter-clear">Clear</span>
</div>
<ul id="available-to-retrieve" class="deployable sortable">
<div class="hidden empty-msg">
Select a retrieve filter to find metadata to add to the package.xml
</div>
</ul>
</div>
<div id="push-controls">
<span class="button full-width hidden post-deploy" id="push-show-deploy-status">Deploy Results</span>
<hr style="margin-top: 20px;margin-bottom:20px;" class="hidden post-deploy" />
<span class="button full-width" id="p-refresh-left">Refresh Left</span>
<span class="button full-width" id="p-add-all">Add All</span>
<span class="button full-width" id="p-add-sel">Add Selected</span>
<span class="button full-width" id="p-clear-left">Clear Left</span>
<hr style="margin-top: 20px;margin-bottom:20px;" />
<span class="button full-width" id="p-clear-right">Clear Right</span>
<span class="button full-width" id="p-rem-sel">Remove Selected</span>
<span class="button full-width" id="p-rem-all">Remove All</span>
</div>
<div class="push-block">
<div class="push-header">
<span id="download-pkg" class="button keep-left gen-btn half-width">
Save Package
</span>
<span id="retrieve" class="button keep-right gen-btn half-width">
Retrieve Files
</span>
</div>
<ul id="will-retrieve" class="deployable sortable">
<div class="hidden empty-msg">
Add metadata from the left to begin building the package.xml
</div>
</ul>
</div>
<div id="push-footer">
Drop a Package.xml here to retrieve, or a zip for a deploy.
</div>
</div>
<!-- Data -->
<div id="data-content" class="content-section hidden">
<input id="query-source" class="label-in-input label-in-input-active"
value="enter a soql query…" d3v-label="enter a soql query…" />
<div id="grid-container" class="full-size">
<div id="myGrid" class="full-size"></div>
</div>
<div id="pager"></div>
<div id="grid-rc-menu" class="hidden">
<ul>
<li id="grm-ois"></li>
<li id="grm-sis"></li>
</ul>
</div>
</div>
<!-- Code -->
<div id="code-content" class="content-section hidden">
<div id="diff-container">
<div id="left-editor">
<div id="d3v-ace-main"></div>
</div>
<div id="diff-gutter"></div>
<div id="right-editor">
<div id="diff-ace-right"></div>
</div>
</div>
</div>
<!-- Test -->
<div id="test-content" class="content-section hidden">
<div id="test-results" class="keep-left">
<div class="tests-no-results">
nothing to display
</div>
</div>
<div id="test-results-detail" class="keep-left">
<div id="test-results-detailed" class="large-bottom-margin">
<div class="no-test-detail">
click a row to see test results
</div>
</div>
<div id="results-by-method">
</div>
</div>
</div>
</div>
<div id="global-panel" class="hidden">
<div id="gp-body">
<div id="gp-title">
<div id="gp-title-text">
</div>
</div>
<div id="gp-buttons">
<span id="gp-close">close</span>
<span id="gp-help">help</span>
<span id="gp-resize">resize</span>
</div>
<div id="code-errors-list" class="gp-panel hidden full-height error-pop"></div>
<div id="general-errors" class="gp-panel hidden full-height error-pop"></div>
<div id="debug-logs" class="gp-panel hidden full-height">
<div id="debug-log-table">
</div>
<div id="dlpbc">
<div class="button gp-btn full-width" id="start-debug-logs">
Start Logging
</div>
<div class="button gp-btn full-width" id="refresh-debug-logs">
Refresh Logs
</div>
<div class="button gp-btn full-width" id="set-log-levels">
Set Log Levels
</div>
<select id="debug-open-select" class="open-select">
<option value="download">Download Log</option>
<option value="left">Open in Primary Editor</option>
<option value="aside">Open in Diff Editor</option>
</select>
</div>
</div>
<div id="local-history" class="gp-panel hidden full-height">
<div id="history-table">
</div>
<div class="button gp-btn full-width" id="refresh-file-history">
Refresh History
</div>
<select id="lh-open-select" class="open-select">
<option value="download">Download Local History</option>
<option value="left">Open in Primary Editor</option>
<option value="aside">Open in Diff Editor</option>
</select>
</div>
<div id="ocs-popup" class="gp-panel hidden full-height">
<div id="ocs-results"><div class="ocs-no-results">no results found</div></div>
<input type="text" class="ocs-input" placeholder="search all apex and visualforce for this" />
<div id="go-ocs" class="button gp-btn full-width">search</div>
<div id="clear-ocs" class="button gp-btn full-width">clear</div>
<select id="ocs-open-select" class="open-select">
<option value="current">Open in Current Instance</option>
<option value="new">Open in New Instance</option>
</select>
</div>
<div id="find-popup" class="gp-panel hidden full-height">
<textarea id="find-textarea" class="find-input" placeholder="find"></textarea>
<div id="find-previous" class="button gp-btn unselectable">Previous</div>
<div id="find-next" class="button gp-btn unselectable">Next</div>
<textarea id="replace-textarea" class="find-input" placeholder="replace"></textarea>
<div id="replace-selected" class="button gp-btn unselectable">Replace</div>
<div id="replace-all" class="button gp-btn unselectable">All</div>
<div id="find-options-container">
<div id="find-options-header">Options</div>
<table>
<tr>
<td><input type="checkbox" id="find-case-sensitive" /></td>
<td>case sensitive</td>
</tr>
<tr>
<td><input type="checkbox" id="find-by-regex" /></td>
<td>regular expression</td>
</tr>
<tr>
<td><input type="checkbox" id="find-by-whole" /></td>
<td>whole word</td>
</tr>
<tr>
<td><input type="checkbox" id="find-with-wrap" /></td>
<td>wrap around</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div id="code-footer" class="hidden">
<div class="cf-section left">
<span id="foot-save" class="foot-btn btn-unsaveable keep-left small-left-marg unselectable" title="save the current file (shortcut: command + s)">
<div id="fs-save">save</div>
<div id="fs-run" class="hidden">saved</div>
</span>
<span class="cf-sub-test cf-sub-min hidden foot-version foot-btn keep-left unselectable" title="not applicable">-</span>
<span id="foot-split" class="foot-btn keep-left unselectable" title="click to toggle split editor (shortcut: command + shift + c)">
diff
</span>
<span id="foot-download" class="foot-btn keep-left unselectable" title="download the current file (shortcut: command + shift + d)">
download
</span>
<span id="foot-find" class="foot-btn keep-left unselectable" title="find in current file (shortcut: command + f)">
find
</span>
<span id="foot-find-all" class="foot-btn keep-left unselectable" title="find across entire org (shortcut: command + h)">
find all
</span>
<span id="foot-history" class="foot-btn keep-left unselectable" title="view local file history (shortcut: command + L)">
history
</span>
<span id="foot-related" class="cf-sub-min hidden foot-btn keep-left unselectable" title="manage bundle (shortcut: command + shift + y)">
lightning
</span>
<span id="foot-repeat" class="foot-btn keep-left unselectable" title="repeat the last action (shortcut: command + r)">
reload
</span>
<span id="non-apex-rename" class="cf-sub-min hidden foot-btn keep-left unselectable" title="rename the current file (shortcut: command + e)">
rename
</span>
<div id="coverage-bar" class="cf-sub-test hidden">
<div id="cb-percentage"></div>
<span id="db-desc">Not Applicable</span>
</div>
<span id="foot-rt"
class="cf-sub-test hidden foot-btn keep-left small-right-marg unselectable"
title="run the current files unit test (shortcut: command + g)">
run tests
</span>
<span id="foot-th"
class="cf-sub-test hidden foot-btn keep-left small-right-marg unselectable"
title="toggle code coverage highlights (shortcut: command + shift + ;)">
show coverage
</span>
<span id="foot-minify" class="cf-sub-min hidden foot-btn keep-left unselectable" title="minify code (shortcut: command + shift + m)">
minify
</span>
<span id="foot-beautify" class="cf-sub-min hidden foot-btn keep-left unselectable" title="beautify code (shortcut: command + shift + b)">
beautify
</span>
<span id="foot-wsdl" class="cf-sub-test hidden foot-btn keep-left unselectable" title="generate wsdl (shortcut: command + shift + f)">
wsdl
</span>
<span id="foot-delete" class="foot-btn keep-left unselectable" title="delete current file (shortcut: command + k)">
delete
</span>
</div>
<div class="cf-section right">
<div id="cf-section-info">
<div id="cf-center">
<span id="fc-3"></span>
</div>
</div>
</div>
</div>
<!-- POPUPS -->
<!-- A simple overlay, to use for whatever> -->
<div id="generic-overlay"></div>
<!-- Help Dialog -->
<div id="help-dialog" class="animated-modal hidden">
<div class="d3v-popup-header">
<div class="d3v-popup-title">
Options
</div>
<div class="button keep-right d3v-popup-close hidden" id="close-help">X</div>
</div>
<div class="d3v-pop-body">
<div id="hd-data" class="help-body-subsection hidden">
<span class="help-title">Data Screen Options</span>
<div class="help-title-info">
Setup the data screen to work in a way which suits you best. Configure options related to query history. Your options will be automatically saved.
</div>
<table class="commands-tbl">
<thead>
<tr>
<th colspan="2">Global Style - select universal UI theme</th>
</tr>
</thead>
<tbody>
<tr class="commands-row">
<td class="options-seq">
<select size="1" class="open-select aside-theme">
<option value="/css/d3v.css">Classic</option>
<option value="/css/d3v-dark.css">Dark</option>
</select>
</td>
<td class="commands-desc">pick which theme / stylesheet to use</td>
</tr>
</tbody>
</table>
<table class="commands-tbl">
<thead>
<tr>
<th colspan="2">Query History - manage history available to query typeahead</th>
</tr>
</thead>
<tbody>
<tr class="commands-row">
<td class="options-seq">
<input id="query-history-length" class="range-slider" save-as="qhl" pair-with="2" type="range" min="0" max="100" value="15" />
<span id="qh-length-viewer" class="range-viewer" pair-with="2"></span>
</td>
<td class="commands-desc">max number of queries stored in autocomplete history</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<span id="delete-query-history" class="button">
Clear History
</span>
</td>
<td class="commands-desc">delete the entire query history</td>
</tr>
</tbody>
</table>
<div class="help-bottom-buffer"></div>
</div>
<div id="hd-push" class="help-body-subsection hidden">
<span class="help-title">Push Screen Options</span>
<div class="help-title-info">
Setup the push screen to work in a way which suits you best. Configure options related to the Metadata API deploy operation. Your options will be automatically saved.
</div>
<table class="commands-tbl">
<thead>
<tr>
<th colspan="2">Global Style - select universal UI theme</th>
</tr>
</thead>
<tbody>
<tr class="commands-row">
<td class="options-seq">
<select size="1" class="open-select aside-theme">
<option value="/css/d3v.css">Classic</option>
<option value="/css/d3v-dark.css">Dark</option>
</select>
</td>
<td class="commands-desc">pick which theme / stylesheet to use</td>
</tr>
</tbody>
</table>
<table class="commands-tbl">
<thead>
<tr>
<th colspan="2">Retrieve Settings - control retrieve behavior</th>
</tr>
</thead>
<tbody>
<tr class="commands-row">
<td class="options-seq">
<select size="1" class="open-select" id="package-xml-version">
<option value="" selected>Unspecified</option>
</select>
</td>
<td class="commands-desc">set the version number used for retrieves</td>
</tr>
</tbody>
</table>
<table class="commands-tbl">
<thead>
<tr>
<th colspan="2">Deploy Settings - configure how the deploy operates</th>
</tr>
</thead>
<tbody>
<tr class="commands-row">
<td class="options-seq">
<span class="bold-font">Allow Missing</span>
<input type="checkbox" id="allow-missing-files" class="help-check" />
</td>
<td class="commands-desc">
allows the deploy to succeed when files are listed in the package.xml, but not present in the zip file
</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<span class="bold-font">Validate Only</span>
<input type="checkbox" id="validate-only" class="help-check" />
</td>
<td class="commands-desc">
performs a mock deploy, validating success of the operation but not making any changes to the server
</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<span class="bold-font">Ignore Warnings</span>
<input type="checkbox" id="ignore-warnings" class="help-check" />
</td>
<td class="commands-desc">
when checked, warnings have no effect on deploy outcome. if unchecked warnings will fail the deploy
</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<span class="bold-font">Purge Delete</span>
<input type="checkbox" id="purge-on-delete" class="help-check" />
</td>
<td class="commands-desc">
causes files deleted via destructiveChanges.xml to not appear in the recycle bin
</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<span class="bold-font">Run All</span>
<input type="checkbox" id="push-rat" class="help-check" />
</td>
<td class="commands-desc">
runs all tests on deploy. note that if you are deploying to a production organization all tests will always run
</td>
</tr>
</tbody>
</table>
<div class="help-bottom-buffer"></div>
</div>
<div id="hd-test" class="help-body-subsection hidden">
<span class="help-title">Test Screen Options</span>
<div class="help-title-info">
Setup the test screen to work in a way which suits you best. Configure options related to test filtering. Your options will be automatically saved.
</div>
<table class="commands-tbl">
<thead>
<tr>
<th colspan="2">Global Style - select universal UI theme</th>
</tr>
</thead>
<tbody>
<tr class="commands-row">
<td class="options-seq">
<select size="1" class="open-select aside-theme">
<option value="/css/d3v.css">Classic</option>
<option value="/css/d3v-dark.css">Dark</option>
</select>
</td>
<td class="commands-desc">pick which theme / stylesheet to use</td>
</tr>
</tbody>
</table>
<table class="commands-tbl">
<thead>
<tr>
<th colspan="2">Filter History - manage history available to test filter</th>
</tr>
</thead>
<tbody>
<tr class="commands-row">
<td class="options-seq">
<input id="filter-history-length" class="range-slider" save-as="fhl" pair-with="3" type="range" min="0" max="100" value="10" />
<span id="fh-length-viewer" class="range-viewer" pair-with="3"></span>
</td>
<td class="commands-desc">max number of queries stored in test filter history</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<span id="delete-filter-history" class="button">Clear History</span>
</td>
<td class="commands-desc">delete the entire test filter history</td>
</tr>
</tbody>
</table>
<div class="help-bottom-buffer"></div>
</div>
<div id="hd-code" class="help-body-subsection">
<span class="help-title">Code Screen Options</span>
<div class="help-title-info">
Setup the code editor to work in a way which suits you best. Configure various options from the look and feel of the editor to debug log levels. Your options will be automatically saved.
</div>
<table class="commands-tbl">
<thead>
<tr>
<th colspan="2">Global Style - select universal UI theme</th>
</tr>
</thead>
<tbody>
<tr class="commands-row">
<td class="options-seq">
<select size="1" class="open-select aside-theme">
<option value="/css/d3v.css">Classic</option>
<option value="/css/d3v-dark.css">Dark</option>
</select>
</td>
<td class="commands-desc">pick which theme / stylesheet to use</td>
</tr>
</tbody>
</table>
<table class="commands-tbl">
<thead>
<tr>
<th colspan="2">Look & Feel - configure editor aesthetics</th>
</tr>
</thead>
<tbody>
<tr>
<td class="options-seq">
<select id="ace-theme" size="1" class="open-select">
<option value="ace/theme/ambiance">
Ambiance
</option>
<option value="ace/theme/chaos">
Chaos
</option>
<option value="ace/theme/chrome">
Chrome
</option>
<option value="ace/theme/clouds_midnight">
Clouds Midnight
</option>
<option value="ace/theme/clouds">
Clouds
</option>
<option value="ace/theme/cobalt">
Cobalt
</option>
<option value="ace/theme/crimson_editor">
Crimson Editor
</option>
<option value="ace/theme/dawn">
Dawn
</option>
<option value="ace/theme/dreamweaver">
Dreamweaver
</option>
<option value="ace/theme/eclipse">
Eclipse
</option>
<option value="ace/theme/github">
Github
</option>
<option value="ace/theme/idle_fingers">
Idle Fingers
</option>
<option value="ace/theme/katzenmilch">
Katzenmilch
</option>
<option value="ace/theme/kr_theme">
kr
</option>
<option value="ace/theme/kuroir">
kuroir
</option>
<option value="ace/theme/merbivore">
Merbivore
</option>
<option value="ace/theme/merbivore_soft">
Merbivore Soft
</option>
<option value="ace/theme/mono_industrial">
Mono Industrial
</option>
<option value="ace/theme/monokai">
Monokai
</option>
<option value="ace/theme/pastel_on_dark">
Pastel On Dark
</option>
<option value="ace/theme/solarized_dark">
Solarized Dark
</option>
<option value="ace/theme/solarized_light">
Solarized Light
</option>
<option value="ace/theme/textmate">
TextMate
</option>
<option value="ace/theme/terminal">
Terminal
</option>
<option value="ace/theme/tomorrow_night">
Tomorrow Night
</option>
<option value="ace/theme/tomorrow_night_blue">
Tomorrow Night Blue
</option>
<option value="ace/theme/tomorrow_night_bright">
Tomorrow Night Bright
</option>
<option value="ace/theme/tomorrow_night_eighties">
Tomorrow Night Eighties
</option>
<option value="ace/theme/twilight">
Twilight
</option>
<option value="ace/theme/vibrant_ink">
Vibrant Ink
</option>
<option value="ace/theme/xcode">
Xcode
</option>
</select>
</td>
<td class="commands-desc">color scheme used by the code editor</td>
</tr>
<tr>
<td class="options-seq">
<select id="ace-keyboard" size="1" class="open-select">
<option value="">Default</option>
<option value="ace/keyboard/vim">Vim</option>
<option value="ace/keyboard/emacs">Emacs</option>
</select>
</td>
<td class="commands-desc">key bindings used by the editor</td>
</tr>
<tr class="commands-row">
<td class="options-seq"><input type="text" class="ocs-input" id="font-size" value="14" /></td>
<td class="commands-desc">editor font size in pixels</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<input type="checkbox" id="show-footer" checked="checked" />
</td>
<td class="commands-desc">enables the footer at the bottom of the code section</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<input type="checkbox" id="show-invisibles" />
</td>
<td class="commands-desc">
display invisible characters
</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<input type="checkbox" id="show-indentation-guide" />
</td>
<td class="commands-desc">display indentation characters</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<input type="checkbox" id="highlight-active-line" checked="checked" />
</td>
<td class="commands-desc">highlights the currently selected line in the editor</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<input type="checkbox" id="highlight-active-word" checked="checked" />
</td>
<td class="commands-desc">highlights the currently selected word in the editor</td>
</tr>
</tbody>
</table>
<table class="commands-tbl">
<thead>
<tr>
<th colspan="2">Tabs - manage tab type and size</th>
</tr>
</thead>
<tbody>
<tr class="commands-row">
<td class="options-seq">
<input type="checkbox" id="soft-tabs" checked="checked" />
</td>
<td class="commands-desc">use soft tabs (multiple spaces instead of tabs)</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<input type="text" class="ocs-input" id="tab-size" value="4" />
</td>
<td class="commands-desc">the number of spaces to interpret a soft tab as / number of spaces to indent during beautify</td>
</tr>
</tbody>
</table>
<table class="commands-tbl">
<thead>
<tr>
<th colspan="2">Print Margin - configure location and visibility of margin</th>
</tr>
</thead>
<tbody>
<tr class="commands-row">
<td class="options-seq">
<input type="checkbox" id="show-pm" checked="checked" />
</td>
<td class="commands-desc">display the print margin</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<input type="text" class="ocs-input" id="pm-size" value="80" />
</td>
<td class="commands-desc">column number where print margin will display</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<input type="text" class="ocs-input" id="beautify-pm-size" value="80" />
</td>
<td class="commands-desc">value where code will wrap HTML during beautify</td>
</tr>
</tbody>
</table>
<table class="commands-tbl">
<thead>
<tr>
<th colspan="2">Local History - manage local code history</th>
</tr>
</thead>
<tbody>
<tr class="commands-row">
<td class="options-seq">
<input id="code-history-length" class="range-slider" save-as="chl" pair-with="1" type="range" min="0" max="100" value="30" />
<span id="ch-length-viewer" class="range-viewer" pair-with="1"></span>
</td>
<td class="commands-desc">number of file versions to store in local history</td>
</tr>
<tr class="commands-row">
<td class="options-seq">
<span id="delete-local-code" class="button">Clear History</span>
</td>
<td class="commands-desc">delete local file history for all files</td>
</tr>
</tbody>