aboutsummaryrefslogtreecommitdiffstats
path: root/bugzillaBugTriage.js
blob: 97b9568c6acbd1909993d74ca005fba1bfe36129 (plain) (blame)
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
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
/*jslint onevar: false, browser: true, evil: true, laxbreak: true, undef: true, nomen: true, eqeqeq: true, bitwise: true, maxerr: 1000, immed: false, white: false, plusplus: false, regexp: false, undef: false */
/*global jetpack */
// Released under the MIT/X11 license
// http://www.opensource.org/licenses/mit-license.php
"use strict";
jetpack.future.import("pageMods");
jetpack.future.import("storage.simple");
jetpack.future.import("selection");
jetpack.future.import("clipboard");

var TriagedDistro = 13;
var NumberOfFrames = 7;
var XMLRPCurl = "https://bugzilla.redhat.com/xmlrpc.cgi";
var bugURL = "https://bugzilla.redhat.com/show_bug.cgi?id=";
var myStorage = jetpack.storage.simple;
var badMIMEArray = [ "application/octet-stream", "text/x-log", "undefined" ];

// ==============================================================
// TODO https://wiki.mozilla.org/Labs/Jetpack/JEP/24
var manifest = {
	settings : [
			{
				name : "BZpassword",
				type : "password",
				label : "Bugzilla password"
			},
			{
				name : "JSONURL",
				type : "text",
				label : "Configuration file URL",
				"default" : "http://mcepl.fedorapeople.org/scripts/BugZappers_data.json"
			} ]
};
jetpack.future.import("storage.settings");
// if (!jetpack.storage.settings.BZpassword) {
// jetpack.settings.open();
// }

var jsonDataURL = myStorage.JSONURL ? myStorage.JSONURL
		: "http://mcepl.fedorapeople.org/scripts/BugZappers_data.json";
var PCIIDsURL = "http://mcepl.fedorapeople.org/scripts/drm_pciids.json";
var abrtQueryURL = "https://bugzilla.redhat.com/buglist.cgi?"
		+ "cmdtype=dorem&remaction=run&namedcmd=all%20NEW%20abrt%20crashes&sharer_id=74116";

var reqCounter = 0;
var msgStrs = {};

var CommentRe = new RegExp("^\\s*#");
var BlankLineRe = new RegExp("^\\s*$");
// nová řádka
// [ 65.631] (--) intel(0): Chipset: "845G"
var ChipsetRE = new RegExp("^\\s*\\[?[ 0-9.]*\\]?\\s*\\(--\\) ([A-Za-z]+)\\([0-9]?\\): Chipset: (.*)$");
var ATIgetIDRE = new RegExp("^.*\\(ChipID = 0x([0-9a-fA-F]+)\\).*$");
var AbrtRE = new RegExp("^\\s*\\[abrt\\]");
var signalHandlerRE = new RegExp("^\\s*#[0-9]*\\s*<signal handler called>");
var frameNoRE = new RegExp("^\\s*#([0-9]*)\\s");

// Initialize data from remote URL
var XMLHttpRequestDone = false;
var hashBugzillaName = [];
var hashBugzillaWholeURL = [];
var defAssigneeList = [];
var suspiciousComponents = [];

var signatureFedoraString = "";
// TODO we should have an array SpecialFlags instead of multiple Boolean
// variables
var parseAbrtBacktraces = false;
var queryButtonAvailable = false;
var upstreamButtonAvailable = false;
var logSubmits = false;
var chipIDsGroupings = [];
var AddrArray = [];
var PCI_ID_Array = [];
var topRow = {};
var bottomRow = {};

// ======== load external library ===============================

// var XMLRPCMessage = {};
// var req = new XMLHttpRequest();
// req.open("GET","http://mcepl.fedorapeople.org/scripts/xmlrpc.js",true);
// req.onreadystatechange = function (aEvt) {
// if (req.readyState == 4) {
// if (req.status == 200) {
// var thisDoc = jetpack.tabs.focused.contentDocument;
// var script = thisDoc.createElement("script");
// script.setAttribute("type","text/javascript");
// script.innerHTML = req.responseText;
// thisDoc.getElementsByTagName("head")[0].appendChild(script);
// XMLRPCMessage =
// jetpack.tabs.focused.contentWindow.wrappedJSObject.XMLRPCMessage;
// console.log("XMLHTTPRequest should be loaded.");
// console.log(XMLRPCMessage);
// }
// }
// };
// console.log("Now we are calling XMLHTTPRequest to load xmlrpc.js");
// req.send("");
/*
 * 
 * xmlrpc.js beta version 1 Tool for creating XML-RPC formatted requests in
 * JavaScript
 * 
 * Copyright 2001 Scott Andrew LePera scott@scottandrew.com
 * http://www.scottandrew.com/xml-rpc
 * 
 * License: You are granted the right to use and/or redistribute this code only
 * if this license and the copyright notice are included and you accept that no
 * warranty of any kind is made or implied by the author.
 * 
 */

function XMLRPCMessage(methodname) {
	this.method = methodname || "system.listMethods";
	this.params = [];
	return this;
}

XMLRPCMessage.prototype.setMethod = function(methodName) {
	if (!methodName)
		return;
	this.method = methodName;
};

XMLRPCMessage.prototype.addParameter = function(data) {
	if (arguments.length == 0)
		return;
	this.params[this.params.length] = data;
};

XMLRPCMessage.prototype.xml = function() {

	var method = this.method;

	// assemble the XML message header
	var xml = "";

	xml += "<?xml version=\"1.0\"?>\n";
	xml += "<methodCall>\n";
	xml += "<methodName>" + method + "</methodName>\n";
	xml += "<params>\n";

	// do individual parameters
	for ( var i = 0; i < this.params.length; i++) {
		var data = this.params[i];
	    xml += "<param>\n";
	    xml += "<value>"
			    + this.getParamXML(this.dataTypeOf(data),
					    data) + "</value>\n";
	    xml += "</param>\n";
	}

	xml += "</params>\n";
	xml += "</methodCall>";

	return xml; // for now
};

XMLRPCMessage.prototype.dataTypeOf = function(o) {
	// identifies the data type
	var type = typeof (o);
	type = type.toLowerCase();
	switch (type) {
	case "number":
		if (Math.round(o) == o)
			type = "i4";
		else
			type = "double";
		break;
	case "object":
		var con = o.constructor;
		if (con == Date)
			type = "date";
		else if (con == Array)
			type = "array";
		else
			type = "struct";
		break;
	}
	return type;
};

XMLRPCMessage.prototype.doValueXML = function(type, data) {
	var xml = "<" + type + ">" + data + "</" + type + ">";
	return xml;
};

XMLRPCMessage.prototype.doBooleanXML = function(data) {
	var value = (data == true) ? 1 : 0;
	var xml = "<boolean>" + value + "</boolean>";
	return xml;
};

XMLRPCMessage.prototype.doDateXML = function(data) {
	var leadingZero = function (n) {
		// pads a single number with a leading zero. Heh.
		if (n.length == 1)
			n = "0" + n;
		return n;
	};
	var dateToISO8601 = function(date) {
		// wow I hate working with the Date object
		var year = new String(date.getYear());
		var month = this.leadingZero(new String(date.getMonth()));
		var day = this.leadingZero(new String(date.getDate()));
		var time = this.leadingZero(new String(date.getHours())) + ":"
		+ this.leadingZero(new String(date.getMinutes())) + ":"
		+ this.leadingZero(new String(date.getSeconds()));
		
		var converted = year + month + day + "T" + time;
		return converted;
	};
	
	var xml = "<dateTime.iso8601>";
	xml += dateToISO8601(data);
	xml += "</dateTime.iso8601>";
	return xml;
};

XMLRPCMessage.prototype.doArrayXML = function(data) {
	var xml = "<array><data>\n";
	for ( var i = 0; i < data.length; i++) {
		xml += "<value>"
				+ this.getParamXML(this.dataTypeOf(data[i]),
						data[i]) + "</value>\n";
	}
	xml += "</data></array>\n";
	return xml;
};

XMLRPCMessage.prototype.doStructXML = function(data) {
	var xml = "<struct>\n";
	for ( var i in data) {
		xml += "<member>\n";
		xml += "<name>" + i + "</name>\n";
		xml += "<value>"
				+ this.getParamXML(this.dataTypeOf(data[i]),
						data[i]) + "</value>\n";
		xml += "</member>\n";
	}
	xml += "</struct>\n";
	return xml;
};

XMLRPCMessage.prototype.getParamXML = function(type, data) {
	var xml;
	switch (type) {
	case "date":
		xml = this.doDateXML(data);
		break;
	case "array":
		xml = this.doArrayXML(data);
		break;
	case "struct":
		xml = this.doStructXML(data);
		break;
	case "boolean":
		xml = this.doBooleanXML(data);
		break;
	default:
		xml = this.doValueXML(type, data);
		break;
	}
	return xml;
};

///*
// * Create and return an object that has p as its prototype
// * 
// * @param p parent Object
// * @return child Object
// */
//heir = function (o) {
//    function F() {};
//    F.prototype = o;
//    delete F.prototype.create;
//    return new F();
//};

// ==============================================================
var hlpr = function () {
};

hlpr.valToArray = function valToArray(val) {
	let arr = [];
	if (typeof val == "string") {
		arr = [val];
	} else if (val instanceof Array) {
		arr = val;
	}
	return arr;
};

hlpr.addCSVValue = function addCSVValue(str, value) {
	let parts = (str.trim().length > 0 ? str.split(",") : []);
	if (parts.indexOf(value) < 0) {
		parts.concat(hlpr.valToArray(value));
	}
	return parts.join(",");
};

