~mozillateam/sunbird/ubuntu-0.x

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
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
lightning-sunbird (0.9+nobinonly-0ubuntu1) UNRELEASED; urgency=low

  [ Alexander Sack <asac@ubuntu.com> ]
  * improve update-orig: rule to properly remove.nonbinonly.sh stuff
    - update debian/rules

  [ John Vivirito <gnomefreak@ubuntu.com> ]
  * New upstream release version 0.9
  * debian/patches: Removed bzXXX_calendar_missing_EXTRA_SCRIPTS_install.patch
    - It was applied upstream
  * debian/patches: Added bzXXX_ftbfs_fontconfig.patch to fix FTBFS
  * debian/patches/series: Removed bzXXX_calendar_missing_EXTRA_SCRIPTS_install.patch
  * debian/patches/series: Updated to add bzXXX_ftbfs_fontconfig.patch

 -- Alexander Sack <asac@ubuntu.com>  Mon, 29 Dec 2008 17:52:26 +0100

lightning-sunbird (0.8+nobinonly-0ubuntu1) intrepid; urgency=low

  * remove patches applied upstream
    - drop debian/patches/bz399589_fix_missing_symbol_with_new_nss.patch
    - update debian/patches/series
  * update configure patch
    - update debian/patches/configure-autoconf2-13-reconfigure.patch
  * add missing install:: targets for various calendar js/ files and icons to
    upstream build system
    - update debian/patches/bzXXX_calendar_missing_EXTRA_SCRIPTS_install.patch
    - update debian/patches/series
  * create empty chrome.manifest file in sunbird extension for lightning hook
    to prevent chrome registration failure
    - add debian/patches/bzXXX_calendar_lightning_hook_missing_manifest.patch
    - update debian/patches/series
  * fix sunbird.install debhelper file to include new sunbird extension that
    hooks into lightning and to install all defaults/ files; further the file
    was restructured to improve legibility
    - update debian/sunbird.install

 -- Alexander Sack <asac@ubuntu.com>  Mon, 02 Jun 2008 12:16:31 +0200

