-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtripwire.php
More file actions
1267 lines (1222 loc) · 55.1 KB
/
tripwire.php
File metadata and controls
1267 lines (1222 loc) · 55.1 KB
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
<?php
$startTime = microtime(true);
// Caching
// header('Cache-Control: public, max-age=300');
// header('Expires: '.gmdate('r', time() + 300));
// header('Pragma: cache');
// header('Content-Type: text/html; charset=UTF-8');
require_once('config.php');
require_once('settings.php');
require_once('masks.inc.php');
require('lib.inc.php');
$system = $_REQUEST['system'];
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="system" content="<?= $system ?>">
<meta name="server" content="<?= CDN_DOMAIN ?>">
<meta name="app_name" content="<?= APP_NAME ?>">
<meta name="version" content="<?= VERSION ?>">
<link rel="shortcut icon" href="//<?= CDN_DOMAIN ?>/images/favicon.png" />
<link rel="stylesheet" type="text/css" href="//<?= CDN_DOMAIN ?>/css/jquery.duration-picker.css">
<link rel="stylesheet" type="text/css" href="//<?= CDN_DOMAIN ?>/css/jquery.jbox.css">
<link rel="stylesheet" type="text/css" href="//<?= CDN_DOMAIN ?>/css/jquery.jbox-notice.css">
<link rel="stylesheet" type="text/css" href="//<?= CDN_DOMAIN ?>/css/gridster.min.css">
<link rel="stylesheet" type="text/css" href="//<?= CDN_DOMAIN ?>/css/jquery-ui-1.12.1.min.css">
<link rel="stylesheet" type="text/css" href="//<?= CDN_DOMAIN ?>/css/jquery-ui-custom.css?v=<?= VERSION ?>">
<link rel="stylesheet" type="text/css" href="//<?= CDN_DOMAIN ?>/css/introjs.min.css">
<link rel="stylesheet" type="text/css" href="//<?= CDN_DOMAIN ?>/css/app.min.css?v=<?= VERSION ?>">
<title></title>
</head>
<?php flush(); ?>
<body class="transition">
<div id="wrapper">
<div id="inner-wrapper">
<div id="topbar">
<span class="align-left">
<h1 id="logo">
<a href="."><?= APP_NAME ?></a>
<span id="version"><?= VERSION ?></span>
<span>|</span>
<!-- <span data-tooltip="System activity update countdown"><input id="APIclock" class="hidden" /></span> -->
</h1>
<h3 id="serverStatus" class="pointer" data-tooltip="EVE server status and player count">TQ: ??,???</h3>
<h3 class="pointer" data-tooltip="EVE time (UTC)">| ET: <span id="serverTime">??.??</span></h3>
<h3 id="systemSearch">| <i id="search" data-icon="search" data-tooltip="Toggle system search"></i>
<span id="currentSpan" class="hidden"><span class="pointer">Current System: </span><span id="EVEsystem">?</span><i id="follow" data-icon="follow" data-tooltip="Follow my in-game system" style="padding-left: 10px;"></i></span>
<span id="searchSpan"><form id="systemSearch" method="GET" action=".?"><input type="text" size="18" class="systemsAutocomplete" name="system" /></form></span>
<span id="APItimer" class="hidden"></span>
</h3>
</span>
<span class="align-right">
<span id="login">
<h3><a id="user" href=""><span id="user-no-track"><?= $_SESSION['characterName'] ?></span><span id="user-track" style="display:none"><i data-icon="follow" data-tooltip="Tracking"></i><span id="user-track-name">...</span></span></a></h3>
<div id="panel">
<div id="content" class="dialog-like">
<div class="triangle"></div>
<table id="logoutTable">
<tr>
<td>
<table id="track">
<tr><th colspan="2">Tracking</th></tr>
<tr>
<td id="tracking">
<table id="tracking-clone" class="hidden">
<tr>
<td rowspan="5" class="avatar"><img src="" />
<hr class="bar online critical" style="margin-bottom: 2px" data-tooltip="Online status" />
<span class="control-group">
<i data-icon="eye" class="show interactable" data-property="show" data-tooltip="Visible on chain"></i>
<i data-icon="prop-mod" class="show-ship interactable" data-property="showShip" data-tooltip="Ship shown on chain"></i>
</span>
</td>
<td class="name text"> </td>
<i data-icon="alert" class="alert hidden" data-tooltip="Re-add character to fix missing permissions"></i>
</tr>
<tr>
<td class="system text"> </td>
</tr>
<tr>
<td class="station text" data-tooltip=""> </td>
</tr>
<tr>
<td class="ship text"> </td>
</tr>
<tr>
<td class="shipname text"> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td>
<table id="account">
<tr><th colspan="2">Characters</th></tr>
<tr>
<td id="avatar" rowspan="4"><img src="https://image.eveonline.com/Character/<?= $_SESSION['characterID'] ?>_64.jpg" /></td>
<td id="characterName" class="text"><?= $_SESSION['characterName'] ?></td>
</tr>
<tr>
<td class="text"><?= $_SESSION['corporationName'] ?></td>
</tr>
<tr><td rowspan="2"></td></tr>
</table>
</td>
</tr>
<tr>
<td>
<input type="button" value="Add" OnClick="javascript: window.location.href = 'login.php?mode=sso&login=esi'" />
<input type="button" value="Remove" id="removeESI" disabled="disabled" />
</td>
<td colspan="1"><input id="logout" type="button" value="Logout" /></td>
</tr>
</table>
</div>
</div>
</span>
<h3> | </h3>
<h3><a href="#" id="mask-menu-link" data-tooltip="Current mask"><span id="mask">(???)</span></a></h3>
<div id="mask-menu" class="toggle-panel" style="right: 68px; top:34px; display:none">
<div class="triangle"></div>
<div id="mask-menu-mask-list"></div>
<hr class="bar" />
<a href="#" id="mask-link">Manage masks</a>
<a href="#" id="admin"<?= checkAdmin($_SESSION['mask']) || checkOwner($_SESSION['mask']) ? '' : 'style="display: none"' ?>>Mask Admin</a>
</div>
<h3> | </h3>
<i id="settings" style="font-size: 1.7em;" data-icon="settings" class="options" data-tooltip="Settings"></i>
<i id="layout" style="font-size: 1.7em;" data-icon="layout" data-tooltip="Customize layout"></i>
</span>
</div>
<div class="gridster">
<ul>
<li id="infoWidget" class="gridWidget" data-row="1" data-col="1" data-sizex="7" data-sizey="6" data-min-sizex="5" data-min-sizey="4" style="width: 410px; height: 350px;">
<div class="controls">
<div style="float: right;">
<span id="favorite-control-wrapper"><!-- for tutorial -->
<i id="system-favorite" data-icon="star-empty" data-tooltip="Add/Remove favorite"></i>
<span id="favorite-dropdown-toggle" class="control" data-tooltip="Show all favorites">...</span>
</span>
<div id="favorite-panel" class="toggle-panel" style="right: 17px; display: none">
<h4>Favorites</h4>
<div id='favorite-panel-wrapper'>
<p>Favorites loading ...</p>
</div>
</div>
<span>|</span>
<i class="tutorial" data-tooltip="Show tutorial for this section">?</i>
</div>
</div>
<div class="content">
<div style="width: 100%; display: flex;">
<div id="infoGeneral" style="text-align: left;">
<h1 id="infoSystem" class="pointer" style="color: #CCC;"><?=$system?></h1>
<h4 id="infoSecurity" class="pointer"> </h4>
<h4 id="infoRegion" class="pointer"> </h4>
<h4 id="infoFaction" class="pointer"> </h4>
</div>
<div id="infoExtra" style="padding-top: 5px; width: 100%; text-align: right; display: flex; flex-direction: column; align-items: end; gap: 5px;">
<div id="inChain" style="display: flex; align-items: center; justify-content: end; gap: 5px"></div>
<div id="journyPlanner" style="display: flex; align-items: center; justify-content: end; gap: 5px;">
<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:#ffffff}</style><path d="M416 320h-96c-17.6 0-32-14.4-32-32s14.4-32 32-32h96s96-107 96-160-43-96-96-96-96 43-96 96c0 25.5 22.2 63.4 45.3 96H320c-52.9 0-96 43.1-96 96s43.1 96 96 96h96c17.6 0 32 14.4 32 32s-14.4 32-32 32H185.5c-16 24.8-33.8 47.7-47.3 64H416c52.9 0 96-43.1 96-96s-43.1-96-96-96zm0-256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM96 256c-53 0-96 43-96 96s96 160 96 160 96-107 96-160-43-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"/></svg>
<span>Journey Planner: </span>
<a target="_blank" id="journeyFrom" href="">From</a>
<span> -- </span>
<a target="_blank" id="journeyTo" href="">To</a>
</div>
</div>
</div>
<br clear="all"/>
<div id="activityGraph"></div>
<div id="activityGraphControls" style="text-align: center;"><a href="javascript: activity.time(168);">Week</a> - <a href="javascript: activity.time(48);">48Hour</a> - <a href="javascript: activity.time(24);">24Hour</a></div>
<div id="infoLinks" style="text-align: center;">
<a class="infoLink" data-href="http://anoik.is/systems/$systemName" href="" target="_blank">Anoik.is</a> -
<a class="infoLink" data-href="https://evemaps.dotlan.net/search?q=$systemName" href="" target="_blank">dotlan</a> -
<a class="infoLink" data-href='https://zkillboard.com/system/$systemID/' href="" target="_blank">zKillboard</a>
</div>
<div id="infoStatics" class="pointer"></div>
</div>
</li>
<li id="signaturesWidget" class="gridWidget" data-row="1" data-col="8" data-sizex="7" data-sizey="6" data-min-sizex="5" data-min-sizey="2" style="width: 410px; height: 350px;">
<div class="controls">
<i id="add-signature" data-icon="plus" data-tooltip="Add a new signature"></i>
<i id="edit-signature" data-icon="edit" data-tooltip="Edit selected signature" class="disabled"></i>
<i id="delete-signature" data-icon="trash" data-tooltip="Delete selected signature(s)" class="disabled"></i>
<span>|</span>
<i id="signature-count" style="font-style: normal; cursor: default;" data-tooltip="Total signature count">0</i>
<i id="undo" data-icon="undo" class="disabled" data-tooltip="Undo last signature change"></i>
<i id="redo" data-icon="redo" class="disabled" data-tooltip="Redo what was undone"></i>
<div style="float: right;">
<i id="toggle-automapper" class="disabled" data-icon="auto" data-tooltip="Toggle Auto-Mapper"></i>
<i class="tutorial" data-tooltip="Show tutorial for this section">?</i>
</div>
</div>
<div class="content">
<div id="sigTableWrapper">
<table id="sigTable" width="100%">
<thead>
<tr>
<th class="sortable">ID<i data-icon=""></i></th>
<th class="sortable">Type<i data-icon=""></i></th>
<th class="sortable" data-sorter="usLongDate">Age<i data-icon=""></i></th>
<th class="sortable">Leads To<i data-icon=""></i></th>
<th class="sortable">Life<i data-icon=""></i></th>
<th class="sortable">Mass<i data-icon=""></i></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</li>
<li id="notesWidget" class="gridWidget" data-row="1" data-col="15" data-sizex="7" data-sizey="6" data-min-sizex="5" data-min-sizey="2" style="width: 410px; height: 350px;">
<div class="controls">
<i id="add-comment" data-icon="plus" data-tooltip="Add a new comment"></i>
<i id="comment-sort" data-icon="sort" data-tooltip="Sort comments by creation date"></i>
<div style="float: right;">
<i class="tutorial" data-tooltip="Show tutorial for this section">?</i>
</div>
</div>
<div class="content" id="comment-outer-container">
<div id="comment-container" style="display: flex"> <!-- https://stackoverflow.com/questions/36130760/use-justify-content-flex-end-and-to-have-vertical-scrollbar -->
<div class="comment hidden">
<div class="commentToolbar">
<div class="commentTitle">
<span class="commentModified"></span>
<span class="commentCreated"></span>
<i class="commentSticky" data-icon="pin" data-tooltip="Sticky"></i>
</div>
<div class="commentControls">
<a class="commentEdit" href="">Edit</a>
<a class="commentDelete" href="">Delete</a>
</div>
<div style="clear: both;"></div>
</div>
<div id="" class="commentBody"></div>
<div class="commentFooter hidden">
<div class="commentStatus"></div>
<div class="commentControls">
<a href="" class="commentSave">Save</a>
<a href="" class="commentCancel">Cancel</a>
</div>
<div style="clear: both;"></div>
</div>
</div>
</div>
</div>
</li>
<li id="chainWidget" class="gridWidget" data-row="7" data-col="1" data-sizex="21" data-sizey="8" data-min-sizex="5" data-min-sizey="4" style="width: 1250px; height: 470px;">
<div class="controls">
<span id="chainTabs"></span>
<i id="newTab" data-icon="plus" data-tooltip="New tab"></i>
<span>|</span>
<i id="show-viewing" data-icon="eye" data-tooltip="Add viewing system to chain"></i>
<i id="show-favorite" data-icon="star" data-tooltip="Add favorite systems to chain"></i>
<i id="show-chainLegend" data-tooltip="<table id='guide'>
<tr><td><div class='guide stable'></td><td>Stable</td><th>Auras</th></tr>
<tr><td><div class='guide eol'></div></td><td>End of Life</td><td><div class='guide aura jm-5kt frig'></div></td><td>Small</td></tr>
<tr><td><div class='guide destab'></div></td><td>Mass Destabbed</td><td><div class='guide aura jm-62kt'></div></td><td>Medium</td></tr>
<tr><td><div class='guide critical'></div></td><td>Mass Critical</td><td><div class='guide aura jm-375kt'></div></td><td>Large</td></tr>
<tr><td><div class='guide frig'></div></td><td>Frigate</td><td><div class='guide aura jm-2000kt'></div></td><td>X-Large</td></tr>
</table>">≡</i>
<span>|</span>
<i id="hot-jump" data-icon="prop-mod" data-tooltip="Jumping hot (prop on)"></i>
<i id="higgs-jump" data-icon="anchor" data-tooltip="Higgs Anchor fitted"></i>
<div style="float: right;">
<button id="chain-zoom-reset" class="hidden">Reset Zoom</button>
<!-- <i class="tutorial" data-tooltip="Show tutorial for this section">?</i> -->
</div>
</div>
<div id="chainParent" class="content dragscroll">
<div style="position: relative; display: table; width: 100%;">
<table id="chainGrid">
<tr class="top"><td></td></tr>
<tr class="space hidden"><td></td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>1</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>2</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>3</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>4</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>5</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>6</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>7</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>8</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>9</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>10</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>11</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>12</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>13</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>14</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>15</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>16</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>17</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>18</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>19</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>20</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>21</td></tr>
<tr class="line hidden"><td></td></tr>
<tr class="space hidden"><td>22</td></tr>
</table>
<div id="chainMap"></div>
</div>
</div>
<div id="menuContainer" style="position:absolute">
<ul id="chainMenu" class="hidden">
<!-- <li data-command="showInfo"><a>Show Info</a> -->
<li><a>Navigation</a>
<ul style="width: 10em;">
<li data-command="setDest"><a>Set Destination</a></li>
<li data-command="addWay"><a>Add Waypoint</a></li>
<li>-</li>
<li data-command="setDestAll"><a>Set Destination (All Tracked)</a></li>
<li data-command="addWayAll"><a>Add Waypoint (All Tracked)</a></li>
</ul>
</li>
<li>
<li><a>Flares</a>
<ul style="width: 10em;">
<li data-command="red"><a>Battle (red)</a></li>
<li data-command="yellow"><a>Hold (yellow)</a></li>
<li data-command="green"><a>Fleet Op (green)</a></li>
</ul>
</li>
<li data-command="mass"><a>Mass</a></li>
<li data-command="collapse"><a>Collapse</a></li>
<li data-command="ping"><a>Ping ...</a></li>
<li data-command="copySystemName"><a id="copySystemNameMenuItem">[Copy system name]</a></li>
<li data-command="makeTab"><a id="makeTabMenuItem">[makeTab]</a></li>
</li>
</ul>
</div>
</li>
</ul>
</div>
<!-- <div id="footer">
<form id="donate_form" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----">
<img id="donate" src="//<?= CDN_DOMAIN ?>/images/landing/donate.jpg" onclick="document.getElementById('donate_form').submit();" alt="PayPal - The safer, easier way to pay online!">
<a href="https://www.patreon.com/bePatron?u=3551109" data-patreon-widget-type="become-patron-button">Become a Patron!</a><script async src="https://c6.patreon.com/becomePatronButton.bundle.js"></script>
</form>
<?php printf("<span id='pageTime'>Page generated in %.3f seconds.</span>", microtime(true) - $startTime); ?>
<p>All Eve Related Materials are Property Of <a href="https://www.ccpgames.com" target="_blank">CCP Games</a></p>
<p id="legal" class="pointer">EVE Online and the EVE logo are the registered trademarks of CCP hf. All rights are reserved worldwide. All other trademarks are the property of their respective owners. EVE Online, the EVE logo, EVE and all associated logos and designs are the intellectual property of CCP hf. All artwork, screenshots, characters, vehicles, storylines, world facts or other recognizable features of the intellectual property relating to these trademarks are likewise the intellectual property of CCP hf. CCP is in no way responsible for the content on or functioning of this website, nor can it be liable for any damage arising from the use of this website.</p>
</div> -->
</div>
</div>
<div id="dialog-deleteComment" title="Delete Comment" class="hidden">
<i data-icon="alert"></i> This comment will be removed. Are you sure?
</div>
<div id="dialog-deleteSig" title="Delete Signature(s)" class="hidden">
<i data-icon="alert"></i> <span id="deleteSigText">This signature</span> will be removed from <span id="deleteSigSystem">this system</span>. Are you sure?
</div>
<div id="dialog-signature" title="Add Signature" class="hidden">
<form id="form-signature" autocomplete="off">
<input autocomplete="false" name="hidden" type="text" class="hidden" />
<div class="row">
<span class="label">ID:</span>
<input name="signatureID_Alpha" type="text" maxlength="3" size="2" class="signatureID" autocomplete="off" />
<span class="label">-</span>
<input name="signatureID_Numeric" type="text" maxlength="3" size="2" placeholder="###" class="signatureID" autocomplete="off" />
<span id="signatureType" class="select">
<select name="signatureType">
<option value="unknown">Unknown</option>
<option value="combat">Combat</option>
<option value="wormhole">Wormhole</option>
<option value="ore">Ore</option>
<option value="data">Data</option>
<option value="gas">Gas</option>
<option value="relic">Relic</option>
</select>
</span>
</div>
<div class="row">
<span class="label">Length:</span>
<input type="text" value="" name="signatureLength" id="durationPicker" />
</div>
<div id="site">
<div id="signatureName" class="row">
<span class="label">Name:</span>
<span><input name="signatureName" type="text" maxlength="100" autocomplete="off" /></span>
</div>
</div>
<div id="wormhole" class="hidden">
<div class="side">
<div class="sideLabel"></div>
<div class="row">
<span class="label">Type:</span>
<span data-autocomplete="sigTypeFrom">
<input name="wormholeType" type="text" class="wormholeType" maxlength="4" size="4" autocomplete="off" />
</span>
<!-- <span class="bookmark">
<span class="label">BM:</span>
<input name="" type="text" maxlength="10" size="8" />
</span> -->
</div>
<div class="row">
<span class="label">Leads:</span>
<span data-autocomplete="sigSystems">
<input name="leadsTo" type="text" maxlength="20" size="20" class="leadsTo" autocomplete="off" />
<select>
<!-- Values filled in by signature dialog JS -->
</select>
</span>
</div>
<div class="row">
<span class="label">Name:</span>
<input name="wormholeName" type="text" maxlength="100" size="20" autocomplete="off" />
</div>
<div class="row">
<span class="label">Life:</span>
<span class="select">
<select name="wormholeLife">
<option value="stable">Stable</option>
<option value="critical">End of life</option>
</select>
</span>
<span id="wormholeMass">
<span class="label">Mass:</span>
<span class="select">
<select name="wormholeMass">
<option value="stable">Stable</option>
<option value="destab">Destab</option>
<option value="critical">Critical</option>
</select>
</span>
</span>
</div>
</div>
<hr/>
<div class="side">
<div class="sideLabel"></div>
<div class="row">
<span class="label">ID:</span>
<input name="signatureID2_Alpha" type="text" maxlength="3" size="2" class="signatureID" autocomplete="off" />
<span class="label">-</span>
<input name="signatureID2_Numeric" type="text" maxlength="3" size="2" placeholder="###" class="signatureID" autocomplete="off" />
</div>
<div class="row">
<span class="label">Type:</span>
<span data-autocomplete="sigTypeTo">
<input name="wormholeType2" type="text" class="wormholeType" data-autocomplete="sigType" maxlength="4" size="4" autocomplete="off" />
</span>
<!-- <span class="bookmark">
<span class="label">BM:</span>
<input name="" type="text" maxlength="10" size="8" />
</span> -->
</div>
<div class="row">
<span class="label">Name:</span>
<input name="wormholeName2" type="text" maxlength="100" size="20" autocomplete="off" />
</div>
</div>
</div>
<input type="submit" style="position: absolute; left: -99999px;" tabindex="-1" />
</form>
</div>
<div id="dialog-admin" title="Mask Admin" class="hidden">
<div style="height: 100%;">
<div class="menu">
<!-- menu -->
<ul>
<li data-window="default" class="active"><a href="#">Home</a></li>
<li data-window="active-users" data-refresh="3000"><a href="#">Active Users</a></li>
<li data-window="user-stats"><a href="#">User Stats</a></li>
<li data-window="access-list"><a href="#">Access List</a></li>
</ul>
</div>
<div class="window">
<!-- window -->
<div data-window="default">
<h1>Welcome to the new Mask Admin feature!</h1>
<br/>
<p>This has been a long overdue feature, but thanks to the continued requests over the months I was finally able to make enough progress to have a first release.</p>
<br/>
<p>There may be a few minor bugs with the interface yet, I spent most of the time making sure the back-end security was solid so nobody saw users they shouldn't be. Also I was the only one testing this feature for opsec sake</p>
<br/>
<p>Please feel free to suggest additions, I plan to add many more menu items over the next few weeks but telling me what you all want will help me prioritize and make sure I don't overlook something useful</p>
<br/>
<ul>
<li>Mask creators/owners get access to mask admin</li>
<li>Custom corp masks the creating corp admins get access</li>
<li>Works for the default private and corporate masks</li>
</ul>
<br/>
<p>Thanks for using Tripwire, enjoy! :)</p>
</div>
<div data-window="active-users" class="hidden">
<table data-sortable="true" width="100%" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th class="sortable">Account<i data-icon=""></i></th>
<th class="sortable">Character<i data-icon=""></i></th>
<th class="sortable">System<i data-icon=""></i></th>
<th class="sortable">Ship Name<i data-icon=""></i></th>
<th class="sortable">Ship Type<i data-icon=""></i></th>
<th class="sortable">Station<i data-icon=""></i></th>
</tr>
</thead>
<tbody>
<tr class="hidden">
<td data-col="accountCharacterName"></td>
<td data-col="characterName"></td>
<td data-col="systemName"></td>
<td data-col="shipName"></td>
<td data-col="shipTypeName"></td>
<td data-col="stationName"></td>
</tr>
</tbody>
</table>
</div>
<div data-window="user-stats" class="hidden">
<table data-sortable="true" width="100%" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th colspan="2"></th>
<th colspan="3">Signatures</th>
<th colspan="3">Wormholes</th>
<th colspan="3">Comments</th>
<th colspan="3"></th>
</tr>
<tr>
<th class="sortable">Character<i data-icon=""></i></th>
<th class="sortable">Corporation<i data-icon=""></i></th>
<th class="sortable">Added<i data-icon=""></i></th>
<th class="sortable">Updated<i data-icon=""></i></th>
<th class="sortable">Deleted<i data-icon=""></i></th>
<th class="sortable">Added<i data-icon=""></i></th>
<th class="sortable">Updated<i data-icon=""></i></th>
<th class="sortable">Deleted<i data-icon=""></i></th>
<th class="sortable">Added<i data-icon=""></i></th>
<th class="sortable">Updated<i data-icon=""></i></th>
<th class="sortable">Deleted<i data-icon=""></i></th>
<th class="sortable"># of Logins<i data-icon=""></i></th>
<th class="sortable">Last Login<i data-icon=""></i></th>
</tr>
</thead>
<tbody>
<tr class="hidden">
<td data-col="characterName"></td>
<td data-col="corporationName"></td>
<td data-col="signatures_added" data-format="number" class="text-center"></td>
<td data-col="signatures_updated" data-format="number" class="text-center"></td>
<td data-col="signatures_deleted" data-format="number" class="text-center"></td>
<td data-col="wormholes_added" data-format="number" class="text-center"></td>
<td data-col="wormholes_updated" data-format="number" class="text-center"></td>
<td data-col="wormholes_deleted" data-format="number" class="text-center"></td>
<td data-col="comments_added" data-format="number" class="text-center"></td>
<td data-col="comments_updated" data-format="number" class="text-center"></td>
<td data-col="comments_deleted" data-format="number" class="text-center"></td>
<td data-col="logins" data-format="number" class="text-center"></td>
<td data-col="lastLogin" class="text-center"></td>
</tr>
</tbody>
</table>
</div>
<div data-window="access-list" class="hidden">
<table data-sortable="true" width="100%" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th class="sortable">Character<i data-icon=""></i></th>
<th class="sortable">Corporation<i data-icon=""></i></th>
<th class="sortable">Date added<i data-icon=""></i></th>
</tr>
</thead>
<tbody>
<tr class="hidden">
<td data-col="characterName"></td>
<td data-col="corporationName"></td>
<td data-col="added" class="text-center"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div id="dialog-masks" title="Masks" class="hidden">
<div id="masks">
<div class="maskCategory">
<div class="maskCategoryLabel">Default</div>
<div id="default"></div>
</div>
<div class="maskCategory">
<div class="maskCategoryLabel">I Own</div>
<div id="owned"></div>
</div>
<div class="maskCategory">
<div class="maskCategoryLabel">I'm Invited</div>
<div id="invited"></div>
</div>
</div>
<div id="maskControls">
<input type="button" id="edit" value="Edit" />
<input type="button" id="delete" value="Delete" />
</div>
<div id="mask-explanation"><p>The mask source icons <span class="mask"><i data-icon="eye" class="global" data-tooltip="Global mask, visible to everyone"></i>, <i data-icon="user" class="character" data-tooltip="Personal mask, managed by the owner"></i>, <i data-icon="star" class="corporate" data-tooltip="Corporate mask, managed by corp admins"></i>, <i data-icon="star" class="alliance"data-tooltip="Alliance mask"></i></span> show where the mask comes from.</p>
<p>The colour of the bar on the mask preview shows how you are invited to it: grey, green or blue for being invited personally, through your corp or through your alliance. Only corp admins can add/remove corp-joined masks from the quick switch.</p>
</div>
</div>
<div id="dialog-options" title="Settings" class="hidden">
<div id="optionsAccordion">
<h3><a href="#">Account Settings</a></h3>
<div>
<table class="optionsTable" width="100%" cellpadding="1" cellspacing="0">
<tr>
<th>Username:</th>
<td id="username"></td>
</tr>
<tr>
<th colspan="2">Characters:</th>
</tr>
<tr>
<th colspan="2" id="characters"></th>
</tr>
</table>
<div style="border-top: 1px solid black; text-align: right; margin: 0 -5px; padding: 5px 5px 0 5px;">
<input type="button" id="usernameChange" value="Change Username" />
<input type="button" id="pwChange" value="Change Password" />
</div>
</div>
<h3><a href="#">Chain Map Settings</a></h3>
<div>
<table class="optionsTable" width="100%" cellpadding="1" cellspacing="0">
<tr>
<th>Chain Renderer:</th>
<td>
<select id="renderer">
<option value="orgChartTop">New Org Chart (System at top)</option>
<option value="orgChartSide">New Org Chart (System at left)</option>
<option value="radial">Radial (System in middle)</option>
<option value="orgChart">Old legacy org chart</option>
</select>
</td>
</tr>
<tr>
<th>Show Chain Map Gridlines:</th>
<td>
<input type="radio" name="gridlines" id="gridlines-yes" value="true" /><label for="gridlines-yes"> Yes</label>
<input type="radio" name="gridlines" id="gridlines-no" value="false" /><label for="gridlines-no"> No</label>
</td>
</tr>
<tr>
<th>Show Line Aura*:</th>
<td>
<input type="radio" name="aura" id="aura-yes" value="true" /><label for="aura-yes"> Yes</label>
<input type="radio" name="aura" id="aura-no" value="false" /><label for="aura-no"> No</label>
</td>
</tr>
<tr>
<th>Line Weight Factor*:</th>
<td>
<label for="node-spacing-line-weight-slider"></label><div id="node-spacing-line-weight-slider" class="spacing-slider"></div>
</td>
</tr>
<tr>
<th>Allow Scroll Without Ctrl Key:</th>
<td>
<input type="radio" name="scrollWithoutCtrl" id="scrollWithoutCtrl-yes" value="true" /><label for="scrollWithoutCtrl-yes"> Yes</label>
<input type="radio" name="scrollWithoutCtrl" id="scrollWithoutCtrl-no" value="false" /><label for="scrollWithoutCtrl-no"> No</label>
</td>
</tr>
<tr>
<th>Chain Map Node Reference:</th>
<td>
<input type="radio" name="node-reference" id="node-reference-type" value="type" /><label for="node-reference-type"> Wormhole Type</label>
<input type="radio" name="node-reference" id="node-reference-id" value="id" /><label for="node-reference-id"> Signature ID</label>
</td>
</tr>
<tr>
<th>Show sig name on map:</th>
<td>
<select id="chainSigNameLocation">
<option value="name">System name - replace</option>
<option value="name_prefix">System name - prefix</option>
<option value="ref">Reference - replace</option>
<option value="ref_prefix">Reference - prefix</option>
<option value="none">Don't put it on the map</option>
</select>
</td>
</tr>
<tr>
<th>Node Spacing Factor*:</th>
<td>
X: <label for="node-spacing-x-slider"></label><div id="node-spacing-x-slider" class="spacing-slider"></div><br/>
Y: <label for="node-spacing-y-slider"></label><div id="node-spacing-y-slider" class="spacing-slider"></div>
</td>
</tr>
<tr><td colspan=2 style="font-size: 80%; text-align: left">*: No effect in old org chart renderer</td></tr>
</table>
</div>
<h3><a href="#">General Preferences</a></h3>
<div>
<table class="optionsTable" width="100%" cellpadding="1" cellspacing="0">
<tr>
<th>Show Route as Blobs up to:</th>
<td>
<select id="chainRoutingLimit">
<option value="0">Off</option>
<option value="5">5 Jumps</option>
<option value="10">10 Jumps</option>
<option value="15">15 Jumps</option>
<option value="20">20 Jumps</option>
<option value="1000">Entire Cluster</option>
</select>
</td>
</tr>
<tr>
<th>K-space route selection:</th>
<td>
<select id="chainRouteSecurity" style="width: 30%">
<option value="shortest">Shortest</option>
<option value="highsec">Prefer HS</option>
<option value="avoid-null">Avoid NS</option>
<option value="avoid-high">Avoid HS</option>
</select> <label><input type="checkbox" name="route-ignore-enabled" id="route-ignore-enabled">Avoiding:</label> <input type="text" style="width: 30%" name="route-ignore" id="route-ignore" />
</td>
</tr>
<tr>
<th>Signature Add Dialog default type:</th>
<td>
<select id="editType">
<option value="unknown">Unknown</option>
<option value="combat">Combat</option>
<option value="wormhole">Wormhole</option>
<option value="ore">Ore</option>
<option value="data">Data</option>
<option value="gas">Gas</option>
<option value="relic">Relic</option>
</select>
</td>
<tr>
<th>Signature paste default life:</th>
<td>
<select id="pasteLife">
<option value="24">24 Hours</option>
<option value="48">48 Hours</option>
<option value="72">72 Hours</option>
<option value="168">7 Days</option>
<option value="672">28 Days</option>
</select>
</td>
</tr>
<tr>
<th>Signature copy output separator:</th>
<td>
<input type="text" id="copySeparator" maxlength="20" />
</td>
</tr>
<tr>
<th>Background Image:</th>
<td>
<input type="text" id="background-image" maxlength="200" />
</td>
</tr>
<tr>
<th>UI Scale:</th>
<td>
<label for="uiscale-slider"></label>
<div id="uiscale-slider"></div>
</td>
</tr>
</table>
</div>
<h3><a href="#">Personal Statistics</a></h3>
<div>
<table class="optionsTable" width="100%" cellpadding="1" cellspacing="0">
<tr>
<th>Signatures added:</th>
<td id="signatures_added"></td>
</tr>
<tr>
<th>Signatures updated:</th>
<td id="signatures_updated"></td>
</tr>
<tr>
<th>Signatures deleted:</th>
<td id="signatures_deleted"></td>
</tr>
<tr>
<th>Wormholes added:</th>
<td id="wormholes_added"></td>
</tr>
<tr>
<th>Wormholes updated:</th>
<td id="wormholes_updated"></td>
</tr>
<tr>
<th>Wormholes deleted:</th>
<td id="wormholes_deleted"></td>
</tr>
<tr>
<th>Comments added:</th>
<td id="comments_added"></td>
</tr>
<tr>
<th>Comments updated:</th>
<td id="comments_updated"></td>
</tr>
<tr>
<th>Comments deleted:</th>
<td id="comments_deleted"></td>
</tr>
<tr>
<th>Systems visited:</th>
<td id="systems_visited"></td>
</tr>
<tr>
<th>Logins:</th>
<td id="logins"></td>
</tr>
<tr>
<th>Last login:</th>
<td id="lastLogin"></td>
</tr>
</table>
</div>
</div>
</div>
<div id="dialog-usernameChange" title="Change Username" class="hidden">
<form id="usernameForm">
<table class="optionsTable" width="100%" cellpadding="1" cellspacing="0">
<tr>
<th>Current Username:</th>
<td id="username"></td>
</tr>
<tr>
<th>New Username:</th>
<td><input type="text" name="username" size="16" maxlength="25" /></td>
</tr>
</table>
<p id="usernameError" class="critical hidden"></p>
</form>
</div>
<div id="dialog-pwChange" title="Change Password" class="hidden">
<form id="pwForm">
<table class="optionsTable" width="100%" cellpadding="1" cellspacing="0">
<tr>
<th>New Password:</th>
<td><input type="password" name="password" maxlength="35" /></td>
</tr>
<tr>
<th>Confirm:</th>
<td><input type="password" name="confirm" maxlength="35" /></td>
</tr>
</table>
<p id="pwError" class="critical hidden"></p>
</form>
</div>
<div id="dialog-createMask" title="Create Mask" class="hidden">
<form>
<input type="hidden" name="mode" value="create" />
<table class="optionsTable" width="100%" cellpadding="1" cellspacing="0">
<tr>
<th>Mask Name:</th>
<td><input type="text" name="name" maxlength="100" /></td>
</tr>
<tr>
<th>Mask Type:</th>
<td>
<select name="type">
<option value="char">Character</option>
<option value="corp">Corporate</option>
</select>
</td>
</tr>
<tr>
<th colspan="2">Who has access:</th>
</tr>
<tr>
<th colspan="2" id="accessList">
<input type="checkbox" onclick="return false" id="create_add" value="" class="selector static">
<label for="create_add" style="width: 100%; margin-left: -5px;" class="static">
<i data-icon="plus" style="font-size: 3em; margin: 16px 0 0 16px; display: block;" class="static"></i>
</label>
</th>
</tr>
</table>
</form>
</div>
<div id="dialog-editMask" title="Edit Mask" class="hidden">
<form>
<input type="hidden" name="mode" value="save" />
<input type="hidden" name="mask" value="" />
<table class="optionsTable" width="100%" cellpadding="1" cellspacing="0">
<tr>
<th>Mask Name:</th>
<td id="name"></td>
</tr>
<tr>
<th colspan="2">Who has access:</th>
</tr>
<tr>
<th colspan="2">
<div id="loading" style="text-align: center; padding-top: 10px; margin-left: -50px;">
Getting API data...
<span style="position: absolute; margin-top: -10px; padding-left: 25px;" class="" id="searchSpinner">
<!-- Loading animation container -->
<div class="loading">
<!-- We make this div spin -->
<div class="spinner">
<!-- Mask of the quarter of circle -->
<div class="mask">
<!-- Inner masked circle -->
<div class="maskedCircle"></div>
</div>
</div>
</div>
</span>
</div>
<div id="accessList">
<input type="checkbox" onclick="return false" id="edit_add" value="" class="selector static">
<label for="edit_add" class="static">
<i data-icon="plus" style="font-size: 3em; margin: 16px 0 0 16px; display: block;" class="static"></i>
</label>
</div>
</th>
</tr>
</table>
</form>
</div>
<div id="dialog-joinMask" title="Find Mask" class="hidden">
<form>
<input type="hidden" name="mode" value="find" />
<input type="hidden" name="find" value="" />
<table class="optionsTable" width="100%" cellpadding="1" cellspacing="0">
<tr>
<th>Mask Name:</th>
<td><input type="text" name="name" /></td>
</tr>
<tr>
<td colspan="2">
<span style="position: absolute; left: 15px;" class="hidden" id="loading">
<!-- Loading animation container -->
<div class="loading">
<!-- We make this div spin -->
<div class="spinner">
<!-- Mask of the quarter of circle -->
<div class="mask">
<!-- Inner masked circle -->
<div class="maskedCircle"></div>
</div>
</div>
</div>
</span>
<input type="submit" value="Search" />
</td>
</tr>
<tr>
<th colspan="2">
<div id="results"></div>
</th>
</tr>
</table>
</form>