// FIXME rewrite so that it doesn't break Eclipse
//hlpr.removeCSVValue = function removeCSVValue(str, value) {
//	let parts = (str.trim().length > 0 ? str.split(",") : []);
//	for each (let val in hlpr.valToArray(value)) {
//		let pos = parts.indexOf(val);
//		if (pos > -1) {
//			parts.splice(pos, 1);
//		}
//	}
//	return parts.join(",");
//};

/**
 * Check whether an item is member of the list. Idea is just to make long if
 * commands slightly more readable.
 * 
 * @param mbr
 *            string to be searched in the list
 * @param list
 *            list
 * @return position of the string in the list, or -1 if none found.
 */
hlpr.isInList = function(mbr, list) {
	return (list.indexOf(mbr) !== -1);
};

hlpr.createBlankPage = function (ttl, bodyBuildCB) {
	var title = ttl || "Yet another untitled page";
	var that = this;

	var logTab = jetpack.tabs.open("about:blank");
	jetpack.tabs.onReady(function() {
		var otherDoc = logTab.contentDocument;
		otherDoc.title = title;
		otherDoc.body.innerHTML = "<h1>" + title + "</h1>";
		bodyBuildCB.call(that, otherDoc.body);
		logTab.focus();
	});
};

//Get JSON configuration data
hlpr.loadText = function(URL, cb_function, what) {
	if (what === undefined) { // missing optional argument
		what = this;
	}

	var req = new XMLHttpRequest();
	req.open("GET", URL, true);
	req.onreadystatechange = function(aEvt) {
		if (req.readyState == 4) {
			if (req.status == 200) {
				cb_function.call(what, req.responseText);
			} else {
				throw "Getting " + URL + "failed!";
			}
		}
	};
	req.send("");
};

/**
 * Converts attributes value of the given list of elements to the Javascript
 * list.
 * 
 * @param list
 *            array of elements
 * @return array of values
 * @depreceated FIXME never used
 */
hlpr.valuesToList = function(list) {
	var outL = [];

	list.forEach(function(e, i, a) {
		if (e.hasAttribute("value")) {
			outL.push(e.getAttribute("value").trim());
		}
	});
	return outL;
};

// Initialization
hlpr.loadJSON = function(URL, cb_function, what) {
	if (what === undefined) { // missing optional argument
		what = this;
	}

	hlpr.loadText(URL, function(text) {
		var data = JSON.parse(text);
		cb_function.call(what, data);
	}, what);
};

hlpr.loadJSON(jsonDataURL, function(response) {
	msgStrs = response.strings;
	signatureFedoraString = response.signature;
	suspiciousComponents = response.suspiciousComponents;
	hashBugzillaName = response.bugzillalabelNames;
	hashBugzillaWholeURL = response.bugzillaIDURLs;
	// [{'regexp to match component':'email address of an universal
		// maintainer'}, ...]
		AddrArray = response.CCmaintainer;
		defAssigneeList = response.defaultAssignee;
		queryButtonAvailable = response.queryButton;
		upstreamButtonAvailable = response.upstreamButton;
		parseAbrtBacktraces = response.parseAbrtBacktraces;
		logSubmits = response.submitsLogging;
		newUpstreamBugsURLArray = response.newUpstreamBug;
		queryUpstreamBugsURLArray = response.queryUpstreamBug;
		chipIDsGroupings = response.chipIDsGroupings;
		topRow = response.topRow;
		bottomRow = response.bottomRow;
	});

// Get card translation table
hlpr.loadJSON(PCIIDsURL, function(response) {
	PCI_ID_Array = response;
});

// ============================================================================
// Color management methods
// originally from
// http://www.mjijackson.com/2008/02\
// /rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript

function Color(r, g, b) {
	this.Luminosity = 0.85;
	this.Desaturated = 0.4;
	
	if (r instanceof Array) {
		this.r = r[0];
		this.g = r[1];
		this.b = r[2];
	} else {
		this.r = r;
		this.g = g;
		this.b = b;
	}
}

Color.prototype.update = function(r, g, b) {
	this.r = r;
	this.g = g;
	this.b = b;
};

Color.prototype.hs = function(nStr) {
	if (Number(nStr) === 0) {
		return "00";
	} else if (nStr.length < 2) {
		return "0" + nStr;
	} else {
		return nStr;
	}
};

Color.prototype.toString = function() {
	var rH = Number(this.r.toFixed()).toString(16);
	var gH = Number(this.g.toFixed()).toString(16);
	var bH = Number(this.b.toFixed()).toString(16);
	return "#" + this.hs(rH) + this.hs(gH) + this.hs(bH);
};

/**
 * Converts an RGB color value to HSL. Conversion formula adapted from
 * http://en.wikipedia.org/wiki/HSL_color_space. Assumes r, g, and b are
 * contained in the set [0, 255] and returns h, s, and l in the set [0, 1].4343
 * 
 * @param Number
 *            r The red color value
 * @param Number
 *            g The green color value
 * @param Number
 *            b The blue color value
 * @return Array The HSL representation
 */
Color.prototype.hsl = function() {
	var r = this.r / 255;
	var g = this.g / 255;
	var b = this.b / 255;
	var max = Math.max(r, g, b), min = Math.min(r, g, b);
	var h, s, l = (max + min) / 2;

	if (max === min) {
		h = s = 0; // achromatic
	} else {
		var d = max - min;
		s = l > 0.5 ? d / (2 - max - min) : d / (max + min);
		switch (max) {
		case r:
			h = (g - b) / d + (g < b ? 6 : 0);
			break;
		case g:
			h = (b - r) / d + 2;
			break;
		case b:
			h = (r - g) / d + 4;
			break;
		}
		h /= 6;
	}

	return [ h, s, l ];
};

/**
 * Converts an HSL color value to RGB. Conversion formula adapted from
 * http://en.wikipedia.org/wiki/HSL_color_space. Assumes h, s, and l are
 * contained in the set [0, 1] and returns r, g, and b in the set [0, 255].
 * 
 * @param Number
 *            h The hue
 * @param Number
 *            s The saturation
 * @param Number
 *            l The lightness
 * @return Array The RGB representation
 */
Color.prototype.hslToRgb = function(h, s, l) {
	function hue2rgb(p, q, t) {
		if (t < 0) {
			t += 1;
		}
		if (t > 1) {
			t -= 1;
		}
		if (t < 1 / 6) {
			return p + (q - p) * 6 * t;
		}
		if (t < 1 / 2) {
			return q;
		}
		if (t < 2 / 3) {
			return p + (q - p) * (2 / 3 - t) * 6;
		}
		return p;
	}

	var r, g, b;

	if (s === 0) {
		r = g = b = l; // achromatic
	} else {
		var q = l < 0.5 ? l * (1 + s) : l + s - l * s;
		var p = 2 * l - q;
		r = hue2rgb(p, q, h + 1 / 3);
		g = hue2rgb(p, q, h);
		b = hue2rgb(p, q, h - 1 / 3);
	}

	return [ r * 255, g * 255, b * 255 ];
};

/**
 * Converts an RGB color value to HSV. Conversion formula adapted from
 * http://en.wikipedia.org/wiki/HSV_color_space. Assumes r, g, and b are
 * contained in the set [0, 255] and returns h, s, and v in the set [0, 1].
 * 
 * @param Number
 *            r The red color value
 * @param Number
 *            g The green color value
 * @param Number
 *            b The blue color value
 * @return Array The HSV representation
 */
Color.prototype.hsv = function() {
	var r = this.r / 255;
	var g = this.g / 255;
	var b = this.b / 255;
	var max = Math.max(r, g, b), min = Math.min(r, g, b);
	var h, s, v = max;

	var d = max - min;
	s = max === 0 ? 0 : d / max;

	if (max === min) {
		h = 0; // achromatic
	} else {
		switch (max) {
		case r:
			h = (g - b) / d + (g < b ? 6 : 0);
			break;
		case g:
			h = (b - r) / d + 2;
			break;
		case b:
			h = (r - g) / d + 4;
			break;
		}
		h /= 6;
	}

	return [ h, s, v ];
};

/**
 * Converts an HSV color value to RGB. Conversion formula adapted from
 * http://en.wikipedia.org/wiki/HSV_color_space. Assumes h, s, and v are
 * contained in the set [0, 1] and returns r, g, and b in the set [0, 255].
 * 
 * @param Number
 *            h The hue
 * @param Number
 *            s The saturation
 * @param Number
 *            v The value
 * @return Array The RGB representation
 */
Color.prototype.hsvToRgb = function(h, s, v) {
	var r, g, b;

	var i = Math.floor(h * 6);
	var f = h * 6 - i;
	var p = v * (1 - s);
	var q = v * (1 - f * s);
	var t = v * (1 - (1 - f) * s);

	switch (i % 6) {
	case 0:
		r = v;
		g = t;
		b = p;
		break;
	case 1:
		r = q;
		g = v;
		b = p;
		break;
	case 2:
		r = p;
		g = v;
		b = t;
		break;
	case 3:
		r = p;
		g = q;
		b = v;
		break;
	case 4:
		r = t;
		g = p;
		b = v;
		break;
	case 5:
		r = v;
		g = p;
		b = q;
		break;
	}

	return [ r * 255, g * 255, b * 255 ];
};

/**
 * Provide
 */
Color.prototype.lightColor = function() {
	var hslArray = this.hsl();
	var h = Number(hslArray[0]);
	var s = Number(hslArray[1]) * this.Desaturated;
	var l = this.Luminosity;
	var desA = this.hslToRgb(h, s, l);
	return new Color(desA[0], desA[1], desA[2]);
};