lightning-sunbird (0.7+nobinonly-0ubuntu3) hardy; urgency=low

  * debian/sunbird.desktop: Fix desktop-file-validate warnings
    (LP: #194970)

 -- Saïvann Carignan <oxmosys@gmail.com>  Wed, 26 Mar 2008 20:42:59 -0400

lightning-sunbird (0.7+nobinonly-0ubuntu2) hardy; urgency=low

  * fix cairo/gtk2 ftbfs:
    - add debian/patches/bz344818_att264996.patch
    - update debian/patches/configure-autoconf2-13-reconfigure.patch
    - update debian/patches/series
  * fix lintian complains about "maintainer-not-full-name Ubuntu-Mozilla-Team"
    - update debian/control

 -- Alexander Sack <asac@ubuntu.com>  Tue, 04 Dec 2007 15:57:56 +0100

lightning-sunbird (0.7+nobinonly-0ubuntu1) hardy; urgency=low

  * Upstream release 0.7
  * Made use of upstream tarball
  * Full list of changes can be found at: 
    http://weblogs.mozillazine.org/rumblingedge/archives/2007/07/sb_0-7.html
    - Too many to list here.
  * debian/control: Removed ${Source-Version} from depends of sunbird-dev
    and just using sunbird as depend
  * debian/patches/configure-autoconf2-13-reconfigure.patch: Ran
    autoconf2.13 to update patch
  * debian/patches/bz399589_fix_missing_symbol_with_new_nss.patch: Added
    patch to fix FTBFS with error ‘SECAlgorithmIDTemplate’ was not declared
    in this scope"
  * debian/patches/series: Updated for
    bz399589_fix_missing_symbol_with_new_nss.patch
  * Reupload source tarball without binaries (LP: #121734) - sanitized 
    using debian/remove.binonly.sh
  * debian/remove.binonly.sh: add script to strip original tarball from
    binary only cruft.

  [ Alexander Sack ]
  * debian/rules: fix DEBIAN_MOZ_UPSTREAM_APPLICATION.
  * debian/remove.binonly.sh: add script to remove binary only files.

 -- John Vivirito <gnomefreak@ubuntu.com>  Thu, 15 Nov 2007 18:57:23 -0500
 
lightning-sunbird (0.5-0ubuntu4) gutsy; urgency=low

  * debian/rules, debian/control: use don't build lpia with gcc-4.1/g++-4.1
    anymore, but use gcc-4.2/g++-4.2 for all archs now.
  * debian/patches/configure-autoconf2-13-reconfigure.patch: update configure
    patch to enable visibility changes of previous upload.
  * debian/patches/force-no-pragma-visibility-for-gcc-4.2_4.3,
    debian/patches/series: add patch to disable pragma visibility strategy
    to hide symbols. stick to -fvisibility=hidden.

 -- Alexander Sack <asac@ubuntu.com>  Thu, 30 Aug 2007 13:24:42 +0200

lightning-sunbird (0.5-0ubuntu3) gutsy; urgency=low

  * debian/sunbird.postinst: Fixed typo for the post install reminder to
    restart Sunbird, from Sunbirdes to Sunbirds
  * debian/sunbird.desktop: Moved menu item to Office from Internet
  * debian/rules: Added "pref" to --enable-extension config options to
    disable upstreams update choice in Help menu
    [With help from Alexander]
  * debian/sunbird.install: Added debian/tmp/usr/lib/sunbird/defaults
    /autoconfig usr/share/sunbird/defaults due to failure to start after
    install due to change in debian/rules above

 -- John Vivirito <gnomefreak@ubuntu.com>  Mon, 27 Aug 2007 13:47:07 -0400

lightning-sunbird (0.5-0ubuntu2) gutsy; urgency=low

  * bump changelog version to make soyuz happy

 -- Alexander Sack <asac@ubuntu.com>  Thu, 02 Aug 2007 09:26:35 +0000

lightning-sunbird (0.5-0ubuntu1) gutsy; urgency=low

  * debian/control: adding unzip to build-depends
  * debian/control: fixing short summary of summary to refer
    to Calendar instead of "mail client"
  * debian/copyright: add info about
    other-licenses/{7zstub,bsdiff,branding,libart_lgpl}

  [ John Vivirito ]
  * Initial release.
  * Made use of upstream tarball
  * debian/sunbird.desktop: modified .desktop file to reflect sunbird
  * debian/control: Fixed typos changed standalone to stand-alone
  * debian/firefox.manpages: removed for now, not needed
  * debian/sunbird.postinst: removed all code that installs sunbird as an
    alternative for x-www-browser
  * debian/sunbird.prerm: removed all code that installs sunbird as an
    alternative for x-www-browser

 -- Alexander Sack <asac@ubuntu.com>  Thu, 02 Aug 2007 09:26:35 +0000

firefox (2.0.0.4+2-0ubuntu2) gutsy; urgency=low

  * debian/docs, debian/MPL: ship MPL (LP: #119814)
  * drop more patches:
    * debian/patches/ubuntu-look-and-feel-patch.patch: drop patch removes
      File->Import dialog (LP: #28563)
    * debian/patches/series: drop ubuntu-look-and-feel-geometries.patch
      from patch series; remove that patch-file from debian/patches dir
      accordingly
  * drop config tweaks from patchset as they are now shipped in
    distromods extension:
    * debian/patches/disable-default-setting-for-app.update.enabled-and-app.update.auto.patch,
      debian/patches/enable-kerberos-for-https.patch,
      debian/patches/locale-my-matchOS.patch,
      debian/patches/ubuntu-disable-default-browser-check.patch,
      debian/patches/use-intl.properties.patch: drop property only
      patches from patchset
    * debian/patches/series: remove property only patches above from
      series file as well.
    * debian/patches/no-have-stdint-h-ftbfs.patch,
      debian/patches/ubuntu-disable-welcome-update-url.patch,
      debian/patches/ubuntu-look-and-feel-disable-help-translate-menu.patch,
      debian/patches/ubuntu-look-and-feel-patch-fix-bookmarks-ubuntu-urls.patch,
      debian/patches/ubuntu-look-and-feel-patch.patch,
      debian/patches/ubuntu-look-and-feel-report-a-bug-menuitem.patch,
      debian/patches/ubuntu-printing-patch.patch: drop property parts
      and add TODO for patches that contain tweakings that can be 
      moved to distro mods extension by overlays or other tricks.

  [ Andrea Veri ]
  * Added svedish translations support to firefox's .desktop file.
    (LP: #107683)

 -- Alexander Sack <asac@ubuntu.com>  Fri, 8 Jun 2007 01:11:00 +0200

firefox (2.0.0.4+2-0ubuntu1) gutsy; urgency=low

  * new upstream security/stability update (LP: #117990)
  * MFSA2007-17 aka CVE-2007-2871: XUL Popup Spoofing
  * MFSA2007-16 aka CVE-2007-2870: XSS using addEventListener
  * MFSA2007-14 aka CVE-2007-1362: Path Abuse in Cookies
  * MFSA2007-13 aka CVE-2007-2869: Persistent Autocomplete Denial of Service
  * MFSA2007-12 aka CVE-2007-2867 (layout engine) + CVE-2007-2868
    (javascript engine): Crashes with evidence of memory corruption
  * drop upstream applied patches: 
      bz312998-GetVisibility-patch.patch,
      bz358930-gradient-spread-method-pad-fix.patch,
      bz366844-mozilla-configure-in-patch-to-workaround-gcc-visibility-bug.patch
  * adapted patches to upstream codebase changes:
      bz273524-gnome-mime-registry-ubuntu.patch 
  * debian/firefox.1, debian/firefox.manpages: install firefox.1 (LP: #115112)
  * install gnome-www-browser alternative in postinst and remove
    that alternative in prerm - copied over from feisty
  * debian/firefox.preinst: uninstall x-www-browser and mozilla alternative
  * debian/firefox-dev.install: install nsBuildID.h to /usr/include/firefox/
    (LP: #115630)

 -- Alexander Sack <asac@ubuntu.com>  Fri, 1 Jun 2007 12:10:00 +0200

firefox (2.0.0.3+3-0ubuntu4) gutsy; urgency=low

  * firefox: conflicts libnss3 to install proper symlink
      /usr/lib/firefox/libnssckbi.so -> ../nss/libnssckbi.so
  * add DisplayIf: instruction to test for running firefox; this is ment to
    prevent restart notification from being displayed if ffox has been crashed in
    the time between file replacement and update notification
  * debian/firefox.postinst added - which was accidentially left behind when
    migrating to new package layout

 -- Alexander Sack <asac@ubuntu.com>  Tue, 15 May 2007 12:10:00 +0200

firefox (2.0.0.3+3-0ubuntu3) gutsy; urgency=low

  * firefox-dev: Depend on libnss3-dev.

 -- Matthias Klose <doko@ubuntu.com>  Sun, 06 May 2007 14:11:05 +0000

firefox (2.0.0.3+3-0ubuntu2) gutsy; urgency=low

  * don't use -Xnss for dh_install of firefox-dev files - fix missing headers
    for epiphany

 -- Alexander Sack <asac@ubuntu.com>  Fri, 4 May 2007 18:10:00 +0200

firefox (2.0.0.3+3-0ubuntu1) gutsy; urgency=low

  * debian/patches/series, debian/patches/ubuntu-prevent-distributor-user-agent-part-reset.patch:
    enable update of user-agent parts on startup again
  * debian/firefox.install: install default.xpm in /usr/share/firefox/chrome/icons 
    by debhelper
  * debian/rules, debian/vendor.js.in: create vendor.js pref file from 
    .in template with data from /etc/lsb-release; add preprocessing of
    vendor.js.in to cdbs 'common-install-arch' target.
  * merging down patches and tweaks from old firefox package to
    new package structure with cdbs.
  * debian/cdbs-rules/debhelper.mk: custom cdbs rules which allows
    to specify dh_install extra args on a per package base
  * debian/control.in, debian/control, debian/rules: use
    system-nspr and system-nss; drop libnss3 and libnspr4 and
    friends from control files; remove debhelper files
    accordingly
  * debian/rules: added update-orig target
  * merging down modification and changelog entries for firefox updates
    (2.0.0.2+1-0ubuntu1, 2.0.0.2+1-0ubuntu2, 2.0.0.3+1-0ubuntu1,
    2.0.0.3+1-0ubuntu2) imported using (feisty) approved patchset
    at http://people.ubuntu.com/~asac/moz-screen.3

     == Bugzilla Patches ==
	
       + bz161826-nsTextFrame-MeasureText-s-crash-on-RISC.patch
       + bz241535-Assertion-failure-on-destroying-XEmbed-plug-in.patch
       + bz273524-gnome-mime-registry-ubuntu.patch
       + bz289394-align-double-on-ia64-deb-bug-303518.patch
       + bz312998-GetVisibility-patch.patch
       + bz331818-fix-crash-xpidl-zero-arguments.patch
       + bz335810-pango-cursor-up-down-fix.patch
       + bz343360-feed-flat-chrome-fix.patch
       + bz345077-make-install-installs-extensions-in-chrome-and-extensions.patch
       + bz358930-gradient-spread-method-pad-fix.patch
       + bz366844-mozilla-configure-in-patch-to-workaround-gcc-visibility-bug.patch
       + bz51429-anti-netstat-zombie-linux.patch
       + bz7969-a-thai-patch.patch


     == Patches for Upstream ==

       + bzXXX-syntax-fixes-for-.m4-files-needed-for-proper-embedding.patch
       + bzXXX-wl-no-as-needed-for-libxpcom-lp85112.patch
       + deb299697-lp42559-use-FC_ANY_METRICS.patch
       + disable-default-setting-for-app.update.enabled-and-app.update.auto.patch
       + myspell-hunspell-support-configure-in-add-enable-system-myspell-support.patch

     == Patches Ubuntu/Distribution ==

       + enable-kerberos-for-https.patch
       + flat-chrome-fix.patch
       + locale-my-matchOS.patch
       + add-a-recognized-pref-folder-called-syspref-inside-the-defaults-hierarchy.patch
       + ubuntu-disable-default-browser-check.patch,
       + ubuntu-disable-welcome-update-url.patch,
       + ubuntu-look-and-feel-disable-help-translate-menu.patch,
       + ubuntu-look-and-feel-geometries.patch,
       + ubuntu-look-and-feel-home-folder.patch,
       + ubuntu-look-and-feel-patch-fix-bookmarks-ubuntu-urls.patch,
       + ubuntu-look-and-feel-patch.patch,
       + ubuntu-look-and-feel-report-a-bug-menuitem.patch,
       + ubuntu-no-nss-chk-create.patch,
       + ubuntu-prevent-distributor-user-agent-part-reset.patch


     == Misc Patches ==
       + build-system-garbage.patch

     == Debian Directory ==
       + debian/firefoxrc: fix old malone url in comment
         (LP: #94392)
       + debian/control.in, debian/control: fix missing firefox-libthai
         depends on firefox; produce firefox-libthai binary package,
         which contains libthai component introduced in patch

 -- Alexander Sack <asac@ubuntu.com>  Fri, 4 May 2007 01:16:00 +0200

firefox (2.0.0.3+1-0ubuntu2) feisty; urgency=low

  * debian/control: fix missing firefox-libthai depends on firefox
  * xpfe/components/killAll/Makefile.in: drop unapproved/useless patch
    to install/remove nsKillAll.js component.
  * browser/locales/en-US/profile/bookmarks.html: fix bookmarks urls;
    www.ubuntulinux.org/wiki/FrontPage -> wiki.ubuntu.com; www.ubuntulinux.org
    -> www.ubuntu.com (LP: #93502)
  * browser/base/content/baseMenuOverlay.xul: commenting out ubuntu help
    menu entries: Get Help Online; Translate This application. Reenable as
    soon as launchpad supports these features.
  * layout/svg/renderer/src/cairo/nsSVGCairoGradient.cpp: fix for bz358930
    (LP: #69721): 2.0 doesn't respect SVG gradient spreadMethod="pad"
  * gfx/src/gtk/nsFontMetricsPango.cpp: fix for bz335810: cursor up/down
    keypresses do not preserve horizontal position when using pango (LP: #36571)
  * debian/firefoxrc: fix old malone url in comment (LP: #94392)

 -- Alexander Sack <asac@ubuntu.com>  Tue, 3 Apr 2007 12:45:00 +0200
	
firefox (2.0.0.3+1-0ubuntu1) feisty; urgency=low

  * new upstream security/stability update (v2.0.0.3)
  * MFSA-2006-11 aka CVE-2007-1562: FTP PASV port-scanning
  * add Report a Bug ... menu entry to Help menu overlay (LP: #85041)
  * gfx/src/gtk/nsFontMetricsXft.cpp: revert not-approved patch
    bz252033-gtk2-xft-text-clipping-problem, because fix seems to 
    have pretty bad performance overhead.
  * config/autoconf.mk.in, configure.in, gfx/src/gtk/mozilla-decoder.cpp:
    revert not-approved patch bz305185-system-pango-fix-for-gtk-2-8, because
    no longer necessary, upstream bug was duped to 
    https://bugzilla.mozilla.org/show_bug.cgi?id=338446
  * xpfe/components/killAll/Makefile.in: revert not-approved patch
    bz333289-nskillall-not-installed, because its just cruft from
    old suite and not used for firefox.
  * debian/control: add depends on libnspr4 to libnss3 (LP: #84481)

 -- Alexander Sack <asac@ubuntu.com>  Fri, 23 Mar 2007 22:00:00 +0100
	
firefox (2.0.0.2+1-0ubuntu2) feisty; urgency=low

  * reworked patchset and updated thai patch to latest
  * debian/firefox.desktop: updated finnish translation for
    .desktop file (Contributed by Timo Jyrinki <timo.jyrinki@iki.fi>)
  * browser/app/profile/firefox.js: set pref browser.startup.homepage_override.mstone
    to "ignore" (LP: #91798)
  * browser/components/nsBrowserContentHandler.js: disable welcome and update
    url feature completely (LP: #91798)
  * use pref distributionID only ... don't hard code this anymore
  * produce chromelist.txt files again (e.g. drop patch that prevents that)
  * exclude patch that disabled mangle dir in
    security/nss/cmd/shlibsign/manifest.mn

  [ Theppitak Karoonboonyanan <thep@linux.thai.net> ]
   * Update Thai line breaker patch based on libthai.
     - Replace old patch with componentized mozlibthai patch extracted and
       adapted from submitted patch in Debian #366306, which was backported
       from patch against HEAD proposed in bz#7969.
     - debian/control, debian/firefox-libthai.{install,postinst,prerm}:
       + Add firefox-libthai sub-package and Build-Depends: libthai-dev
       + Remove Suggests: libthai0 from firefox (we don't need PR_LoadLibrary()
         hack any more), and Suggests: firefox-libthai instead
     - debian/rules:
       + Add --enable-libthai configure option
       + Exclude mozlibthai component from firefox
       + Add dh_install -pfirefox-libthai.

 -- Alexander Sack <asac@ubuntu.com>  Tue, 13 Mar 2007 20:00:00 +0100
	
firefox (2.0.0.2+1-0ubuntu1) feisty; urgency=low

  * new upstream release 2.0.0.2
  * MFSA2007-01 - Crashes with evidence of memory corruption
    (rv:1.8.0.10/1.8.1.2):
     - CVE-2007-0775 - layout engine crashes
     - CVE-2007-0776 - SVG
     - CVE-2007-0777 - javascript engine corruption
  * MFSA2007-02 - Improvements to help protect against Cross-Site
    Scripting attacks:
     - CVE-2007-0995 - Invalid trailing characters in HTML tag attributes
     - CVE-2007-0996 - Child frame character set inheritance
     - CVE-2006-6077 - Injected password forms
  * MFSA2007-03 aka CVE-2007-0778: Information disclosure through cache
    collisions
  * MFSA2007-04 aka CVE-2007-0779: Spoofing using custom cursor and CSS3
    hotspot
  * MFSA2007-05 aka CVE-2007-0780, CVE-2007-0800: XSS and local file access
    by opening blocked popups
  * MFSA2007-06 aka CVE-2007-0008, CVE-2007-0009: Mozilla Network Security
    Services (NSS) SSLv2 buffer overflow
  * MFSA2007-07 aka CVE-2007-0981: Embedded nulls in location.hostname
    confuse same-domain checks

 -- Alexander Sack <asac@ubuntu.com>  Sat, 24 Feb 2007 23:00:00 +0100

firefox-trunk (2.99+2cvs20070328-0ubuntu0) feisty; urgency=low

  * update upstream cvs

 -- Alexander Sack <asac@ubuntu.com>  Wed, 28 Mar 2007 11:00:00 +0200

firefox-trunk (2.99+1-3.0a.20070201-0ubuntu0) feisty; urgency=low

  * package firefox 3 preview
  * rewrite packaging, make use of cdbs with quilt patch
    system.
  + imported initial patches

 -- Alexander Sack <asac@ubuntu.com>  Thu, 22 Feb 2007 09:00:00 +0200

firefox (2.0.0.1+1-0ubuntu2) feisty; urgency=low

  * browser/app/Makefile.in: link firefox-bin with
    --no-as-needed again. (regression from
    2.0.0.1+1-0ubuntu1)
  * browser/components/feeds/src/FeedWriter.js: fix
    RSS preview/subscription for flat chrome
    (Closes lp#61182)
  * debian/rules: set BUILD_OFFICIAL and MOZILLA_OFFICIAL environment
    so build gets a proper BUILD_ID.

 -- Alexander Sack <asac@ubuntu.com>  Mon, 19 Feb 2007 12:45:00 +0100

firefox (2.0.0.1+1-0ubuntu1) feisty; urgency=low

  * repackage with new upstream mozilla.org and split up patches
    into distinct feature patches available at 
    http://people.ubuntu.com/~asac/firefox-patches/
  * make use of original source tarball as distributed from
    ftp.mozilla.org
  * debian/rules: use --enable-official-branding to produce
    official firefox branding; remove icons in debian/ dir;
    add more garbage cleanup
  * debian/firefox.links: /usr/share/pixmaps/firefox.png and
    usr/share/pixmaps/mozilla-firefox.png now link to
    usr/share/firefox/icons/mozicon128.png
  * drop FeedWriter.js patch, no rational available.
  * xpcom/reflect/xptcall/src/md/unix/xptcinvoke_arm.cpp,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm.cpp,
    xpcom/reflect/xptcall/src/md/unix/Makefile.in,
    xpcom/reflect/xptcall/src/md/unix/xptcinvoke_mips.cpp,
    xpcom/reflect/xptcall/src/md/unix/xptcinvoke_asm_mips.s,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_linux_m68k.cpp,
    xpcom/reflect/xptcall/src/md/unix/xptcinvoke_asm_parisc_linux.s,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_parisc_linux.s,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_mips.s,
    configure.in, config/rules.mk, security/coreconf/Linux.mk:
    drop debian architecture patches for 
    not ubuntu platforms
  * debian/control: taking over maintainership
  * configure.in: update hidden visibility patch from bugzilla
  * configure.in: drop
  * Makefile.in: drop explicit export of nss as build system is not
    broken anymore
  * browser/app/Makefile.in: drop linker tweaks for now.
  * browser/app/profile/firefox.js: drop override for homepage
  * browser/locales/en-US/chrome/branding/brand.properties: drop further
    branding hacks not needed anymore
  * browser/components/search/nsSearchService.js: drop not needed
    official browser hacks
  * prefs-size.diff: removed garbage file from source 

 -- Alexander Sack <asac@ubuntu.com>  Wed, 15 Feb 2007 23:15:00 +0100

firefox (2.0.0.1+0dfsg-0ubuntu2) feisty; urgency=low

  * Build using hunspell instead of myspell.
    - debian/control: Build-depend on libhunspell-dev instead of libmyspell-dev.
    - config/autoconf.mk.in: Add MOZ_MYSPELL_CFLAGS.
    - extensions/spellcheck/myspell/src/Makefile.in: Use MOZ_MYSPELL_CFLAGS.
    - extensions/spellcheck/myspell/src/mozMySpell.h: Include hunspell.cxx
      instead of myspell.cxx.
    - configure.in, configure: Overwrite myspell detection with hunspell.

 -- Matthias Klose <doko@ubuntu.com>  Thu, 18 Jan 2007 11:57:14 +0000

firefox (2.0.0.1+0dfsg-0ubuntu1) feisty; urgency=low

  * New upstream security update:
    - CVE-2006-6507, MFSA 2006-76: XSS using outer window's Function object.
    - CVE-2006-6506, MFSA 2006-75: RSS Feed-preview referrer leak.
    - CVE-2006-6504, MFSA 2006-73: SVG Processing Remote Code Execution.
    - CVE-2006-6503, MFSA 2006-72: XSS by setting img.src to javascript: URI.
    - CVE-2006-6502, MFSA 2006-71: LiveConnect crash finalizing JS objects.
    - CVE-2006-6501, MFSA 2006-70: Privilege escallation using watch point.
    - CVE-2006-6497, CVE-2006-6498, CVE-2006-6499, MFSA 2006-68: Crashes
      with evidence of memory corruption.
  * debian/rules: use original upstream icons (LP: #68180).
  * debian/debsearch.src: make feisty the default debsearch target.
  * browser/base/content/utilityOverlay.js: change Launchpad translation/help
    pages for Feisty.

 -- Kees Cook <kees@ubuntu.com>  Thu, 21 Dec 2006 09:51:22 -0800

firefox (2.0+0dfsg-0ubuntu3) edgy; urgency=low

  * Patch from upstream CVS to fix RSS preview/subscription, thanks to Mike
    Connor and Martin Jürgens (LP: #61182)

 -- Matt Zimmerman <mdz@ubuntu.com>  Mon, 23 Oct 2006 10:20:25 +0100

firefox (2.0+0dfsg-0ubuntu2) edgy; urgency=low

  * uudecode debsearch.gif too.  Fixes FTBFS
  * Make edgy the default debsearch target.  Closes: Malone: #61687

 -- Tollef Fog Heen <tfheen@ubuntu.com>  Mon, 23 Oct 2006 08:52:11 +0200

firefox (2.0+0dfsg-0ubuntu1) edgy; urgency=low

  * Bump version to 2.0 (no upstream changes from rc3)
  * browser/components/search/nsSearchService.js
    - Set MOZ_OFFICIAL to "official", distributionID to "com.ubuntu"
  * debian/branding: new subdirectory with images
  * debian/rules:
    - build: uudecode and substitute images in source tree, use debian/branding/icon64.png
      instead of debian/firefox.png
    - clean: restore images in source tree, remove uudecoded versions

 -- Matt Zimmerman <mdz@ubuntu.com>  Fri, 20 Oct 2006 15:56:42 -0700

firefox (1.99+2.0rc3+dfsg-0ubuntu1) edgy; urgency=low

  * New upstream version 2.0rc3, UVF exception approved by Matt Zimmerman.
  * configure: Fix bashism to let the gcc visibility=hidden bug detection
    work.
  * configure{,.in}: Change MOZ_APP_DISPLAYNAME from 'BonEcho' to 'Firefox' to
    make UserAgent string work with web sites which evaluate it.
  * browser/base/content/utilityOverlay.js: Open the Launchpad
    translation/help pages for Edgy, not Dapper.
  * For the sake of automatic vulnerability tracking: All 1.5.0.x and earlier
    vulnerabilities were fixed in the 2.0 branch as well:
    CVE-2005-0752 CVE-2005-1531 CVE-2005-1532 CVE-2005-2114 CVE-2006-0749
    CVE-2006-1731 CVE-2006-1732 CVE-2006-1733 CVE-2006-1734 CVE-2006-1735
    CVE-2006-1736 CVE-2006-1737 CVE-2006-1738 CVE-2006-1739 CVE-2006-1740
    CVE-2006-1741 CVE-2006-1742 CVE-2006-1790 CVE-2006-2775 CVE-2006-2776
    CVE-2006-2777 CVE-2006-2778 CVE-2006-2779 CVE-2006-2780 CVE-2006-2782
    CVE-2006-2783 CVE-2006-2784 CVE-2006-2785 CVE-2006-2786 CVE-2006-2787
    CVE-2006-2788 CVE-2006-3113 CVE-2006-3677 CVE-2006-3801 CVE-2006-3802
    CVE-2006-3803 CVE-2006-3805 CVE-2006-3806 CVE-2006-3807 CVE-2006-3808
    CVE-2006-3809 CVE-2006-3810 CVE-2006-3811 CVE-2006-3812 CVE-2006-4253
    CVE-2006-4340 CVE-2006-4565 CVE-2006-4566 CVE-2006-4567 CVE-2006-4568
    CVE-2006-4569 CVE-2006-4571

 -- Martin Pitt <martin.pitt@ubuntu.com>  Thu, 19 Oct 2006 09:28:15 +0200

firefox (1.99+2.0rc2+dfsg-0ubuntu3) edgy; urgency=low

  * debian/firefox-runner: Disable Pango if a Sinhala locale is present. LP
    66270.

 -- Colin Watson <cjwatson@ubuntu.com>  Sun, 15 Oct 2006 20:29:26 +0100

firefox (1.99+2.0rc2+dfsg-0ubuntu2) edgy; urgency=low

  * Delete /usr/lib/firefox/components/compreg.dat in the postinst.
    This is a partial workaround for LP 30791.

 -- Ian Jackson <iwj@ubuntu.com>  Thu, 12 Oct 2006 12:19:11 +0100

firefox (1.99+2.0rc2+dfsg-0ubuntu1) edgy; urgency=low

  * New upstream version 2.0rc2.
  * Fix/workaround for epiphany GtkSocket lifetype crash:
    apply patch id=241087 from Mozilla Bugzilla #241535 to fix LP #63814.
  * Change application name to `Firefox', as requested by mdz.
    Files changed:
      - browser/locales/en-US/chrome/branding/brand.dtd
      - browser/locales/en-US/chrome/branding/brand.properties;
    New values:
      - brandShortName and brandFullName: `Bon Echo' => `Firefox'
      - vendorShortName: `Mozilla' => `Ubuntu'
  * Make preferences dialogue fit again (bah!).

 -- Ian Jackson <iwj@ubuntu.com>  Tue, 10 Oct 2006 18:49:32 +0100

firefox (1.99+2.0b2+dfsg-1ubuntu3) edgy; urgency=low

  * Remove /usr/lib/mozilla-thunderbird from the LD_LIBRARY_PATH
    if we find it there.  Workaround for LP 57923.
  * Remove pocket name (eg `-security') from distribution identifier in
    the browser user agent string.  LP 55289.

 -- Ian Jackson <iwj@ubuntu.com>  Tue,  3 Oct 2006 19:01:34 +0100

firefox (1.99+2.0b2+dfsg-1ubuntu2) edgy; urgency=low

  * Ship xpidl et al, in firefox-dev.  Relates to Debian #362190.
    Fixes Malone #61160.

 -- Ian Jackson <iwj@ubuntu.com>  Thu, 21 Sep 2006 16:33:50 +0100

firefox (1.99+2.0b2+dfsg-1ubuntu1) edgy; urgency=low

  * Merged from Debian unstable; new upstream version.
  * Remaining differences between
    Debian and Ubuntu in no particular order:
    - Build libnspr and libnss and corresponding -dev packages from this
      source package.  Plus changes to make these libs build nicely.
    - Various changes to preferences, default bookmarks and search engines.
    - Support for `Get Help Online' and `Translate This Application'.
    - Size changes for various dialogue boxes to make the contents fit.
    - Downloads go to separate `Desktop' folder by default.
    - Fix some underquoted m4 arguments.
    - Minor changes in directories, symlinks and debian/control
      to cope with Ubuntu and Debian's different histories.
    - disable File / Import (wizard is nonfunctional).
      Malone #28563, Debian #350599, Mozilla Bugzilla 117844.
    - Change `Latest Headlines' to `Latest BBC Headlines' to properly
      disclose the source up front, and use a corresponding RSS URL.
    - Default for FIREFOX_DSP is none.
    - Pango support is enabled only if an installed locale seems to need
      it.
    - Note in README.Debian about how to run xpcshell.
    - Disable xprint.
    - No build dependency on libxp-dev; build-depend on zip instead.
    - Various icon changes.
    - Some currently-unused directory merging code in firefox.preinst.
    - Less detail in the user agent string.
    - Belt-and-braces removal for some cruft left over by some versions of
      the Mozilla build system.
    - Better firefox.menu entry (says `Firefox Web Browser').
    - Build dynamically linked, since in Ubuntu embedders use firefox.
    - EbmedWindow::GetVisibility bugfix, Malone 40320, upstream 312998.
    - Pass FC_ANY_METRICS to Fontconfig where appropriate.
    - Extensive Thai language patch.
    - Print in serif by default even though default display is sans.
    - Some fixes to the (upstream-unused) nss makefiles.
    - Strip PostScript/ from printer names.
    - Better message about updates of read-only extension.
    - Include pointer to the Gecko Runtime (GRE registration).
    - Prevent websites from disabling context menus.
   All of these changes are fully documented in the changelog below.
   Please see those changelog entries for full details.  Much historical
   information about changes either taken up by Debian or upstream, or
   dropped by us, is retained in this changelog.

 -- Ian Jackson <iwj@ubuntu.com>  Wed, 13 Sep 2006 16:40:06 +0100

firefox (1.99+2.0b2+dfsg-1) experimental; urgency=low

  * New upstream beta release.

  * extensions/inspector/build/src/Makefile.in,
    extensions/inspector/build/src/inspector.pkg,
    extensions/inspector/build/src/nsInspectorModule.cpp: Removed, the problem
    was lying in debian/rules. /me goes hiding under a rock.
  * layout/inspector/public/Makefile.in: Reverted previous changes.
  * debian/rules: Don't exclude inspector files when dh_installing the firefox
    package. We need the inspector.xpt file from the components directory. The
    files for the dom-inspector package are already excluded from the
    firefox.install file anyway.
  * debian/firefox-dom-inspector.install,
    debian/firefox-dom-inspector.links: Simplified.
  * debian/control:
    + Turn firefox-dom-inspector into an arch: all package, since the binary
      component has been merged into the firefox binary.
    + Adjust dependencies for binNMU safety.
  * xpcom/reflect/xptcall/src/md/unix/Makefile.in, configure.in, configure:
    Use ${host_cpu} instead of uname -m so that firefox can safely build on
    s390x with a s390 target, and on amd64 with an x86 target.
  * uriloader/exthandler/unix/nsGNOMERegistry.cpp,
    uriloader/exthandler/unix/nsGNOMERegistry.h,
    uriloader/exthandler/unix/nsOSHelperAppService.cpp,
    uriloader/exthandler/unix/nsMIMEInfoUnix.cpp,
    uriloader/exthandler/unix/nsMIMEInfoUnix.h: Adapted patch from bz#273524 to
    make helper applications with parameters work. (Closes: #355511)
  * debian/copyright: Adjusted with updated information for firefox 2.0, which
    is now properly tri-licensed \o/. (Closes: #330295)
  * debian/rules: Install the MPL file taken from the upstream LICENSE file.

 -- Mike Hommey <glandium@debian.org>  Fri,  1 Sep 2006 08:36:26 +0200

firefox (1.5.dfsg+1.5.0.6-3) unstable; urgency=low

  * browser/app/Makefile.in: Workaround to force link the xpcom library to
    the firefox binary despite -Wl,--as-needed in the LDFLAGS.
    (Closes: #378667)
  * debian/firefox.install: Don't install xpt_link, xpt_dump, xpidl,
    xpicleanup, xpcshell nor regxpcom. They are of no use to firefox users and
    are provided with xulrunner anyway. (Closes: #362190)

 -- Mike Hommey <glandium@debian.org>  Sun, 20 Aug 2006 19:49:25 +0200

firefox (1.5.dfsg+1.5.0.6-2) unstable; urgency=low

  * debian/firefox.desktop: 
    - Polish translation from Ian Jackson by way of an Ubuntu user. 
      (Closes: #382079)
    - Patch from Ian Jackson to stop claiming dav:// URLs when firefox
      doesn't understand them. (Closes: #382080)
  * editor/libeditor/text/nsPlaintextEditor.cpp: Apply patch from
    bz#271815 to fix OverTheSpot mode used by many Asian language input
    modules. (Closes: #379935)

 -- Eric Dorland <eric@debian.org>  Tue, 15 Aug 2006 00:09:55 -0400

firefox (1.5.dfsg+1.5.0.6-1) unstable; urgency=low

  * New upstream release.

 -- Eric Dorland <eric@debian.org>  Thu,  3 Aug 2006 13:17:45 -0400

firefox (1.5.dfsg+1.5.0.5-1) unstable; urgency=high
 
  [ Eric Dorland ]
  * New upstream release. Urgency high because it fixes MFSA 2006-44 to
    MFSA 2006-56 excluiding MFSA-2006-49. (Closes: #380463)
  
  [ Mike Hommey ]
  * debian/firefox.prerm: Remove /usr/lib/firefox/.autoreg instead of
    /var/lib/firefox/.autoreg.
  * browser/app/profile/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf.in:
    Removed very old and now useless changes.
  * xpcom/reflect/xptcall/src/md/unix/xptcinvoke_linux_alpha.cpp: Removed
    useless new line that showed up in the diff.gz.

 -- Eric Dorland <eric@debian.org>  Sun, 30 Jul 2006 17:08:38 -0400

firefox (1.99+2.0b1+dfsg-1) experimental; urgency=low

  * New upstream beta targetted at experimental:
    - Much better search plugins handling. They can be added and removed at
      will, and even better, system-wise search plugins can be ignored at the
      profile level. (Closes: #352195, #320957, #296425, #308005)
  * browser/components/shell/src/Makefile.in: Correctly install the
    setDefaultBrowser component.
  * config/rules.mk: Don't install extensions in the chrome.
  * debian/firefox.links: Link /usr/lib/firefox/dictionaries to
    /usr/share/myspell/dicts.
  * config/autoconf.mk.in, configure, configure.in: Add the
    --enable-system-myspell argument to configure to use the system myspell
    library.
  * extensions/spellcheck/myspell/src/Makefile.in: Use the system myspell
    library when asked to.
  * debian/rules:
    - Add --enable-system-myspell to configure call.
    - Do shlibsign libfreebl's (there can be several depending on the arch).
  * debian/control: Add libmyspell-dev to build dependencies.
  * browser/components/microsummaries/src/Makefile.in, config/Makefile.in:
    Add rules so that make clean cleans everything.
  * allmakefiles.sh: Removed references to nonexisting Makefiles in
    extensions/xmlextras/base.
  * configure, configure.in: Apply patches from bz#334866, bz#319012 and
    bz#335949 + fixups to workaround gcc visibility hidden bugs, especially
    #331460 (an instance of which is actually still present in C++,
    see gcc#26905).
  * extensions/inspector/build/src/Makefile.in,
    extensions/inspector/build/src/inspector.pkg,
    extensions/inspector/build/src/nsInspectorModule.cpp: Added missing files
    for the DOM Inspector component.
  * extensions/inspector/build/src/Makefile.in,
    layout/inspector/public/Makefile.in: Adapted so that the DOM Inspector
    component would build correctly and the xpt would be installed in
    the extensions directory.
  * extensions/reporter/Makefile.in: Install missing reporter's preference.

 -- Mike Hommey <glandium@debian.org>  Fri, 21 Jul 2006 07:05:25 +0200

firefox (1.5.dfsg+1.5.0.4-3) unstable; urgency=low
  
  [ Eric Dorland ]
  * debian/control: 
    - Fix silly typo of binutils. (Closes: #378582)
    - Standards-Version to 3.7.2.1.
  
  [ Mike Hommey ]
  * debian/rules:
    - Use a specific LD_LIBRARY_PATH at link time so that we don't need to
      link against indirect dependencies. (Closes: #378378)
    - Run shlibsign after the files are stripped so that it is accurate and
      FIPS mode can correctly work.
    - Removed old commented out OPTFLAGS that were kept in case gcc 4.0 did
      no better than gcc 3.x.
    - Removed old exported variables that are useless nowadays.
    - Removed dh_strip call in binary-indep. Who wants to strip
      arch-independant files ;)
  * debian/presubj: Added notes about plugins and crash reports.
  * security/manager/Makefile.in, security/nss/cmd/shlibsign/Makefile:
    Don't build nor install the .chk files but still build shlibsign.
  * debian/firefox.install: Don't install .chk files since we generate them
    after dh_strip.
  * security/nss/cmd/shlibsign/manifest.mn: Don't build in shlibsign/mangle.
    It doesn't build anyway.

 -- Eric Dorland <eric@debian.org>  Wed, 19 Jul 2006 23:56:22 -0400
  
firefox (1.5.dfsg+1.5.0.4-2) unstable; urgency=low

  [ Eric Dorland ]
  * netwerk/base/public/security-prefs.js: Disable SSLv2 by default. I
    thought the weak cipher warning took care of this. (Closes: #371153)
  * debian/firefox-runner: Simplify the dsp autodetection and add aoss to
    the roster. (Closes: #372848)
  * firefox-restart-required.update-notifier, firefox.postinst,
    firefox.install: Add update-notifier to indicate that firefox needs to
    be restarted on upgrade. Based on Ian Jackson's patch, but reworked a
    little. Also with a bad French translation. Translators, assemble!
    (Closes: #365865)
  * config/rules.mk, debian/control: Apply patch from Thiemo Seufer to
    remove mips -xgot hack and build depend on the appropriate binutils on
    mips and mipsel. (Closes: #374372)
  * debian/presubj, debian/README.Debian: Add a bit more information about
    disabling Pango, which often seems to be the source of problems.
  * debian/firefox-runner: 
    - Print out MOZ_NO_REMOTE in verbose mode.
    - Fix some unreachable logic, Thanks Daniel Jacobowitz.

  [ Mike Hommey ]
  * debian/rules:
    - Fix for Gecko date extraction from client.mk.
    - Disabled strict aliasing from optimized builds.
    - Added -Wl,--as-needed to the LDFLAGS, so that we don't get indirect
      libraries linked.
  * config/static-config.mk: Add MOZ_XFT_LIBS to STATIC_EXTRA_LIBS. It used to
    get linked as a side effect of linking to indirect libraries, but should
    be linked directly since Xft symbols are used.
  * debian/firefox-restart-required.update-notifier: Fixed the french
    translation. ;)
  * content/html/content/src/nsGenericHTMLElement.cpp,
    content/html/content/src/nsHTMLInputElement.cpp,
    dom/src/base/nsGlobalWindow.cpp: Fixed crasher and potential crashers.
    Reported bz#343953.

 -- Eric Dorland <eric@debian.org>  Sun,  9 Jul 2006 02:37:28 -0400

firefox (1.5.dfsg+1.5.0.4-1) unstable; urgency=low

  * The "Post-DebConf Hangover" release.
  
  [ Eric Dorland ]
  * New upstream release. Fixes various security issues. MFSA 2006-31 to
    MFSA 2006-43, excluding MFSA 2006-40.
  * debian/control:
    - Standards-Version to 3.7.2.0.
    - Set priority of -dbg to extra and Section to devel.
  * gfx/src/gtk/nsFontMetricsPango.cpp,
    intl/lwbrk/src/nsJISx4501LineBreaker.cpp,
    intl/unicharutil/util/nsUnicharUtils.h,
    intl/unicharutil/util/nsUnicharUtils.cpp,
    layout/generic/nsTextFrame.cpp: Patch from Jurij Smakov (from
    bz#161826) to fix alignment issues on sparc64. (Closes: #354725)

  [ Mike Hommey ]
  * Applied distclean patch from xulrunner (in
    debian/patches/01_distclean.dpatch), except for the javaxpcom stuff we
    don't build anyway.
  * browser/app/profile/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd},
    config/static-rules.mk: More cleaning for firefox.
  * nsprpub/configure: Apply change to nsprpub/configure.in.
    (Closes: #350616)
  * gfx/src/gtk/nsFontMetricsPango.cpp: Some more changes so that it
    actually builds without errors, and use PR_Malloc and PR_Free instead
    of malloc and free.

 -- Eric Dorland <eric@debian.org>  Fri,  2 Jun 2006 12:13:18 -0400

firefox (1.5.dfsg+1.5.0.3-2) unstable; urgency=low

  * debian/firefox.desktop: Add spanish translation, just in time for
    DebConf 6! Thanks Ian Jackson. (Closes: #365870)
  * debian/firefox-runner: Actually apply the patch from Morita Sho in
    #364566. I'm a moron. (Closes: #365956, #365960)
  * debian/control: Standards-Version to 3.7.1.0. Go policy team!

 -- Eric Dorland <eric@debian.org>  Thu,  4 May 2006 01:38:18 -0400

firefox (1.5.dfsg+1.5.0.3-1) unstable; urgency=critical

  * The "secure enough for ya!" release.
  * New upstream release. Contains security fixes, hence severity
    critical. 
    - Fixes CVE-2006-1993 aka MFSA 2006-30. (Closes: #364810)
  
  [ Mike Hommey ]
  * security/manager/Makefile.in, debian/firefox.install: Build and
    install the .chk file again. That will make the FIPS mode work again.
  * debian/control: Bumped Standards-Version to 3.7.0.0. No changes.
  * debian/rules: Fix the navigator.ProductSub value for dumb scripts.
    Closes: #364640, #365099. We now use the date of the client.mk file,
    which is likely to be the closest value to the release date, instead of
    useless build date.
    Add the debian version after the firefox version string.
  * debian/rules: Use dpkg-architecture to find out the host and build that
    we want to pass to the configure script. (Closes: #365738)

  [ Eric Dorland ]
  * debian/firefox-runner: 
    - Quote the APPLICATION_ID variable to handle profiles with a space 
      in the name. Inspired by Morita Sho's patch. (Closes: #364566)
    - echo MOZ_DISABLE_PANGO on verbose.
  * debian/rules: It's baaaackkk. Reenable xprint.

 -- Eric Dorland <eric@debian.org>  Wed,  3 May 2006 00:32:49 -0400

firefox (1.5.dfsg+1.5.0.3-0ubuntu3) dapper; urgency=low

  * Thai-related crash fix (Malone 45395):
    - nsCopySupport.cpp, nsCopySupport::HTMLCopy:
       do not crash if htmlConverter->Convert fails.
    - nsHTMLFormatConverter.cpp, nsHTMLFormatConverter::Convert:
       properly report failure if dataStr.IsEmpty.
    - nsJISx4501LineBreaker.cpp: fix printf(stderr -> fprintf.
  * Add Polish translation for firefox.desktop (Malone 45447).
    Thanks to contribution from Tomasz Dominikowski.
  * Do not attempt to merge /usr/lib/mozilla-firefox and /usr/lib/firefox
    and make the former a link to the latter; this is unfortunately
    error-prone and makes more problems than it solves.
    Fixes Malone 44487; regresses the plugins directory confusion bug.
  * Include MFSA and CVE numbers in changelog entry for 1.5.dfsg-1.

 -- Ian Jackson <iwj@ubuntu.com>  Tue, 23 May 2006 17:45:30 +0100

firefox (1.5.dfsg+1.5.0.3-0ubuntu2) dapper; urgency=low

  * Fix memory leak in large clipboard handling.  Malone 41093.
    Mozilla Bugzilla 289897; applied attachments 218749, 218753.
  * Provide symlink /usr/lib/mozilla-firefox -> /usr/lib/firefox
    (and shuffle stuff across if both directories exist).
  * Remove update-notifier `restart required' on removal so that if you
    remove firefox you're no longer asked to restart it.  Malone 36739.    
  * Increase size of prefs window explicitly.  Malone 43528.
  * Suppress the error if /var/lib/locales/supported.d/* can't be read
    (probably because it doesn't exist).  If you get EIO or EACCES or some
    such then having pango mysteriously disabled will be the least of your
    worries.  Malone 44016.
  * Really use firefox_1.5.dfsg+1.5.0.3.orig.tar.gz from Debian.

 -- Ian Jackson <iwj@ubuntu.com>  Fri, 12 May 2006 19:20:30 +0100

firefox (1.5.dfsg+1.5.0.3-0ubuntu1) dapper; urgency=low

  * New upstream version, 1.5.0.3, security/stability fix from upstream:
    MFSA 2006-30, CVE-2006-1993: Deleted
     object reference when designMode="on" 
    This package is based on Debian's firefox_1.5.dfsg+1.5.0.3.orig.tar.gz
    but has none of the corresponding Debian changes.

 -- Ian Jackson <iwj@ubuntu.com>  Wed, 10 May 2006 12:13:30 +0100

firefox (1.5.dfsg+1.5.0.2-3) unstable; urgency=low

  * debian/rules, debian/control: Build the -dbg package again.
  * debian/firefox.1: Fix some incorrect references to mozilla. Thanks
    Loïc Minier. (Closes: #364101)
  * debian/firefox-runner: Patch from Mikhail Gusarov to be able to use
    Network Audio Server's dsp wrapper. (Closes: #363124)
  * debian/firefox.install: Fix screwed up path to firefox.xpm. (Closes:
    #364359)
  * debian/README.Debian: Document that firefox doesn't allow connections
    on certain ports. Thanks W. Borgert. (Closes: #362785)

 -- Eric Dorland <eric@debian.org>  Sun, 23 Apr 2006 22:41:15 -0400

firefox (1.5.dfsg+1.5.0.2-2) unstable; urgency=critical

  * The "ftp-master's aren't my friends today" release.
  * debian/rules, debian/control: Don't build the -dbg package for now, to
    get around NEW queue processing.

 -- Eric Dorland <eric@debian.org>  Thu, 20 Apr 2006 22:33:18 -0400

firefox (1.5.dfsg+1.5.0.2-1) unstable; urgency=critical

  [ Eric Dorland ]
  * New upstream release. Contains security fixes, hence severity
    critical.
    - Fixes the following vulnerabilites (Thanks Alexander Sack for 
      compiling the list): CVE-2006-1724, CVE-2006-0884, 
      CVE-2006-1730, CVE-2006-1729, CVE-2006-1728, CVE-2006-1727, 
      CVE-2006-1045, CVE-2006-0748, CVE-2006-1726, CVE-2006-1725, 
      CVE-2005-2353. (Closes: #362656)
  * debian/firefox-runner: Patch from Paul Collins to fix some lingering
    ProfileManager launch issues. (Closes: #356250)
  * browser/components/preferences/privacy.xul,
    browser/locales/en-US/chrome/browser/preferences/preferences.dtd:
    Patch from Ian Jackson to make the preferences window bigger for
    people with high rez displays. His changelog entry reads:
    * Make Preferences window not chop off various elements:
      - specify a width of 50em instead of 42em
      - do not specify a height
      - add another <separator/> to the bottom of privacy.xul's prefpane.
        I have no idea why this is necessary :-(.
      Malone 36985.
  * configure.in, configure: Small typo in configure.in that wasn't
    setting TARGET_XPCOM_ABI properly and breaking binary extensions on
    some arches. (Closes: #359228)

  [ Mike Hommey ]
  * debian/rules: Disable elf-dynstr-gc, which is pretty useless nowadays.
  * security/coreconf/rules.mk: Fix perl code that got broken by newer make.
    Taken from bz#325148.
  * browser/app/Makefile.in: Apply patch from bz#314927 to install default.xpm
    in the correct place.
  * debian/rules, debian/firefox.dirs, debian/firefox.install: Updated to fit
    this change.
  * security/coreconf/rules.mk: Force use of the -g flag in the CFLAGS.
 
 -- Eric Dorland <eric@debian.org>  Sun, 16 Apr 2006 18:40:02 -0400

firefox (1.5.dfsg+1.5.0.2-0ubuntu2) dapper; urgency=low

  * Increase sizes of various dialogue boxes so that all of the contents
    fit.  Malone 26225, 36985, and probably others.
  * Set MOZ_DISABLE_PANGO=1 to disable pango, unless some locale is
    selected as supported which would need pango for rendering; the
    default can be overridden by setting MOZ_DISABLE_PANGO to 0 or 1.
    Malone 32561 (workaround).
  * Use update-notifier to request a firefox restart.  Malone 36739.
  * Added Spanish translation to firefox.desktop.
    Malone 39972.  Thanks to Rocco Stanzione for the patch.
  * Add a couple of missing trailing newlines.
    Malone 39972 again.  Thanks Rocco Stanzione for the report.
  * EbmedWindow::GetVisibility bugfix, Malone 40320, upstream 312998,
    thanks to chpe for the patch and discussion.
  * Add FC_ANY_METRICS set to FcTrue to all patterns that are going to be
    used for finding (rather than enumerating) fonts.  Malone 42559.

 -- Ian Jackson <iwj@ubuntu.com>  Tue,  2 May 2006 18:59:32 +0100

firefox (1.5.dfsg+1.5.0.2-0ubuntu1) dapper; urgency=low

  * New upstream version, 1.5.0.2.
    Described as `stability and security fixes' by upstream but many
    changes are included and producing a complete list is infeasible :-(.
    Fixes are known to be included for:
    - MFSA 2006-29, CVE-2006-1725: Spoofing with translucent windows
    - MFSA 2006-28, CVE-2006-1726: Security check of
         js_ValueToFunctionObject() can be circumvented
    - MFSA 2006-27, CVE-2006-0748: Table Rebuilding Code Execution
         Vulnerability
    - MFSA 2006-25, CVE-2006-1727: Privilege escalation through Print Preview
    - MFSA 2006-24, CVE-2006-1728: Privilege escalation using
         crypto.generateCRMFRequest
    - MFSA 2006-23, CVE-2006-1729: File stealing by changing input type
    - MFSA 2006-22, CVE-2006-1730: CSS Letter-Spacing Heap Overflow
         Vulnerability
    - MFSA 2006-20, CVE-2006-1529, CVE-2006-1530, CVE-2006-1531,
      CVE-2006-1723, CVE-2006-1724: Crashes with evidence of memory
         corruption.
    This package is based on Debian's firefox_1.5.dfsg+1.5.0.2.orig.tar.gz
    but has none of the corresponding Debian changes.

 -- Ian Jackson <iwj@ubuntu.com>  Wed, 26 Apr 2006 16:53:22 +0100

firefox (1.5.dfsg+1.5.0.1-5) unstable; urgency=low

  [ Mike Hommey ]
  * debian/rules:
    - Add -g to the build flags when building with DEB_BUILD_OPTIONS=nostrip.
      If we ask for nostrip, we want the debugging
      symbols, right? ;)
    - Changed the way we identificate ourselves in vendor.js.
  * layout/build/Makefile.in, layout/build/nsLayoutModule.cpp: Remove useless
    useragent setter at startup so that general.useragent.product and
    general.useragent.productSub set in our vendor.js preference file work at
    startup time.
  * security/coreconf/Linux.mk:
    - Patch from Martin Michlmayr for mips64 builds.
    - Don't use x86 as CPU_ARCH when building on an unsupported architecture.
  * security/manager/Makefile.in, security/nss/lib/ckfw/builtins/Makefile,
    security/nss/lib/manifest.mn: Don't build the stuff we don't need, and
    dynamically link libnssckbi to both libplc4 and libplds4 instead of
    linking statically.
  * debian/firefox.postinst, debian/firefox.prerm,
    debian/firefox-gnome-support.postinst, debian/firefox-gnome-support.prerm:
    Touch a .autoreg file at configure time, or removal of gnome-support and
    remove it with the package. This will trigger autoregistration of the
    components if the compreg.dat and xpti.dat files are older than the
    .autoreg file. We used to remove compatibility.ini for that reason, but
    stopped doing that because firefox was supposed to do that correctly,
    which actually only correctly works on new upstream versions, not new
    debian revisions, or installation of gnome-support.
  * xpfe/components/killAll/Makefile.in: Correctly install the killAll
    component.

  [ Eric Dorland ]
  * debian/control:
    - Set Section of firefox-gnome-support and
      mozilla-firefox-gnome-support to gnome.
    - Standards-Version to 3.6.2.2.
    - debhelper build-dep to >= 5.0.
    - Add firefox-dbg package.
  * debian/compat: Set to 5.
  * debian/rules:
    - Remove silly CVS tarball cleanup target.
    - Add arch-independant debhelper calls, and make other debhelper
      calls arch-dependent.
    - Add --dbg-package=firefox-dbg to dh_strip call.
    - Always build with the -g flag. (Based on a change Mike made)
    - Patch from Andreas Jochens to use -mminimal-toc when building on 
      ppc64. (Closes: #361035)
    - Use --disable-strip, --disable-strip-libs in configure parameters.
      Thanks Ian Jackson.
    - Use .upstream instead of .orig to make it more clear and not  
      confuse the clean target. Thanks Ian Jackson. (Closes: #362186)
    - Disable xprint support for now, while the Xorg 7 transition sorts 
      itself out. Should be reenabled next release.
  * debian/firefox.xpm: Add more Debian compliant menu icon.
  * debian/firefox.install, debian/rules: Install new Debian compliant
    icon.
  * debian/firefox.desktop: Add StartupNotify=true for pretty waiting
    cursor. Thanks Sven Arvidsson. (Closes: #361527)
  * debian/firefox-dom-inspector.preinst,
    debian/firefox-dom-inspector.links,
    debian/firefox-dom-inspector.install: Install non-architecture
    specific bits of the inspector into /usr/share/firefox.
  * debian/firefoxrc: Disable the dsp wrapper by default. esddsp is just
    too buggy to allow this to continue. May reenable later if they clean
    up their act. Leaving the bugs open for now.
  * debian/firefox.NEWS: 
    - Document the dsp wrapper changes.
    - Remove old mozilla-firefox entries.
  * debian/firefox.1: Fix typo of firefox, thanks Andrew Rendle. (Closes:
    #362413)
  * debian/firefox.install: We don't get .chk files anymore for some
    reason.

 -- Eric Dorland <eric@debian.org>  Fri, 14 Apr 2006 15:52:41 -0400

firefox (1.5.dfsg+1.5.0.1-4) unstable; urgency=low

  [ Mike Hommey ]
  * debian/firefox-runner, debian/firefox.1: Patch from Ian Jackson to
    make -P, -CreateProfile and -ProfileManager options correctly work
    again, and improve the manual page. (Closes: #356250)
  * debian/firefox.desktop:
    - Fix trivial syntax problems. (Closes: #356263)
    - Added Japanese and Korean translations.
  * debian/firefox.dirs: Removed remainings of the time when we had a file
    in /usr/sbin. (Closes: #356268)
  * debian/firefox-gnome-support.prerm,
    debian/firefox-gnome-support.postinst: Removed bashisms. (Closes:
    #349946)
  * debian/README.Debian:
    - Replaced the bug reporting information by an invitation to read
      /usr/share/bug/firefox/presubj. (Closes: #356269)
    - Changed the heading to "Firefox for Debian".

  [ Eric Dorland ]
  * debian/firefox-gnome-support.postinst,
    debian/firefox-gnome-support.prerm: Add forgotten #DEBHELPER# token.

 -- Eric Dorland <eric@debian.org>  Sun, 12 Mar 2006 21:34:14 -0500

firefox (1.5.dfsg+1.5.0.1-3) unstable; urgency=low

  [ Eric Dorland ]
  * debian/control: Use strict dependencies for the transition packages,
    no reason a transition package should be upgraded before the real
    package.
  * debian/README.Debian: Fix all references to
    /etc/mozilla-firefox/mozilla-firefoxrc. (Closes: #351956)
  * debian/firefox.desktop: Patch from Ian Jackson to add more
    translations and more inline with the GNOME HIG. (Closes: #351807)
  * widget/src/gtk2/nsWindow.cpp: Apply new ignore extended mouse buttons
    patch from Peter Colberg (Closes: #351972)
  * debian/firefox.1: Lower case first letter of -ContentLocale.
  * debian/firefox.1, debian/firefox-runner: Add -no-remote switch to turn
    on MOZ_NO_REMOTE. Use it for profile related commands as
    well. (Closes: #351717, #344849)
  * wikipedia.gif.uu, wikipedia.src, rules, firefox.install: Patch from
    Ian Jackson to add wikipedia search engine. (Closes: #354107)

  [ Mike Hommey ]
  * modules/libpref/src/init/all.js: Set default fonts for all languages to
    serif, sans-serif and monospace. It might solve a lot of fonts problems.
  * config/config.mk, config/make-jars.pl, configure.in,
    security/nss/lib/fortcrypt/swfort/pkcs11/config.mk,
    extensions/inspector/Makefile.in: Allow building without zip when
    building flat chrome.
  * configure: Ran autoconf accordingly to changes in configure.in.
  * debian/control: Removed build dependency on zip.
  * debian/rules: Build flat chrome.
  * debian/firefox.install: Changed wildcards accordingly.
  * config/rules.mk:
    + Don't build chromelist.txt files.
    + Fixed "jar" build so that inspector files don't get duplicated in the
      extension directory.

 -- Eric Dorland <eric@debian.org>  Sun, 26 Feb 2006 11:45:15 -0500

firefox (1.5.dfsg+1.5.0.1-2) unstable; urgency=low

  [ Mike Hommey ]
  * debian/firefox-runner: export MOZ_DISABLE_PANGO. (Closes: #351959)
  * debian/README.Debian: changed reference to the rc file in /etc.
    (Closes: #351956)
  
  [ Eric Dorland ]
  * debian/firefox.preinst: Fix {}'s bashism. Thanks Jeff King. (Closes:
    #351811)
  * modules/libpref/src/init/all.js: Make print.postscript.print_command
    space-safe. Thanks Ian Jackson. (Closes: #351809)
  * debian/firefox-runner: Don't completely override
    $MOZ_PLUGIN_PATH. Thanks Ian Jackson. (Closes: #351806)

 -- Eric Dorland <eric@debian.org>  Thu,  9 Feb 2006 01:23:35 -0500

firefox (1.5.dfsg+1.5.0.1-1ubuntu12) dapper; urgency=low

  * Sponsored upload for Theppitak Karoonboonyanan
  * Updated Thai word breaking patch:
    - load `libthai.so.0' instead of `libthai.so'.
    - print debug message only when DEBUG is defined.
    - debian/control: Suggests libthai0

 -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 13 Apr 2006 13:25:14 +0200

firefox (1.5.dfsg+1.5.0.1-1ubuntu11) dapper; urgency=low

  * Fix silly lack of [ ] quoting in AC_DEFUN use.
    Malone 36659, Mozilla bugzilla 298457.
  * Make Preferences window not chop off various elements:
    - specify a width of 50em instead of 42em
    - do not specify a height
    - add another <separator/> to the bottom of privacy.xul's prefpane.
      I have no idea why this is necessary :-(.
    Malone 36985.
  * Fix broken UTF-8 in .desktop file (again).  Malone 37779.
  * Document how to use xpcshell in README.Debian.  Malone 35333.
  * Clarify updateReadOnlyMessage to refer to `system package manager'
    which will help the misunderstanding in Malone 31284.

 -- Ian Jackson <iwj@ubuntu.com>  Wed, 12 Apr 2006 17:18:52 +0100

firefox (1.5.dfsg+1.5.0.1-1ubuntu10) dapper; urgency=low

  * Generate `firefox-dbg' package with debugging symbols.
    This involves changing debian/compat to 5, which should be safe.
  * Fix Norwegian translation in firefox.desktop. (Malone 30603.)
  * Fix trivial syntax problems in firefox.desktop. (Malone 33567.)
  * Remove x-directory/webdav x-directory/webdav-prefer-directory
    from MimeType list in desktop file.  (Malone 35928.)
  * Use `about.png.upstream' instead of `about.png.orig' is the saved
    original version for the branding; *.orig tends to get clobbered.

 -- Ian Jackson <iwj@ubuntu.com>  Fri, 24 Mar 2006 18:49:46 +0000

firefox (1.5.dfsg+1.5.0.1-1ubuntu9) dapper; urgency=low

  * added thai linebreaking support (thanks to Theppitak Karoonboonyanan)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 14 Mar 2006 15:16:52 +0000

firefox (1.5.dfsg+1.5.0.1-1ubuntu8) dapper; urgency=low

  * debian/rules:
    - renamed the idl directory to match the .pc name, 
      replace mozilla-firefox by firefox for firefox-config too

 -- Sebastien Bacher <seb128@canonical.com>  Mon, 13 Mar 2006 15:12:43 +0100

firefox (1.5.dfsg+1.5.0.1-1ubuntu7) dapper; urgency=low

  * Pointing the .pc files to /usr/include/firefox is not enough,
    better install the headers there too.

 -- Matthias Klose <doko@ubuntu.com>  Sat, 11 Mar 2006 17:41:24 +0000

firefox (1.5.dfsg+1.5.0.1-1ubuntu6) dapper; urgency=low

  * Replace Ubuntu Bugzilla bookmark with Launchpad's `Request
    support with Ubuntu' ticket creation page.  (Malone 28896.)
  * Reinstate `Translate This Application' in Help menu, despite the fact
    that Launchpad doesn't do this yet - you just get a page saying there
    are no translations for Firefox.  mdz assures us that this will be
    done some time during dapper's service life.
  * Make -P, -CreateProfile and -ProfileManager imply sensible
    values for -a, and document -a in firefox(1).  (Malone 31746.)
  * Fix md5sum mismatch which causes spurious conffile prompt on
    bookmarks.html.
  * Set browser.startup.homepage_override.mstone to ignore,
    to avoid the silly thing where the first time after the upgrade,
    firefox looks like it has lost your home page because it is so keen to
    tell you about the release notes.  (Malone 33895.)
  * Change `Latest Headlines' to `Latest BBC Headlines' to properly
    disclose the source up front, and use a corresponding RSS URL.
  * Revert the `you have chosen to open' dialogue, as discussed on
    ubuntu-devel.
  * Fix firefox-*.pc files to contain correct references to libs and
    includes, just like the mozilla-*.pc files.  (Malone 34200.)

 -- Ian Jackson <iwj@ubuntu.com>  Thu,  9 Mar 2006 19:56:58 +0000

firefox (1.5.dfsg+1.5.0.1-1ubuntu5) dapper; urgency=low

  * Disable `Translate This Application' and don't try to have `Get Help
    Online' translated because we don't know how to translate firefox:
    https://launchpad.net/products/rosetta/+spec/rosetta-firefox-support

 -- Ian Jackson <iwj@ubuntu.com>  Fri, 24 Feb 2006 14:49:23 +0000

firefox (1.5.dfsg+1.5.0.1-1ubuntu4) dapper; urgency=low

  * Disable (by default) the `you have chosen to open' dialogue box;
    instead, we just take the default (which is to open with the
    application from the Gnome MIME database).  This behaviour is
    controlled by browser.helperApps.defaultNoAsk.openFile.
  
  Bookmark, search and translation reference regression fixes:
  * Restore `Translate This Application' and `Get Help Online'
  * Add Ubuntu and Free Software links back to bookmarks
  
  Bookmark, search and translation references improvements:
  * Add Wikipedia to search box.
  * Remove `Quick searches' from bookmarks (these just replicate
    entries from the search box, and are broken anyway).
  
  * Get rid of README.Ubuntu - the contents are now no longer relevant.

 -- Ian Jackson <iwj@ubuntu.com>  Thu, 23 Feb 2006 14:44:42 +0000

firefox (1.5.dfsg+1.5.0.1-1ubuntu3) dapper; urgency=low

  * Move /usr/lib/libxpcom*.so etc. back to /usr/lib/firefox; avoids
    clashes with other packages (eg mozilla).
  * Add rpath setting for /usr/lib/firefox to all .pc files in
    firefox-dev.  This is suboptimal, but at least it allows programs
    which use firefox-dev at compile-time to find firefox's .so's.
  * Take some redundant and perhaps privacy-leaking information out
    of the default User-Agent (Malone 30677).

 -- Ian Jackson <iwj@ubuntu.com>  Fri, 10 Feb 2006 17:42:12 +0000

firefox (1.5.dfsg+1.5.0.1-1ubuntu2) dapper; urgency=low

  * Fix stupid FTBFS on default.xpm introduced in last upload.
  * Retrospectively insert CVE numbers into 1ubuntu1 changelog entry.

 -- Ian Jackson <iwj@ubuntu.com>  Thu,  9 Feb 2006 12:45:15 +0000

firefox (1.5.dfsg+1.5.0.1-1ubuntu1) dapper; urgency=low

  Changes since 1.5.dfsg-4ubuntu6:
  * New upstream version (1.5.0.1) - security and stability fixes,
    allegedly. (About 7000 lines of diff, so not reviewed for Ubuntu.)
    Security fixes included:
    - CVE-2006-0292, CVE-2006-0293, MFSA 2006-01: JavaScript garbage-collection
      hazards
    - CVE-2006-0294, MFSA 2006-02: Changing position:relative to static
      corrupts memory
    - CVE-2005-4134, MFSA 2006-03: Long document title causes startup denial of
      Service
    - CVE-2006-0295, MFSA 2006-04: Memory corruption via QueryInterface on
      Location, Navigator objects
    - CVE-2006-0296, MFSA 2006-05: Localstore.rdf XML injection through
      XULDocument.persist()
    - CVE-2006-0297, MFSA 2006-06: Integer overflows in E4X, SVG and Canvas
    - CVE-2006-0298, MFSA 2006-07: Read beyond buffer while parsing XML
    - CVE-2006-0299, MFSA 2006-08: "AnyName" entrainment and access control
      hazard
  * Fix Norwegian translation in .desktop file.  (Malone #30603.)
  * mkdir /usr/include/mozilla in firefox-dev.preinst to avoid
    maintainer script sometimes preventing installation.
  * Move the shlibs needed for gtkmozembed to /usr/lib (avoids
    need for rpath and nonsense in firefox-gtkmozembed.pc).
  * Work around new GNU make braindamage by adding seddery to
    security/coreconf/rules.mk.

  Expected-permanent differences between Ubuntu and Debian:
  * Build nspr and nss for use by all other programs in the distribution
    (Packages: libnspr-dev, libnss-dev, libnspr4, libnss3.  Fairly main
    changes to parts of the build system.)  This is so that mozilla
    can be in Ubuntu universe.
  * Disable xprint.  (xprint is not used in Ubuntu.)
  * Slightly different arrangements do with with transitional arrangements
    related to package renaming from mozilla-firefox-*.
  * Removed transitional packages mozilla-firefox-dom-inspector and
    mozilla-firefox-gnome-support (not needed in Ubuntu).
  * Build firefox-dev; applications which embed a browser in Ubuntu
    generally embed Firefox rather than mozilla.  This also means that we
    build firefox with dynamic linking so that embedders and load ff.
  * Debian package search replaced by Ubuntu package search (and defaults
    to searching only in dapper, not all releases).
  * Changes to various icons (and their installation paths).
  * Strip CUPS/ from the front of displayed printer names, since
    all printing in Ubuntu is done via CUPS.

  Other differences remaining between Ubuntu and Debian:
  * debian/rules clean removes various junk left over by the mozilla build
    system.  (Debian #350616.)
  * Exclude libssl3.so from dpkg_shlibdeps as this triggers a bug in
    fakeroot on amd64 in Ubuntu.
  * Set FIREFOX_DSP=none by default.  Will sometimes break sound from eg
    Flash.  See https://launchpad.net/malone/bugs/29760 for rationale.
    (Debian maintainers notified but no bug filed.)
  * Append our plugin path to any previous value of MOZ_PLUGIN_PATH.
    (Malone 29412.  Debian #351806)
  * firefox.desktop file has more translations and consistently calls the
    application `Firefox Web Browser' (for better UI in the menus - this
    change is also in firefox.menu).  Debian #351807.
  * Default printing command doesn't break if printer name contains
    spaces (actually a preference, in all.js).  (Debian #351809,
    Mozilla Bugzilla #326245). 
  * security/coreconf/rules.mk adjusted with awful seddery to cope with
    GNU make change to POSIXly interpretation of backslash line-joining.
    See http://lists.debian.org/debian-devel/2005/12/msg00988.html.
    Mozilla Bugzilla #325148.
  * security/coreconf/ruleset.mk has a set -e added.
  * Use GNOME mime database instead of mailcap.  Patch imported from Red
    Hat; see debian/gnome-mime-handling.diff.
  * Change various preferences:
    - Ubuntu-specific default homepage
    - Ubuntu-specific release notes
    - default homepage can be locale-specific
    - middlebutton paste disabled
    - do not load a special home page on first start after an upgrade
    - disable File / Import (wizard is nonfunctional).
      Malone #28563, Debian #350599, Mozilla Bugzilla 117844.
    - save files to Desktop by default
    - README.Ubuntu file (still rather full of junk)
    - Prevent websites disabling the right-button context menu.
    - Default font for display is sans, but:
    - Default CSS for printing uses a serif font.

 -- Ian Jackson <iwj@ubuntu.com>  Tue,  7 Feb 2006 17:14:17 +0000

firefox (1.5.dfsg+1.5.0.1-1) unstable; urgency=low

  * The "those Ubuntu guys are great after all" release.
  * New upstream release. (Closes: #351442)
  
  [ Mike Hommey ]
  * debian/presubj: Added indications to try to reproduce without extensions
    before actually filing a bug, and a hint to the safe mode.
  * debian/firefox.install: added the reporter chrome files. (Closes: #344888)
  * widget/src/gtk2/nsWindow.cpp: Revert additional stale patch for
    extended mouse buttons support.
  * debian/firefox.postinst, debian/firefox.prerm: unbashified.
    (Closes: #349946)
  * debian/control, debian/firefox-gnome-support.postinst,
    debian/firefox-gnome-support.prerm: Let the firefox-gnome-support
    package provide gnome-www-browser and handle a gnome-www-browser
    alternative. Thanks Loïc Minier. (Closes: #350788)
  * debian/firefox-runner: Enable Pango support by default. The
    MOZ_ENABLE_PANGO environment variable is now useless. (Closes: #338716)
  * debian/README.Debian: Change the paragraph about Pango to hint about
    the MOZ_DISABLE_PANGO variable. 

  [ Eric Dorland ]
  * content/events/src/nsEventStateManager.cpp,
    modules/libpref/src/init/all.js, widget/public/nsGUIEvent.h: Apply
    patch from Ian Jackson to revert a stale patch for multiple mouse
    button support that was fixed in a different way in 1.5
    (Closes: #348375)
  * debian/firefox.preinst: Check md5sum's of old conffiles before cp'ing
    them on upgrade. This won't stop all unnecessary conffile prompting in
    all situations (especially from really old versions), but should
    definitely should work for upgrading from testing or stable. (Closes:
    #345112)
  * debian/firefox.install:
    - Remove run-mozilla.sh. (Closes: #348902)
    - Reorganize things a bit.
    - Move profile into /etc/firefox here, instead of in the rules file.
  * debian/firefox.install, debian/firefox.preinst, debian/firefox.links,
    debian/firefox.dirs, debian/rules: Move chrome, defaults, greprefs
    into /usr/share/firefox for more FHS goodnesss.
  * debian/firefox.1: Document -new-tab and -new-window options, and
    remove deprecated -remote option. (Closes: #348699)
  * debian/firefox-runner: Apply patch to properly URL escape local
    files. Thanks Morita Sho. (Closes: #348451)
  * browser/app/profile/firefox.js:
    - Reallow 40-bit ciphers, since now firefox warns people who 
      use them. (Closes: #349624)
    - Enable bidi UI elements for our bi-directional friends. 
      (Closes: #348069)
  * debian/rules: Remove glob pattern from dh_install invocation. Thanks
    Ian Jackson. (Closes: #350571)
  * browser/base/content/aboutDialog.xul: Fix spurious scrollbar in the
    about dialog box. Thanks Ian Jackson. (Closes: #350608)
  * js/src/fdlibm/fdlibm.h: Patch to fix little endianess of
    mipsel. Thanks Ian Jackson and Thiemo Seufer. (Closes: #350621)
  * browser/base/content/search.xml: Patch from Ian Jackson to remove
    misleading Clear option from search box context menu. (Closes: #350611)
  * debian/watch: Fix regex to actually find the upstream tarballs.
  * modules/libpref/src/init/all.js: Cope better with printers with spaces
    in the name. Thanks Ian Jackson.
  * toolkit/components/passwordmgr/base/nsPasswordManager.cpp: Take patch
    from bz#235336 as suggested by Ian Jackson to allow password manager
    to work with sites that only have a password field, no username.

 -- Eric Dorland <eric@debian.org>  Mon,  6 Feb 2006 23:10:29 -0500

firefox (1.5.dfsg-4) unstable; urgency=low

  [ Eric Dorland ]
  * debian/control, debian/rules: 
    - Remove Kerberos options, it is now loaded dynamically.
    - Use /usr/share/firefox now for finding default.xpm.
  * debian/firefox.install, debian/firefox.links, debian/firefox.preinst:
    Start moving some clearly non-arch specific things
    (/usr/lib/firefox/searchplugins, /usr/lib/firefox/icons,
    /usr/lib/firefox/res) out of /usr/lib/firefox and into
    /usr/share/firefox to make things more FHS friendly. Can't believe no
    one ever called me on this before.
  * toolkit/components/remote/nsGTKRemoteService.cpp,
    widget/src/xremoteclient/XRemoteClient.cpp: Apply patch from bz#312154
    to fix remote interface on PPC (and probably other arches). (Closes:
    #343913)
  * xpcom/reflect/xptcall/src/md/unix/xptcstubs_linux_m68k.cpp: Patch from
    Zack Weinberg to fix FTBFS on m68k. (Closes: #343687)
  * xpcom/reflect/xptcall/src/md/unix/xptcinvoke_arm.cpp: Patch from Antti
    P Miettinen to fix small optimization problem with newer gcc's
    (Closes: #344846)

  [ Mike Hommey ]
  * debian/firefox-runner: Cleaned up now useless variables.

 -- Eric Dorland <eric@debian.org>  Tue, 10 Jan 2006 10:11:34 -0500

firefox (1.5.dfsg-3) unstable; urgency=low

  * debian/control: 
    - Need explicit build dependency on gtk >= 2.8.
    - Upgrade Standards-Version to 3.6.2.1. No changes.
    - Add compatibility packages for mozilla-firefox-dom-inspector
      and mozilla-firefox-gnome-support and make all the upgrade packages 
      Architecture: all. (Closes: #343879, #344379)
  * debian/watch: Add watch file.
  * debian/about.png.uu: Add uuencoded version of previous about box
    graphic.
  * debian/rules: uudecode and install the about.png into the right
    location.
  * debian/firefox-runner: Add MOZ_PLUGIN_PATH to include plugins at the
    old location for now. (Closes: #344085, #341682)
  * widget/src/gtk2/nsWindow.cpp: Patch from bz#305970 to fix broken
    contextual menu on Save File As. (Closes: #344430)

  * config/mkdepend/imakemdep.h, security/nss/lib/pki1/pki1.h: Remove some
    patches that are now useless (suggested by Mike Hommey).
  * mailnews/extensions/palmsync/palm.html,
    browser/themes/pinstripe/browser/browser.css,
    gfx/src/mac/nsNativeThemeMac.h,
    directory/c-sdk/ldap/docs/draft-ietf-ldapext-ldap-c-api-05.txt,
    layout/html/tests/table/bugs/bug123862.html,
    layout/html/tests/table/bugs/bug119786.html,
    layout/html/tests/table/bugs/bug101759.html,
    layout/html/tests/table/bugs/bug14489.html,
    layout/html/tests/table/bugs/bug222846.html,
    layout/html/tests/block/bugs/155333-1.html,
    layout/html/tests/block/bugs/185411-2.html,
    layout/html/tests/block/bugs/13599.html,
    layout/html/tests/block/bugs/53960.html,
    layout/html/tests/block/bugs/155333-2.html,
    layout/html/tests/block/bugs/38157-a.html,
    layout/html/tests/block/bugs/38157-b.html,
    layout/html/tests/block/bugs/46918.html,
    layout/html/tests/block/printing/145305-11.html,
    layout/html/tests/block/printing/145305-21.html,
    layout/html/tests/block/printing/145305-13.html,
    layout/html/tests/block/printing/145305-17.html,
    layout/html/tests/block/printing/145305-19.html,
    layout/html/tests/block/printing/145305-4.html,
    layout/html/tests/block/printing/127145-1.html,
    layout/html/tests/block/printing/145305-3.html,
    layout/html/tests/block/printing/145305-7.html,
    layout/html/tests/block/printing/145305-9.html,
    layout/html/tests/frameset/core/r3.html,
    layout/html/tests/frameset/core/r4.html,
    layout/html/tests/frameset/core/blank2.html,
    xpinstall/packager/stage_mfcembed.pl, xpinstall/packager/stage_gre.pl,
    embedding/qa/testembed/Tests.cpp,
    embedding/qa/testembed/nsihttpchanneltests.cpp,
    embedding/qa/testembed/BrowserImpl.cpp,
    embedding/qa/testembed/Tests.h, embedding/qa/testembed/QaUtils.cpp,
    embedding/qa/testembed/resource.h,
    embedding/qa/testembed/DomWindow.cpp,
    embedding/qa/testembed/QaUtils.h, build/unix/abs2rel.pl,
    xpfe/bootstrap/icons/windows/readme.txt,
    security/nss/cmd/ssltap/ssltap-manual.html: Fix mess my subversion
    repository made of line endings. This should reduce the size of the
    diff.gz dramatically.

 -- Eric Dorland <eric@debian.org>  Sat, 24 Dec 2005 03:23:02 -0500

firefox (1.5.dfsg-2) unstable; urgency=low

  * browser/locales/en-US/chrome/branding/brand.dtd,
    browser/locales/en-US/chrome/branding/brand.properties: Change brand
    name from Deer Park to Firefox. About box graphic still needs to be
    fixed. *grumble* *grumble* (Closes: #343704)

 -- Eric Dorland <eric@debian.org>  Sat, 17 Dec 2005 13:45:14 -0500

firefox (1.5.dfsg-1) unstable; urgency=low

  * New upstream release. No actual code changes from RC3. Took the
    opportunity to completely empty the /other-licenses directory of the
    upstream tarball.
  * configure, configure.in: Change MOZ_APP_DISPLAYNAME to Firefox, so we
    can be called Firefox without using
    --enable-official-branding. *grumble*
  * config/autoconf.mk.in, gfx/src/gtk/mozilla-decoder.cpp, configure.in:
    Apply patch from bz#305185 to fix problems building against gtk+ 2.8.
  * debian/control: 
    - Build-Depend on libfreetype6-dev since we do link
      against it directly.
    - Add mozilla-firefox package for easy transition. 
    - Conflict against older mozilla-firefox packages.
  * debian/firefox-runner: 
    - Fix typo. (Closes: #341113)
    - Check /usr/lib/mozilla-firefox/plugins for plugins too for the 
      time being. (Closes: #341682)
  * debian/firefox-dom-inspector.preinst: Remove, not needed since the
    name change.
  * debian/firefox.preinst: 
    - Remove old upgrade code.
    - Move old mozilla-firefox configs into place on install.
  * debian/mozilla-firefox.preinst: Move upgrade code in here. Remove
    mozilla-firefox alternative.
  * debian/mozilla-firefox.postrm: Remove /etc/mozilla-firefox on purge.
  
  * Some patches missed when merging from Mike Hommey:
  * browser/locales/en-US/searchplugins/answers.src: Change updateDays to
    0.
  * config/mkdepend/imakemdep.h: Define for amd64.
  * configure, configure.in: Visibility patch for recent gcc's. (Closes:
    #341766)
  * modules/libpref/src/nsPrefService.cpp: Patch to load preferences from
    defaults/syspref.
  * content/events/src/nsEventStateManager.cpp: Extended mouse events
    patch.
  * gfx/idl/nsIFreeType2.idl, gfx/src/freetype/nsFreeType.cpp,
    gfx/src/freetype/nsFreeType.h, gfx/src/ps/nsFontMetricsPS.h,
    gfx/src/x11shared/nsFontFreeType.cpp,
    gfx/src/x11shared/nsFontFreeType.h,
    layout/svg/renderer/src/libart/nsSVGLibartGlyphMetricsFT.cpp: Patch to
    use new freetype API.

 -- Eric Dorland <eric@debian.org>  Fri, 16 Dec 2005 11:37:23 -0500

firefox (1.4.99+1.5rc3.dfsg-2) unstable; urgency=low

  * The "Grand Renaming" release. Thanks to Mike Hommey for sherperding
    the 1.5 series through experimental. Now it's my turn to muck it up. A
    transition packages will be in the next release.
  * debian/mozilla-firefox*: Rename to firefox*.
  * debian/firefox.install, debian/firefox-dom-inspector.install,
    debian/firefox-gnome-support.install, debian/firefox-runner,
    firefox-xremote-client, firefox.1, firefox.desktop, firefox.dirs,
    debian/firefox.js, debian/firefox.links, debian/firefox.manpages,
    debian/firefox.menu, debian/firefox.mime, debian/firefox.postinst,
    debian/firefox.prerm, debian/firefox.png.uu, debian/README.Debian,
    debian/control, debian/rules: Search/Replace mozilla-firefox ->
    firefox where appropriate.
  * debian/firefox.links: Link old icon name to new.
  * debian/README.Debian: Fix path to .mozilla/firefox/rc. (Closes:
    #335433)
  * config/autoconf.mk.in: Set mozappdir to /usr/lib/firefox.
  
 -- Eric Dorland <eric@debian.org>  Sun, 27 Nov 2005 20:03:02 -0500

mozilla-firefox (1.4.99+1.5rc3.dfsg-1) experimental; urgency=low

  * New upstream 1.5 preview release. Release Candidate 3.
  * debian/mozilla-firefox-runner: Removed the ping stuff, it's now done by
    firefox itself.

 -- Mike Hommey <glandium@debian.org>  Fri, 18 Nov 2005 07:24:05 +0100

mozilla-firefox (1.4.99+1.5rc2.dfsg-1) experimental; urgency=low

  * New upstream 1.5 preview release. Release Candidate 2.
  * xpcom/typelib/xpidl/xpidl.c: Fix crash when no file is given on the
    command line (Closes: #323639). Also fix the error message about extra
    arguments given showing before the crash.
  * configure.in, configure: Work around dash's bug #337294 so that we can
    build fine when sh is dash (Closes: #211010, #256384).
  * debian/mozilla-firefox-runner:
    - Removed the code to detect the JVM and set LD_ASSUME_KERNEL=2.2.5 for
      b0rked 1.3 JVMs: it's been a long time they've not been ABI compatible.
    - Removed setting of MOZILLA_FIVE_HOME. We already have a default one
      built-in.
    - Removed /usr/lib/mozilla/plugins from EXTENT_LD_LIB_PATH, since we never
      get the plugins from there.
    - Removed cleanup of the profile. It is correctly done by firefox, now.

 -- Mike Hommey <glandium@debian.org>  Fri, 11 Nov 2005 08:07:05 +0100

mozilla-firefox (1.4.99+1.5rc1.dfsg-1) experimental; urgency=low

  * New upstream 1.5 preview release. Release Candidate 1.
  * debian/mozilla-firefox.install: Don't install
    /usr/lib/mozilla-firefox/extensions/reporter@mozilla.org, it got moved in
    the chrome.

 -- Mike Hommey <glandium@debian.org>  Tue,  1 Nov 2005 22:01:15 +0100

mozilla-firefox (1.4.99+1.5beta2.dfsg-1) experimental; urgency=low

  * build/unix/run-mozilla.sh, netwerk/base/src/nsStandardURL.cpp:
    Reverted debian changes: they got applied upstream.
  * configure: Applied configure.in changes by hand.
  * debian/rules: Disabled both the installer and the updater, we don't need
    them.

 -- Mike Hommey <glandium@debian.org>  Fri,  7 Oct 2005 15:06:05 +0200

mozilla-firefox (1.4.99+1.5beta1.dfsg-5) experimental; urgency=low

  * debian/control: Bumped Standards-Version to 3.6.2.
  * nsprpub/configure.in: Reverted changed.
  * configure.in: Use -fvisibility=hidden in all cases. There is another bug
    in gcc that makes it generate position dependent code when using the
    system wrappers.
  * configure, nsprpub/configure: Applied configure.in changes with
    autoconf2.13.
  * debian/rules: Put back the /usr/share/pixmaps/mozilla-firefox.xpm file.

 -- Mike Hommey <glandium@debian.org>  Mon,  3 Oct 2005 18:46:50 +0200

mozilla-firefox (1.4.99+1.5beta1.dfsg-4) experimental; urgency=low

  * xpcom/typelib/xpt/src/Makefile.in: Reverted changes.
  * configure.in, nsprpub/configure.in: Added a detection of the gcc bug about
    visibility for builtins, and use -fvisibility=hidden instead of the system
    wrappers in case the bug is found.
  * configure, nsprpub/configure: Applied configure.in changes with
    autoconf2.13. (Really closes: #329642)

 -- Mike Hommey <glandium@debian.org>  Tue, 27 Sep 2005 20:16:34 +0200

mozilla-firefox (1.4.99+1.5beta1.dfsg-3) experimental; urgency=low

  * Sync with unstable branch.
  * xpcom/typelib/xpt/src/Makefile.in: disable visibility stuff for ppc, as a
    workaround for FTBFS. (Closes: #329642)

 -- Mike Hommey <glandium@debian.org>  Mon, 26 Sep 2005 18:35:11 +0200

mozilla-firefox (1.0.7-1) unstable; urgency=high

  * New upstream release. Contains fixes for various security issues.
  * debian/mozilla-firefox-runner: Remove /usr/lib from
    LD_LIBRARY_PATH. (Closes: #321789)

 -- Eric Dorland <eric@debian.org>  Thu, 22 Sep 2005 01:23:10 -0400

mozilla-firefox (1.4.99+1.5beta1.dfsg-2) experimental; urgency=low

  * debian/rules: enabled support for canvas.

 -- Mike Hommey <glandium@debian.org>  Tue, 20 Sep 2005 07:56:01 +0200

mozilla-firefox (1.4.99+1.5beta1.dfsg-1) experimental; urgency=low

  * Cleaned-up source tarball from trademarked content and CVS directories.
  * debian/mozilla-firefox-small.xpm, debian/mozilla-firefox.xpm: Removed.
  * debian/mozilla-firefox.dirs, debian/rules:
    + Create /usr/lib/mozilla-firefox/chrome/icons/default and move
      default.xpm in it. (Closes: #327828)
    + Stop using our own xpm icons, upstream provide them, now.
  * debian/rules: changed the build system a bit.
  * xpcom/reflect/xptcall/src/md/unix/xptcinvoke_asm_parisc_linux.s,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_parisc_linux.s,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_mips.s: Somewhat these
    files disappeared. Put them back. (Closes: #328074)

 -- Mike Hommey <glandium@debian.org>  Tue, 13 Sep 2005 18:25:48 +0200

mozilla-firefox (1.4.99+1.5beta1-2) experimental; urgency=critical

  * Sync with unstable branch.
  * netwerk/base/src/nsStandardURL.cpp: Apply the patch for the 1.8 branch
    from bz#307259 to fix CAN-2005-2871. (Closes: #327452)
  * debian/mozilla-firefox-gnome-support.install, debian/rules: Move out
    imgicon module in mozilla-firefox-gnome-support. (Closes: #327451)

 -- Mike Hommey <glandium@debian.org>  Sun, 11 Sep 2005 10:45:34 +0200

mozilla-firefox (1.0.6-5) unstable; urgency=critical

  * xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm.cpp: Fix for previous
    arm fix. Thanks Steve. (Closes: #325535)
  * netwerk/base/src/nsStandardURL.cpp: Patch from bz#307259 to fix
    CAN-2005-2871, a buffer overflow vulnerability in IDN
    processing. (Closes: #327452)

 -- Eric Dorland <eric@debian.org>  Sat, 10 Sep 2005 23:03:26 -0400

mozilla-firefox (1.4.99+1.5beta1-1) experimental; urgency=low

  * New upstream beta release.
    + Find toolbar doesn't show up when in text fields. Closes: #280852.
    + Better use of GTK2 themes. The most common case was highlighted menu
      item text appearing in white on a white background. Closes: #223696,
      #257430, #258181, #266334, #278559, #289326, #297320, #310098.
    + Download manager correctly closes. Closes: #259015, #269975.
    + Doesn't crash with the http://ln.hixie.ch/resources/style/orange
      stylesheet. Closes: #277987.
    + Locale extensions can properly be disabled. Closes: #279749 (to check).
    + Doesn't crash on
      http://einsteinmg.dyndns.org/cgi-bin/remangle.cgi?=0x27b9b660 anymore.
      Closes: #294372.
    + Downloads don't freeze when a modal window opens. Closes: #211332.
    + Use GTK stock images. Closes: #281660.
  * Sync with unstable branch changes.
  * browser/app/profile/firefox.js, debian/firefox.js:
    + Removed outdated extensions.update.autoUpdateEnabled and
      extensions.update.autoUpdate;
    + Removed general.useragent.locale.
    + Allow extensions updates. It works correctly with system-wide installed
      ones, now.
  * netwerk/protocol/http/src/nsHttpConnectionMgr.cpp,
    nsprpub/pr/include/md/_linux.cfg, widget/src/gtk2/mozdrawingarea.c,
    widget/src/gtk2/nsDragService.cpp: Reversed changes, since they got
    applied upstream.
  * xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm.cpp: correctly set
    __attribute__. Closes: #325535.
  * debian/rules:
    + set --enable-extensions=default instead of a full list.
      We will get the default set of extensions provided by upstream, and
      won't need to check if they changed.
    + set --enable-pango.
    + set --enable-system-cairo.
  * debian/control: added build dependency on libgnomeui-dev and libcairo2-dev.
  * debian/mozilla-firefox.install, debian/rules: don't install files in
    /usr/lib/mozilla-firefox/chrome/icons/ anymore.
  * debian/mozilla-firefox-runner: Force MOZ_DISABLE_PANGO to 1 if
    MOZ_ENABLE_PANGO is not set.
  * debian/README.Debian:
    + Removed the note about IDN, it is now enabled by default, with correct
      whitelist set.
    + Added a note about MOZ_ENABLE_PANGO.
    + Changed notes about application update, extensions, and packaged
      extensions.
  * modules/libpref/src/init/all.js:
    + Set general.config.obscure_value to 0, we don't care about the config
      file not to be "obscured".
    + Set general.config.filename to firefox.cfg.
  * debian/firefox.cfg: Create configuration to lock some properties.
  * debian/mozilla-firefox.install: Install this firefox.cfg in
    /usr/lib/mozilla-firefox

 -- Mike Hommey <glandium@debian.org>  Fri,  9 Sep 2005 17:40:40 +0200

mozilla-firefox (1.0.6-4) unstable; urgency=low

  * xpcom/reflect/xptcall/src/md/unix/xptcinvoke_linux_alpha.cpp,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm.cpp,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_linux_alpha.cpp: Patch
    from Steve Langasek to fix unused vs. used gcc attribute on alpha and
    arm. (Closes: #325535)
  * browser/app/profile/firefox.js: Revert patch to remove the "I'm
    feeling lucky" search. Some like it, some hate it, so upstream
    behaviour wins. If you still feel strongly about it, make your case
    upstream.
  * gfx/src/gtk/nsFontMetricsXft.cpp: Apply patch from bz#252033 to work
    around a bug in XRender that might be causing #319349. 

 -- Eric Dorland <eric@debian.org>  Tue,  6 Sep 2005 02:10:07 -0400

mozilla-firefox (1.0.99+deerpark-alpha2-2) experimental; urgency=low

  * Sync with unstable branch changes, except the controversial "I'm feeling
    lucky" change. I prefer waiting for the controversy to get to a
    conclusion.
  * debian/rules, debian/control: Remove build dependency on libmng-dev and
    the --with-system-mng option to configure, the MNG support has been
    removed upstream.
  * debian/rules: Explicitely set the svg-renderer as cairo. It will use an
    old cairo version bundled with firefox, but there's no other solution for
    the moment. We have to wait for upstream 0.9.x and greater support
    (hoped for 1.5).

 -- Mike Hommey <glandium@debian.org>  Sun,  4 Sep 2005 09:01:54 +0200

mozilla-firefox (1.0.6-3) unstable; urgency=low

  * debian/rules, nsprpub/pr/include/md/_linux.cfg,
    security/coreconf/Linux.mk: Apply patch from Andreas Jochens to allow
    ppc64 builds. (Closes: #322617)
  * debian/mozilla-firefox.prerm: Move -depth option to find to suppress
    warnings. Thanks Mike Hommey.
  * debian/presubj: Have bugzilla bug URL point to a page where you can
    enter a bug.
  * browser/app/profile/firefox.js: removed the "I'm feeling lucky" from
    the keyword.URL, so now if you enter search terms in the address bar
    you will be presented with search results and not taken to the first
    result. Thanks Torok Edwin. (Closes: #321823)

 -- Eric Dorland <eric@debian.org>  Mon, 22 Aug 2005 01:20:28 -0400

mozilla-firefox (1.0.6-2) unstable; urgency=medium

  * modules/libpr0n/src/imgLoader.cpp, modules/libpr0n/src/imgLoader.h:
    Apply ported patch from Serge Belyshev from bz#293307 to fix problem
    with gcc-4.0 on amd64. (Closes: #319336)
  * debian/rules: Remove silly --enable-freetype configure line. Thanks
    Antony Gelberg. (Closes: #319886)

 -- Eric Dorland <eric@debian.org>  Sat, 30 Jul 2005 02:11:03 -0400

mozilla-firefox (1.0.6-1) unstable; urgency=low

  * New upstream release. (Closes: #318672)
  * debian/rules: Remove hack to use gcc 3.4 on amd64, since now we're all
    on gcc 4.0. (Closes: #318684)
  * debian/control:
    - Remove gcc 3.4 build depends on amd64
    - Explicitly build depend on libxinerama-dev. 
  * gfx/src/gtk/nsScreenGtk.cpp: Patch from Loic Minier to fix
    gdk_property_get warnings.
  * widget/src/gtk2/mozdrawingarea.c: Patch from Loic Minier to fix
    crashes under GTK 2.7. (Closes: #318903)

 -- Eric Dorland <eric@debian.org>  Wed, 20 Jul 2005 02:57:44 -0400

mozilla-firefox (1.0.99+deerpark-alpha2-1) experimental; urgency=low

  * New upstream alpha release. Be aware that you WILL have troubles with
    debian packages for firefox extensions.
  * Reverted patches that got incorporated upstream.
  * content/events/src/nsEventStateManager.cpp: Some changes to the previous
    patch to fit changes in API.
  * debian/update-mozilla-firefox-chrome,
    debian/update-mozilla-firefox-chrome.8,
    debian/mozilla-firefox-dom-inspector.post(inst|rm),
    debian/mozilla-firefox-gnome-support.post(inst|rm),
    debian/theme/*, debian/inspector/*: Removed.
  * debian/mozilla-firefox.postinst: Removed call to
    update-mozilla-firefox-chrome.
  * debian/mozilla-firefox-dom-inspector.install: Only install files from
    /usr/lib/mozilla-firefox/extensions/inspector@mozilla.org
  * debian/mozilla-firefox.dirs: Don't create /var/lib/mozilla-firefox/*,
    /usr/lib/mozilla-firefox/extensions nor /usr/lib/mozilla-firefox/plugins.
  * debian/mozilla-firefox.install:
    - Don't install regxpchrome, chrome/pipnss.jar and chrome/help.jar which
      don't exist anymore.
    - Install manifest files in addition to jar files in chrome.
    - Install classic.jar in the normal chrome directory (awaiting EM
      modifications so that it can actually go back in the extensions
      directory).
    - Don't install debian/theme/00classic and debian/theme/Uninstall,
      which got removed.
    - Get the theme in the correct directory (it's not in
      defaults/profile/extensions anymore).
    - Install the reporter extension.
    - Selectively install subdirectories of /usr/lib/mozilla-firefox/defaults,
      since some of them are useless.
    - Install the unixprint plugin.
  * debian/mozilla-firefox.manpages: Removed manual page for
    update-mozilla-firefox-chrome.
  * debian/mozilla-firefox.links: Removed all links in
    /var/lib/mozilla-firefox/.
  * debian/rules:
    - Enable freetype in the build, we'll see if deerpark is any better than
      1.0.x.
    - Commented out OPTFLAGS set for some architectures. We will see if gcc
      4.0 is doing any better.
    - Enabled SVG support. (Closes: #215990)
    - Enabled some more extensions to fit extensions provided by upstream.
    - Added needed --enable-application=browser to the ./configure call.
    - Don't install update-mozilla-firefox-chrome.
    - Don't create installed-chrome.txt.
    - Don't remove installed-extensions.txt, it doesn't exist anyway.
    - Don't move classic theme's install.rdf, it's already at the correct
      place.
    - Remove unneeded removals of preferences files which are not there
      anymore.
  * debian/mozilla-firefox.preinst: Clean-up old generated files (those in
    /var/lib/mozilla-firefox and
    /usr/lib/mozilla-firefox/extensions/*/uninstall/Uninstall. (Note that for
    the latter, some packages do provide them, but they were overwritten by
    update-mozilla-firefox-chrome. They have actually no use, and it is safe
    to remove them. Extensions packages will eventually remove them anyway)
  * debian/mozilla-firefox.prerm: Put -depth option of find before -type d.

 -- Mike Hommey <glandium@debian.org>  Sat, 16 Jul 2005 10:18:40 +0200

mozilla-firefox (1.0.5-1) unstable; urgency=high

  * New upstream release, fixes security issues. (Closes: #318061)
  * debian/rules: Disable freetype in the build for the time being. This
    *might* break printing in some cases.
  * gfx/idl/nsIFreeType2.idl, gfx/src/freetype/nsFreeType.cpp,
    gfx/src/freetype/nsFreeType.h, gfx/src/ps/nsFontMetricsPS.cpp,
    gfx/src/ps/nsFontMetricsPS.h, gfx/src/x11shared/nsFontFreeType.cpp,
    gfx/src/x11shared/nsFontFreeType.h,
    layout/svg/renderer/src/libart/nsSVGLibartGlyphMetricsFT.cpp: Patch
    from bz#234035 to try to get building with the new freetype. (Closes:
    #314243)

 -- Eric Dorland <eric@debian.org>  Sat, 16 Jul 2005 00:43:54 -0400

mozilla-firefox (1.0.4-3) unstable; urgency=low

  * debian/mozilla-firefox.desktop: Add Czech translation from Jan
    Outrata. (Closes: #311376)
  * xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_ipf64.s,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_ipf64.cpp,
    xpcom/reflect/xptcall/public/xptcstubsdecl.inc: Revert patch from
    David Mosberger for 7+ args on ia64 that was added 1.0.3-2.
  * xpcom/reflect/xptcall/src/md/unix/xptcstubs_ipf32.cpp,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_ipf32.s,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_ipf64.s,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_ipf64.cpp,
    xpcom/reflect/xptcall/public/genstubs.pl: Better patch from bz#291378
    which has been accepted upstream for ia64 7+ args fix.
  * xpcom/reflect/xptcall/public/xptcstubsdecl.inc: Call genstubs.pl to
    regenerate this file.
  * dom/src/base/nsGlobalWindow.cpp,
    embedding/components/windowwatcher/src/nsWindowWatcher.cpp: Fix
    injection spoofing, patch from bz#296850. Fixes CAN-2004-0718. 

 -- Eric Dorland <eric@debian.org>  Thu,  9 Jun 2005 23:54:41 -0400

mozilla-firefox (1.0.4-2) unstable; urgency=critical

  * debian/control: Build-depend on libxft-dev not libxft2-dev to appease
    finicky sparc buildd.

 -- Eric Dorland <eric@debian.org>  Mon, 16 May 2005 21:17:57 -0400

mozilla-firefox (1.0.4-1) unstable; urgency=critical

  * New upstream release. Fixes CAN-2005-1477 and CAN-2005-1476. (Closes: #308620)
  * debian/update-mozilla-firefox-chrome.8: Patch from A Costa to fix the
    spelling of maintenace. (Closes: #305968)
  * debian/mozilla-firefox.desktop: Patch from Steinar H. Gunderson to add
    a Norwegian translation. (Closes: #305983)

 -- Eric Dorland <eric@debian.org>  Thu, 12 May 2005 22:59:47 -0400

mozilla-firefox (1.0.3-2) unstable; urgency=high

  * browser/app/profile/firefox.js: Disable SSLv2 and 40-bit ciphers by
    default. 
  * debian/mozilla-firefox.NEWS: Explain the SSL change.
  * extensions/transformiix/source/base/Double.cpp: Patch from David
    Mosberger-Tang (fixed up by me) to fix unaligned access on ia64 (and
    perhaps other platforms). (Closes: #303518)
  * xpcom/reflect/xptcall/public/xptcstubsdecl.inc,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_ipf64.s,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_ipf64.cpp: Another patch
    from David Mosberger-Tang to fix extension loading on ia64. (Closes:
    #303515)

 -- Eric Dorland <eric@debian.org>  Thu, 21 Apr 2005 01:25:02 -0400

mozilla-firefox (1.0.3-1) unstable; urgency=low

  * New upstream release, fixes various security issues, so urgency high.
  * js/src/fdlibm/fdlibm.h: Fix from David Mosberger to define ia64 as
    little-endian arch (also added for mipsel). (Closes: #303438)

 -- Eric Dorland <eric@debian.org>  Sun, 17 Apr 2005 23:13:01 -0400

mozilla-firefox (1.0.2-3) unstable; urgency=high

  * gfx/src/freetype/nsFreeType.cpp,
    netwerk/protocol/http/src/nsHttpConnectionMgr.cpp,
    security/nss/lib/pki1/oiddata.h, security/nss/lib/pki1/pki1.h,
    widget/src/gtk2/nsDragService.cpp: Fixes for gcc-4.0,
    bz#289238. (Closes: #301485)
  * js/src/jsstr.c: Fix for JS memory access security bug, patch from
    bz#288688. (Closes: #302775)

 -- Eric Dorland <eric@debian.org>  Wed,  6 Apr 2005 01:36:11 -0400

mozilla-firefox (1.0.2-2) unstable; urgency=high

  * Last upload should of been marked urgency=high because of the security
    fixes.
  * debian/mozilla-firefox.postinst: Fix ridiculous typos. (Closes:
    #300685)
  * debian/mozilla-firefox-runner: Use pgrep to detect esd and arts
    instead. Thanks Craig Small for the advice. (Closes: #302086)

 -- Eric Dorland <eric@debian.org>  Fri,  1 Apr 2005 01:18:18 -0500

mozilla-firefox (1.0.2-1) unstable; urgency=low

  * New upstream release. Fixes CAN-2005-0399, CAN-2005-0401,
    CAN-2005-0402. (Closes: #301243)
  * debian/control: Update suggest for xprint rename. (Closes: #300976)
  * xpcom/reflect/xptcall/src/md/unix/{Makefile.in,
    xptcinvoke_asm_parisc_linux.s, xptcstubs_asm_parisc_linux.s}: Apply
    patch from Ivar (Contributed by Randolph Chung) to fix Firefox on
    hppa. (Closes: #286038)

 -- Eric Dorland <eric@debian.org>  Fri, 25 Mar 2005 02:30:10 -0500

mozilla-firefox (1.0.1-3) unstable; urgency=low

  * widget/src/gtk2/nsGtkKeyUtils.cpp: Patch from bz#108170 to fix broken
    keymap for Germans. (Closes: #299781)
  * toolkit/mozapps/extensions/src/nsExtensionManager.js.in: avoid
    crashing when extension's install.rdf is broken. (Closes: #298796)
    (MH)
  * debian/mozilla-firefox.prerm: Remove
    /usr/lib/mozilla-firefox/defaults/profile/extensions/Extensions.rdf on
    uninstall. (Closes: #298636)
  * debian/mozilla-firefox.postinst: Add little echo to tell people to
    restart firefox after upgrades.
  * debian/presubj: Add a note there about restarting firefox before
    submitting bugs.
  * debian/mozilla-firefox-runner: Properly quote $@ expansion. (Closes:
    #300195)
  * browser/locales/en-US/searchplugins/
    {yahoo.src,google.src,eBay.src,dictionary.src,creativecommons.src,
    amazondotcom.src}: Set updateCheckDays to 0, which avoids duplicated
    search entries in the menu. (Closes: #299006, #299813)

 -- Eric Dorland <eric@debian.org>  Sun, 20 Mar 2005 17:08:12 -0500

mozilla-firefox (1.0.1-2) unstable; urgency=high

  * Changes by Mike Hommey:
  * Urgency: high due to RC bug fix.
  * debian/update-mozilla-firefox-chrome: Re-initialize Extensions.rdf
    inside the script instead of relying on mozilla-firefox's default
    behaviour, which just fails when defaults/profile/extensions/ \
    Extensions.rdf doesn't exist (and it seems some people like to remove
    files in /etc). (Closes: #294175)
  
  * Changes by Eric Dorland:
  * debian/mozilla-firefox.menu: Capitalize "browsers". Thanks Gerfried
    Fuchs.
  * debian/mozilla-firefox-runner: Fix from Marc Horowitz to fix sound
    device detection. (Closes: #297088)
  * toolkit/content/widgets/tabbrowser.xml: Apply patch from bz#283063, to
    fix a memory leak when closing tabs. (Closes: #296749)
  * xpfe/global/resources/content/bindings/browser.xml,
    xpfe/global/resources/content/bindings/tabbrowser.xml,
    toolkit/content/widgets/browser.xml,
    toolkit/content/widgets/tabbrowser.xml: Apply patches from bz#131456
    to fix various tab related memory leaks. (Closes: #280586)
  * netwerk/protocol/http/src/nsHttpHandler.cpp: Patch from bz#265536 to
    differentiate between AMD64 and i386. (Closes: #282592)

 -- Eric Dorland <eric@debian.org>  Sat,  5 Mar 2005 18:46:09 -0500

mozilla-firefox (1.0.1-1) unstable; urgency=high

  * New upstream release. (Closes: #296851)
    - This release fixes the Secunia window injection bug, 
      CAN-2004-1156. (Closes: #293664)
  
  * Changes by Mike Hommey: 
  * debian/rules: Some clean-up.
  * debian/control: Changed my maintainer address.
  * debian/README.Debian: Add a note about automatic updates for
    extensions. (Closes: #296761)

  * Changes by Eric Dorland:
  * browser/app/profile/firefox.js: Remove disable IDN pref, it's the
    default now anyway.

 -- Eric Dorland <eric@debian.org>  Tue,  1 Mar 2005 02:03:48 -0500

mozilla-firefox (1.0+dfsg.1-6) unstable; urgency=high

  * The "And I thought IE had security bugs!" release.
  * toolkit/content/widgets/tabbrowser.xml,
    xpfe/global/resources/content/bindings/tabbrowser.xml: Fix
    "Firetabbing" vulnerability from bugzilla#280056, fixes
    CAN-2005-0231. (Closes: #294415)
  * modules/plugin/base/src/nsPluginHostImpl.cpp: Fix "Fireflashing"
    vulnerability from bugzilla#280664, fixes CAN-2005-0232. (Also Closes:
    #294415)
  * build/unix/run-mozilla.sh: Patch from Javier Fernández-Sanguino Peña
    to fix insecure temp file usage in run-mozilla.sh. (Closes: #294127)
  * netwerk/base/src/nsStandardURL.cpp, netwerk/base/src/nsStandardURL.h:
    Patch from bugzilla#261934 to make the network.enableIDN preference
    work and again.
  * browser/app/profile/firefox.js: Disable IDN by default. This doesn't
    close #293975, but drops its severity. 
  * debian/README.Debian: Add warning and describe how to enable IDN.

 -- Eric Dorland <eric@debian.org>  Wed,  9 Feb 2005 22:56:17 -0500

mozilla-firefox (1.0+dfsg.1-5) unstable; urgency=low

  * debian/mozilla-firefox.desktop: Don't translate "Mozilla Firefox" into
    French.
  * browser/app/profile/firefox.js: Set mozilla.widget.raise-on-setfocus
    to false to prevent unecessary window raising. (Closes: #292049)
  * debian/rules: Don't compile statically on mips and mipsel, since it's
    broken for now.

 -- Eric Dorland <eric@debian.org>  Sun,  6 Feb 2005 15:02:36 -0500

mozilla-firefox (1.0+dfsg.1-4) unstable; urgency=low

  * debian/mozilla-firefox.desktop: Add French translations from Jerome
    Warnier. I will accept more, but closing this bug. (Closes: #292506)
  * debian/README.Debian: Update the Emacs keybindings instructions.
    (Closes: #291691)
  * debian/mozilla-firefox.1: 
    - Remove -splash from the manpage, it has never worked. (Closes: 
      #287088)
    - Add units to -height and -width description. (Closes: #285142)

 -- Eric Dorland <eric@debian.org>  Wed,  2 Feb 2005 01:42:53 -0500

mozilla-firefox (1.0+dfsg.1-3) experimental; urgency=low

  * debian/mozilla-firefox.desktop: Add %u to the exec line so that apps
    know it can handle URLs. (Closes: #290132)
  * debian/README.Debian: 
    - Improve button reversal instructions. Thanks Christian Mayrhuber
    - Fix reference to ~/.firefox. 
  * debian/rules: Enable static building. This will build firefox as one
    large binary (mostly) and should speed a few things up, especially
    program load time. I'd like to hear about any speedup (or slow down)
    you exprience. Porters, please build this for your arch to make sure
    this doesn't break anything.

 -- Eric Dorland <eric@debian.org>  Thu, 20 Jan 2005 01:40:34 -0500

mozilla-firefox (1.0+dfsg.1-2) unstable; urgency=medium

  * debian/mozilla-firefox-gnome-support.postrm,
    debian/mozilla-firefox-dom-inspector.postrm: Don't die if
    update-mozilla-firefox-chrome dies. (Closes: #287355)

 -- Eric Dorland <eric@debian.org>  Sun,  9 Jan 2005 23:51:10 -0500

mozilla-firefox (1.0+dfsg.1-1) unstable; urgency=low

  * Not a new upstream release.
  * other-licenses/branding/firefox, other-licenses/7zstub/firefox: Remove
    these from the .orig.tar.gz, since they are not DFSG-free. We're not
    using the files anyway, so out they go. (Not sure the 7zstub stuff is
    non-free, but it's Windows only so no harm)
  * debian/rules: 
    - Remove explicit low-optimization on alpha, since Falk
      Hueffner claims it works.
    - Move entire defaults/profile directory into /etc/mozilla-firefox, 
      rather than just the bookmarks.html. (Closes: #285538)
  * debian/mozilla-firefox.links: Link entire defaults/profile now.
  * debian/mozilla-firefox.preinst: Add upgrade code to remove old
    defaults/profile to make way for new symlink.
  * debian/mozilla-firefox.dirs: Just create etc/mozilla-firefox.

 -- Eric Dorland <eric@debian.org>  Sun, 19 Dec 2004 01:31:44 -0500

mozilla-firefox (1.0-5) unstable; urgency=medium

  * Changes by Mike Hommey:
  * toolkit/mozapps/extensions/src/nsExtensionManager.js.in: Make the
    extensions upgrade work again. (Closes: #282143)
  * debian/rules: Better DEB_BUILD_OPTIONS handling, better debugging
    build (DEB_BUILD_OPTIONS="nostrip debug")
  * toolkit/mozapps/extensions/src/nsExtensionManager.js.in,
    toolkit/mozapps/extensions/content/extensions.js: Allow users to
    disable globally installed extensions.

  * Changes by Eric Dorland:
  * debian/rules: Remove explicit low-optimization on sparc. Apparently
    there was an issue for a number of arches that required lower
    optimization settings, but it is now resolved. So porters, please
    check -O2 on arm, alpha, powerpc and ia64 and let me know if it's
    safe. Thanks David S. Miller. (Closes: #284533)

 -- Eric Dorland <eric@debian.org>  Tue,  7 Dec 2004 01:06:48 -0500

mozilla-firefox (1.0-4) unstable; urgency=medium

  * debian/control: Make mozilla-firefox-gnome-support and xprt-xprintorg
    Suggests, no Recommends after a look at policy. (Closes: #282432)
  * debian/README.Debian: 
    - Refer to .mozilla/firefox, not .firefox.
    - Explain how to reenable emacs style keybindings. (Closes: #282321)

 -- Eric Dorland <eric@debian.org>  Sat, 27 Nov 2004 20:40:10 -0500

mozilla-firefox (1.0-3) unstable; urgency=low

  * Changes by Mike Hommey
  * The "becoming more and more an iceweasel" release.
  * debian/firefox.js:
    + Enable firefox's internal locale autodetection.
    + Disable default browser question at startup. (Closes: #280752)
  * debian/mozilla-firefox-runner: Removed our locale autodetection.
    That means now locales installed in user profiles are automatically
    used, and that there is no need for /var/lib/mozilla-firefox/locales.d
    anymore.
  * debian/mozilla-firefox.dirs: Removed creation of
    /var/lib/mozilla-firefox/locales.d.
  * debian/rules: Removed creation of the locale file in
    /var/lib/mozilla-firefox/locales.d.
  * debian/presubj: Put some more recent information.
  * htmlparser/src/nsParser.cpp: Applied patch from bz#57717 so that empty
    html files don't get <html><body></body></html> when viewing source.
  * browser/base/content/aboutDialog.css: increase the User Agent element
    height as in bz#238137 (but up to MacOSX's height) to show the full User
    Agent string.
  * xpcom/io/nsAppDirectoryServiceDefs.h,
    xpcom/io/nsAppFileLocationProvider.cpp,
    xpfe/components/search/src/nsInternetSearchService.cpp: Applied patch from
    bz#123315 so that Internet search services in user profiles are supported.
    (Closes: #219053)
  * debian/mozilla-firefox-runner:
    + Remove compatibility.ini only if it is older than
      /usr/lib/mozilla-firefox/components.ini. That way, we only rebuild it
      after an update-mozilla-firefox-chrome.
    + Detect if we're being run through sudo without the -H option, in which
      case we force setting of $HOME. (Closes: #218156)
  * browser/app/profile/firefox.js: Sync'ed with debian/firefox.js.
  * toolkit/mozapps/extensions/src/nsExtensionManager.js.in:
    + Removed some error messages that get there because firefox is trying to
      write in the /usr/lib/mozilla-firefox directory as a user. They are
      useless and lead users to think something is going wrong while it's the
      (stupid but) normal way firefox works.
    + Avoid creation of directories when attempting to read files, that
      throwed uncaught exceptions breaking some stuff in several different
      ways when extensions don't follow the new scheme for extensions.
    + Avoid copying stuff from
      /usr/lib/mozilla-firefox/defaults/profile/extensions/ to
      /usr/lib/mozilla-firefox/extensions/, that's the *very* old way of
      installing extensions, which, since the old scheme has been thrown away,
      won't work anyway, if any extension provides files out there.
    + CheckForMismatches: Avoid to disable already disabled global extensions,
      and don't propose to upgrade the locked extensions. That fixes a
      never-ending loop occuring when running firefox for the first time in a
      user account, while some global extensions are expired.
      (Closes: #278722, #281537)
  * debian/mozilla-firefox.prerm, debian/mozilla-firefox.preinst: Moved
    removal of links to /usr/lib/mozilla-firefox/defaults/profile/extensions/
    sitting in /usr/lib/mozilla-firefox/extensions/, if any remaining, from
    prerm to preinst. We remove them once and for all, they won't be created
    by us anymore.
  * debian/update-mozilla-firefox-chrome:
    + Removed support for extensions in
      /usr/lib/mozilla-firefox/defaults/profile/extensions/.
    + Removed some clean-up that had been introduced to help the Extensions
      Manager not to die, and which, actually, did not work out quite so well.
      Anyways, with the changes this time, the EM is supposed to support much
      more problems than ever before (as usual ;) ) so we don't need that
      anymore.
    + Avoid stupid mv error messages when firefox-bin -register fails (which
      is not supposed to happen, but you're never too careful)
  * debian/update-mozilla-firefox-chrome, debian/mozilla-firefox.preinst:
    Move removal of some very old stuff to preinst, to do it once and for all
    instead of doing it every time we run update-mozilla-firefox-chrome.
  * netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp: Applied patch from
    bz#124561 to get a prompt for username/password in case anonymous login
    fails.
  * debian/mozilla-firefox-runner:
    + Added check for more arguments so that the url in the command line get
      detected more accurately.
    + When a file name is given on the command line, prepend "file://" and
      change spaces into %20. (Closes: #281800)

  * Changes by Eric Dorland
  * debian/mozilla-firefox.prerm: Patch from Philipp Weis to fix order of
    find arguments. (Closes: #280852)
  * debian/mozilla-firefox.desktop: Support new mime type handler in Gnome
    2.8. (Closes: #281274) (MH: I added some more myme-types)
  * debian/mozilla-firefox.postinst: Run update-desktop-database if it
    exists.
  * widget/src/gtk/nsWidget.cpp: We don't use gtk anymore, might as well
    revert these patches. Thanks Stephane Despret. 

 -- Eric Dorland <eric@debian.org>  Thu, 18 Nov 2004 22:16:28 -0500

mozilla-firefox (1.0-2) unstable; urgency=low

  * Changes by Mike Hommey
  * The "don't do too much on the same day, it's bad for health" release.
  * debian/firefox.js: Re-activated the extensions update service, and
    removed the update url.
  * browser/app/profile/firefox.js: Sync'ed with debian/firefox.js.
  * debian/mozilla-firefox-dom-inspector.preinst: Removed old inspector.js
    file.
  * toolkit/mozapps/extensions/src/nsExtensionManager.js.in,
    toolkit/mozapps/extensions/content/extensions.js: Disabled possibility
    to update locked extensions and themes. Locked extensions being the
    ones installed by the packaging system, they should be updated through
    that.
  * toolkit/mozapps/update/src/nsUpdateService.js.in: Disabled application
    update functionnality. Firefox should be updated through the packaging
    system.
  * browser/components/prefwindow/content/pref-advanced.xul: Removed the
    preferences panel item to activate application update, since it is
    totally disabled.
  * debian/mozilla-firefox-runner: Remove compatibility.ini instead of
    compreg.dat. (Eric: This will cause a rebuild of the compreg.dat)
  
  * Changes by Eric Dorland:
  * debian/mozilla-firefox.NEWS: Fix typos.
  * README.Debian: 
    - Add note about application update being completely disabled.
    - Fix path to XUL.mfsal

 -- Eric Dorland <eric@debian.org>  Wed, 10 Nov 2004 22:56:22 -0500

mozilla-firefox (1.0-1) unstable; urgency=medium

  * New upstream release (Closes: #280449)
  
  * Changes by Mike Hommey:
  * netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp: Apply new patch
    #164795 from bz#266835 + some tweaks as previously. This might lead to
    encoding problems with the password, but it is supposed to be ASCII
    anyway.
  * toolkit/mozapps/extensions/src/nsExtensionManager.js.in: Reworked the
    previous patches so that the Extensions Manager shows extensions that
    have been disabled due to version mismatch, and added a workaround so
    that components registration works correctly.
  * debian/update-mozilla-firefox-chrome: Removed part that is useless due
    to last changes in the Extensions Manager.
  * Make the inspector a real extension again:
    - debian/inspector/00dom-inspector: File for
      /var/lib/mozilla-firefox/extensions.d.
    - debian/inspector/Uninstall: Uninstall file needed in extension 
      directory.
    - debian/inspector/install.rdf: install.rdf taken from older versions, 
      and adapted to newer versions, adding registered chrome.
    - debian/mozilla-firefox-dom-inspector.dirs: Removed. Everything will 
      be created by dh_install.
    - debian/mozilla-firefox-dom-inspector.install: install
      debian/inspector.rdf and most inspector files in the right place in
      /usr/lib/mozilla-firefox/extensions/{641d8d09-7dda-4850-8228-ac0ab65e2ac9}
      and /var/lib/mozilla-firefox
  * Make the classic theme a real extension, even though it's still in 
    the main package:
    - debian/theme/00classic: File for 
      /var/lib/mozilla-firefox/extensions.d.
    - debian/theme/Uninstall: Uninstall file needed in extension 
      directory.
    - debian/mozilla-firefox.install: Install all files in the right 
      place in
      /usr/lib/mozilla-firefox/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}
    - debian/mozilla-firefox.dirs: Removed creation of
      /usr/lib/mozilla-firefox/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/chrome, 
      it will be done by dh_install.
    - browser/app/profile/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf.in:
      Added chrome to be registered.
  * Removed support for /var/lib/mozilla-firefox/chrome.d:
    - debian/mozilla-firefox.dirs: Removed creation of the directory.
    - debian/rules: Removed creation of files there, and put the
      installed-chrome.txt, excluding inspector and classic theme stuff,
      directly in /usr/lib/mozilla-firefox/chrome.
    - debian/update-mozilla-firefox-chrome: Removed all
      /var/lib/mozilla-firefox/chrome.d related stuff.
    - debian/mozilla-firefox.links: Removed installed-chrome.txt link.
    - toolkit/mozapps/extensions/src/nsExtensionManager.js.in: disable
      extensions that fail to install chrome.
  * debian/mozilla-firefox-runner: Remove user profile compreg.dat at
    launch time.
  * Moved some files in /var/lib/mozilla-firefox:
    - debian/mozilla-firefox.links: Add a symlink for Extensions.rdf 
      and components.ini, from /usr to /var.
    - debian/mozilla-firefox.prerm: Don't remove files we don't 
      provide and remove files at their new locations.
    - debian/mozilla-firefox.preinst: Remove
      /var/lib/mozilla-firefox/installed-chrome.txt.
    - debian/update-mozilla-firefox-chrome: Create links for 
      Extensions.rdf and components.ini after register call, and remove 
      components.ini before.
  * Clean-up in files generated by update-mozilla-firefox-chrome:
    - debian/mozilla-firefox.links: Put all the links generated by
      update-mozilla-firefox-chrome into the package.
    - debian/mozilla-firefox.prerm: Remove all /var files generated 
      in the remove target, and changed the way we clean-up 
      /var/lib/mozilla-firefox.
  * debian/mozilla-firefox.install: Removed chromelist.txt.
  * Add support for extensions preferences:
    - debian/update-mozilla-firefox-chrome: Handle
      /usr/lib/mozilla-firefox/defaults.ini file.
    - debian/mozilla-firefox.links: Add a symlink to /var for 
      defaults.ini.
    - toolkit/mozapps/extensions/src/nsExtensionManager.js.in: Added 
      defaults registration in -register command.
    - mozilla-firefox-dom-inspector.install: Move inspector.js into 
      the appropriate extension specific directory.
  * Move preferences back into /usr:
    - debian/rules: Don't move the prefs into 
      /etc/mozilla-firefox/pref, and put the vendor thing into /usr 
      as well, and remove firefox-l10.js file.
    - debian/mozilla-firefox.preinst: remove old prefs in /etc and 
      old symlink /usr/lib/mozilla-firefox/defaults/pref.
    - debian/firefox.js: new Debian default preferences file.
    - debian/mozilla-firefox.install: install firefox.js in
      /etc/mozilla-firefox/pref.
    - debian/mozilla-firefox.links: rename
      /usr/lib/mozilla-firefox/defaults/pref symlink to
      /usr/lib/mozilla-firefox/defaults/syspref.
    - toolkit/mozapps/extensions/src/nsExtensionManager.js.in: Added 
      a hook so that defaults/syspref gets registered in defaults.ini 
      after all other extensions preferences.
  * debian/mozilla-firefox.preinst: only clean-up stuff if we are
    upgrading from a version known to still have the files. Added some
    more clean-up.
  * debian/mozilla-firefox.install: Removed useless init.d.
  * modules/libpref/src/init/all.js: Fixed all chrome URLs which refered to
    mozilla stuff.
  * debian/update-mozilla-firefox-chrome: Remove some more files before running
    firefox-bin -register.

  * Changes by Eric Dorland:
  * debian/mozilla-firefox.NEWS: Add warning about broken extension and
    locale packages with this release. 
  * debian/mozilla-firefox-runner: Comment out warning about xprint,
    xprint isn't necessarily needed for printing since postscript was
    reenabled. (Closes: #279858)

 -- Eric Dorland <eric@debian.org>  Wed, 10 Nov 2004 00:33:44 -0500

mozilla-firefox (0.99+1.0RC1-4) unstable; urgency=low

  * debian/mozilla-firefox-runner:
    - Fixed to run properly with dash. (Closes: #279549).
    - Fixed indentation.
    - Added a basic debugger support.
  * debian/mozilla-firefox.1: Added information about debugger options.
  * debian/rules: Added a debug option to DEB_BUILD_OPTIONS. If you want to
    build a fully gdb'able package, use DEB_BUILD_OPTIONS="noopt nostrip
    debug"
  * netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp: Apply new patch from
    bz#266835.
    - Further change this patch to use Append rather than AppendLiteral,
      which doesn't seem to exist. (ED)

 -- Mike Hommey <mh@glandium.org>  Thu,  4 Nov 2004 22:01:51 +0900

mozilla-firefox (0.99+1.0RC1-3) unstable; urgency=low

  * netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp: Apply patch from
    bz#266835 to fix anonymous user password issue. (Closes: #226784)
  * toolkit/mozapps/extensions/src/nsExtensionManager.js.in: (MH)
    - Fully apply previous patches, which for some reason left a spurious code
      line which made the extensions manager not like expired extensions
      anymore. (Closes: #279140)
    - Enhanced extensions manager so that the behaviour described in
      https://bugzilla.mozilla.org/show_bug.cgi?id=247846#c14 *actually*
      works. Extensions packagers are invited to move their chrome files
      accordingly, and remove /var/lib/mozilla-firefox/chrome.d files so that
      extensions chrome don't get registered when they are forced-disable due
      to version mismatch or some other reason.
  * debian/mozilla-firefox-runner: 
    - Fix some thinkos. (MH)
    - Fix for loading files from the command line. (Closes: #279018) (MH)
    - Removed setting --display from $DISPLAY, let it get it from the 
      environment, but pass --display if it is set. (Mike, 
      I'm worried this will screw up some session 
      managers, let me know what you think, we can revert it)
    - Removed FIREFOX_OPEN_IN stuff, so that firefox now obeys to "open 
      links from other applications in" setting. (Closes: #279073) (MH)
    - Enhanced command line parsing, and drop empty arguments. 
      (Closes: #279138) (MH)
    - No need for a find to look for XUL.mfasl, we already have its 
      location from the path list taken from profiles.ini. (MH)
    - Better detection of dsp wrapper, when FIREFOX_DSP=auto. 
      (Closes: #254611) (MH)
    - Correctly open local files even when firefox was not previously 
      running. (Closes: #279018) (MH)
  * debian/mozilla-firefox.1: (MH)
    - Removed references to FIREFOX_OPEN_IN.
    - Added the -safe-mode option.
  * debian/mozilla-firefoxrc: Removed FIREFOX_OPEN_IN. (MH)
  
 -- Eric Dorland <eric@debian.org>  Tue,  2 Nov 2004 00:46:28 -0500

mozilla-firefox (0.99+1.0RC1-2) unstable; urgency=medium

  * browser/app/profile/firefox.js: Disable browser update checking by
    default.
  * debian/mozilla-firefox-runner: Apply patch from Aurelien Jarno to fix
    variable name typo. (Closes: #278844)

 -- Eric Dorland <eric@debian.org>  Fri, 29 Oct 2004 23:50:59 -0400

mozilla-firefox (0.99+1.0RC1-1) unstable; urgency=medium

  * New upstream release.
  * layout/xul/base/src/nsImageBoxFrame.{cpp,h}: Remove some conflicts
    from a previous patch.

 -- Eric Dorland <eric@debian.org>  Thu, 28 Oct 2004 23:33:46 -0400

mozilla-firefox (0.10.1+1.0PR-5) unstable; urgency=low

  * debian/rules: (MH)
    - Use upstream extensions set. This will eventually get a
      correct help menu and fix some yet undiscovered UI issues. 
      (Closes: #257946)
    - Added support for DEB_BUILD_OPTIONS=noopt.
    - Changed OPTFLAGS assignment.
    - Remove whitespace characters in version number for UserAgent
      branding.
    - Install mozilla-firefox-runner into /usr/lib/mozilla-firefox/firefox
      (Closes: #278477)
  * debian/mozilla-firefox.links: (MH)
    - Link /usr/bin/firefox and /usr/bin/mozilla-firefox to 
      /usr/lib/mozilla-firefox/firefox.
    - Removed obsolete profile/US links.
  * debian/mozilla-firefox.dirs: Create /etc/mozilla/profile instead of
    /etc/mozilla/profile/US. (MH)
  * toolkit/xre/nsAppRunner.cpp: Fix crash in nsCmdLineService::Initialize
    when argc is changed by gtk (when treating gtk specific arguments)
    (MH)
  * debian/mozilla-firefox-runner (Changes by MH):
    - Removed workaround for bug #122990. First, xmlterm is not an activated
      extension, and secondly, if it still requires the TERM environment
      variable, it is the user's duty to set it to whatever he wants, not
      firefox's start script's.
    - Removed the ulimit -c setting. First, it is set by default to 0 on a
      newly installed debian, and secondly, it is user's choice to set it or
      not if he needs to get core files.
    - Removed unused shell variables.
    - Removed unsetting AUDIODEV variable. If it still crashes, it does belong
      to some other code than firefox. The AUDIODEV environment variable is
      used nowhere in firefox code:
      http://lxr.mozilla.org/aviarybranch/search?string=AUDIODEV
      Note that there is a "A crash which occurred when AUDIODEV doesn't
      contain "/" was fixed." log message in esound version 0.2.33 changes and
      that the bug may have belonged there.
    - Replaced ${HOME}/.mozilla-firefoxrc file by a ${HOME}/.mozilla/firefox/rc
      file. The former is still supported, though, but will bring a warning
      message. If both are present, only the latter is taken into account.
    - Changed the way system and user FIREFOX_DSP and FIREFOX_OPEN_IN
      variables are handled. First, use system values defined in
      /etc/mozilla-firefox/mozilla-firefoxrc, then override with
      ${HOME}/.mozilla/firefox/rc and then with runtime environment variables.
    - Don't die when DISPLAY is not set. Display can be passed by --display
      option, and if not set and needed (some options don't require it),
      firefox will complain.
    - Some shell code simplifications by using some coreutils.
    - Added better command line parsing.
    - Added verbosity mode.
    - Removed setting of FONTCONFIG_PATH, /usr/lib/mozilla-firefox/res/Xft
      doesn't exist
    - Factorized localization detection.
  * debian/mozilla-firefox.1 (MH):
    - Made some clean-up between dashes and hyphens.
    - Removed obsolete options and added new ones.
    - Added informations about some debian specific stuff.
  * debian/update-mozilla-firefox-chrome: Changed the way we move files to
    /var/lib/mozilla-firefox. It will avoid creating files with a * in their
    name whenever registration failed. (MH)
  * debian/README.Debian: Update java instructions, tell them to just use
    java-package.

 -- Eric Dorland <eric@debian.org>  Thu, 28 Oct 2004 21:30:40 -0400

mozilla-firefox (0.10.1+1.0PR-4) unstable; urgency=medium

  * This release mostly courtesy Mike Hommey. 
  * layout/src/xul/base/src/nsImageBoxFrame.*: Backported patch from
    bz#255372. (Closes: #278046)
  * toolkit/mozapps/extensions/src/nsExtensionManager.js.in: Force locking
    globally installed extensions, that will prevent extensions packages
    files to be unexpectedly removed by firefox.
  * debian/control: Add Mike Hommey as an Uploader.
  * debian/mozilla-firefox.install: Removed content-packs.jar which is
    mozilla-browser specific.
  * debian/mozilla-firefox.dirs: 
    - Remove leading /'s.  
    - Create
    /usr/lib/mozilla-firefox/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}
    /chrome directory so that preview is shown in the Themes Manager. Yes,
    this is stupid, but it is the way firefox wants it (and it's not even
    created by make install, nor in the official binary tarball. It is
    only created at run time, but you know what ? under *nix, a normal
    user can't create that directory) (Closes: #276404)
  * debian/rules: Add a /etc/mozilla-firefox/pref/vendor.js file adding
    the debian package version to the UserAgent. (Closes: #268654)
  * debian/README.Debian: Update java instructions. I'd love some more
    definitive pointers. (Closes: #277983)

 -- Eric Dorland <eric@debian.org>  Tue, 26 Oct 2004 00:11:48 -0400

mozilla-firefox (0.10.1+1.0PR-3) experimental; urgency=low

  * debian/control: 
    - Rename the mozilla-firefox-gnome-vfs package
      mozilla-firefox-gnome-support since it does more than vfs. No 
      need for Replaces or anything, since it never actually made it to 
      the archive.
    - Remove strict build dependencies on g++ and binutils, since the 
      fixed versions have hit sarge.
    - Remove hppa build depends, since gcc has also been fixed there.
    - Build-depend on libgnome2-dev and libgconf2-dev to build in more 
      gnome support.
    - Have mozilla-firefox recommend it's gnome support. 
  * debian/rules: 
    - Remove hppa CC redefinitions.
    - Exclude *gnome* not just *gnomevfs*.
    - dh_install for gnome-support.
  * debian/mozilla-firefox-gnome-vfs.*: Rename to
    mozilla-firefox-gnome-support.*.
  * debian/mozilla-firefox-gnome-support.install: Grab *gnome*, not just
    *gnomevfs*.

 -- Eric Dorland <eric@debian.org>  Thu, 21 Oct 2004 23:04:53 -0400

mozilla-firefox (0.10.1+1.0PR-2) experimental; urgency=low

  * debian/mozilla-firefox-runner: 
    - Patch from Sam Morris to handle cleanup of directories with 
      unusual names.
    - Fix return value check, patch from rgselk. (Closes: #269690)
  * debian/mozilla-firefox.1: List full path to firefox-bin. (Closes:
    #275563)
  * debian/rules: 
    - --with-gssapi=/usr, enable Negotiate extension. (Closes:
      #274258)
    - Enable gnomevfs support, 
  * debian/control: 
    - Build-depend on libkrb5-dev.
    - Build-depend on libgnomevfs2-dev.
    - New gnomevfs package, based on work by Mike Hommey. (Closes: 
      #262062)
  * debian/mozilla-firefox-gnome-vfs.post{inst,rm}: Added, same as
    corresponding files from mozilla-firefox-dom-inspector.
  * debian/mozilla-firefox-gnome-vfs.install: Install gnomevfs components.
  * browser/app/profile/firefox.js: Set
    network.negotiate-auth.trusted-uris to https:// to enable the
    negotiate extension over secure links.
  * config/rules.mk: Tweak patch from Thiemo Seufer to include svg_doc in
    non-optimization. (Closes: #273353)

 -- Eric Dorland <eric@debian.org>  Sun, 17 Oct 2004 21:25:08 -0400

mozilla-firefox (0.10.1+1.0PR-1) experimental; urgency=critical

  * New upstream release, fixes security issue bz#259708. (Closes:
    #274493)

 -- Eric Dorland <eric@debian.org>  Sun,  3 Oct 2004 03:32:43 -0400

mozilla-firefox (0.10+1.0PR-1) experimental; urgency=low

  * New upstream release. (Closes: #273700, #267003)
  * toolkit/mozapps/extensions/src/nsExtensionManager.js.in,
    netwerk/dns/src/nsIDNService.cpp,
    modules/libpr0n/decoders/bmp/nsBMPDecoder.cpp,
    gfx/src/windows/nsImageWin.cpp, gfx/src/shared/gfxImageFrame.cpp,
    browser/app/profile/firefox.js: Resolve conflicts between my tree and
    upstream.
  * browser/app/Makefile.in: Fix $(DESTDIR) variable.
  * accessible/src/atk/nsAccessibleWrap.cpp,
    accessible/src/atk/nsAccessibleWrap.h: Apply patch from bugzilla for
    alpha fix that's more likely to make it into CVS.
  * debian/update-mozilla-firefox-chrome: Patch from Mike Hommey to make
    update-mozilla-firefox-chrome more verbose on -v.
  * debian/rules:
    - Remove typeaheadfind for new find toolbar to work. (Mike Hommey) 
      (Closes: #267170)
    - Changes to reflect new upstream files. 
  * debian/control: 
    - Remove build-depend on libcairo-dev.
    - Build depend on libxt-dev, seems to be necessary now. (Closes: 
      #274311)
  * debian/docs: Removed, as browser/README.html disappeared. (Mike Hommey)
  * debian/mozilla-firefox.dirs: 
    - Changes to reflect new upstream files.
    - Removed obsolete libnullplugin.so.
  * debian/mozilla-firefox.install: 
     - Remove .jar's that aren't there anymore.
     - Removed obsolete libnullplugin.so.
  * debian/mozilla-firefox-dom-inspector.dirs,
    debian/mozilla-firefox-dom-inspector.install, debian/rules: Upstream
    doesn't consider DOM Inspector as a real extension, and do not provide
    the appropriate files to make it appear in the extensions
    manager. Removed all the extension related stuff in the package. (Mike
    Hommey)
  * other-licenses/libart_lgpl: Removed, was for SVG, no longer needed.
  * modules/plugin/samples/default/unix/*: Reverted debian specific
    changes, we don't want them in the diff since libnullplugin won't get
    installed.

 -- Eric Dorland <eric@debian.org>  Fri,  1 Oct 2004 18:50:46 -0400

mozilla-firefox (0.9.3-6) unstable; urgency=high

  * gfx/src/gtk/fontEncoding.properties: Uncomment symbol fonts. (Closes:
    #272927)
  * debian/control: Build-depend on binutils (>= 2.15-4) but only on mips
    and mipsel. (Closes: #273353)
  * configure.in, configure, rules.mk: Patch from Thiemo Seufer to
    increase stability and performance on mips. (Closes: #272159)
  * debian/mozilla-firefox-runner: Detect failure of ping()
    better. (Closes: #267393)
  * layout/html/document/src/html.css: Testing fix for xprint problems.

 -- Eric Dorland <eric@debian.org>  Mon, 27 Sep 2004 17:07:37 -0400

mozilla-firefox (0.9.3-5) unstable; urgency=high

  * debian/update-mozilla-firefox-chrome: Apply another patch form Mike
    Hommey to fix a few more issues in the script. (Closes: #271480)
  * Fixes to Secunia security bugs, ported from bugzilla: 
    (Closes: #271888)
    - browser/base/content/browser.js, 
      xpfe/communicator/resources/content/contentAreaDD.js: Fix for
      drag and drop exploit, bz#250862.
    - caps/include/nsScriptSecurityManager.h, caps/src/caps.properties,
      caps/src/nsScriptSecurityManager.cpp: Fix for enablePrivilege
      exploit, bz#253942.
    - gfx/src/shared/gfxImageFrame.cpp, gfx/src/windows/nsImageWin.cpp,
      modules/libpr0n/decoders/bmp/nsBMPDecoder.cpp: Fix for various
      overflows in the BMP code, bz#255067.
    - netwerk/dns/src/nsIDNService.cpp: Fix for bug in non-ASCII 
      characters in domain names, bz#256316
    - content/xbl/src/nsXBLPrototypeHandler.cpp: Clipboard injection 
      fix, bz#257523.

 -- Eric Dorland <eric@debian.org>  Thu, 16 Sep 2004 20:06:47 -0400

mozilla-firefox (0.9.3-4) unstable; urgency=high

  * Urgency high, go into testing dammit!
  * Apply patch from Mike Hommey as -3.1, which wasn't actually
    released. See below. (Closes: #271480)
  * debian/rules: Patch from Matthew Mueller to fix underquoted
    argument. (Closes: #271432)
  * debian/control: Build depend on binutils (>= 2.15-3) with fixed mips
    support. We still need a fixed gcc.

 -- Eric Dorland <eric@debian.org>  Mon, 13 Sep 2004 20:41:27 -0400

mozilla-firefox (0.9.3-3.1) unstable; urgency=low

  * debian/rules: removed
    /usr/lib/mozilla-firefox/defaults/profile/extensions/installed-extensions.txt
  * debian/update-mozilla-firefox-chrome:
    + Added a "verbose" mode.
    + Added warning messages (only shown in verbose mode) about some
      extensions specific issues. This is intended to be useful for extensions
      maintainers.
    + Check if the installed-extensions.txt file disappears, which tells if the
      mozilla-firefox -register went ok.
  * debian/update-mozilla-firefox-chrome.8:
    + Fixed typos.
    + Added reference to the -v option for the verbose mode.
  * debian/mozilla-firefox-runner: enhanced the profile directory check. It
    didn't work if the path indicated in the profiles.ini was not absolute.

 -- Mike Hommey <mh@glandium.org>  Mon, 13 Sep 2004 20:31:21 +0900

mozilla-firefox (0.9.3-3) unstable; urgency=high

  * Acknowlege NMU from Mike Hommey. He did a fantastic job in porting a
    large amount of fixes from upstream CVS. I owe him several large
    beverages of his choice. (Closes: #259046, #259836)
  * Port all of Mike's changes to my local CVS.
  * debian/mozilla-firefox-runner: 
    - Pass command-line arguments to get_locale so they can actually 
      be used. (Closes: #240058)
    - Apply patch from Mike Hommey to use the profiles.ini to find the 
      path to the profile to clean XUL.mfasl. (Closes: #267326)
  * debian/update-mozilla-firefox-chrome: Patch from Mike Hommey to fix
    some bashisms introduced by his NMU.
  * xpcom/reflect/xptcall/src/md/unix/Makefile.in,
    xpcom/reflect/xptcall/src/md/unix/xptcinvoke_asm_mips.s,
    xpcom/reflect/xptcall/src/md/unix/xptcinvoke_mips.cpp,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_mips.s.m4,
    xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_mips.s: Patch from
    Thiemo Seufer to fix mips. This requires patches to gcc and binutils
    to work and fully close #270621.

 -- Eric Dorland <eric@debian.org>  Wed,  8 Sep 2004 21:13:35 -0400

mozilla-firefox (0.9.3-2.2) unstable; urgency=high

  * The "never edit the diff file unless you're sure nothing will be
    missing" release.
  * debian/mozilla-firefox.prerm: restore the uncut version.
  * debian/control, debian/rules: Use gcc-3.2 to build on hppa, because of
    toolchain bug #254549.

 -- Mike Hommey <mh@glandium.org>  Mon, 23 Aug 2004 19:45:54 +0900

mozilla-firefox (0.9.3-2.1) unstable; urgency=high

  * Non Maintainer Upload for RC Fixes.
  * Applied changes to toolkit/mozapps/extensions/src/nsExtensionManager.js.in
    and toolkit/mozapps/extensions/locale/extensions.properties to solve some
    issues with extensions management. (taken from CVS)
  * Applied other changes to
    toolkit/mozapps/extensions/src/nsExtensionManager.js.in,
    toolkit/mozapps/extensions/public/nsIExtensionManager.idl and
    mozilla/toolkit/xre/nsAppRunner.cpp to be able to use -register
    instead of -list-global-items for extensions/components/chrome
    registration through update-mozilla-firefox-chrome, thus not needing
    Xvfb anymore (-register option doesn't require a X server).
    (taken from CVS)
  * Applied some more changes to
    toolkit/mozapps/extensions/src/nsExtensionManager.js.in in order to
    avoir overlayinfo deletion during extensions registration process.
    (taken from CVS)
  * Final changes to toolkit/mozapps/extensions/src/nsExtensionManager.js.in
    to avoid registering out of date extensions so that firefox doesn't enter
    a loop at startup when no profile was found, and to only write in the
    installed-extensions-processed.txt file the list of actually installed
    extensions. Note that for packaged extensions installing their files
    directly into the chrome or components directories, that only means they
    won't appear in the Extensions Manager. They will still be available in
    the GUI.
  * All these fixes improve the Extensions Manager. Closes: #259046.
  * accessible/src/atk/nsAccessibleWrap.cpp,
    accessible/src/atk/nsAccessibleWrap.h: fixed 32-bit abuse of gobject
    (Steve Langasek). Closes: #259836.
  * debian/control: Removed dependency upon xvfb.
  * debian/update-mozilla-firefox-chrome:
    + Removed use of Xvfb.
    + Removed creation of a root default profile, but kept the fake home
      hack to avoid creation of a .mozilla directory in root's home.
    + Changed extensions handling so that the overall process is cleaner.
      Extensions packages will have to move extensions {uid} directories
      to /usr/lib/mozilla-firefox/extensions/, while the current location
      is still supported for compatibility purpose (but is strongly not
      recommended).
    + Removed use of regxpcom and regchrome, since what they both do is
      done by firefox-bin -register.
  * debian/rules: force GnomeVFS support to be disabled. (Josselin Mouette)
  * debian/README.Debian:
    + Added a note about potential problems with packaged "old" extensions.
    + Added a note about how to manually disable packaged extensions in user
      profile.
    + Removed some old notes that don't apply anymore.
  * debian/mozilla-firefox-dom-inspector.install, debian/rules: Move
    extensions files to /usr/lib/mozilla-firefox/extensions/ instead of
    /usr/lib/mozilla-firefox/defaults/profile/extensions/.
  * debian/mozilla-firefox.links: Move installed-extensions.txt symlink
    from /usr/lib/mozilla-firefox/defaults/profile/extensions/ to
    /usr/lib/mozilla-firefox/extensions/.
  * debian/mozilla-firefox.prerm: More cleanup on removal of package.

 -- Mike Hommey <mh@glandium.org>  Sun, 22 Aug 2004 21:43:47 +0900

mozilla-firefox (0.9.3-2) unstable; urgency=low

  * xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_mips.s.m4: Comment out
    NARGSAVE, like I did in 0.9.1-7, should fully fix #262571.
  * debian/mozilla-firefox.preinst: Remove brace expansion
    bashism. (Closes: #264200)
  * debian/control: Depend on debianutils (>= 1.16) since we use mktemp
    -d. (Closes: #263958)
  * debian/mozilla-firefox-runner: Make -contentLocale COUNTRY, not
    lang-COUNTRY. (Closes: #263940)

 -- Eric Dorland <eric@debian.org>  Sun,  8 Aug 2004 23:41:02 -0400

mozilla-firefox (0.9.3-1) unstable; urgency=low

  * New upstream release. (Closes: #263193)
  * debian/update-mozilla-firefox-chrome.8: Add manpage from Mark Suter
    for update-mozilla-firefox-chrome.8. (Closes: #263149)
  * debian/mozilla-firefox.manpages: Add update-mozilla-firefox-chrome.8.
  * debian/control: Add build-deps on gcc-3.4 for amd64. (Closes: #262679)

 -- Eric Dorland <eric@debian.org>  Wed,  4 Aug 2004 20:21:22 -0400

mozilla-firefox (0.9.1-7) unstable; urgency=low

  * debian/mozilla-firefox-runner:
    - Reintroduce check for command-line arguments (I broke this last 
      release). (Closes: #262692, #262462, #262537, #262588, #262727)
    - Allow overriding of -contentLocale and -UILocale. (Closes: 
      #240058)
  * xpcom/reflect/xptcall/src/md/unix/xptcinvoke_asm_mips.s: Comment out
    NARGSAVE reassignment, it is defined elsewhere. (Closes: #262571)
  * debian/rules: Force amd64 to build with gcc 3.4. (Closes: #262679)

 -- Eric Dorland <eric@debian.org>  Mon,  2 Aug 2004 10:16:46 -0400

mozilla-firefox (0.9.1-6) unstable; urgency=low

  * widget/src/gtk2/keysym2ucs.c: Patch from Eugeniy Meshcheryakov to
    allow mozilla firefox to enter a ghe with upturn. (Closes: #261543)
  * debian/mozilla-firefox-runner: 
    - Remove some mail and composer cruft. 
    - Add warning if DISPLAY is not set. (Closes: #261465)

 -- Eric Dorland <eric@debian.org>  Thu, 29 Jul 2004 22:49:59 -0400

mozilla-firefox (0.9.1-5) unstable; urgency=low

  * debian/control: Goodbye mozilla-firebird transition package.
  * debian/mozilla-firefox-runner: Add -a firefox flag when running
    firefox-bin. (Closes: #259237)
  * debian/mozilla-firefox.desktop: Add GenericName field.
  * debian/update-mozilla-firefox-chrome: Fix quoting problem with
    {*}. (Closes: #257243)
  * debian/rules: 
    - Re-enable postscript printing support, since the security 
      issues turned out to be bogus. (Closes: #257628)
    - Disable SVG support, it's still too broken to be usable. 
      (Closes: #259544)

 -- Eric Dorland <eric@debian.org>  Sun, 18 Jul 2004 20:09:14 -0400

mozilla-firefox (0.9.1-4) unstable; urgency=low

  * The "Let's try unstable" release. There are still issues, but there
    are issues with 0.8 as well, so no more point in waiting.
  * debian/update-mozilla-firefox-chrome:
    - Copy over empty Extensions.rdf file on update. (Closes: #257243)
    - Increase sleep to 15 seconds, hopefully this will work on most 
      people's machines. 
  * My apologies to Mike Hommey for mispelling his name in last release.

 -- Eric Dorland <eric@debian.org>  Sun, 11 Jul 2004 23:51:24 -0400

mozilla-firefox (0.9.1-3) experimental; urgency=low

  * Ok, I was wrong, we're still in experimental. I think we need to fix a
    few more issues before getting this in unstable, like #257258, and
    make sure the hacky extensions mechanism is more bullet-proof.
  * debian/rules: --disable-installer, since we don't use it.
  * debian/update-mozilla-firefox-chrome: 
    - Wait 8 seconds instead of 5 for the hack, might help some 
      people reporting problems.
    - Remove ${LIBDIR}/extensions/{*}. I may move that to 
      /var/lib/mozilla-firefox eventually, but let's leave it for now.
  * debian/mozilla-firefox.png.uu: Make a nicer png icon, based on the
    about box graphic.
  * debian/mozilla-firefox.preinst: Remove old config files in
    /etc/mozilla-firefox/pref. (Closes: #257711, 257557)
  * browser/app/profile: firefox.js: Revert change to app.version,
    apparently it breaks extensions. (Closes: #257941)

 -- Eric Dorland <eric@debian.org>  Wed,  7 Jul 2004 21:26:55 -0400

mozilla-firefox (0.9.1-2) experimental; urgency=low

  * The "Mike Homey, lord of the bugs" release. Thanks to Mike for being a
    huge help with bug triage. That's right, help with bugs and your name
    could have a prestigious place in the changelog.
  * I'd like my next release to be to unstable, so let me know about
    profile transition bugs, etc.
  * debian/control: Build-depend on libcairo1-dev. 
  * debian/rules: Enable svg support using cairo renderer. (Closes:
    #215990)
  * debian/mozilla-firefox-xremote-client: Add -a firefox switch to make
    the remote client find firefox only. Thanks Jonathan Black. (Closes:
    #256967)
  * debian/mozilla-firefox.desktop: Make comment Gnome HIG
    compliant. (Closes: #257592)
  * browser/app/profile/firefox.js: 
    - app.version = 0.9.1.
    - Disable app updates by default. We're debian, we handle updates.
  * debian/update-mozilla-firefox-chrome: 
    - Remove installed-extensions-processed.txt before regenerating. 
      (Closes: #257243)
    - Take some, but not all advice from Alexandru Fomin. Improve Xvfb 
      and extension registration hacks. 

 -- Eric Dorland <eric@debian.org>  Sun,  4 Jul 2004 16:58:17 -0400

mozilla-firefox (0.9.1-1) experimental; urgency=low

  * New upstream release.
  * config/autoconf.mk.in: Alright, /usr/lib/firefox-0.9 was a bad idea,
    use /usr/lib/mozilla-firefox. Change all the instances
    /usr/lib/firefox-0.9 back to /usr/lib/mozilla-firefox. I feel
    silly. (Closes: #256991)
  * debian/mozilla-firefox-runner: Actually check for the existence of the
    .mozilla/firefox directory before trying to clean it. 
  * debian/update-mozilla-firefox-runner: 
    - Call firefox-bin, not firefox you silly goose.  
    - Use mozilla-firefox tempfile, not mozilla-browser.
    - The horrible hackiness continues: For my previous hack to work, 
      I need to preseed a profile directory in the home directory I
      create. Now things should work. (Closes: #256812)

 -- Eric Dorland <eric@debian.org>  Thu,  1 Jul 2004 17:16:29 -0400

mozilla-firefox (0.9-1) experimental; urgency=low

  * New upstream release. There may be regressions from 0.8. (Closes:
    #254522)
  * widget/src/gtk/nsGtkMozRemoteHelper.cpp,
    widget/src/gtk2/nsGtkMozRemoteHelper.cpp,
    widget/src/xremoteclient/XRemoteClient.cpp: Fix previously applied to
    fix -remote behaviour undone. Mozilla now includes the program name in
    the properties to distinguish between various Mozilla apps.
  * xpcom/reflect/xptcall/src/md/unix/Makefile.in: remove extra endif.
  * dom/public/idl/core/nsIDOMNSDocument.idl: Reintroduce referrer
    attribute that got lost somehow.
  * content/events/src/nsEventStateManager.cpp: Fix a strange broken
    function call to GetContainer.
  
  * debian/rules: 
    - Follow upstream and --enable-single-profile and 
      --disable-profilesharing.
    - Replace /usr/lib/mozilla-firefox with /usr/lib/firefox-0.9.
    - --user-app-dir=.mozilla to jive with new location.
    - Remove dom-inspector extension dir from the regular package. 
  * debian/control: Depend on xvfb for insane hack below.
  * debian/mozilla-firefox.install:
    - Replace /usr/lib/mozilla-firefox with /usr/lib/firefox-0.9.
    - Remove ipc dir, mozipcd.
    - Add init.d, greprefs dirs.
  * debian/mozilla-firefox.dirs:
    - Add /var/lib/mozilla-firefox/extensions{,.d}
  * debian/mozilla-firefox-dom-inspector.dirs: Add
    /var/lib/mozilla-firefox/extensions.d.
  * debian/mozilla-firefox-dom-inspector.install:
    - Replace /usr/lib/mozilla-firefox with /usr/lib/firefox-0.9.
    - Install dom-inspector extension dir.
  * debian/mozilla-firefox.links:
    - Replace /usr/lib/mozilla-firefox with /usr/lib/firefox-0.9.
    - Link /usr/lib/mozilla-firefox to /usr/lib/firefox-0.9.
    - Link installed-extensions.txt to our place in 
      /var/lib/mozilla-firefox.
  * debian/mozilla-firefox-runner: 
    - Replace /usr/lib/mozilla-firefox with /usr/lib/firefox-0.9.
    - Fix xprintorg typo. (Closes: #255706)
    - Search .mozilla/firefox for XUL.mfasl files.
  * debian/mozilla-firefox-xremote-client: Replace
    /usr/lib/mozilla-firefox with /usr/lib/firefox-0.9.
  * debian/update-mozilla-firefox-chrome: 
    - Replace /usr/lib/mozilla-firefox with /usr/lib/firefox-0.9.
    - Capture return values from reg* commands on error, stolen 
      from mozilla source.
    - Remove returns from check_running.
    - Pull in snippets from /var/lib/mozilla-firefox/extensions.d 
      to generate installed-extensions.txt for new extensions mechanism.  
    - An insane hack, but necessary because of upstream: Launch a Xvfb 
      to run firefox to generate the necessary extension metadata. I've
      been told this will not be necessary in the next version. 

 -- Eric Dorland <eric@debian.org>  Mon, 28 Jun 2004 23:40:59 -0400

mozilla-firefox (0.8-12) unstable; urgency=low

  * The "Last Chance Before 0.9" release.
  * debian/mozilla-firefox-runner: Fix unescaped \n, thanks Olly
    Betts. (Closes: #252436)
  * debian/update-mozilla-firefox-chrome: Watch out for empty
    LD_LIBRARY_PATH. Thanks George Cristian Birzan. (Closes: #254142)
  * debian/README.Debian: Restructure and update a bit.
  * debian/presubj: Add bug information from README.Debian for reportbug.
  * debian/mozilla-firefox.install: Install the presubj. 

 -- Eric Dorland <eric@debian.org>  Mon, 14 Jun 2004 19:39:27 -0400

mozilla-firefox (0.8-11) unstable; urgency=low

  * Apply amd64 fix from #249211. 
  * debian/README.Debian: Shamelessly stole the java plugin installation
    instructions from the mozilla package. (Closes: #243513)
  * nsCommonWidget.cpp, nsCommonWidget.h, nsWindow.cpp: Apply patch (with
    some hand massaging) from upstream bugzilla bug #209342 to fix initial
    window placement. (Closes: #235209, 241519)
  * nsprpub/pr/src/misc/prnetdb.c: Apply patch from Miquel van Smoorenburg
    to prevent unless reverse DNS lookups. (Closes: #251978)
  * debian/mozilla-firefox-runner: Apply patch from Jasper Spaans to fix
    remote xprint printing. (Closes: #252072)

 -- Eric Dorland <eric@debian.org>  Tue,  1 Jun 2004 23:12:36 -0400

mozilla-firefox (0.8-10) unstable; urgency=low

  * debian/mozilla-firefox.install: Don't install uuencoded file. (Closes:
    #251441)
  * debian/mozilla-firefox-runner: unset AUDIODEV which can cause
    crashes. Thanks Christopher Armstrong. (Closes: #236231)
  * update-mozilla-firefox-chrome: Port security fix from #249613 to
    handle insecure tempfile creation.
  * debian/rules: Following the advice of #247585 I'm disabling postscript
    printing. Perhaps this will alleviate some of the other printing
    problems.

 -- Eric Dorland <eric@debian.org>  Sun, 30 May 2004 01:47:52 -0400

mozilla-firefox (0.8-9) unstable; urgency=low

  * debian/control: 
    - Suggest latex-xft-fonts for MathML fonts. Thanks Michael 
      JasonSmith. (Closes: #216925)
    - Build depend on libx11-dev & libxp-dev instead of xlibs-dev to 
      reflect new X packages.
  * widget/src/gtk2/nsWindow.cpp: Apply patch from Peter Colberg to ignore
    unused mouse buttons. (Closes: #244305)
  * debian/README.Debian: Document the fact that the loopback interface
    has to be up and unfiltered for things to work right.

 -- Eric Dorland <eric@debian.org>  Wed,  5 May 2004 23:30:42 -0400

mozilla-firefox (0.8-8) unstable; urgency=low

  * security/nss/lib/freebl/unix_rand.c: Remove code that called netstat
    to gain so entropy. It's pretty useless on a Linux system. Thanks
    Wichert. (Closes: #241200)
  * debian/README.Debian: Add note about changing the button order in the
    dialog boxes. (Closes: #240261)
  * debian/control: Add dummy package for mozilla-firebird to smooth
    upgrades. (Closes: #235577)

 -- Eric Dorland <eric@debian.org>  Sat,  3 Apr 2004 16:19:34 -0500

mozilla-firefox (0.8-7) unstable; urgency=low

  * debian/mozilla-firefox-runner: 
    - Cleanup XUL.mfasl whenever firefox is run with no 
      command-line. (Closes: #238717)
    - Add patch from Laurent Buffler to add config to allow 
      new tabs to be opened instead of new windows. (Closes: #239323)
  * debian/mozilla-firefoxrc: Put the new FIREFOX_OPEN_IN variable in
    there and document it's use.

 -- Eric Dorland <eric@debian.org>  Sat, 27 Mar 2004 17:21:51 -0500

mozilla-firefox (0.8-6) unstable; urgency=low

  * debian/control: Build-depend on g++-3.3 (>= 3.3.3-4) to work around
    broken 3.3.3-3 release. (Closes: #238318, #238241, #238441, #238523,
    #238534)
  * debian/rules: Install new small-firefox icon. 
  * debian/mozilla-firefox{.png, .xpm, -small.xpm}: Use the new DFSG-free
    icons, the old pretty ones are trademarked and not DSFG-free. I know,
    it's stupid. Complain to the Mozilla Foundation, not me. (Closes:
    #234869)

 -- Eric Dorland <eric@debian.org>  Sun, 21 Mar 2004 22:09:16 -0500

mozilla-firefox (0.8-5) unstable; urgency=low

  * Rebuild with g++-3.3 3.3.3-2 to work around broken g++. (Closes:
    #238318)

 -- Eric Dorland <eric@debian.org>  Wed, 17 Mar 2004 21:38:58 -0500

mozilla-firefox (0.8-4) unstable; urgency=low

  * debian/README.Debian: 
    - Tell people not to remove their ~/.firefox directory. Just move it
      out of the way. (Closes: #235594)
    - Add notes about the sound dsp. (Closes: #236678)
  * debian/mozilla-firefox-runner: 
    - Don't redirect stderr. (Closes: #236160)
    - Add get_locale code from Aurelien Jarno (Closes: #235521)
    - Fix dsp auto-detection code. (Closes: #236678)
  * debian/rules: Add default locale file.
  * debian/mozilla-firefox.dirs: Add locales dir. 

  * browser/app/profile/all.js,
    content/events/src/nsEventStateManager.cpp,
    modules/libpref/src/init/all.js, widget/public/nsGUIEvent.h,
    widget/src/gtk/nsWidget.cpp: Reapply extended mouse events patch from
    Derek Upham. (Closes: #235385, #230876)
  * browser/base/content/browser-sets.inc: Make ESC stop animations
    again. (Closes: #235474)

 -- Eric Dorland <eric@debian.org>  Tue, 16 Mar 2004 00:31:19 -0500

mozilla-firefox (0.8-3) unstable; urgency=low

  * debian/mozilla.firefox.menu: Change the case of
    mozilla-Firefox. (Closes: #234982, #234755)
  * debian/NEWS.Debian: Move to debian/mozilla-firefox.NEWS so that it
    actually gets installed. (Closes: #234700)
  * debian/update-mozilla-firefox-chrome: Setup dummy home directory to
    capture silly .firefox directory. (Closes: #234855)
  * debian/mozilla-firefox.png.uu, debian/mozilla-firefox.xpm: Use the
    new, pretty mozilla-firefox icons. (Closes: #234869)
  * debian/rules: Install the pretty icon in the right places. 

 -- Eric Dorland <eric@debian.org>  Thu, 26 Feb 2004 21:10:27 -0500

mozilla-firefox (0.8-2) unstable; urgency=low

  * The "what he taketh, he giveth back" release.
  * debian/rules:
    - Disable the wallet extension, this really closes #222447.
    - Remove some more cruft left over from the patch system.
    - Reinstall the dom-inspector.
  * debian/control: Add the dom-inspector back, now that it is supported
    upstream.
  * debian/mozilla-firefox-dom-inspector.{install,dirs,postinst,postrm}:
    Bring these files back.
  * docshell/base/nsWebShell.cpp: Only do keyword lookup on when DNS
    entries don't exist. (Closes: #233916, #218033, #211524)

 -- Eric Dorland <eric@debian.org>  Mon, 23 Feb 2004 21:48:03 -0500

mozilla-firefox (0.8-1) unstable; urgency=low
  
  * The "Let's Change Our Name Every Other Day" release.
  * New upstream release, mozilla-firebird has been renamed to
    mozilla-firefox. Let's hope it lasts. (Closes: #231903, #222447)
  * debian/mozilla-firebird.*: Renamed to debian/mozilla-firefox.*.

  * debian/README.Debian: Update for firefox, remove blurb about the
    inspector.
  * debian/NEWS.Debian: Explain how to move your configs over. I may make
    this automatic if enough people complain, but I'm loathe to muck
    around in pople's home directories.

  * debian/control:
    - Rename the package.
    - Tweak description to list Firefox's previous aliases.
    - Remove conflicts on mozilla-firebird-dom-inspector.

  * debian/rules: 
    - s/firebird/firefox/g, s/MozillaFirebird/firebird/g.
    - Comment out some old inspector code. 
    - Remove unused patch subsystem.
    - Disable gtktest. We don't need no stinking tests.
    - Remove disable plaintext editor line, not sure why it's there.
    - Disable LDAP support. We don't use it.
    - Remove executable bit on *.so files.
    - Remove useless preference files.
    - Exclude the inspector files.
    - Don't remove installed-chrome, we don't install it anymore.
    - user-app-dir = .firefox. (Closes: #212301)
    - export MOZILLA_OFFICIAL for the build ID. (Closes: #231133)

  * debian/mozilla-firefox-runner: 
    - s/firebird/firefox/g.
    - Remove composer and editor functions.
    - Use .firefox directory.

  * debian/mozilla-firefox.install: 
    - s/firebird/firefox/g, s/MozillaFirebird/firefox/g.
    - Don't install timebombgen.
    - Install icons directory.
    - Don't install installed-chrome.txt, we just remove it anyway. 

  * debian/mozilla-firefox.desktop, debian/mozilla-firefox.dirs,
    debian/mozilla-firefox.manpages, debian/mozilla-firefox.links,
    debian/mozilla-firefox.menu, debian/mozilla-firefox.mime,
    debian/mozilla-firefoxrc, debian/mozilla-firefox.postinst,
    debian/mozilla-firefox.prerm, debian/update-mozilla-firefox-chrome,
    debian/mozilla-firefox.1, debian/mozilla-firefox-xremote-client:
    s/firebird/firefox/g, s/MozillaFirebird/firefox/g.

  * debian/mozilla-firefox.links: Link mozilla-firefox.1 to firefox.1.
  
  * debian/mozilla-firefox.preinst: Remove, at least with the rename I can
    erase some of my previous blunders.

  * debian/mozilla-firefox.{png.uu,xpm}: Use the package icon.

  * browser/app/nsBrowserApp.cpp: Change package name to Firefox, so now
    the ~/.firefox is used. (Closes: #196550)

  * browser/app/profile/all.js: Merge in autoscroll fixes.
  * browser/base/content/browser-sets.inc: Merge in upstream stop button
    fix.
  * modules/plugin/samples/default/unix/nullplugin.c: Merge in removal of
    commented code.
  * nsprpub/pr/include/md/_linux.cfg, nsprpub/pr/include/md/_linux.h,
    security/coreconf/Linux.mk: Merge in hppa build fixes from upstream.
  * config/autoconf.mk.in: Install into /usr/lib/mozilla-firefox now.
  * content/base/src/nsDocumentViewer.cpp: Remove redundant stop patch
    since it has been merged upstream.
  * content/events/src/nsEventStateManager.cpp,
    modules/libpref/src/init/all.js, widget/src/gtk/nsWidget.cpp: Revert
    back to upstream version. There was a patch here to add support for
    extended mouse buttons, but I'm removing it since I don't trust that
    it works in the new version correctly. Send me another patch if you
    want this functionality back.
  * toolkit/components/passwordmgr/base/nsPasswordManager.cpp: Revert this
    back to upstream, I'm not sure which patches I applied to this file,
    likely something to try and fix the double password prompt.
  * widget/src/xremoteclient/XRemoteClient.cpp,
    widget/src/xremoteclient/XRemoteClient.h: Revert to upstream version,
    I believe it does the right thing now, but the patch I used does not
    apppear to have been used. Restore the properties to _FIREFOX_*
    though.
  * widget/src/gtk/nsGtkMozRemoteHelper.cpp,
    widget/src/gtk2/nsGtkMozRemoteHelper.cpp: Change the _FIREBIRD_* to
    _FIREFOX_* here as well.
  * content/base/src/nsDocument.cpp: Comment out nsDocument::GetDomConfig,
    needed to get things to compile.

 -- Eric Dorland <eric@debian.org>  Sun, 15 Feb 2004 21:28:45 -0500

mozilla-firebird (0.7-7) unstable; urgency=low

  * debian/mozilla-firebird-runner: Open a new window when loading a
    regular file. (Closes: #228853)

 -- Eric Dorland <eric@debian.org>  Thu, 29 Jan 2004 22:12:30 -0500

mozilla-firebird (0.7-6) unstable; urgency=medium

  * The "Indian-giver-christmas" release.
  * Urgency medium since we're closing some critical bugs that need to get
    in before a freeze.
  * Completely remove mozilla-firebird-dom-browser. No one stepped up to
    help fix it's brokeness in 0.7 and I don't use it or particularly care
    about it. So it is no more. If someone steps up to take responsibility
    I might put it back, but otherwise it may RIP. (Closes: #222085)
  * debian/mozilla-firebird-runner: Remove XUL.mfasl uncoditionally
    now. There is a corner case where this file is corrupted on upgrade
    when firebird was running. This is a total hack, and not an elegant
    solution, but at least it fixes the problem. (Closes: #224779,
    #224323)
  * debian/control: Conflict against old mozilla-firebird-dom-inspector
    since it doesn't work anymore.

 -- Eric Dorland <eric@debian.org>  Thu, 25 Dec 2003 15:54:21 -0500

mozilla-firebird (0.7-5) unstable; urgency=low

  * browser/base/content/browser-sets.inc: Patch to make ESC stop actually
    work. (Closes: #223382)
  * debian/rules: Turn down optimizations on sparc. (Closes: #223760)

 -- Eric Dorland <eric@debian.org>  Sun, 14 Dec 2003 23:01:59 -0500

mozilla-firebird (0.7-4) unstable; urgency=low

  * The "All of Takuo's hard work really pays off" release.
  * toolkit/components/passwordmgr/base/nsPasswordManager.cpp: Patch from
    upstream bugzilla (#220214) to fix double password prompt
    problem. (Closes: #222696)
  * xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_mips.s.m4: Stolen
    patch from mozilla package to make mozilla-firebird build on
    mips. (Closes: #222743)
  * content/base/src/nsDocumentViewer.cpp: Port yet another patch to allow
    the ESC key to stop animated gifs. (Closes: #223382)

 -- Eric Dorland <eric@debian.org>  Mon,  8 Dec 2003 23:59:16 -0500

mozilla-firebird (0.7-3) unstable; urgency=low

  * debian/control: Add dependency on psmisc since we use fuser. Thanks
    Daniel Schröter.
  * widget/src/xremoteclient/XRemoteClient.{cpp,h}: Apply patch from
    bugzilla to fix -remote behaviour on modern WMs. Thanks Nikolai
    Prokoschenko. (Closes: #197632)
  * nsprpub/pr/src/misc/prdtoa.c: Apply fix from mozilla package (#215067)
    to fix building on arm. This is a partial fix to #222743.
  * debian/patches: Remove these. Put everything in CVS.

 -- Eric Dorland <eric@debian.org>  Fri,  5 Dec 2003 20:03:46 -0500

mozilla-firebird (0.7-2) unstable; urgency=low

  * Apply excellent patch from Alexander Sack <asac@jwsdot.com> to fix the
    issues with mozilla running and firebird not starting. (Closes:
    #216264)
  * browser/app/profile/all.js: Set the default of "general.autoScroll" to
    false because it annoyes me. (Closes: #221661)

 -- Eric Dorland <eric@debian.org>  Wed, 19 Nov 2003 20:59:55 -0500

mozilla-firebird (0.7-1) unstable; urgency=low

  * New upstream release. (Closes: #216019)
  * debian/patches/dom-inspector.diff: Remove, and apply directly into my
    CVS.
  * debian/patches/pref.diff: Removed, doesn't seem applicable anymore.
  * debian/rules: export MOZ_FIREBIRD=1.
  * debian/control: 
    - Change Chimera to Camino. (Closes: #220821)
    - Fix typos in descriptions. (Closes: #218202)
    - Add build-deps on m4. (Closes: #219681)

 -- Eric Dorland <eric@debian.org>  Wed, 12 Nov 2003 23:01:35 -0500

mozilla-firebird (0.6.1-8) unstable; urgency=low

  * Apply patch to make forward and back buttons work on mice. (Closes:
    #211606)
  * debian/rules: Use -O optimization on alpha, so it will build
    again. (Closes: #213603)
  
 -- Eric Dorland <eric@debian.org>  Fri,  3 Oct 2003 00:07:44 -0400

mozilla-firebird (0.6.1-7) unstable; urgency=low

  * Rebuild with the latest and greatest from unstable. This seems to fix
    the problems with bookmarks people were having, at least for me. No
    idea why. Please reopen if this doesn't fix it for you. (Closes:
    #209339, #211706, #211286, #211146, #212011) 

 -- Eric Dorland <eric@debian.org>  Mon, 22 Sep 2003 00:00:08 -0400

mozilla-firebird (0.6.1-6) unstable; urgency=low

  * Patch from Eric Wong <normalperson@yhbt.net> to make plugin requests
    less annoying. (Closes: #196609)
  * debian/rules: Stop building libart.
  * debian/mozilla-firebird.links: Fix path to bookmarks file. (Partial
    fix to #211286)

 -- Eric Dorland <eric@debian.org>  Wed, 17 Sep 2003 20:22:56 -0400

mozilla-firebird (0.6.1-5) unstable; urgency=low

  * The "sorry Chris Gray" release.
  * debian/rules: disable SVG. This was causing drag and drop to lock up
    X and possibly fixes #208630. (Closes: #209371)
  * debian/mozilla-firebird-runner: Remove XUL.mfasl if we have upgraded,
    since it can cause problems. (Closes: #200073, #202130, #207351)

 -- Eric Dorland <eric@debian.org>  Sat, 13 Sep 2003 20:15:37 -0400

mozilla-firebird (0.6.1-4) unstable; urgency=low

  * The "pleasing Chris Gray" release.
  * other-licenses/libart_gpl: Add this library for svg.
  * debian/rules: 
    - Enable svg.
    - Move bookmarks.html file into /etc. (Closes: #207398)
  * debian/mozilla-firebird.links: Add links back to files moved to /etc.
  * security/coreconf/Linux2.6.mk: Add this as a copy of Linux2.5.mk to
    get mozilla-firebird to build on 2.6. (Closes: #207821)

 -- Eric Dorland <eric@debian.org>  Sun, 31 Aug 2003 04:40:30 -0400

mozilla-firebird (0.6.1-3) unstable; urgency=low

  * debian/mozilla-firebird.prerm: Remove mozilla alternative on
    remove. (Closes: #205310)
  * debian/debsearch.{gif.uu,src}: Debian search plugin graciously
    contributed by Fergus McKenzie-Kay <Linux@NerdIT.com>.
  * debian/rules: 
    - uudecode and clean up debsearch.gif.uu.
    - Steal platform specific optimization code from mozilla 
      package. Thanks Brian Nelson. (Closes: #206309) 
  * debian/mozilla-firebird.install: Install the above files. 
  * debian/control: Update Standards-Version to 3.6.1.

 -- Eric Dorland <eric@debian.org>  Sun, 24 Aug 2003 19:09:11 -0400

mozilla-firebird (0.6.1-2) unstable; urgency=low

  * The "Stop Pestering Me Already!" release.
  * debian/control: Only recommend xprt-xprintorg, don't require
    it. (Closes: #204176)

 -- Eric Dorland <eric@debian.org>  Sun, 10 Aug 2003 20:00:11 -0400

mozilla-firebird (0.6.1-1) unstable; urgency=low

  * New upstream release. (Closes: #203518, #201203)
  * debian/control:
    - Standards-Version to 3.6.0.
    - Don't provide www-browser anymore. (Closes: #201035)
    - Depend on xprt-xprintorg so printing will work. (Closes: #202418)
  * debian/mozilla-firebird.preinst: Remove www-browser alternative.
  * debian/mozilla-firebird.postinst: Don't install www-browser alternative.
  * debian/mozilla-firebird.prerm: Don't remove www-browser alternative
    anymore.
  * debian/README.Debian: Added note about configuration breaking on
    upgrade. (Closes: #202130)
  * debian/patches/classic.diff: Removed. Not sure what it's point was.
  * debian/rules: Add --disable-pedantic to the configure options.

 -- Eric Dorland <eric@debian.org>  Sun,  3 Aug 2003 14:58:12 -0400

mozilla-firebird (0.6-8) unstable; urgency=low

  * debian/patches/alpha-build-fix.diff: Steal patch from mozilla to allow
    building on alpha. (Closes: #198638)
  * debian/patches/hppa-build-fix.diff: Steal patch from mozilla to allow
    building on hppa, clean it up so it applies cleanly. (Closes: #199068)
  * debian/mozilla-firebird.png.uu: Added uuencoded nice png icon.
  * debian/rules: Add code to decode and clean up the new icon file.
  * debian/mozilla-firebird.install: Install new icon.
  * debian/mozilla-firebird.desktop: Use the new icon.

 -- Eric Dorland <eric@debian.org>  Fri, 27 Jun 2003 23:21:56 -0400

mozilla-firebird (0.6-7) unstable; urgency=low

  * debian/mozilla-firebird.1: Stole the mozilla manpage for my own
    nefarious purposes. (Closes: #196638)
  * debian/mozilla-firebird.postrm: Add slave links to the
    mozilla-firebird manpage. (Closes: #197145)
  * debian/mozilla-firebird-xremote-client: Set up the environment
    properly so it returns correct information. (Closes: #197632)
  * debian/mozilla-firebird.xpm: Added icon from
    http://iconpacks.mozdev.org/phoenix/iconshots/flame48true.png to have
    a nice menu icon. (Closes: #197565)
  * Updated the README.Debian with some helpful bug reporting tips.
  * debian/rules: Replaced dh_installmanpages with dh_installman.

 -- Eric Dorland <eric@debian.org>  Sun, 22 Jun 2003 15:15:37 -0400

mozilla-firebird (0.6-6) unstable; urgency=low

  * debian/mozilla-firebird.postinst: Add priority 0 alternative on
    mozilla. (Closes: #196444)
  * debian/control: Add build-depends on libxrender-dev, libmng-dev,
    libpng12-dev, libjpeg62-dev.
  * debian/rules: 
    - Build with system jpeg, mng and png libs.
    - Exclude inspector files from mozilla-firebird. 
      (Closes: #196432, #196509)

 -- Eric Dorland <eric@debian.org>  Sat,  7 Jun 2003 15:19:23 -0400

mozilla-firebird (0.6-5) unstable; urgency=low

  * The "Mike Hommey is my homey" release.
  * Thanks to Mike Hommey <mh@glandium.org> for his excellent work on this
    version (it's 99% his), which I've shamelessly stolen.
  * Added a README.Debian file.
  * Added a separate mozilla-firebird-dom-inspector package.
  * debian/patches/dom-inspector.diff:
    - add DOM Inspector to Tools menu. (note: DOM Inspector is still
      not very well integrated with Firebird)
    - remove modern skin references.
  * debian/patches/xpinstall.diff: remove unneeded chrome registrations
    from xpinstall/packager/unix/browser.jst.
  * debian/patches/classic.diff: remove
    themes/classic/global/win/preview.gif from jar file and modify
    preview image reference in rdf file to Preview.png.
  * debian/patches/pref.diff: remove preview image constraints in
    browser/components/prefwindow/skin/pref.css file to avoid deformation
    of preview image in classic theme.
  * debian/mozilla-firebird.preinst: added #DEBHELPER#.
  * debian/mozilla-firebird.install:
    - Don't install the modern.jar and embed-sample.jar files.
    - Remove files related to dom-inspector.
  * debian/rules:
    - enabling xinerama support.
    - disabling build of chatzilla and venkman.
    - moved /var/lib/mozilla-firebird/chrome.d/99default to
      /var/lib/mozilla-firebird/chrome.d/00all
    - remove references to embed-sample.jar in
      /var/lib/mozilla-firebird/chrome.d/00all
    - Add some comments.
    - Change == to =, for more strict /bin/sh's.
  * debian/control: Build-Depend on libidl-dev (>= 0.8.0) because the
    configure script requires at least this version.
  * debian/copyright: Make this a real debian copyright file. 
  
 -- Eric Dorland <eric@debian.org>  Thu,  5 Jun 2003 01:00:32 -0400

mozilla-firebird (0.6-4) unstable; urgency=low

  * debian/rules: Change -O2 to -O for building on powerpc.
  * debian/mozilla-firebird.preinst: Delete
    /usr/lib/mozilla-firebird/defaults/pref on upgrade to facilitate
    transition to prefs in /etc. Thanks to all who reported this.

 -- Eric Dorland <eric@debian.org>  Tue, 27 May 2003 21:45:06 -0400

mozilla-firebird (0.6-3) unstable; urgency=low

  * First attempt at a debian upload. (Closes: #163270)
  * debian/rules:
    + Small fix to Mike Hommey's chrome patch.
    + Suggestion from Bernhard R. Link to install
      /usr/lib/mozilla-firebird/defaults/pref to 
      /etc/mozilla-firebird/pref
    + Add dh_installmime call.
  * debian/mozilla-firebird.mime: Install mime type handlers for firebird.
  * debian/mozilla-firebird.links: Link
    /usr/lib/mozilla-firebird/defaults/pref to /etc/mozilla-firebird/pref
  * debian/mozilla-firebird.install: Don't install the inspector.jar.

 -- Eric Dorland <eric@debian.org>  Mon, 26 May 2003 00:28:40 -0400

mozilla-firebird (0.6-2) unstable; urgency=low

  * debian/rules:
    + Add --with-user-appdir=.mozilla-firebird, since it still 
      defaults to .phoenix.
    + Don't use the ${prefix} variable, use /usr, since ${prefix} 
      doesn't seem to work.
    + Use --without-system-nspr.
  * debian/mozilla-firebird.install:
    + Be picky about what chrome files we install, since there's 
      quite a few we don't need, and a bunch of empty dirs.
  * Excellent patch from Mike Hommey <mh@glandium.org> to add a
    update-mozilla-firebird-chrome script.
  
 -- Eric Dorland <eric@debian.org>  Sat, 24 May 2003 13:00:44 -0400

mozilla-firebird (0.6-1) unstable; urgency=low

  * New upstream release.
  * Renamed to mozilla-firebird.
  * Changed phoenix to mozilla-firebird where appropriate.
  * debian/mozilla-firebird.links: Add link mozilla-firebird to
    MozillaFirebird.
  * debian/control:
    + Standars-Version to 3.5.10.0.
    + Build-depend on gtk2 libs now.
    + Build-depend on libidl-dev.
    + Add Provides x-www-browser.
  * debian/rules:
    + Enable building with the gtk2 libs.
    + Make mozilla-firebird-xremote-client executable in install target.
  * debian/mozilla-firebird.desktop: Added gnome menu entry.
  * debian/mozilla-firebird.{prerm,postinst}: Add alternatives to
    www-browser and x-www-browser.

 -- Eric Dorland <eric@debian.org>  Mon, 19 May 2003 20:43:39 -0400

phoenix (0.5-4) unstable; urgency=low

  * debian/control: Depend on fontconfig.
  * debian/rules: Add source-tarball-from-cvs to build a orig tarball from
    a checked out cvs tree. Now I can provide source package. And there
    was much rejoicing.

 -- Eric Dorland <eric@debian.org>  Fri, 17 Jan 2003 21:06:47 -0500

phoenix (0.5-3) unstable; urgency=low

  * debian/phoenix-xremote-client: Added to send remote commands to
    phoenix. Just a wrapper that calls phoenix-bin -remote.
  * debian/phoenix-runner: 
    + Use phoenix-xremote-client.
    + Replace MOZILLA_DSP with PHOENIX_DSP.
  * debian/phoenixrc: phoenix-runner uses this file to determine what dsp
    to start.
  * debian/phoenix.install: 
    + Install phoenix-xremote-client, and don't install
      mozilla-xremote-client.
    + Install phoenixrc.

 -- Eric Dorland <eric@debian.org>  Mon, 23 Dec 2002 02:52:21 -0500

phoenix (0.5-2) unstable; urgency=low

  * debian/control: 
    + Add Provides: www-browser.
    + Build-depend on libxft2-dev, libnspr-dev.
  * debian/rules:
    + Use xft and the system nspr.
    + Install phoenix-runner.
  * debian/phoenix-runner: Stolen from the mozilla package to run phoenix.

 -- Eric Dorland <eric@debian.org>  Sat, 21 Dec 2002 02:03:11 -0500

phoenix (0.5-1) unstable; urgency=low

  * New upstream release.
  * debian/phoenix.install: Fix paths to phoenix libs.
  * debian/control: 
    + Standards-Version to 3.5.8
    + Improve build-deps.
  * debian/rules: 
    + Have configure options here, no more .mozconfig.
    + Steal some patch code from Colin.
  * debian/patches/mozappdir.diff: Change the mozappdir.
  
 -- Eric Dorland <eric@debian.org>  Mon,  9 Dec 2002 02:43:13 -0500

phoenix (0.4-3) unstable; urgency=low

  * debian/phoenix.menu: Add menu entry.
  * Rebuild to fix libstdc++ dependency.
  * .mozonfig: Disable more tests.

 -- Eric Dorland <eric@debian.org>  Wed, 20 Nov 2002 19:13:18 -0500

phoenix (0.4-2) unstable; urgency=low

  * debian/control:
    + Add build-depends.
    + Fix section and description.
  * .mozconfig:
    + Use system zlib.

 -- Eric Dorland <eric@debian.org>  Wed, 13 Nov 2002 19:03:52 -0500

phoenix (0.4-1) unstable; urgency=low

  * Initial release.
  
 -- Eric Dorland <eric@debian.org>  Mon, 11 Nov 2002 23:09:41 -0500