1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
|
/* $Id: common.js $ */
/** @file
* Common JavaScript functions
*/
/*
* Copyright (C) 2012-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*********************************************************************************************************************************
* Global Variables *
*********************************************************************************************************************************/
/** Same as WuiDispatcherBase.ksParamRedirectTo. */
var g_ksParamRedirectTo = 'RedirectTo';
/**
* Checks if the given value is a decimal integer value.
*
* @returns true if it is, false if it's isn't.
* @param sValue The value to inspect.
*/
function isInteger(sValue)
{
if (typeof sValue != 'undefined')
{
var intRegex = /^\d+$/;
if (intRegex.test(sValue))
{
return true;
}
}
return false;
}
/**
* Checks if @a oMemmber is present in aoArray.
*
* @returns true/false.
* @param aoArray The array to check.
* @param oMember The member to check for.
*/
function isMemberOfArray(aoArray, oMember)
{
var i;
for (i = 0; i < aoArray.length; i++)
if (aoArray[i] == oMember)
return true;
return false;
}
/**
* Removes the element with the specified ID.
*/
function removeHtmlNode(sContainerId)
{
var oElement = document.getElementById(sContainerId);
if (oElement)
{
oElement.parentNode.removeChild(oElement);
}
}
/**
* Sets the value of the element with id @a sInputId to the keys of aoItems
* (comma separated).
*/
function setElementValueToKeyList(sInputId, aoItems)
{
var sKey;
var oElement = document.getElementById(sInputId);
oElement.value = '';
for (sKey in aoItems)
{
if (oElement.value.length > 0)
{
oElement.value += ',';
}
oElement.value += sKey;
}
}
/**
* Get the Window.devicePixelRatio in a safe way.
*
* @returns Floating point ratio. 1.0 means it's a 1:1 ratio.
*/
function getDevicePixelRatio()
{
var fpRatio = 1.0;
if (window.devicePixelRatio)
{
fpRatio = window.devicePixelRatio;
if (fpRatio < 0.5 || fpRatio > 10.0)
fpRatio = 1.0;
}
return fpRatio;
}
/**
* Tries to figure out the DPI of the device in the X direction.
*
* @returns DPI on success, null on failure.
*/
function getDeviceXDotsPerInch()
{
if (window.deviceXDPI && window.deviceXDPI > 48 && window.deviceXDPI < 2048)
{
return window.deviceXDPI;
}
else if (window.devicePixelRatio && window.devicePixelRatio >= 0.5 && window.devicePixelRatio <= 10.0)
{
cDotsPerInch = Math.round(96 * window.devicePixelRatio);
}
else
{
cDotsPerInch = null;
}
return cDotsPerInch;
}
/**
* Gets the width of the given element (downscaled).
*
* Useful when using the element to figure the size of a image
* or similar.
*
* @returns Number of pixels. null if oElement is bad.
* @param oElement The element (not ID).
*/
function getElementWidth(oElement)
{
if (oElement && oElement.offsetWidth)
return oElement.offsetWidth;
return null;
}
/** By element ID version of getElementWidth. */
function getElementWidthById(sElementId)
{
return getElementWidth(document.getElementById(sElementId));
}
/**
* Gets the real unscaled width of the given element.
*
* Useful when using the element to figure the size of a image
* or similar.
*
* @returns Number of screen pixels. null if oElement is bad.
* @param oElement The element (not ID).
*/
function getUnscaledElementWidth(oElement)
{
if (oElement && oElement.offsetWidth)
return Math.round(oElement.offsetWidth * getDevicePixelRatio());
return null;
}
/** By element ID version of getUnscaledElementWidth. */
function getUnscaledElementWidthById(sElementId)
{
return getUnscaledElementWidth(document.getElementById(sElementId));
}
/**
* Gets the part of the URL needed for a RedirectTo parameter.
*
* @returns URL string.
*/
function getCurrentBrowerUrlPartForRedirectTo()
{
var sWhere = window.location.href;
var offTmp;
var offPathKeep;
/* Find the end of that URL 'path' component. */
var offPathEnd = sWhere.indexOf('?');
if (offPathEnd < 0)
offPathEnd = sWhere.indexOf('#');
if (offPathEnd < 0)
offPathEnd = sWhere.length;
/* Go backwards from the end of the and find the start of the last component. */
offPathKeep = sWhere.lastIndexOf("/", offPathEnd);
offTmp = sWhere.lastIndexOf(":", offPathEnd);
if (offPathKeep < offTmp)
offPathKeep = offTmp;
offTmp = sWhere.lastIndexOf("\\", offPathEnd);
if (offPathKeep < offTmp)
offPathKeep = offTmp;
return sWhere.substring(offPathKeep + 1);
}
/**
* Adds the given sorting options to the URL and reloads.
*
* This will preserve previous sorting columns except for those
* given in @a aiColumns.
*
* @param sParam Sorting parameter.
* @param aiColumns Array of sorting columns.
*/
function ahrefActionSortByColumns(sParam, aiColumns)
{
var sWhere = window.location.href;
var offHash = sWhere.indexOf('#');
if (offHash < 0)
offHash = sWhere.length;
var offQm = sWhere.indexOf('?');
if (offQm > offHash)
offQm = -1;
var sNew = '';
if (offQm > 0)
sNew = sWhere.substring(0, offQm);
sNew += '?' + sParam + '=' + aiColumns[0];
var i;
for (i = 1; i < aiColumns.length; i++)
sNew += '&' + sParam + '=' + aiColumns[i];
if (offQm >= 0 && offQm + 1 < offHash)
{
var sArgs = '&' + sWhere.substring(offQm + 1, offHash);
var off = 0;
while (off < sArgs.length)
{
var offMatch = sArgs.indexOf('&' + sParam + '=', off);
if (offMatch >= 0)
{
if (off < offMatch)
sNew += sArgs.substring(off, offMatch);
var offValue = offMatch + 1 + sParam.length + 1;
offEnd = sArgs.indexOf('&', offValue);
if (offEnd < offValue)
offEnd = sArgs.length;
var iColumn = parseInt(sArgs.substring(offValue, offEnd));
if (!isMemberOfArray(aiColumns, iColumn) && !isMemberOfArray(aiColumns, -iColumn))
sNew += sArgs.substring(offMatch, offEnd);
off = offEnd;
}
else
{
sNew += sArgs.substring(off);
break;
}
}
}
if (offHash < sWhere.length)
sNew = sWhere.substr(offHash);
window.location.href = sNew;
}
/**
* Sets the value of an input field element (give by ID).
*
* @returns Returns success indicator (true/false).
* @param sFieldId The field ID (required for updating).
* @param sValue The field value.
*/
function setInputFieldValue(sFieldId, sValue)
{
var oInputElement = document.getElementById(sFieldId);
if (oInputElement)
{
oInputElement.value = sValue;
return true;
}
return false;
}
/**
* Adds a hidden input field to a form.
*
* @returns The new input field element.
* @param oFormElement The form to append it to.
* @param sName The field name.
* @param sValue The field value.
* @param sFieldId The field ID (optional).
*/
function addHiddenInputFieldToForm(oFormElement, sName, sValue, sFieldId)
{
var oNew = document.createElement('input');
oNew.type = 'hidden';
oNew.name = sName;
oNew.value = sValue;
if (sFieldId)
oNew.id = sFieldId;
oFormElement.appendChild(oNew);
return oNew;
}
/** By element ID version of addHiddenInputFieldToForm. */
function addHiddenInputFieldToFormById(sFormId, sName, sValue, sFieldId)
{
return addHiddenInputFieldToForm(document.getElementById(sFormId), sName, sValue, sFieldId);
}
/**
* Adds or updates a hidden input field to/on a form.
*
* @returns The new input field element.
* @param sFormId The ID of the form to amend.
* @param sName The field name.
* @param sValue The field value.
* @param sFieldId The field ID (required for updating).
*/
function addUpdateHiddenInputFieldToFormById(sFormId, sName, sValue, sFieldId)
{
var oInputElement = null;
if (sFieldId)
{
oInputElement = document.getElementById(sFieldId);
}
if (oInputElement)
{
oInputElement.name = sName;
oInputElement.value = sValue;
}
else
{
oInputElement = addHiddenInputFieldToFormById(sFormId, sName, sValue, sFieldId);
}
return oInputElement;
}
/**
* Adds a width and a dpi input to the given form element if possible to
* determine the values.
*
* This is normally employed in an onlick hook, but then you must specify IDs or
* the browser may end up adding it several times.
*
* @param sFormId The ID of the form to amend.
* @param sWidthSrcId The ID of the element to calculate the width
* value from.
* @param sWidthName The name of the width value.
* @param sDpiName The name of the dpi value.
*/
function addDynamicGraphInputs(sFormId, sWidthSrcId, sWidthName, sDpiName)
{
var cx = getUnscaledElementWidthById(sWidthSrcId);
var cDotsPerInch = getDeviceXDotsPerInch();
if (cx)
{
addUpdateHiddenInputFieldToFormById(sFormId, sWidthName, cx, sFormId + '-' + sWidthName + '-id');
}
if (cDotsPerInch)
{
addUpdateHiddenInputFieldToFormById(sFormId, sDpiName, cDotsPerInch, sFormId + '-' + sDpiName + '-id');
}
}
/**
* Adds the RedirecTo field with the current URL to the form.
*
* This is a 'onsubmit' action.
*
* @returns Returns success indicator (true/false).
* @param oForm The form being submitted.
*/
function addRedirectToInputFieldWithCurrentUrl(oForm)
{
/* Constant used here is duplicated in WuiDispatcherBase.ksParamRedirectTo */
return addHiddenInputFieldToForm(oForm, 'RedirectTo', getCurrentBrowerUrlPartForRedirectTo(), null);
}
/**
* Adds the RedirecTo parameter to the href of the given anchor.
*
* This is a 'onclick' action.
*
* @returns Returns success indicator (true/false).
* @param oAnchor The anchor element being clicked on.
*/
function addRedirectToAnchorHref(oAnchor)
{
var sRedirectToParam = g_ksParamRedirectTo + '=' + encodeURIComponent(getCurrentBrowerUrlPartForRedirectTo());
var sHref = oAnchor.href;
if (sHref.indexOf(sRedirectToParam) < 0)
{
var sHash;
var offHash = sHref.indexOf('#');
if (offHash >= 0)
sHash = sHref.substring(offHash);
else
{
sHash = '';
offHash = sHref.length;
}
sHref = sHref.substring(0, offHash)
if (sHref.indexOf('?') >= 0)
sHref += '&';
else
sHref += '?';
sHref += sRedirectToParam;
sHref += sHash;
oAnchor.href = sHref;
}
return true;
}
/**
* Clears one input element.
*
* @param oInput The input to clear.
*/
function resetInput(oInput)
{
switch (oInput.type)
{
case 'checkbox':
case 'radio':
oInput.checked = false;
break;
case 'text':
oInput.value = 0;
break;
}
}
/**
* Clears a form.
*
* @param sIdForm The ID of the form
*/
function clearForm(sIdForm)
{
var oForm = document.getElementById(sIdForm);
if (oForm)
{
var aoInputs = oForm.getElementsByTagName('INPUT');
var i;
for (i = 0; i < aoInputs.length; i++)
resetInput(aoInputs[i])
/* HTML5 allows inputs outside <form>, so scan the document. */
aoInputs = document.getElementsByTagName('INPUT');
for (i = 0; i < aoInputs.length; i++)
if (aoInputs.hasOwnProperty("form"))
if (aoInputs.form == sIdForm)
resetInput(aoInputs[i])
}
return true;
}
/** @name Collapsible / Expandable items
* @{
*/
/**
* Toggles the collapsible / expandable state of a parent DD and DT uncle.
*
* @returns true
* @param oAnchor The anchor object.
*/
function toggleCollapsibleDtDd(oAnchor)
{
var oParent = oAnchor.parentElement;
var sClass = oParent.className;
/* Find the DD sibling tag */
var oDdElement = oParent.nextSibling;
while (oDdElement != null && oDdElement.tagName != 'DD')
oDdElement = oDdElement.nextSibling;
/* Determin the new class and arrow char. */
var sNewClass;
var sNewChar;
if ( sClass.substr(-11) == 'collapsible')
{
sNewClass = sClass.substr(0, sClass.length - 11) + 'expandable';
sNewChar = '\u25B6'; /* black right-pointing triangle */
}
else if (sClass.substr(-10) == 'expandable')
{
sNewClass = sClass.substr(0, sClass.length - 10) + 'collapsible';
sNewChar = '\u25BC'; /* black down-pointing triangle */
}
else
{
console.log('toggleCollapsibleParent: Invalid class: ' + sClass);
return true;
}
/* Update the parent (DT) class and anchor text. */
oParent.className = sNewClass;
oAnchor.firstChild.textContent = sNewChar + oAnchor.firstChild.textContent.substr(1);
/* Update the uncle (DD) class. */
if (oDdElement)
oDdElement.className = sNewClass;
return true;
}
/**
* Shows/hides a sub-category UL according to checkbox status.
*
* The checkbox is expected to be within a label element or something.
*
* @returns true
* @param oInput The input checkbox.
*/
function toggleCollapsibleCheckbox(oInput)
{
var oParent = oInput.parentElement;
/* Find the UL sibling element. */
var oUlElement = oParent.nextSibling;
while (oUlElement != null && oUlElement.tagName != 'UL')
oUlElement = oUlElement.nextSibling;
/* Change the visibility. */
if (oInput.checked)
oUlElement.className = oUlElement.className.replace('expandable', 'collapsible');
else
{
oUlElement.className = oUlElement.className.replace('collapsible', 'expandable');
/* Make sure all sub-checkboxes are now unchecked. */
var aoSubInputs = oUlElement.getElementsByTagName('input');
var i;
for (i = 0; i < aoSubInputs.length; i++)
aoSubInputs[i].checked = false;
}
return true;
}
/**
* Toggles the sidebar size so filters can more easily manipulated.
*/
function toggleSidebarSize()
{
var sLinkText;
if (document.body.className != 'tm-wide-side-menu')
{
document.body.className = 'tm-wide-side-menu';
sLinkText = '\u00ab\u00ab';
}
else
{
document.body.className = '';
sLinkText = '\u00bb\u00bb';
}
var aoToggleLink = document.getElementsByClassName('tm-sidebar-size-link');
var i;
for (i = 0; i < aoToggleLink.length; i++)
if ( aoToggleLink[i].textContent.indexOf('\u00bb') >= 0
|| aoToggleLink[i].textContent.indexOf('\u00ab') >= 0)
aoToggleLink[i].textContent = sLinkText;
}
/** @} */
/** @name Custom Tooltips
* @{
*/
/** Where we keep tooltip elements when not displayed. */
var g_dTooltips = {};
var g_oCurrentTooltip = null;
var g_idTooltipShowTimer = null;
var g_idTooltipHideTimer = null;
var g_cTooltipSvnRevisions = 12;
/**
* Cancel showing/replacing/repositing a tooltip.
*/
function tooltipResetShowTimer()
{
if (g_idTooltipShowTimer)
{
clearTimeout(g_idTooltipShowTimer);
g_idTooltipShowTimer = null;
}
}
/**
* Cancel hiding of the current tooltip.
*/
function tooltipResetHideTimer()
{
if (g_idTooltipHideTimer)
{
clearTimeout(g_idTooltipHideTimer);
g_idTooltipHideTimer = null;
}
}
/**
* Really hide the tooltip.
*/
function tooltipReallyHide()
{
if (g_oCurrentTooltip)
{
//console.log('tooltipReallyHide: ' + g_oCurrentTooltip);
g_oCurrentTooltip.oElm.style.display = 'none';
g_oCurrentTooltip = null;
}
}
/**
* Schedule the tooltip for hiding.
*/
function tooltipHide()
{
function tooltipDelayedHide()
{
tooltipResetHideTimer();
tooltipReallyHide();
}
/*
* Cancel any pending show and schedule hiding if necessary.
*/
tooltipResetShowTimer();
if (g_oCurrentTooltip && !g_idTooltipHideTimer)
{
g_idTooltipHideTimer = setTimeout(tooltipDelayedHide, 700);
}
return true;
}
/**
* Function that is repositions the tooltip when it's shown.
*
* Used directly, via onload, and hackish timers to catch all browsers and
* whatnot.
*
* Will set several tooltip member variables related to position and space.
*/
function tooltipRepositionOnLoad()
{
if (g_oCurrentTooltip)
{
var oRelToRect = g_oCurrentTooltip.oRelToRect;
var cxNeeded = g_oCurrentTooltip.oElm.offsetWidth + 8;
var cyNeeded = g_oCurrentTooltip.oElm.offsetHeight + 8;
var yScroll = window.pageYOffset || document.documentElement.scrollTop;
var yScrollBottom = yScroll + window.innerHeight;
var xScroll = window.pageXOffset || document.documentElement.scrollLeft;
var xScrollRight = xScroll + window.innerWidth;
var cyAbove = Math.max(oRelToRect.top - yScroll, 0);
var cyBelow = Math.max(yScrollBottom - oRelToRect.bottom, 0);
var cxLeft = Math.max(oRelToRect.left - xScroll, 0);
var cxRight = Math.max(xScrollRight - oRelToRect.right, 0);
var xPos;
var yPos;
/*
* Decide where to put the thing.
*/
if (cyNeeded < cyBelow)
{
yPos = oRelToRect.bottom;
g_oCurrentTooltip.cyMax = cyBelow;
}
else if (cyBelow >= cyAbove)
{
yPos = yScrollBottom - cyNeeded;
g_oCurrentTooltip.cyMax = yScrollBottom - yPos;
}
else
{
yPos = oRelToRect.top - cyNeeded;
g_oCurrentTooltip.cyMax = yScrollBottom - yPos;
}
if (yPos < yScroll)
{
yPos = yScroll;
g_oCurrentTooltip.cyMax = yScrollBottom - yPos;
}
g_oCurrentTooltip.yPos = yPos;
g_oCurrentTooltip.yScroll = yScroll;
g_oCurrentTooltip.cyMaxUp = yPos - yScroll;
if (cxNeeded < cxRight || cxNeeded > cxRight)
{
xPos = oRelToRect.right;
g_oCurrentTooltip.cxMax = cxRight;
}
else
{
xPos = oRelToRect.left - cxNeeded;
g_oCurrentTooltip.cxMax = cxNeeded;
}
g_oCurrentTooltip.xPos = xPos;
g_oCurrentTooltip.xScroll = xScroll;
g_oCurrentTooltip.oElm.style.top = yPos + 'px';
g_oCurrentTooltip.oElm.style.left = xPos + 'px';
}
return true;
}
/**
* Really show the tooltip.
*
* @param oTooltip The tooltip object.
* @param oRelTo What to put the tooltip adjecent to.
*/
function tooltipReallyShow(oTooltip, oRelTo)
{
var oRect;
tooltipResetShowTimer();
tooltipResetHideTimer();
if (g_oCurrentTooltip == oTooltip)
{
//console.log('moving tooltip');
}
else if (g_oCurrentTooltip)
{
//console.log('removing current tooltip and showing new');
tooltipReallyHide();
}
else
{
//console.log('showing tooltip');
}
oTooltip.oElm.style.display = 'block';
oTooltip.oElm.style.position = 'absolute';
oRect = oRelTo.getBoundingClientRect();
oTooltip.oRelToRect = oRect;
oTooltip.oElm.style.left = oRect.right + 'px';
oTooltip.oElm.style.top = oRect.bottom + 'px';
g_oCurrentTooltip = oTooltip;
/*
* This function does the repositioning at some point.
*/
tooltipRepositionOnLoad();
if (oTooltip.oElm.onload === null)
{
oTooltip.oElm.onload = function(){ tooltipRepositionOnLoad(); setTimeout(tooltipRepositionOnLoad, 0); };
}
}
/**
* Tooltip onmouseenter handler .
*/
function tooltipElementOnMouseEnter()
{
//console.log('tooltipElementOnMouseEnter: arguments.length='+arguments.length+' [0]='+arguments[0]);
//console.log('ENT: currentTarget='+arguments[0].currentTarget);
tooltipResetShowTimer();
tooltipResetHideTimer();
return true;
}
/**
* Tooltip onmouseout handler.
*
* @remarks We only use this and onmouseenter for one tooltip element (iframe
* for svn, because chrome is sending onmouseout events after
* onmouseneter for the next element, which would confuse this simple
* code.
*/
function tooltipElementOnMouseOut()
{
//console.log('tooltipElementOnMouseOut: arguments.length='+arguments.length+' [0]='+arguments[0]);
//console.log('OUT: currentTarget='+arguments[0].currentTarget);
tooltipHide();
return true;
}
/**
* iframe.onload hook that repositions and resizes the tooltip.
*
* This is a little hacky and we're calling it one or three times too many to
* work around various browser differences too.
*/
function svnHistoryTooltipOnLoad()
{
//console.log('svnHistoryTooltipOnLoad');
/*
* Resize the tooltip to better fit the content.
*/
tooltipRepositionOnLoad(); /* Sets cxMax and cyMax. */
if (g_oCurrentTooltip && g_oCurrentTooltip.oIFrame.contentWindow)
{
var oSubElement = g_oCurrentTooltip.oIFrame;
var cxSpace = Math.max(oSubElement.offsetLeft * 2, 0); /* simplified */
var cySpace = Math.max(oSubElement.offsetTop * 2, 0); /* simplified */
var cxNeeded = oSubElement.contentWindow.document.body.scrollWidth + cxSpace;
var cyNeeded = oSubElement.contentWindow.document.body.scrollHeight + cySpace;
var cx = Math.min(cxNeeded, g_oCurrentTooltip.cxMax);
var cy;
g_oCurrentTooltip.oElm.width = cx + 'px';
oSubElement.width = (cx - cxSpace) + 'px';
if (cx >= cxNeeded)
{
//console.log('svnHistoryTooltipOnLoad: overflowX -> hidden');
oSubElement.style.overflowX = 'hidden';
}
else
{
oSubElement.style.overflowX = 'scroll';
}
cy = Math.min(cyNeeded, g_oCurrentTooltip.cyMax);
if (cyNeeded > g_oCurrentTooltip.cyMax && g_oCurrentTooltip.cyMaxUp > 0)
{
var cyMove = Math.min(cyNeeded - g_oCurrentTooltip.cyMax, g_oCurrentTooltip.cyMaxUp);
g_oCurrentTooltip.cyMax += cyMove;
g_oCurrentTooltip.yPos -= cyMove;
g_oCurrentTooltip.oElm.style.top = g_oCurrentTooltip.yPos + 'px';
cy = Math.min(cyNeeded, g_oCurrentTooltip.cyMax);
}
g_oCurrentTooltip.oElm.height = cy + 'px';
oSubElement.height = (cy - cySpace) + 'px';
if (cy >= cyNeeded)
{
//console.log('svnHistoryTooltipOnLoad: overflowY -> hidden');
oSubElement.style.overflowY = 'hidden';
}
else
{
oSubElement.style.overflowY = 'scroll';
}
//console.log('cyNeeded='+cyNeeded+' cyMax='+g_oCurrentTooltip.cyMax+' cySpace='+cySpace+' cy='+cy);
//console.log('oSubElement.offsetTop='+oSubElement.offsetTop);
//console.log('svnHistoryTooltipOnLoad: cx='+cx+'cxMax='+g_oCurrentTooltip.cxMax+' cxNeeded='+cxNeeded+' cy='+cy+' cyMax='+g_oCurrentTooltip.cyMax);
tooltipRepositionOnLoad();
}
return true;
}
/**
* Calculates the last revision to get when showing a tooltip for @a iRevision.
*
* A tooltip covers several change log entries, both to limit the number of
* tooltips to load and to give context. The exact number is defined by
* g_cTooltipSvnRevisions.
*
* @returns Last revision in a tooltip.
* @param iRevision The revision number.
*/
function svnHistoryTooltipCalcLastRevision(iRevision)
{
var iFirstRev = Math.floor(iRevision / g_cTooltipSvnRevisions) * g_cTooltipSvnRevisions;
return iFirstRev + g_cTooltipSvnRevisions - 1;
}
/**
* Calculates a unique ID for the tooltip element.
*
* This is also used as dictionary index.
*
* @returns tooltip ID value (string).
* @param sRepository The repository name.
* @param iRevision The revision number.
*/
function svnHistoryTooltipCalcId(sRepository, iRevision)
{
return 'svnHistoryTooltip_' + sRepository + '_' + svnHistoryTooltipCalcLastRevision(iRevision);
}
/**
* The onmouseenter event handler for creating the tooltip.
*
* @param oEvt The event.
* @param sRepository The repository name.
* @param iRevision The revision number.
* @param sUrlPrefix URL prefix for non-testmanager use.
*
* @remarks onmouseout must be set to call tooltipHide.
*/
function svnHistoryTooltipShowEx(oEvt, sRepository, iRevision, sUrlPrefix)
{
var sKey = svnHistoryTooltipCalcId(sRepository, iRevision);
var oTooltip = g_dTooltips[sKey];
var oParent = oEvt.currentTarget;
//console.log('svnHistoryTooltipShow ' + sRepository);
function svnHistoryTooltipDelayedShow()
{
var oSubElement;
var sSrc;
oTooltip = g_dTooltips[sKey];
//console.log('svnHistoryTooltipDelayedShow ' + sRepository + ' ' + oTooltip);
if (!oTooltip)
{
/*
* Create a new tooltip element.
*/
//console.log('creating ' + sKey);
oTooltip = {};
oTooltip.oElm = document.createElement('div');
oTooltip.oElm.setAttribute('id', sKey);
oTooltip.oElm.setAttribute('class', 'tmvcstooltip');
oTooltip.oElm.style.position = 'absolute';
oTooltip.oElm.style.zIndex = 6001;
oTooltip.xPos = 0;
oTooltip.yPos = 0;
oTooltip.cxMax = 0;
oTooltip.cyMax = 0;
oTooltip.cyMaxUp = 0;
oTooltip.xScroll = 0;
oTooltip.yScroll = 0;
oSubElement = document.createElement('iframe');
oSubElement.setAttribute('id', sKey + '_iframe');
oSubElement.setAttribute('style', 'position: relative;"');
oSubElement.onload = function() {svnHistoryTooltipOnLoad(); setTimeout(svnHistoryTooltipOnLoad,0);};
oSubElement.onmouseenter = tooltipElementOnMouseEnter;
oSubElement.onmouseout = tooltipElementOnMouseOut;
oTooltip.oElm.appendChild(oSubElement);
oTooltip.oIFrame = oSubElement;
g_dTooltips[sKey] = oTooltip;
document.body.appendChild(oTooltip.oElm);
}
else
{
oSubElement = oTooltip.oIFrame;
}
oSubElement.setAttribute('src', sUrlPrefix + 'index.py?Action=VcsHistoryTooltip&repo=' + sRepository
+ '&rev=' + svnHistoryTooltipCalcLastRevision(iRevision)
+ '&cEntries=' + g_cTooltipSvnRevisions
+ '#r' + iRevision);
tooltipReallyShow(oTooltip, oParent);
/* Resize and repositioning hacks. */
svnHistoryTooltipOnLoad();
setTimeout(svnHistoryTooltipOnLoad, 0);
}
/*
* Delay the change.
*/
tooltipResetShowTimer();
g_idTooltipShowTimer = setTimeout(svnHistoryTooltipDelayedShow, 512);
}
/**
* The onmouseenter event handler for creating the tooltip.
*
* @param oEvt The event.
* @param sRepository The repository name.
* @param iRevision The revision number.
*
* @remarks onmouseout must be set to call tooltipHide.
*/
function svnHistoryTooltipShow(oEvt, sRepository, iRevision)
{
return svnHistoryTooltipShowEx(oEvt, sRepository, iRevision, '')
}
/** @} */
/** @name Debugging and Introspection
* @{
*/
/**
* Python-like dir() implementation.
*
* @returns Array of names associated with oObj.
* @param oObj The object under inspection. If not specified we'll
* look at the window object.
*/
function pythonlikeDir(oObj, fDeep)
{
var aRet = [];
var dTmp = {};
if (!oObj)
{
oObj = window;
}
for (var oCur = oObj; oCur; oCur = Object.getPrototypeOf(oCur))
{
var aThis = Object.getOwnPropertyNames(oCur);
for (var i = 0; i < aThis.length; i++)
{
if (!(aThis[i] in dTmp))
{
dTmp[aThis[i]] = 1;
aRet.push(aThis[i]);
}
}
}
return aRet;
}
/**
* Python-like dir() implementation, shallow version.
*
* @returns Array of names associated with oObj.
* @param oObj The object under inspection. If not specified we'll
* look at the window object.
*/
function pythonlikeShallowDir(oObj, fDeep)
{
var aRet = [];
var dTmp = {};
if (oObj)
{
for (var i in oObj)
{
aRet.push(i);
}
}
return aRet;
}
function dbgGetObjType(oObj)
{
var sType = typeof oObj;
if (sType == "object" && oObj !== null)
{
if (oObj.constructor && oObj.constructor.name)
{
sType = oObj.constructor.name;
}
else
{
var fnToString = Object.prototype.toString;
var sTmp = fnToString.call(oObj);
if (sTmp.indexOf('[object ') === 0)
{
sType = sTmp.substring(8, sTmp.length);
}
}
}
return sType;
}
/**
* Dumps the given object to the console.
*
* @param oObj The object under inspection.
* @param sPrefix What to prefix the log output with.
*/
function dbgDumpObj(oObj, sName, sPrefix)
{
var aMembers;
var sType;
/*
* Defaults
*/
if (!oObj)
{
oObj = window;
}
if (!sPrefix)
{
if (sName)
{
sPrefix = sName + ':';
}
else
{
sPrefix = 'dbgDumpObj:';
}
}
if (!sName)
{
sName = '';
}
/*
* The object itself.
*/
sPrefix = sPrefix + ' ';
console.log(sPrefix + sName + ' ' + dbgGetObjType(oObj));
/*
* The members.
*/
sPrefix = sPrefix + ' ';
aMembers = pythonlikeDir(oObj);
for (i = 0; i < aMembers.length; i++)
{
console.log(sPrefix + aMembers[i]);
}
return true;
}
function dbgDumpObjWorker(sType, sName, oObj, sPrefix)
{
var sRet;
switch (sType)
{
case 'function':
{
sRet = sPrefix + 'function ' + sName + '()' + '\n';
break;
}
case 'object':
{
sRet = sPrefix + 'var ' + sName + '(' + dbgGetObjType(oObj) + ') =';
if (oObj !== null)
{
sRet += '\n';
}
else
{
sRet += ' null\n';
}
break;
}
case 'string':
{
sRet = sPrefix + 'var ' + sName + '(string, ' + oObj.length + ')';
if (oObj.length < 80)
{
sRet += ' = "' + oObj + '"\n';
}
else
{
sRet += '\n';
}
break;
}
case 'Oops!':
sRet = sPrefix + sName + '(??)\n';
break;
default:
sRet = sPrefix + 'var ' + sName + '(' + sType + ')\n';
break;
}
return sRet;
}
function dbgObjInArray(aoObjs, oObj)
{
var i = aoObjs.length;
while (i > 0)
{
i--;
if (aoObjs[i] === oObj)
{
return true;
}
}
return false;
}
function dbgDumpObjTreeWorker(oObj, sPrefix, aParentObjs, cMaxDepth)
{
var sRet = '';
var aMembers = pythonlikeShallowDir(oObj);
var i;
for (i = 0; i < aMembers.length; i++)
{
//var sName = i;
var sName = aMembers[i];
var oMember;
var sType;
var oEx;
try
{
oMember = oObj[sName];
sType = typeof oObj[sName];
}
catch (oEx)
{
oMember = null;
sType = 'Oops!';
}
//sRet += '[' + i + '/' + aMembers.length + ']';
sRet += dbgDumpObjWorker(sType, sName, oMember, sPrefix);
if ( sType == 'object'
&& oObj !== null)
{
if (dbgObjInArray(aParentObjs, oMember))
{
sRet += sPrefix + '! parent recursion\n';
}
else if ( sName == 'previousSibling'
|| sName == 'previousElement'
|| sName == 'lastChild'
|| sName == 'firstElementChild'
|| sName == 'lastElementChild'
|| sName == 'nextElementSibling'
|| sName == 'prevElementSibling'
|| sName == 'parentElement'
|| sName == 'ownerDocument')
{
sRet += sPrefix + '! potentially dangerous element name\n';
}
else if (aParentObjs.length >= cMaxDepth)
{
sRet = sRet.substring(0, sRet.length - 1);
sRet += ' <too deep>!\n';
}
else
{
aParentObjs.push(oMember);
if (i + 1 < aMembers.length)
{
sRet += dbgDumpObjTreeWorker(oMember, sPrefix + '| ', aParentObjs, cMaxDepth);
}
else
{
sRet += dbgDumpObjTreeWorker(oMember, sPrefix.substring(0, sPrefix.length - 2) + ' | ', aParentObjs, cMaxDepth);
}
aParentObjs.pop();
}
}
}
return sRet;
}
/**
* Dumps the given object and all it's subobjects to the console.
*
* @returns String dump of the object.
* @param oObj The object under inspection.
* @param sName The object name (optional).
* @param sPrefix What to prefix the log output with (optional).
* @param cMaxDepth The max depth, optional.
*/
function dbgDumpObjTree(oObj, sName, sPrefix, cMaxDepth)
{
var sType;
var sRet;
var oEx;
/*
* Defaults
*/
if (!sPrefix)
{
sPrefix = '';
}
if (!sName)
{
sName = '??';
}
if (!cMaxDepth)
{
cMaxDepth = 2;
}
/*
* The object itself.
*/
try
{
sType = typeof oObj;
}
catch (oEx)
{
sType = 'Oops!';
}
sRet = dbgDumpObjWorker(sType, sName, oObj, sPrefix);
if (sType == 'object' && oObj !== null)
{
var aParentObjs = Array();
aParentObjs.push(oObj);
sRet += dbgDumpObjTreeWorker(oObj, sPrefix + '| ', aParentObjs, cMaxDepth);
}
return sRet;
}
function dbgLogString(sLongString)
{
var aStrings = sLongString.split("\n");
var i;
for (i = 0; i < aStrings.length; i++)
{
console.log(aStrings[i]);
}
console.log('dbgLogString - end - ' + aStrings.length + '/' + sLongString.length);
return true;
}
function dbgLogObjTree(oObj, sName, sPrefix, cMaxDepth)
{
return dbgLogString(dbgDumpObjTree(oObj, sName, sPrefix, cMaxDepth));
}
/** @} */
|