// ====================================================================================
// BZPage's methods

function BZPage(doc) {
    
}

/**
 * Select option with given label on the <SELECT> element with given id.
 * 
 * Also execute change HTMLEvent, so that the form behaves accordingly.
 * 
 * @param id
 * @param label
 * @return none
 * 
 * FIXME bugzilla-comments version has this signature:
 * selectOption = function selectOption(select, value) {
       let doc = select[0].ownerDocument;
	   select.val(value);
 */
BZPage.prototype.selectOption = function(id, label) {
	var sel = this.doc.getElementById(id);
	var options = Array.filter(sel.getElementsByTagName("option"), function(x) {
		return x.textContent.trim() == label;
	});
	theOption = options.length ? options[0] : [];
	if (theOption) {
		theOption.selected = true;
		var intEvent = this.doc.createEvent("HTMLEvents");
		intEvent.initEvent("change", true, true);
		theOption.dispatchEvent(intEvent);
	}
};

/**
 * Send mouse click to the specified element
 * 
 * @param element
 *            where to send mouseclick to
 * @return None
 * 
 * FIXME depreceated version from bugzilla-comments
   hlpr.clickElement = function clickElement(element) {
	let doc = element[0].ownerDocument;
    ...
	element[0].dispatchEvent(e);
 */
BZPage.prototype.clickMouse = function(target) {
	var localEvent = this.doc.createEvent("MouseEvents");
	localEvent.initMouseEvent("click", true, true, this.doc.defaultView, 0, 0,
			0, 0, 0, false, false, false, false, 0, null);
	target.dispatchEvent(localEvent);
};

/**
 * format date to be in ISO format (just day part)
 * 
 * @param date
 * @return string with the formatted date
 */
BZPage.prototype.getISODate = function (dateStr) {
	function pad(n) {
		return n < 10 ? '0' + n : n;
	}
	var date = new Date(dateStr);
	return date.getFullYear() + '-' + pad(date.getMonth() + 1) + '-'
			+ pad(date.getDate());
};

/**
 * select element of the array where regexp in the first element matches second
 * parameter of this function
 * 
 * @param list
 *            array with regexps and return values
 * @param chosingMark
 *            string by which the element of array is to be matched
 * @return string chosen element
 */
BZPage.prototype.filterByRegexp = function(list, chosingMark) {
	var chosenPair = [];
	if (list.length > 0) {
		chosenPair = list.filter(function(pair) {
			return new RegExp(pair.regexp, "i").test(chosingMark);
		});
	}
	if (chosenPair.length > 0) {
		return chosenPair[0].addr.trim();
	} else {
		return "";
	}
};

/**
 * Add text to the text box (comment box or status whiteboard)
 * 
 * @param id
 *            string with the id of the element
 * @param string2BAdded
 *            string to be added to the comment box
 * 
 * @return none
 */
BZPage.prototype.addTextToTextBox = function(id, string2BAdded) {
	var textBox = this.doc.getElementById(id);
	var separator = ", ";
	if (textBox.tagName.toLowerCase() === "textarea") {
		separator = "\n\n";
	} else {
		// don't add string if it is already there
		if (textBox.value.indexOf(string2BAdded) != -1) {
			return;
		}
	}

	// don't remove the current content of the comment box,
	// just behave accordingly
	if (textBox.value.length > 0) {
		textBox.value = textBox.value.trim() + separator;
	}
	textBox.value = textBox.value + string2BAdded;
};

/**
 * Add new keyword among the keywords.
 * 
 * @param str
 *            string with the new keyword
 * @return none
 * 
 * Checks for the existing keywords.
 */
BZPage.prototype.addKeyword = function(str) {
	this.addTextToTextBox("keywords", str);
};

/**
 * generalized hasKeyword ... search in the value of the box with given id
 * 
 * @param id
 *            String with ID of the element we want to check
 * @param str
 *            String to be searched for
 * @return Boolean found?
 */
BZPage.prototype.idContainsWord = function(id, str) {
	try {
		var kwd = this.doc.getElementById(id).value;
	} catch (e) {
		// For those who don't have particular element at all or if it is empty
		return false;
	}
	console.log("id = " + id + ", kwd = " + kwd.trim());
	return (kwd.trim().indexOf(str) != -1);
};

/**
 * Check for the presence of a keyword
 * 
 * @param str
 *            string with the keyword
 * @return Boolean
 */
BZPage.prototype.hasKeyword = function(str) {
	return (this.idContainsWord('keywords', str));
};

/**
 * Set additional keyword if it isn't there
 * 
 * @param str
 *            string with the keyword
 * @return none
 */
BZPage.prototype.setKeyword = function(str) {
	this.addTextToTextBox('keywords', str);
};

BZPage.prototype.getOptionValue = function(id) {
	// Some special bugs don't have version for example
	try {
		return this.doc.getElementById(id).value;
	} catch (e) {
		console.error("Failed to find element with id = " + id);
		return "#NA";
	}
};

/**
 * Generic function to add new button to the page. Actually copies new button
 * from the old one (in order to have the same look-and-feel, etc.
 * 
 * @param originalLocation
 *            object after which the new button will be added
 * @param newId
 *            string with the id of the new button; has to be unique in whole
 *            page
 * @param newLabel
 *            string with the label which will be shown to user
 * @param commentString
 *            string with comment to be added to the comment box
 * @param nState
 *            string with the new state bug should switch to (see
 *            generalPurposeCureForAllDisease function for details)
 * @param secPar
 *            string with second parameter for generalPurposeForAllDisease
 * @param doSubmit
 *            bool optional whether the button should submit whole page (default
 *            true)
 * 
 * @return none
 */
BZPage.prototype.addNewButton = function(originalLocation, newId, newLabel,
		commentString, nState, secPar, doSubmit, after) {
	var that = this;
	var commStr = "";
	if (doSubmit === undefined) { // missing optional argument
		doSubmit = false;
	}
	if (after === undefined) { // missing optional argument
		after = false;
	}
	if (msgStrs[commentString]) {
		commStr = msgStrs[commentString];
	}
	var newButton = this.doc.createElement("input");
	newButton.setAttribute("id", newId);
	if (doSubmit) {
		newButton.setAttribute("type", "submit");
	} else {
		newButton.setAttribute("type", "button");
	}
	newButton.value = newLabel;
	newButton.addEventListener("click", function(evt) {
		that.generalPurposeCureForAllDisease(commStr, nState, secPar);
	}, false);

	if (after) {
		originalLocation.parentNode.insertBefore(newButton,
				originalLocation.nextSibling);
		originalLocation.parentNode.insertBefore(this.doc
				.createTextNode("\u00A0"), newButton);
	} else {
		originalLocation.parentNode.insertBefore(newButton, originalLocation);
		originalLocation.parentNode.insertBefore(this.doc
				.createTextNode("\u00A0"), originalLocation);
	}
};

/**
 * Get login of the currently logged-in user.
 *
 * @return String with the login name of the currently logged-in user
 */
BZPage.prototype.getLogin = function () {
    var lastLIElement = this.doc.querySelector("#header ul.links li:last-of-type");
    console.log("Testing element:\n"+ lastLIElement);
    console.log("Testing element.textContent:\n"+ lastLIElement.textContent);
	var loginArr = lastLIElement.textContent.split("\n");
	console.log("loginArr = " + loginArr.toSource());
	var loginStr = loginArr[loginArr.length - 1].trim();
	console.log("loginStr = " + loginStr);
	return loginStr;
}

// ====================================================================================
// MozillaBugzilla object

MozillaBugzilla = function () {
	
};
MozillaBugzilla.prototype = new BZPage();
MozillaBugzilla.prototype.constructor = MozillaBugzilla;

// ====================================================================================
// RHBugzillaPage object

RHBugzillaPage = function(doc) {
	// For identification of graphics card
	const manuChipStrs = [ [ "ATI Radeon", "ATI", "1002" ],
			[ "ATI Mobility Radeon", "ATI", "1002" ],
			[ "Intel Corporation", "INTEL", "8086" ], [ "NVIDIA", "NV", "10de" ] ];
	
	// http://en.wikipedia.org/wiki/HSL_color_space
	// when only the value of S is changed
	// stupido!!! the string is value in hex for each color
	this.RHColor = new Color(158, 41, 43); // RGB 158, 41, 43; HSL 359, 1, 39
	this.FedoraColor = new Color(0, 40, 103); // RGB 0, 40, 103; HSL 359, 1, 39
	this.RawhideColor = new Color(0, 119, 0); // or "green", or RGB 0, 119, 0, or
												// HSL
	// 120, 0, 23
	this.RHITColor = new Color(102, 0, 102); // RGB 102, 0, 102; HSL 300, 0, 20
	this.SalmonPink = new Color(255, 224, 176); // RGB 255, 224, 176; HSL 36, 2,
													// 85
	this.ReporterColor = new Color(255, 255, 166); // RGB 255, 255, 166; HSL 60, 2,
													// 83
	this.EmptyLogsColor = new Color(0, 255, 0);
	this.FullLogsColor = this.FedoraColor;
	// END OF CONSTANTS
		
	this.doc = doc;
	var that = this;
	this.originalButton = this.doc.getElementById("commit");
    
    this.login = this.getLogin();

	if (myStorage.BZpassword) {
		this.password = myStorage.BZpassword;
	} else {
		var prompts = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
				.getService(Components.interfaces.nsIPromptService);
		var password = {
			value : ""
		}; // default the password to pass
		var check = {
			value : true
		}; // default the checkbox to true
		var result = prompts.promptPassword(null, "Title", "Enter password:",
				password, null, check);
		// result is true if OK was pressed, false if cancel was pressed.
		// password.value is
		// set if OK was pressed. The checkbox is not displayed.
		if (result) {
			this.password = password.value;
			myStorage.BZpassword = this.password;
			jetpack.storage.simple.sync();
		}
	}

	var bugNoTitle = this.doc.querySelector("#title > p").textContent.trim();
	this.bugNo = new RegExp("[0-9]+").exec(bugNoTitle)[0];

	this.reporter = this.getReporter();
	this.product = this.getOptionValue("product");
	this.component = this.getOptionValue("component");
	this.version = this.getVersion();
	this.title = this.doc.getElementById("short_desc_nonedit_display").textContent;
	var ITbutton = this.doc.getElementById("cf_issuetracker");
	this.its = ITbutton ? ITbutton.value.trim() : "";
	this.CCList = Array.map(this.doc.getElementById("cc"), function(item) {
		return item.value;
	});
	// TODO be careful about this, seems breaking for non-RH BugZappers,
	// but I cannot see why
	this.owner = this.doc.getElementById("bz_assignee_edit_container")
			.getElementsByClassName("fn")[0].textContent;
	this.defaultAssignee = this.filterByRegexp(defAssigneeList, this.component)
			.toLowerCase();
	this.maintCCAddr =  this.filterByRegexp(AddrArray, this.component).toLowerCase();

	this.XorgLogAttList = [];
	this.XorgLogAttListIndex = 0;
	this.attachments = [];
	this.reqCounter = 0;
	var atts = this.doc.getElementById("attachment_table")
			.getElementsByTagName("tr");
	for ( var i = 1, ii = atts.length - 1; i < ii; i++) {
		this.attachments.push(this.parseAttachmentLine(atts[i]));
	}

	var badAttachments = this.attachments.filter(function(att, idx, arr) {
		return (hlpr.isInList(att[2], badMIMEArray));
	});

	if (badAttachments.length > 0) {
		var titleElement = this.doc
				.getElementsByClassName("bz_alias_short_desc_container")[0];
		titleElement.style.backgroundColor = "olive";
		titleElement.appendChild(this.createFixAllButton(badAttachments));
		badAttachments.forEach(function(x, i, a) {
			this.addTextLink(x);
		}, this);
	}

	// Dig out backtrace
	this.btSnippet = "";

	console.log("parseAbrtBacktraces = " + parseAbrtBacktraces);
	if (parseAbrtBacktraces && AbrtRE.test(this.title)) {

		var notedLabel = this.doc.querySelector("label[for='newcc']");
		while (notedLabel.firstChild) {
			var node = notedLabel.removeChild(notedLabel.firstChild);
			notedLabel.parentNode.insertBefore(node, notedLabel);
		}
		notedLabel.parentNode.removeChild(notedLabel);

		var mainTitle = this.doc
				.getElementsByClassName("bz_alias_short_desc_container")[0];
		var abrtButton = this.doc.createElement("a");
		abrtButton.setAttribute("accesskey", "a");
		abrtButton.setAttribute("href", abrtQueryURL);
		abrtButton.textContent = "Abrt bugs";
		mainTitle.appendChild(abrtButton);

		if (this.idContainsWord("cf_devel_whiteboard", 'btparsed')) {
			this.addTextToTextBox('status_whiteboard', 'btparsed');
		}

		if (!(this.isTriaged() || this.idContainsWord("status_whiteboard",
				'btparsed'))) {
			var btAttachments = this.attachments
					.filter(function(att, idx, arr) {
						return (/backtrace/.test(att[0]));
					});
			// TODO we need to go through all backtrace attachments, but
			// just the first one will do for now, we would need to do async
			// parsing
			btAttachments.forEach(function(x) {
				attURL = "https://bugzilla.redhat.com/attachment.cgi?id="
						+ x[1];
				console.log("attURL = " + attURL);
				console.log("btSnippet = " + this.btSnippet);
				if (!this.btSnippet) {
					var btRaw = hlpr.loadText(attURL, function(ret) {
						this.btSnippet = this.parseBacktrace(ret);
						if (this.btSnippet) {
							this.addTextToTextBox("comment", this.btSnippet);
							this.addTextToTextBox("status_whiteboard",
									"btparsed");
						}
					}, this);
				}
			}, this);
		}
	}

	// Take care of signature for Fedora bugzappers
	if (signatureFedoraString.length > 0) {
		this.doc.forms.namedItem("changeform").addEventListener("submit",
				function() {
					that.addTextToTextBox("comment", signatureFedoraString);
				}, false);
	}

	this.setBranding();
	this.checkComments();
	this.buildButtons(topRow, bottomRow);

	// UI for the customization JSON URL
	var additionalButtons = this.doc.getElementById("bugzilla-body")
			.getElementsByClassName("related_actions")[0];
	var customJSONURLUI = this.doc.createElement("li");
	customJSONURLUI.innerHTML = "\u00A0-\u00A0<a href='#' id='customJSONbutton'>"
			+ "BugZap config</a>";
	additionalButtons.appendChild(customJSONURLUI);
	this.doc.getElementById("customJSONbutton").addEventListener(
			"click",
			function() {
				var newURL = jetpack.tabs.focused.contentWindow
						.prompt("URL for your JSON customization file");
				if (newURL) {
					myStorage.JSONURL = newURL;
					jetpack.storage.simple.sync();
					jetpack.tabs.focused.contentWindow.location.reload();
				}
			}, false);

	// set default assignee on change of the component
	this.doc.getElementById("component").addEventListener(
			"change",
			function() {
				that.component = that.getOptionValue("component");
				that
						.changeOwner(that.filterByRegexp(defAssigneeList,
								that.component).toLowerCase());
			}, false);

	// offline-capable submit
	this.doc.forms.namedItem("changeform").addEventListener('submit',
			function(evt) {
				that.submitCallback.call(that, evt);
			}, false);

	// logging all submits for timesheet
	console.log("logSubmits = " + logSubmits);
	if (logSubmits) {
		this.doc.forms.namedItem("changeform").addEventListener("submit",
				function(evt) {
					if (that.addLogRecord() === null) {
						// FIXME doesn't work ... still submitting'
				evt.stopPropagation();
				evt.preventDefault();
			}
		}, false);

		var generateTimeSheetUI = this.doc.createElement("li");
		generateTimeSheetUI.innerHTML = "\u00A0-\u00A0<a href='#' id='generateTSButton'>"
				+ "Generate timesheet</a>";
		additionalButtons.appendChild(generateTimeSheetUI);
		this.doc.getElementById("generateTSButton").addEventListener(
				"click",
				function(evt) {
					hlpr.createBlankPage.call(that, "TimeSheet",
							that.generateTimeSheet);
					evt.stopPropagation();
					evt.preventDefault();
				}, false);

		var clearLogsUI = this.doc.createElement("li");
		clearLogsUI.innerHTML = "\u00A0-\u00A0<a href='#' id='clearLogs'>"
				+ "Clear logs</a>";
		additionalButtons.appendChild(clearLogsUI);
		var clearLogAElem = this.doc.getElementById("clearLogs");
		clearLogAElem.addEventListener("click", function() {
			myStorage.logs = {};
			jetpack.storage.simple.sync();
			this.style.color = that.EmptyLogsColor;
			clearLogAElem.style.fontWeight = "normal";
			console.log("mystorage.logs wiped out!");
		}, false);

		if (!myStorage.logs) {
			console.log("No myStorage.logs defined!");
			myStorage.logs = {};
		}

		if (myStorage.logs) {
			clearLogAElem.style.color = this.FullLogsColor;
			clearLogAElem.style.fontWeight = "bolder";
		} else {
			clearLogAElem.style.color = this.EmptyLogsColor;
			clearLogAElem.style.fontWeight = "normal";
		}
	}
} // END OF RHBugzillaPage CONSTRUCTOR

RHBugzillaPage.prototype = new BZPage();
RHBugzillaPage.prototype.constructor = RHBugzillaPage;

/* Offline supporting functions */
/**
 * 
 * @todo FIXME this probably makes a closure and a memory leak name='changeform'
 *       investigate
 *       https://developer.mozilla.org/en/How_to_Turn_Off_Form_Autocompletion
 * 
 * <form method="post" action="process_bug.cgi" autocomplete="off">
 * 
 * Reading
 * http://www.w3.org/TR/1999/REC-html401-19991224/interact/forms.html#h-17.13
 * random notes: - 17.13.3 provides all steps necessary - enctype !=
 * application/x-www-form-urlencoded => SHOULD fails (no further questions
 * needed) - http://www.w3.org/MarkUp/html-spec/html-spec_8.html#SEC8.2.1. is
 * nice explanation (albeit quite dated) - on multiple values
 * http://www.w3.org/TR/1999/REC-html401-19991224/interact/forms.html#h-17.6.1 -
 * příliš jednoduché
 * http://www.innovation.ch/java/HTTPClient/emulating_forms.html -
 */
RHBugzillaPage.prototype.serializeForm = function(form) {
	var serialForm = {
		dataOut : "",
		name : form.name,
		method : form.method,
		acceptCharset : form.acceptCharset,
		action : form.action, // TODO shouldn't we get a non-relative URL?
		enctype : form.enctype,
		cookie : this.doc.cookie,
		autocomplete : form.getAttribute("autocomplete"),
		bugNo : this.bugNo
	};

	function genURIElement(sName, sValue) {
		return encodeURIComponent(sName) + "=" + encodeURIComponent(sValue);
	}

	/**
	 * @param o
	 *            control to be serialized
	 * @return String with the serialized control
	 */
	function serializeControl(element) {
		var val = element.value;
		// console.log("val.toSource() = " + val.toSource());
		/*
		 * on HTMLSelectElement we have an attribute 'type' of type DOMString,
		 * readonly The type of this form control. This is the string
		 * "select-multiple" when the multiple attribute is true and the string
		 * "select-one" when false.
		 */
		if ((val == null) || (val == undefined) || (val == "")) {
			return;
		} else if (val instanceof Array) {
			return val.map(function(x) {
				return genURIElement(element.name, x.value);
			}).join("&");
		} else if (val instanceof String) {
			return genURIElement(element.name, val);
		} else { // assume HTMLCollection
			return Array.map(val, function(x) {
				return genURIElement(element.name, x.value);
			}).join("&");
		}
	}

	serialForm.dataOut = Array
			.filter(
					form.elements,
					function(el) {
						return !el.disabled
								&& el.name
								&&
								// FIXME shouldn't I just add && el.value here?
								(el.checked
										|| /select|textarea/i.test(el.nodeName) || /text|hidden|password|search/i
										.test(el.type));
					}).map(serializeControl).join("&");
	return serialForm;
};

RHBugzillaPage.prototype.submitCallback = function(evt) {
	console.log("Submit Callback!");
	if (jetpack.__parent__.navigator.onLine) {
		var serForm = this
				.serializeForm(jetpack.tabs.focused.contentWindow.document.forms
						.namedItem("changeform"));
		console.log("serForm:\n" + serForm.toSource());
	} else {
		var serForm = this
				.serializeForm(jetpack.tabs.focused.contentWindow.document.forms
						.namedItem("changeform"));
		myStorage.forms[this.bugNo] = serForm;
		evt.stopPropagation();
		evt.preventDefault();
	}
};

/**
 * 
 * 
 * Yes, this is correct, this is NOT method of RHBugzillaPage!
 */
function onlineCallback() {
	function deserializeAndSend(formData) {
		// FIXME notImplemented
		// is it enough to just
		// run XMLHttpRequest? Probably yes, this is just a form
		// and this is just a HTTP request
		// it is probably better to get already processed
		// application/x-www-form-urlencoded
		// see http://htmlhelp.com/reference/html40/forms/form.html for details
		// and also https://developer.mozilla.org/en/AJAX/Getting_Started
		// what's?
		// https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference\
		// /Global_Functions/encodeURI & co.
		// this seems to be also interesting
		// https://developer.mozilla.org/en/Code_snippets/Post_data_to_window
		console.error("Sending bugs not implemented yet!");
		return ""; // FIXME check other HTTP headers to be set

		var bugID = formData.bugNo;
		var req = new XMLHttpRequest();
		req.open("POST", formData.action, true);
		// FIXME co očekávám za odpověď? req.overrideMimeType("text/xml");
		// * Accept-Encoding
		// * Accept-Language
		// * Accept (MIME types)
		req.setRequestHeader("Connection", "keep-alive");
		req.setRequestHeader("Keep-Alive", 300);
		req.setRequestHeader("Content-Type", formData.enctype);
		req.setRequestHeader("Referer", bugURL + bugID);
		req.setRequestHeader("Accept-Charset", formData.acceptCharset);
		req.setRequestHeader("Cookie", formData.cookie);
		req.onreadystatechange = function(aEvt) {
			if (req.readyState == 4) {
				if (req.status == 200) {
					console.log("Sent form for bug " + bugID);
					delete myStorage.forms[bugID];
				} else {
					console.error("Sending form for bug " + bugID + "failed!");
				}
			}
		};
		req.send(formData.data);
	}

	if (myStorage.forms.length > 0) {
		myStorage.forms.forEach(function(x) {
			deserializeAndSend(x);
		});
	}
}

/* Bugzilla functions. */

/**
 * Get the current email of the reporter of the bug.
 * 
 * @return string
 */
RHBugzillaPage.prototype.getReporter = function() {
	return this.doc
			.querySelector("#bz_show_bug_column_2 > table .vcard:first-of-type > a").textContent;
};

/**
 * Get the current version of the Fedora release ... even if changed meanwhile
 * by bug triager.
 * 
 * @return string (integer for released Fedora, float for RHEL, rawhide)
 */
RHBugzillaPage.prototype.getVersion = function() {
	var verStr = this.getOptionValue("version").toLowerCase();
	var verNo = 0;
	if (/rawhide/.test(verStr)) {
		verNo = 999;
	} else {
		verNo = Number(verStr);
	}
	return verNo;
};

RHBugzillaPage.prototype.commentsWalker = function(fce) {
	var comments = this.doc.getElementById("comments").getElementsByClassName(
			"bz_comment");
	Array.forEach(comments, function(item) {
		fce(item);
	}, this);
};

/**
 * Set background color of all comments made by reporter in ReporterColor color
 * 
 */
RHBugzillaPage.prototype.checkComments = function() {
	var that = this;
	this.commentsWalker(function(x) {
		var email = x.getElementsByClassName("vcard")[0]
				.getElementsByTagName("a")[0].textContent;
		if (new RegExp(that.reporter).test(email)) {
			x.style.backgroundColor = that.ReporterColor.toString();
		}
	});
};

RHBugzillaPage.prototype.collectComments = function() {
	var outStr = "";
	this.commentsWalker(function(x) {
		outStr += x.getElementsByTagName("pre")[0].textContent + "\n";
	});
	return outStr.trim();
};

/**
 * Is this bug a RHEL bug?
 * 
 * @return Boolean true if it is a RHEL bug
 */
RHBugzillaPage.prototype.isRHEL = function() {
	return (/Red Hat Enterprise Linux/).test(this.product);
};

/**
 * Find out whether the bug is needed an attention of bugZappers
 * 
 * @return Boolean whether the bug has been triaged or not
 */
RHBugzillaPage.prototype.isTriaged = function() {
	// First excceptions
	if (this.version > 7 && this.version < 13) {
		return this.doc.getElementById("bug_status").value.toUpperCase() !== "NEW";
	} else { // and then the rule
		return this.hasKeyword("Triaged");
	}
};

/**
 * Set branding colours to easily distinguish between Fedora and RHEL bugs
 * 
 * @param brand
 *            string with product of the current bug
 * @param version
 *            string with the version of the bug
 * @param its
 *            string with the IsueTracker numbers
 * @return none
 * 
 */
RHBugzillaPage.prototype.setBranding = function() {
	var brandColor = {};
	var TriagedColor = {};

	if (this.isRHEL()) {
		if (this.its && (this.its.length > 0)) {
			brandColor = this.RHITColor;
		} else {
			brandColor = this.RHColor;
		}
	} else if (new RegExp("Fedora").test(this.product)) {
		if (this.version == 999) {
			brandColor = this.RawhideColor;
		} else {
			brandColor = this.FedoraColor;
		}
	}

	// Comment each of the following lines to get only partial branding
	this.doc.getElementsByTagName("body")[0].style.background = brandColor
			.toString()
			+ " none";
	this.doc.getElementById("titles").style.background = brandColor.toString()
			+ " none";

	// Remove "Bug" from the title of the bug page, so we have more space with
	// plenty of tabs
	var titleElem = this.doc.getElementsByTagName("title")[0];
	titleElem.textContent = titleElem.textContent.slice(4);
	var bodyTitleParent = this.doc.getElementById("summary_alias_container").parentNode;
	var bodyTitleElem = bodyTitleParent.getElementsByTagName("b")[0];
	bodyTitleElem.textContent = bodyTitleElem.textContent.slice(4);

	// Make background-color of the body of bug salmon pink
	// for security bugs.
	if (this.hasKeyword("Security")) {
		this.doc.getElementById("bugzilla-body").style.background = SalmonPink
				.toString() + ' none';
	}

	// Make it visible whether the bug has been triaged
	if (this.isTriaged()) {
		this.doc.getElementById("bz_field_status").style.background = brandColor
				.lightColor().toString()
				+ " none";
	}

	// we should make visible whether maintCCAddr is in CCList
	if (hlpr.isInList(this.maintCCAddr, this.CCList)) {
		var ccEditBoxElem = this.doc.getElementById("cc_edit_area_showhide");
		// ccEditBoxElem.textContent = "*"+ccEditBoxElem.textContent;
		ccEditBoxElem.style.color = "navy";
		ccEditBoxElem.style.fontWeight = "bolder";
		ccEditBoxElem.style.textDecoration = "underline";
	}

	// mark suspicious components
	var compElems;
	if (suspiciousComponents
			&& hlpr.isInList(this.component, suspiciousComponents)
			&& (compElems = this.doc
					.getElementById("bz_component_edit_container"))) {
		compElems.style.background = "red none";
	}
};

/**
 * Given line to be parsed, find out which chipset it is and fill in the
 * whiteboard
 * 
 * @param iLine
 *            string with the whole unparsed "interesting line"
 * @param driverStr
 *            string with the driver name
 * @return None
 */
RHBugzillaPage.prototype.fillInWhiteBoard = function(iLine, driverStr) {
	var that = this;
	
	function groupIDs(manStr, cardStrID) {
		var outStr = that.filterByRegexp(chipIDsGroupings, manStr + "," + cardStrID);
		if (outStr.length === 0) {
			outStr = "UNGROUPED_" + manStr + "/" + cardStrID;
		}
		return outStr;
	}
	;

	/**
	 * Given PCI IDs for manufacturer and card ID return chipset string
	 * 
	 * @param manufacturerNo
	 *            string with manufacturer PCI ID
	 * @param cardNo
	 *            string with card PCI ID
	 * 
	 * @return array with chip string and optinoal variants
	 */
	function checkChipStringFromID(manufacturerNo, cardNo) {
		var soughtID = (manufacturerNo + "," + cardNo).toUpperCase();
		var outList = PCI_ID_Array[soughtID];
		if (outList) {
			return outList;
		} else {
			return "";
		}
	}
	;

	var outStr = "";
	var cardIDStr = "";
	var cardIDArr = [];

	chipSwitchboard: if (driverStr === "RADEON") {
		var cardID = iLine.replace(ATIgetIDRE, "$1");
		cardIDArr = checkChipStringFromID("1002", cardID);
		if (cardIDArr.length > 0) {
			cardIDStr = cardIDArr[0];
			if (cardIDArr[1]) {
				optionStr = cardIDArr[1];
				outStr = groupIDs(driverStr, cardIDStr) + "/" + optionStr;
			} else {
				outStr = groupIDs(driverStr, cardIDStr);
				optionStr = "";
			}
		} else {
			outStr = "**** FULLSTRING: " + iLine;
		}
	} else {
		// Intel Corporation, NVIDIA
		cardIDArr = manuChipStrs.filter(function(el, ind, arr) {
			return new RegExp(el[0], "i").test(iLine);
		});
		if (cardIDArr && (cardIDArr.length > 0)) {
			cardIDArr = cardIDArr[0];
		} else {
			outStr = iLine;
			break chipSwitchboard;
		}
		// cardIDArr [0] = RE, [1] = ("RADEON","INTEL","NOUVEAU"), [2] = manu
		// PCIID
		iLine = iLine.replace(new RegExp(cardIDArr[0], "i")).trim();
		// nVidia developers opted-out from grouping
		if (driverStr === "INTEL") {
			outStr = groupIDs(cardIDArr[1], iLine);
		} else {
			outStr = iLine;
		}
	}
	this.addTextToTextBox("status_whiteboard", ("card_" + outStr).trim());
	this.doc.getElementById("chipmagic").style.display = "none";
};

/**
 * Get attached Xorg.0.log, parse it and find the value of chip. Does not fill
 * the whiteboard itself, just adds button to do so,paramList so that slow
 * XMLHttpRequest is done in advance.
 * 
 * @return None
 */
RHBugzillaPage.prototype.fillInChipMagic = function () {
    var XorgLogURL = "";
    var XorgLogAttID = "";
    var XorgLogFound = false;
    var attURL = "", interestingLine = "";
    var interestingArray = [];


    // Find out Xorg.0.log attachment URL
    this.XorgLogAttList = this.attachments.filter(function (value, index, array) {
        // Xorg.0.log must be text, otherwise we cannot parse it
        return (/[xX].*log/.test(value[0]) && /text/.test(value[2]));
    });
    if (this.XorgLogAttList.length === 0) {
        return;
    }

    XorgLogAttID = this.XorgLogAttList[this.XorgLogAttListIndex][1];
    attURL = "https://bugzilla.redhat.com/attachment.cgi?id="+XorgLogAttID;
    that = this;

    var req = new XMLHttpRequest();
    req.open("GET",attURL,true);
    req.onreadystatechange = function (aEvt) {
        if (req.readyState == 4) {
            if (req.status == 200) {
                var ret = req.responseText;
                var interestingLineArr = ret.split("\n").
                    filter(function (v,i,a) {
                        return ChipsetRE.test(v);
                });
                console.log("interestingLineArr = " + interestingLineArr.toSource());
                if (interestingLineArr.length >0) {
                    interestingArray = ChipsetRE.exec(interestingLineArr[0]);
                    interestingLine = interestingArray[2].
                        replace(/[\s"]+/g," ").trim();
                    var whiteboardInput = that.dok.
                        getElementById("status_whiteboard");
                    that.addNewButton(whiteboardInput,"chipmagic","Fill In",
                        "","CHIPMAGIC",
                        interestingLine+"\t"+interestingArray[1].toUpperCase(),
                        false,true);
                }
            } else {
                throw "Getting attachment " + attURL + "failed!";
            }
        }
    };
    req.send("");

    this.XorgLogAttListIndex++;
};

/**
 * Opens a new tab with a query for the given text in the selected component
 * 
 * @param text
 *            to be searched for
 * @param component
 *            string with the component name (maybe latter regexp?)
 * @param product
 *            (optional) string with the product name
 * @return None
 * 
 */
RHBugzillaPage.prototype.queryInNewTab = function(text, component, product) {
	// Optional parameter
	if (product === undefined) {
		product = this.product;
	}
	var url = "https://bugzilla.redhat.com/buglist.cgi?query_format=advanced";
	if (product) {
		url += "&product=" + product.trim();
	}
	if (component) {
		url += "&field0-0-0=component&type0-0-0=substring&value0-0-0="
				+ component.trim();
	}
	// using more complicated query tables here, because they can be more easily
	// edited
	// for further investigative searches
	if (text) {
		text = encodeURIComponent(text.trim());
		var searchText = "&field1-0-0=longdesc&type1-0-0=substring&value1-0-0="
				+ text
				+ "&field1-0-1=attach_data.thedata&type1-0-1=substring&value1-0-1="
				+ text
				+ "&field1-0-2=status_whiteboard&type1-0-2=substring&value1-0-2="
				+ text;
		url += searchText;
		jetpack.tabs.open(url);
		// Don't do it ... b.m.o is apparently not powerful enough to sustain
		// the weight
		// of the search
		if (false) {
			url = "https://bugzilla.mozilla.org/buglist.cgi?query_format=advanced"
					+ "field0-0-0=product;type0-0-0=regexp;"
					+ "value0-0-0=thunderbird|firefox|xulrunner"
					+ searchText.replace("&", ";");
			jetpack.tabs.open(url);
		}
	}
};

/**
 * Get the text to search for and prepare other things for the real executive
 * function this.queryInNewTab, and run it.
 */
RHBugzillaPage.prototype.queryForSelection = function() {
	var text = jetpack.selection.text;
	if (!text) {
		text = jetpack.clipboard.get();
	}
	if (text) {
		this.queryInNewTab(text, this.component);
	}
};

/**
 * Search simple query in the upstream bugzilla appropriate for the component.
 */
RHBugzillaPage.prototype.queryUpstream = function() {
	var text = jetpack.selection.text;
	if (!text) {
		text = jetpack.clipboard.get();
	}
	if (text) {
		var text = encodeURIComponent(text.trim());
		var url = this.filterByRegexp(queryUpstreamBugsURLArray, this.component);
		jetpack.tabs.open(url + text);
	}
}

/**
 * 
 */
RHBugzillaPage.prototype.sendBugUpstream = function() {
	var url = this.filterByRegexp(newUpstreamBugsURLArray, this
			.getOptionValue("component"));

	var ret = jetpack.tabs.open(url);
	var that = this;
	jetpack.tabs.onReady(function() {
		var otherDoc = ret.contentDocument;
		var otherElems = otherDoc.forms.namedItem("Create").elements;
		otherElems.namedItem("short_desc").value = that.dok
				.getElementById("short_desc_nonedit_display").textContent
				.trim();
		otherElems.namedItem("comment").value = that.collectComments();
		ret.focused();
	});
};

/**
 * Parse the row with the attachment
 * 
 * @param
 * <tr> DOM element to be parsed
 * @return array with string name of the attachment, integer its id number,
 *         string of MIME type, integer of size in kilobytes, and the whole
 *         element itself
 */
RHBugzillaPage.prototype.parseAttachmentLine = function(inElem) {
	var MIMEtype = "";
	var size = 0;

	// Skip over obsolete attachments
	if (inElem.getElementsByClassName("bz_obsolete").length > 0) {
		return ( []);
	}

	// getting name of the attachment
	var attName = inElem.getElementsByTagName("b")[0].textContent.trim();

	var aHrefsArr = inElem.getElementsByTagName("a");
	var aHref = Array.filter(aHrefsArr, function(x) {
		return x.textContent.trim() == "Details";
	})[0];
	var id = parseInt(aHref.getAttribute("href").replace(
			/^.*attachment.cgi\?id=/, ""), 10);

	// getting MIME type and size
	var stringArray = inElem.getElementsByClassName("bz_attach_extra_info")[0].textContent
			.replace(/[\n ()]+/g, " ").trim().split(", ");
	size = parseInt(stringArray[0], 10);
	MIMEtype = stringArray[1].split(" ")[0];

	return [ attName, id, MIMEtype, size, inElem ];
};

/**
 * Check for the presence of a keyword
 * 
 * @param str
 *            string with the keyword
 * @return Boolean
 * 
 */
RHBugzillaPage.prototype.hasKeyword = function(str) {
	var kwd = this.doc.getElementById('keywords').value.trim();
	return (new RegExp(str).test(kwd));
};

/**
 * Add accesskey to the particular element
 * 
 * @param rootElement
 *            element to which the new text object will be attached
 * @param beforeText
 *            text before the accesskey character
 * @param accKey
 *            what will be the accesskey itself
 * @param afterText
 *            text after the accesskey character
 * @return modified element with the fixed accesskey FIXME isn't this closure
 *         and possible memleak?
 */
RHBugzillaPage.prototype.fixElement = function(elem, beforeText, accKey, afterText) {
	elem.setAttribute("accesskey", accKey.toLowerCase());
	elem.innerHTML = beforeText + "<b><u>" + accKey + "</u></b>" + afterText;
	return elem;
};

/**
 * Add XGL to the CC list
 * 
 * @param evt
 *            event which made this function active
 * @return none
 */
RHBugzillaPage.prototype.changeOwner = function(newAssignee) {
	/**
	 * Take care that when changing assignment of the bug, current owner is
	 * added to CC list. Switch off setting to the default assignee
	 */
	var defAssigneeButton;
	if (!hlpr.isInList(newAssignee, this.CCList)) {
		this.doc.getElementById("newcc").textContent = newAssignee;
	}
	if (newAssignee) {
		this.clickMouse(this.doc.getElementById("bz_assignee_edit_action"));
		this.doc.getElementById("assigned_to").value = newAssignee;
		this.doc.getElementById("set_default_assignee").checked = false;
		if (defAssigneeButton = this.doc
				.getElementById("setdefaultassigneebutton")) {
			defAssigneeButton.style.display = "none";
		}
	}
};

/**
 * Set the bug to NEEDINFO state
 * 
 * Working function.
 * 
 * @return none
 */
RHBugzillaPage.prototype.setNeedinfoReporter = function() {
	this.clickMouse(this.doc.getElementById("needinfo"));
	this.selectOption("needinfo_role", "reporter");
};

/**
 * Return string with the ID for the external_id SELECT for external bugzilla
 * 
 * @param URLhostname
 *            string hostname of the external bugzilla
 * @return string with the string for the external_id SELECT
 */
RHBugzillaPage.prototype.getBugzillaName = function(URLhostname) {
	var bugzillaID = "";
	if (hashBugzillaName[URLhostname]) {
		bugzillaID = hashBugzillaName[URLhostname];
	} else {
		bugzillaID = "";
	}
	return bugzillaID;
};

/**
 * Generate URL of the bug on remote bugzilla
 * 
 * @param selectValue
 *            Number which is index of the bugzilla in hashBugzillaWholeURL
 * @param bugID
 *            Number which is bug ID
 * @return string with the URL
 */
RHBugzillaPage.prototype.getWholeURL = function(selectValue, bugID) {
	var returnURL = "";
	if (hashBugzillaWholeURL[selectValue]) {
		returnURL = hashBugzillaWholeURL[selectValue] + bugID;
	} else {
		returnURL = "";
	}
	return returnURL;
};

/**
 * Callback function for the XMLRPC request
 * 
 * @param ret
 *            object with xmlhttprequest response with attributes: + status --
 *            int return code + statusText + responseHeaders + responseText
 */
RHBugzillaPage.prototype.callBack = function(data, textStatus) {
	if (--this.reqCounter <= 0) {
		setTimeout(this.doc.location.reload, 1000);
	}
};

/**
 * The worker function -- call XMLRPC to fix MIME type of the particular
 * attachment
 * 
 * @param id
 *            integer with the attachment id to be fixed
 * @param type
 *            string with the new MIME type, optional defaults to "text/plain"
 * @param email
 *            Boolean whether email should be sent to appropriate person;
 *            option, defaults to false
 * 
 * updateAttachMimeType($data_ref, $username, $password)
 * 
 * Update the attachment mime type of an attachment. The first argument is a
 * data hash containing information on the new MIME type and the attachment id
 * that you want to act on.
 * 
 * $data_ref = { "attach_id" => "<Attachment ID>", # Attachment ID to perform
 * MIME type change on. "mime_type" => "<New MIME Type Value>", # Legal MIME
 * type value that you want to change the attachment to. "nomail" => 0, #
 * OPTIONAL Flag that is either 1 or 0 if you want email to be sent or not for
 * this change };
 * 
 */
RHBugzillaPage.prototype.fixAttachById = function(id, type, email) {
	if (type === undefined) {
		type = "text/plain";
	}
	if (email === undefined) {
		email = false;
	}

	var msg = new XMLRPCMessage("bugzilla.updateAttachMimeType");
	console.log("XML-RPC before:\n"+msg.xml())
	msg.addParameter( {
		'attach_id' : id,
		'mime_type' : type,
		'nomail' : !email
	});
	console.log("XML-RPC message:\n"+msg.xml());
	msg.addParameter(this.login);
	console.log("XML-RPC message:\n"+msg.xml());
	msg.addParameter(this.password);
	console.log("XML-RPC message:\n"+msg.xml());

	var req = new XMLHttpRequest();
	var that = this;
	req.open("POST", XMLRPCurl, true);
	req.overrideMimeType("text/xml");
	req.setRequestHeader("Content-type", "text/xml");
	req.onreadystatechange = function(aEvt) {
		if (req.readyState == 4) {
			if (req.status == 200) {
				console.log("Fixing attachment MIME type success!");
				that.callBack();
			} else {
				console.error("Fixing MIME type attachment failed!");
			}
		}
	};
	req.send(msg.xml());
	this.reqCounter++;
};

// FIXME possibly eliminate this function altogether and
// make it inline?
RHBugzillaPage.prototype.fixAllAttachments = function(list) {
	Array.forEach(list, function(x) {
		this.fixAttachById(x[1]);
	}, this);
};

/**
 * Create a button for fixing all bad attachments.
 * 
 * @param list
 *            Array of all bad attachmentss
 * @return button fixing all bad Attachments
 */
RHBugzillaPage.prototype.createFixAllButton = function(list) {
	if (!XMLRPCMessage) {
		return;
	}
	var that = this;
	var elem = this.doc.createElement("a");
	elem.setAttribute("href", "");
	elem.setAttribute("accesskey", "f");
	elem.innerHTML = "<b>F</b>ix all";
	elem.addEventListener("click", function() {
		that.fixAllAttachments(list);
	}, false);
	return elem;
};

/**
 * Add a link to the bad attachment for fixing it.
 * 
 * @param
 * <TR> DOM jQuery element with a bad attachment
 * @return none
 */
RHBugzillaPage.prototype.addTextLink = function(row) {
	var that = this;
	var elemS = row[4].getElementsByTagName("td");
	var elem = elemS[elemS.length - 1];
	elem.innerHTML += "<br/><a href=''>Text</a>";
	elem.addEventListener("click", function(x) {
		that.fixAttachById(row[1], "text/plain");
	}, false);
};

/**
 * Add information about the upstream bug upstream, and closing it.
 * 
 * @param evt
 *            event which called this handler
 * 
 * @return none
 */
RHBugzillaPage.prototype.addClosingUpstream = function() {
	var refs = this.doc.getElementById("external_bugs_table")
			.getElementsByTagName("tr");
	// that's a bad id, if there is a one. :)
	var inputBox = this.doc.getElementById("inputbox");
	var externalBugID = 0;
	var wholeURL = "";

	// Fix missing ID on the external_id SELECT
	this.doc.getElementsByName("external_id")[0].setAttribute("id",
			"external_id");

	if (inputBox.value.match(/^http.*/)) {
		var helpAElem = this.doc.createElement("a");
		wholeURL = inputBox.value;
		helpAElem.setAttribute("href", wholeURL);
		var paramsArr = helpAElem.search.replace(/^\?/, '').split('&');
		// get ID#
		var params = {}, s = [];
		paramsArr.forEach(function(par, idx, arr) {
			s = par.split('=');
			params[s[0]] = s[1];
		});
		if (params.id) {
			externalBugID = parseInt(params.id, 10);
			inputBox.value = externalBugID;
		}
		// get host and bugzillaName
		var bugzillaName = this.getBugzillaName(helpAElem.hostname);
		this.selectOption("external_id", bugzillaName);
	} else if (!isNaN(inputBox.value)) {
		externalBugID = parseInt(inputBox.value, 10);
		var bugzillaID = this.doc.getElementById("external_id").value;
		wholeURL = this.getWholeURL(bugzillaID, externalBugID);
	} else {
		// no inputBox.value -- maybe there is an external bug from
		// the previous commit?
	}

	// It is not good to close bug as UPSTREAM, if there is no reference
	// to the upstream bug.
	if ((externalBugID > 0) || (refs.length > 2)) {
		this.addTextToTextBox("comment", msgStrs.sentUpstreamString.replace(
				"§§§", wholeURL));
		this.selectOption("bug_status", "CLOSED");
		this.selectOption("resolution", "UPSTREAM");
	} else {
		console.log("No external bug specified among the External References!");
	}
};

/**
 * Insert a row of buttons before the marked element
 * 
 * @param anchor
 *            element before which the row of buttons will be inserted
 * @param array
 *            array of data for buttons to be generated
 * @return none
 */
RHBugzillaPage.prototype.generateToolBar = function(anchor, array) {
	for ( var i = 0; i < array.length; i++) {
		var butt = array[i];
		this.addNewButton(anchor, butt.idx, butt.msg, butt.string, butt.state,
				butt.parameter, butt.submit);
	}
};

/**
 * Generalized function for all actions
 * 
 * @param addString
 *            string to be added as new comment
 * @param nextState
 *            string signifying next state of the bug (whatever is in Bugzilla +
 *            "NEEDINFO" meaning NEEDINFO(Reporter))
 * @param secondParameter
 *            string with label on the subbutton for reason of closing the bug
 * @return none
 */
RHBugzillaPage.prototype.generalPurposeCureForAllDisease = function(addString,
		nextState, secondParameter) {
	var verNo = this.getVersion();

	if (addString.length > 0) {
		this.addTextToTextBox("comment", addString);
	}

	if (nextState === "CLOSED") {
		if (secondParameter === "UPSTREAM") {
			this.addClosingUpstream();
		} else if (secondParameter === "SOMERELEASE") {
			// for RAWHIDE close as RAWHIDE,
			// if active selection -> CURRENTRELEASE
			// and put the release version to
			// "Fixed in Version" textbox
			// otherwise -> NEXTRELEASE
			this.selectOption("bug_status", nextState);
			var text = "";
			if (jetpack.selection.text) {
				text = jetpack.select.text.trim();
			}
			if (text.length > 0) {
				this.selectOption("resolution", "CURRENTRELEASE");
				this.doc.getElementById("cf_fixed_in").value = text;
			} else if (verNo === 999) {
				this.selectOption("resolution", "RAWHIDE");
			} else {
				this.selectOption("resolution", "NEXTRELEASE");
			}
		} else if (secondParameter.length > 0) {
			this.selectOption("bug_status", nextState);
			this.selectOption("resolution", secondParameter);
			return 0;
		} else {
			throw "Missing resolution for CLOSED status.";
		}
	}

	// Now closing bugs is done, what about the rest?
	if (nextState === "NEEDINFO") {
		this.setNeedinfoReporter();
	} else if (nextState === "ADDKEYWORD") {
		if (secondParameter.length === 0) {
			throw "Keyword has to be defined";
		}
		this.addKeyword(secondParameter);
	} else if (nextState === "ASSIGNED") {
		// Now we lie completely, we just set keyword Triaged,
		// this is not just plain ASSIGNED, but
		// modified according to
		// https://fedoraproject.org/wiki/BugZappers/Meetings/Minutes-2009-Oct-27
		// and
		// http://meetbot.fedoraproject.org/fedora-meeting/2009-11-24\
		// /fedora-meeting.2009-11-24-15.11.log.html
		// and
		// http://meetbot.fedoraproject.org/fedora-meeting/2009-11-24\
		// /fedora-meeting.2009-11-24-15.11.log.html
		// for F13 and later, ASSIGNED is "add Triaged keyword" (as well)
		// for <F13 it is "add both" (ASSIGNED status and Triaged keyword)
		if (!hlpr.isInList(this.maintCCAddr, this.CCList)) {
			this.doc.getElementById("newcc").textContent = this.maintCCAddr;
		}
		if ((!this.isRHEL()) && (verNo < TriagedDistro)) {
			this.selectOption("bug_status", nextState);
		}
		this.setKeyword("Triaged");
	} else if (nextState === "QUERYSEL") {
		this.queryForSelection();
	} else if (nextState === "QUERYUP") {
		this.queryUpstream();
	} else if (nextState === "SENDUPSTREAM") {
		this.sendBugUpstream();
	} else if (nextState === "SETDEFASS") {
		if (secondParameter.length > 0) {
			this.changeOwner(secondParameter);
		}
	} else if (nextState === "CHIPMAGIC") {
		var splitArr = secondParameter.split("\t");
		this.fillInWhiteBoard(splitArr[0], splitArr[1]);
	} else if (nextState.length > 0) {
		this.selectOption("bug_status", nextState);
	}

	if (secondParameter === "ADDSELFCC") {
		this.doc.getElementById("addselfcc").checked = true;
	} else if (secondParameter === "NODEFAULTASSIGNEE") {
		this.doc.getElementById("set_default_assignee").removeAttribute(
				"checked");
	}
};

/**
 * 
 */
RHBugzillaPage.prototype.parseBacktrace = function(ret) {
	var splitArray = ret.split("\n");
	var i = 0, ii = splitArray.length;
	var outStr = "", curLine = "", numStr = "";
	var lineCounter = 0, endLineNo = 0;

	while (i < ii) {
		if (signalHandlerRE.test(splitArray[i])) {
			break;
		}
		i++;
	}

	if (i < ii) {
		lineCounter = parseInt(frameNoRE.exec(splitArray[i])[1], 10);
		endLineNo = lineCounter + NumberOfFrames;
		curLine = splitArray[i];
		while ((lineCounter < endLineNo) && (curLine.trim().length > 0)
				&& (i < ii)) {
			outStr += curLine + '\n';
			numStr = frameNoRE.exec(curLine);
			if (numStr) {
				lineCounter = parseInt(numStr[1], 10);
			}
			i++;
			curLine = splitArray[i];
		}
	}
	return outStr;
};

/**
 * Main executable functioning actually building all buttons on the page --
 * separated into function, so that it could be called from onload method of the
 * XMLHttpRequest.
 * 
 * @param jsonList
 *            Array created from JSON
 * @return none
 */
RHBugzillaPage.prototype.buildButtons = function(above, below) {
	// Generate a list of <input> elements in the page
	this.addNewButton(this.doc.getElementById("commit_middle"),
			"changeOwnerbtn", "Mark Triaged", "", "ASSIGNED",
			"NODEFAULTASSIGNEE");

	// THE MAIN BUTTON ROWS
	var commentBox = this.doc.getElementById("comment");
	var brElement = this.doc.createElement("br");
	commentBox.parentNode.normalize();
	commentBox.parentNode.insertBefore(brElement, commentBox);
	// this.generateToolBar(commentBox.previousSibling,above);
	this.generateToolBar(brElement, above);
	this.generateToolBar(this.originalButton, below);

	var commentArea = this.doc.getElementById("comment_status_commit");
	var brElementPlacer = commentArea.getElementsByTagName("br")[0];

	if (queryButtonAvailable || upstreamButtonAvailable) {
		brElementPlacer.parentNode.insertBefore(this.doc.createElement("br"),
				brElementPlacer);
	}

	if (queryButtonAvailable) {
		// Add query search button
		this.addNewButton(brElementPlacer, "newqueryintab", "Query for string",
				"", "QUERYSEL", "", false);
	}
	if (queryUpstreamBugsURLArray) {
		console.log("Adding upstream query search box");
		if (this.filterByRegexp(queryUpstreamBugsURLArray, this.component)) {
			this.addNewButton(brElementPlacer, "upstreamqueryintab",
					"Query upstream", "", "QUERYUP", "", false);
		}
	}
	// Button for upstreaming
	if (upstreamButtonAvailable) {
		this.addNewButton(brElementPlacer, "sendupstream", "Send upstream", "",
				"SENDUPSTREAM", "", false);
	}

	// var brElement2BMoved = this.doc.querySelector("#comment_status_commit
	// br:last-of-type");
	// var brWhereMove = this.doc.getElementsByClassName("status")[0];
	// brWhereMove.parentNode.insertBefore(brElement2BMoved.cloneNode(true),
	// brWhereMove);
	// brElement2BMoved.parentNode.removeChild(brElement2BMoved);

	// TODO Get compiz bugs as well
	if ((chipIDsGroupings.length > 0)
			&& this.maintCCAddr === "xgl-maint@redhat.com") {
		// Add find chip magic button
		var whiteboard_string = this.doc.getElementById("status_whiteboard").value;
		if (!/card_/.test(whiteboard_string)) {
			this.fillInChipMagic();
		}
	}

	// Add setting default assignee
	if ((this.defaultAssignee.length > 0)
			&& (this.defaultAssignee !== this.owner)) {
		this.addNewButton(
				this.doc.getElementById("bz_assignee_edit_container"),
				"setdefaultassigneebutton", "Def. Assignee", "", "SETDEFASS",
				this.defaultAssignee, false, true);
	}
};

RHBugzillaPage.prototype.addLogRecord = function() {
	var rec = {};
	rec.date = new Date();
	rec.bugId = this.bugNo;
	rec.title = this.title;
	var comment = jetpack.tabs.focused.contentWindow.prompt(
			"Enter comments for this comment").trim();
	if (comment.length > 0) {
		rec.comment = comment;
		var recKey = this.getISODate(rec.date) + "+" + rec.bugId;
		var clearLogAElem = this.doc.getElementById("clearLogs");
		clearLogAElem.style.color = this.FullLogsColor;
		clearLogAElem.style.fontWeight = "bolder";
		if (myStorage.logs[recKey]) {
			myStorage.logs[recKey].comment += "<br/>\n" + comment;
		} else {
			myStorage.logs[recKey] = rec;
		}
		jetpack.storage.simple.sync();
	} else if (comment === null) {
		return null;
	}
};

RHBugzillaPage.prototype.timeSheetRecordsPrinter = function(body, records) {
    var that = this;
	// sort the records into temporary array
	var tmpArr = [];

	for ( var i in records) {
		if (records.hasOwnProperty(i)) {
			tmpArr.push( [ i, records[i] ]);
		}
	}
	tmpArr.sort(function(a, b) {
		return a[0] > b[0] ? 1 : -1;
	});

	var currentDay = "";
	// now print the array
	tmpArr
			.forEach(function(rec) {
				var x = rec[1];
				var dayStr = that.getISODate(x.date);
				if (dayStr != currentDay) {
					currentDay = dayStr;
					body.innerHTML += "<hr/><p><strong>" + currentDay
							+ "</strong></p>";
				}
				body.innerHTML += "<p><em><a href='https://bugzilla.redhat.com/show_bug.cgi?id="
						+ x.bugId
						+ "'>Bug "
						+ x.title
						+ "</a>"
						+ " </em>\n<br/>" + x.comment + "</p>";
			});
};

RHBugzillaPage.prototype.generateTimeSheet = function(body) {
	var doc = body.ownerDocument;
	this.timeSheetRecordsPrinter(body, myStorage.logs);
};

// /////////////////////////////////////////////////////////////////////////////

var callback = function(doc) {
	var curPage = new RHBugzillaPage(doc);
};

var options = {};
options.matches = [ "https://bugzilla.redhat.com/show_bug.cgi" ];
jetpack.pageMods.add(callback, options);