summaryrefslogtreecommitdiff
path: root/office/go_openoffice/patches/apply
blob: 71db2ff2d80e2e60337848f2dccb472bf9df17c7 (plain)
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

#
# The format of this file is: not documented except by example
#

# -------- Options --------

PATCHPATH=.:../evo2:../vba:../mono:../64bit:../cairo:../gstreamer:../ooxml:../postgresql:../emf+:../unittesting:../lwp

# might be space separated list to support more MWS
OLDEST_SUPPORTED=ooo310-m19

# -------- Functional sub-sets --------
Common : PreprocessPatches, BuildBits, TemporaryHacks, FixesNotForUpstream, \
	 Fixes, DefaultSettings, Features, VCL, Misc, HelpContent, \
	 Icons, Branding, CalcFixes, WriterFixes, EasterEgg, \
	 GStreamer, CWSBackports, WPG, Cleanups, WMF, GnomeVFS, WebDAV, \
	 Layout, VBABits, VBAObjects, CalcErrors, Store, CJK, GCJ, Lwp, WPS, \
	 OOXML, OOXMLExport, SVGImport, FrameworkFeature, UnitTesting, \
	 PopupRemoval, LinkWarningDlg, RadioButtons, InternalCairo, \
	 FedoraCommonFixes, InternalMesaHeaders, LayoutDialogs, Fuzz, \
         CalcRowLimit, Gcc44

LinuxCommon : Common, Defaults, TangoIcons, FontConfigTemporaryHacks, \
	      FedoraLinuxOnlyFixes, LinuxOnly, SystemBits, \
	      msaccess, OpenGLTransitions, \
	      Fpickers, Mono, AddressBooks, QuickStarter, KDE4
MacOSXCommon : Common, Defaults, TangoIcons, SystemBits
Win32Common : Common, Defaults, TangoIcons, \
	      Win32Only, NotDebian
# Experimental sections
Experimental: VBAUntested, ArkOnlyExperimental, \
	      UnUsedButNotYetRemovedFromSVN, WebDAVUpstream, \
	      PostgreSQL, SELinux, VOSremoval, Glib2, \
	      UnitBootstrap, RadioButtons, UnstableLibwpd, WWInProgress, \
	      KDE4Experimental, MinGW, CalcExperimental, Mono24, \
	      OOXMLExportExperimental, CrossWin32Patches, AutoLayout, \
	      OptionalIconThemes, HPPA
DebianLooseSections: DebianBaseNoHelpContent
# Optional sections
Optional : DejaVuFonts, NovellOnlyExtensionFixes, Win32OnlyExtensionFixes, Linux32OnlyExtensionFixes
# Binfilter patches: a special distro; applied only when building with binfilter
Binfilter : BFBuildBits, BFFixes, BFShrink
# System patches: a special distro; applied only when building with the system tarball unpacked
System : SystemBuildBits
# Sdk patches: a special distro; applied only when building with the sdk tarball unpacked
Sdk : SdkFixes
# special fragmented build patch distro
Piece : PieceBits
#Localize
Localize : LocalizeFixes
# patches touching swext which is not in the OpenOffice2 alias yet.
# FIXME: Get this cleaned up
Extensions : ExtensionFixes
UnstableWP : UnstableLibwpd

# Novell
NovellBase : LinuxCommon, NovellOnly, NovellOnlyUnix, \
	     NotDebian, Lockdown, Split, Shrink, \
	     CustomUserConfig
SUSE-9.1  : NovellBase
SUSE-9.2  : NovellBase
SUSE-9.3  : NovellBase
SUSE-10.0 : NovellBase
SUSE-10.1 : NovellBase, BerkeleyDB43, BrokenSystemNSS, Java14, GTK28
SUSE-10.2 : NovellBase, BerkeleyDB43, EMFPlus, Java14, OpenGLTransitionsMesa703
SUSE-10.3 : NovellBase, BerkeleyDB43, EMFPlus, Java14, GCC41
SUSE-11.0 : NovellBase, BerkeleyDB43, EMFPlus, CairoFonts, PostgreSQL
SUSE-11.1 : NovellBase, BerkeleyDB43, EMFPlus, CairoFonts, ImpressFontSize, PostgreSQL
SUSE-11.2 : NovellBase, BerkeleyDB43, EMFPlus, CairoFonts, ImpressFontSize, PostgreSQL, OptionalIconThemes, SUSE112
SUSE      : NovellBase, BerkeleyDB43, EMFPlus, CairoFonts, ImpressFontSize, PostgreSQL, OptionalIconThemes, SUSE112
SUSE-reduced:NovellBase,BerkeleyDB43, ReducedDefaults
# Slackware
Slackware : LinuxCommon, SlackwareOnly, NotDebian, Mono, msaccess, CairoFonts
# Debian
DebianBase : LinuxCommon, DebianBaseOnly, Lockdown, GCCSTL, BerkeleyDB43, Split, PostgreSQL, MySQL, OptionalIconThemes
Debian : DebianBase, DebianOnly, DebianSidOnly, Debian32Only, CairoFonts, HPPA
DebianEtch : DebianBase, DebianOnly, DebianEtchOnly, Debian32Only
# Ubuntu
UbuntuBased : DebianBase, UbuntuOnly
UbuntuHardy : UbuntuBased, UbuntuHardyOnly, CairoFonts
UbuntuIntrepid : UbuntuBased, UbuntuIntrepidOnly, CairoFonts
UbuntuJaunty : UbuntuBased, UbuntuJauntyOnly, CairoFonts
UbuntuKarmic : UbuntuBased, UbuntuKarmicOnly, CairoFonts
UbuntuL10n : UbuntuBased, UbuntuL10nOnly
# DroplineGNOME
DroplineGNOME : LinuxCommon, DroplineGNOMEOnly, NotDebian, Mono, msaccess
DroplineGNOME64 : LinuxCommon, DroplineGNOMEOnly, NotDebian, Mono, msaccess
# Ark Linux
Ark: LinuxCommon, NotDebian, ArkOnly, BerkeleyDB43, KDE4
# www.pld-linux.org
PLDBase: LinuxCommon, NotDebian, CairoFonts, PLDOnly
PLD: PLDBase
PLD64: PLDBase
# Mandriva Linux
MandrivaBase: CairoFonts, MandrivaOnly, LinuxCommon, MandrivaOnlyUnix, LockDown, Split, NotDebian
Mandriva: MandrivaBase
Mandriva64: MandrivaBase
# Frugalware Linux
Frugalware: LinuxCommon, GnomeVFS, GlobalDesktopFiles, NonArkCommon, NoRpath, NovellOnly, NovellOnlyUnix, NotDebian, FrugalwareOnly
# openmamba
openmamba: LinuxCommon, GlobalDesktopFiles
#Gentoo
GentooBase : LinuxCommon, GentooOnly, NotDebian, Lockdown, CairoFonts, BerkeleyDB43, IntegrateExtensions
GentooUnstable: GentooBase, GentooExperimental, MySQL
Gentoo : GentooBase
Gentoo64: GentooBase
# rPath Linux
rPathCommon: LinuxCommon, NotDebian, Lockdown, BerkeleyDB43, CairoFonts
rpl2: rPathCommon
rpl2-64: rPathCommon
# ArchLinux
ArchLinux: LinuxCommon
# Win32
Win32 : Win32Common
# translate.org.za
translate-org-za-linux: translate-org-za-common, LinuxCommon, Common, Lockdown
translate-org-za-win32: translate-org-za-common, Win32Common, Common
NovellLikeWin32: Win32Common, NovellOnly, NovellLikeOnlyWin32, MultilanguageWin32Only, Lockdown, Fpickers, \
	CustomUserConfig, DejaVuFonts, IntegrateExtensions
# Novell
NovellWin32: NovellLikeWin32, NovellOnlyWin32, MultilanguageWin32Only
NovellWin32ISO: NovellLikeWin32, NovellOnlyWin32, MultilanguageWin32Only
# go-oo.org Win32
GoOoWin32: NovellLikeWin32, GoOoOnlyWin32, MultilanguageWin32Only, GoOoSplash
# Mac OS X
MacOSX : MacOSXCommon, MacOSXOnly
GoOoMacOSX : MacOSXCommon, MacOSXOnly, NovellOnly, NovellOnlyExtensionFixes, Fpickers, CustomUserConfig, IntegrateExtensions, GoOoSplash
# Pardus
Pardus2007: PardusOnly, LinuxCommon, NotDebian
Pardus2008: PardusOnly, LinuxCommon, NotDebian
# Solaris
Solaris: NovellBase, UnstableExtensions
# Universal Upstream-like packages
GoOoLinux: NovellBase, NovellOnly, NovellOnlyExtensionFixes, CustomUserConfig, IntegrateExtensions, GoOoSplash, Mono24
# OxygenOffice Professional
OxygenOfficeLinuxCommon :	Common, EMFPlus, LayoutDialogs, FontConfigTemporaryHacks, \
	      			LinuxOnly, SystemBits, \
	      			msaccess, OpenGLTransitions, \
	      			Fpickers, Mono, AddressBooks, QuickStarter, IntegrateExtensions, DejaVuFonts
OxygenOfficeMacOSXCommon :	Common, SystemBits, IntegrateExtensions, DejaVuFonts, OOXMLExport
OxygenOfficeWin32Common :	Common, Win32Only, NotDebian, IntegrateExtensions, DejaVuFonts

OxygenOfficeLinux:	OxygenOfficeLinuxCommon, OxygenOfficePalettes, OxygenOfficeDefaultSettings, OxygenOfficeExtras
OxygenOfficeWindows:	OxygenOfficeWin32Common, OxygenOfficePalettes, OxygenOfficeDefaultSettings, OxygenOfficeExtras, OxygenOfficeWin32Only
# FSFhu
FSFhuWindows : Win32Common, NovellOnly, Lockdown, Fpickers, CustomUserConfig, DejaVuFonts, IntegrateExtensions
FSFhuLinux : NovellBase, EMFPlus, CairoFonts, DejaVuFonts, IntegrateExtensions
FSFhuMacOSX : MacOSXCommon, MacOSXOnly, NovellOnly, NovellOnlyExtensionFixes, CustomUserConfig, IntegrateExtensions
# Plain build; just with base build fixes
PlainLinux: PlainBuildFixes
Graphite: GraphiteSupport
# Experimental crosscompile support
CrossWin32 : CrossWin32Patches

# -------- [ Tag [ >= <tag> etc. ], ] patch sets --------

[ PreprocessPatches ]
# Collection of patches that must be applied before all the other patches.

# Create a safe hash number interval for ooo-build only resources.
ooo-build-resources-sc-sc-hrc.diff, kohei
ooo-build-resources-svx-dialogs-hrc.diff, kohei

[ GraphiteSupport ]
cws-graphite01-20090630.diff, i#69129

[ HelpContent ]
helpcontent-scalc-01.diff, kohei

[ LocalizeFixes ]
helpcontent-scalc-01-localize.diff, kohei

[ LinuxOnly ]
# Don't stat tons of config files we don't need to read on startup
speed-configmgr.diff, i#56783, michael

# add accelerator to the OK and Cancel buttons.
ok-cancel-btn-add-accel.diff, kohei

[ TemporaryHacks ]

# add idl target to toplevel makefile
makefile-idl-build.diff, noelpwer

# Pagein types.rdb / services.rdb & the ui files
speed-pagein.diff, i#57679, michael

# Use d_type entry when possible to get file type instead of using stat
speed-getfilestatus-dtype.diff, rodo, i#63159

# Replace hunspell linked list implementation with hashed implementation
# Reduces hunspell mem usage by more than half (3.7M to ~680K)
# (even bigger savings on 64bit, and with dicts like the Czech one)
#FIXME oog680: hunspell-hashify.diff, i#50842, dkeskar/jholesov

# add no-crashreporter sections to testtool default config;
# also guess office path from testtool.bin path i#FIXME?
testtool-more-defaults.diff, martink

#Fix plus/minus in to each heading in Navigator
plus-minus-sw-navigator.diff, i#64886, n#129410, jianhua
plus-minus-sw-navigator2.diff, i#64886, n#129410, jianhua

#set default varchar lenght to 100.
dbaccess-default-varchar-lenght.diff, i#62664, jianhua
#make oovbaapi as a link
linkoo-type.diff
#for selection delete crash
selection-crash-svx-svdmrkv.diff, i#76084, jianhua

#realize a new feature named as Show Data Form in OpenOffice
sc-dataform-sc.diff, Amelia Wang

sc-dataform-officecfg.diff, kohei

#realize extra piece of new feature named as Show Data Form about vba
sc-dataform-suppor-vba.diff, Amelia Wang

# workaround for a crash in the help on amd64.
sal-doublefree.diff, i#67740, mklose

# hack for n#240776
sw-graphic-save-problem.diff, flr, n#240776

# accelerate intern by not using stl
sal-strintern-speed.diff, i#78496, michael
sal-strintern-speed-fix.diff, i#78496, michael

# temporary hack to avoid the warning about missing return values in gcc4
# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20624
#warning-return-values-stlport.diff, jholesov

# Fix linkoo, the ultimate hacker tool
fix-linkoo.diff, i#83548, jholesov

# fix a11y bug
fix-gtk-a11y.diff, i#98533, michael
fix-gtk-a11y-gail-version-warning.diff, pmladek

# Update linkoo for dev300 TODO file upstream
linkoo-dev300.diff, jholesov

# temporary compile sc/source/core/tool with -O1 with gcc-4.3 on x86_64
# until the internal compiler error is fixed
# buildfix-gcc-4.3-compiler-error.diff, n#370383, pmladek

# Make the historically very verbose build quieter, helps us see warnings.
quiet-build.diff, i#84497, michael
quiet-build-more.diff, i#84497, thorsten

# further performance tweaks to configmgr
speed-configmgr-misc.diff, i#84751, michael
# sort by a simple metric first
speed-configmgr-nodesort.diff, i#100743, michael
# don't do dumb I/O and CPU work we can defer around lang guessing
# we should really defer loading the shlib that does this work too but ...
speed-lingucomponent.diff, i#100757, michael


# gcc OOMs here otherwise (x86_64)
writerfilter-qnametostr-NOOPTFILES.diff

# default to DEV300 in cws-commit-patch
cws-commit-patch-default-dev300.diff, i#87431, jholesov

# avoid crash when calling the mono testcase from ooo-build/test/mono
# the object "this" was destroyed after calling ScTableSheetObj::getImplementation
# this hack make sure that the object lives a bit longer
sc-cellsuno-avoid-early-destruction.diff, i#90076, pmladek

[ TemporaryHacks and not MacOSXOnly ]

# don't lstat() that much while creating absolute URLs - breaks unopkg
# run as e.g. used during Mac dmg generation, as parts of the
# configmgr paths are not yet existing then
speed-sal-fewer-lstats.diff, i#89730, jholesov

[ CJK ]
# add a new unit 'character unit'
cjk-character-units-imp.diff, Amelia Wang

#set default CJK font fontsize as 10.5pt
sw-default-cjk-fontsize.diff i#72010, jianhua

# add a new unit 'character unit'
cjk-character-units-ui.diff, Amelia Wang
cjk-character-units-rulers-sync-with-pggrid-fix.diff, Amelia Wang
cjk-character-units-fix.diff, i#356101, Amelia Wang
cjk-character-units-fix-376788.diff, i#376788, Amelia Wang
cjk-character-units-in-pggrid-fix.diff, Amelia Wang

#[ CJKTemporaryHacks ]
# the following patch is disabled temporary.
# default value of tab stop for Chinese version
#default-tabstop-Chinese.diff, Fong Lin

# default value of automatic text indent for Chinese version
#sw-auto-text-indent-zh.diff, Fong Lin

# for mixed font set
#FIXME src680: font_list_box_cjk.diff, i#73003, Fong Lin

[ WPS ]
# MS Works import filter (following patches depend on each other) Fridrich

wpsimport-config_office.diff
wpsimport-filter.diff
wpsimport-scp2.diff

wpsimport-writerperfect.diff
libwps.diff

# readd WPS. (removed in cws native214/m40)
wps-registry.diff

[ CWSBackports ]
#basic runtime fixes
basic-add-missing-includes-after-cws-npower10.diff

# GetDialogParent() symbol needs to be exported.
vba-show-data-form-link-fix.diff, kohei

# Base Table Wizard bug, fixed in dba32d, integrated into DEV300_m52
table-wizard-swap-private-business-i102019.diff

[ WPG ]
# libwpg-based import filter for WordPerfect Graphics
libwpg.diff

wpgimporter.diff

[ GCJ ]
# gij/libgcj paths...
jvmfwk-gij-paths.diff, rengelha

# Fix up Javac error, known to happen with gcj, probably happens for other
# JDKs too
buildfix-qadevOOo-java-encoding.diff, brosenk

# Fixes that were not accepted up-stream, but are still useful
[ FixesNotForUpstream ]
# Make debugging nicer under unix
debug-bits.diff, i#35336, jholesov
# Make the scroll-wheel / page popup more sane
gui-sw-scroll.diff, i#20826, michael

# make menu layout prettier
vcl-menu-fixes.diff, i#67123, n#523852, michael/jholesov

# Tell the desktop we support the VFS
uses-vfs.diff, i#43504, michael

# not for upstreaming: don't disable the entire visibility, just
# the -fvisibility-inlines-hidden
buildfix-x86-64-visibility-workaround.diff

# re-direct to plugins via http://extensions.go-oo.org/
redirect-extensions.diff

#upload a new libwpd + fix an exception with condensed paragraphs
libwpd.diff, fridrich
writerperfect-nocondensedparagraphs.diff, fridrich

offapi-typecheck-whitelist.diff, thorsten

# ensure macros are imported ( not as comments ) for calc
vba-default-enable-calcmacros.diff, noelpwer
# in the basic IDE if the curson in within a macro
# pressing the run button should run that macro
# if the cursor is not in the macro then it should
# raise the macro chooser dialog
vba-ide-choose-macro-to-run.diff, noelpwer

[ ExtensionFixes ]
# no bogus license question when registering these extensions
#solenv-no-extension-license.diff
reportdesigner-no-license.diff
presenterscreen-no-license.diff
presentation-minimizer-no-license.diff
# Fixing build breake in apache-common module when you use UTF-8 based locale in the build system
apache-commons-build-fix-invalid-chars.diff, kami
wiki-publisher-no-license.diff

[ ExtensionFixes ]
pdfimport-no-license.diff
build-java-target-extensions.diff, i#93115, pmladek

[ NovellOnlyExtensionFixes ]
# allow build with ant-1.6
# IMPORTANT: the second part of the patch is build-ant-1.6.diff
build-ant-1.6-swext.diff, i#90830, pmladek
# omit the ugly <platform>-<arch> suffix in the extensions identifier
solven-extensions-noarch-identifier.diff, pmladek
sdext-noarch-identifier.diff, pmladek

[ NovellOnly ]
# allow build with ant-1.6
# IMPORTANT: the second part of the patch is build-ant-1.6-swext.diff
build-ant-1.6.diff, i#90830, pmladek

[ Fixes ]
# printf arguments cleanup
buildfix-fmtargs.diff, cabral

# FIXME: Was fixed in m1 as masterfix. I'd bet it will be in m30, too, but...
# more intelligent nsplugin seeking
nsplugin-path.diff, i#49590, michael

# some versions of neon report DAV:Collection instead of Collection
# thanks Caolan for the fix
ucb-neon-different-name.diff, i#98288, pmladek

# sd printing fixes
printing-bugfix-254573.diff, n#254573, rodo

# use basic (advanced) shapes for rectangle/ellipse on draw/impress's toolbars. make shapes wrap words by default, n#171052, rodo
sd-toolbar-advanced-shapes.diff, n#171052, rodo
svx-shapes-default-word-wrap-enable.diff, n#171052, rodo
svx-honour-customshape-capabilities.diff, n#395372, thorsten

# fix check box rendering issue - n#80447
check-buttons-rendering-fix.diff, michael

# disable font management dialog in padmin
padmin-nofontconfig.diff, michael

# Fix for n#113235
wizards-source-importwizard-filesmodul-xba.diff, i#56633, noelpwer

# testtool doesn't like oobuild basic compatability defaults
# ooo-build only fix n#145906#
automation-testtool-oobuildfix.diff, n#145906, noelpwer

# fixes some .cfg files in helpcontent2/source/auxiliary to use right
# lang code instead of en-US
helpcontent2-auxiliary-cfg.diff, pmladek

# more secure permissions for the user directory by default
desktop-safer-user-dir-perm.diff, i#62858, pmladek

# Added support for "application/octet-stream" mime type in package manager
desktop-application-octet-stream-mime-type.diff, i#73301, flr

# allow other types of signing certs, fix by Jacob Berkman <jberkman@novell.com>
xmlsecurity-verify-usages.diff, i#76871, pmladek

# select the java automatically when the system javavendors.xml is modified
# do not force to do it the user manually
jvmfwk-modified-javavendors-xml.diff, i#99619, pmladek

# find locked certs, fix by Jacob Berkman <jberkman@novell.com>
libxmlsec-findcerts.diff, i#76870, pmladek

# avoid error messages about missing directories with templates
sfx2-check-existing-template-dirs.diff, i#100518, pmladek

[ LinuxOnly ]
# fix that allows OOo to work with a standard (unpatched) libjpeg,
jpegc.c.diff, i#80674, n#272574, flr
# build against xulrunner 1.9.1+
xulrunner-1.9.1.diff, ccheney

[ Fixes ]
# speed up make_installer.pl quite markedly.
speed-make-installer.diff, i#97124, michael
speed-make-installer-2.diff, i#97208, michael

# process relative SMB paths (in hyperlinks) correctly
tools-urlobj-smb-scheme-patch.diff, n#261623, flr
samba-hyperlinks-sc-sd.diff, n#382718, jholesov
tools-qa-urlobj-unittest.diff, n#261623, flr

# writer doc margin text rotates when opened in word
svx-text-rotation-fix.diff, n#404221, flr

# check real help path defined in registry instead of the $(instpath)/help
sfx-check-real-help-path.diff, i#81139, pmladek

# display help correctly even when the files are symlinks
xmlhelp-work-with-symlinks.diff, i#81138, pmladek

#fix saving ( as doc format ) word documents with embedded word
#document ( containing macros ) crashing
save-doc-withembedded-doc-with-vba-crash.diff, n#339946, i#83632, noelpwer

localize-pl-cygwin-paths.diff, tml

# import/export form control's visibility
form-control-visibility.diff, i#88878, noelpwer

# import tooltip for userforms
import-controls-tooltip.diff, i#90124, noelpwer

# fix path to the python binary in the mailmerge.py script
# /bin/python does not exists and breaks the automatic rpm dependencies
# FIXME 2008-11-26: the mailmerge.py in dev300-m35 doesn't have any #! line at all!?
#scripting-mailmerge-python-binary.diff, pmladek

# Allow some technically illegal pathname components on Win32
# (directories with trailing spaces or periods) because some SMB
# servers like Netware (and Samba, if mangled names = No) do serve
# such directories if they exist on the server's host system.
win32-invalid-names.diff, n#277603, tml

# make CustomUnitText "Pixel" localisable
customunittext-pixel.diff, i#61043, atimar

# make CustomUnitText "%" consistent
customunittext-percent.diff, i#80784, atimar

# make "Table Data View" and "Bibliography" localisable
i93000.diff, i#93000, atimar

# fix to work with groupwise
# unset the LD_LIBRARY_PATH to do not confuse system mail clients with
# OOo and Java libraries
shell-senddoc-library-path.diff, i#95873, pmladek


# fix truncated localized text on sslwarndlg in uui module
i97329-sslwarndlg-truncation.diff, i#97329, atimar

# fix truncated localized text on several dialogs 
# see http://wiki.services.openoffice.org/wiki/Hu.openoffice.org/QA_Screenshots
padmin-dialog-resize.diff, i#98164, atimar
sw-dialogs-resize.diff, i#98164, atimar
svx-dialogs-resize.diff, i#98164, atimar

# Password dialog - default is OK
uui-passworddlg-ok-default.diff, i#102230, atimar

[ Fixes < ooo320-m6 ]
# fix icc
icc-use-sal-endianness-and-types.diff, i#106523, n#467181

[ RadioButtons ]
forms-radio-button-group-names.diff, n#310052, i#30823, jonp
# depends on forms-radio-button-group-names.diff,
xl-import-formradiobutton.diff, noelpwer, i#30823
# persist the groupname for basic dialogs also
dialog-groupname-persist.diff, noelpwer, i#30823

[ SELinux ]
# make OOo work under SELinux
ooo80816.selinux.bridges.diff, i#80816


[ Win32Only ]
accept-underscores-in-hostnames.diff, n#182422, tml


[ WebDAVUpstream ]
SectionOwner => jholesov
SectionIssue => i#29152
# WebDAV locking implementation - the up-stream version
cws-webdavandgvfslocking1-comphelper.diff
cws-webdavandgvfslocking1-officecfg.diff
cws-webdavandgvfslocking1-sal.diff
cws-webdavandgvfslocking1-sc.diff
cws-webdavandgvfslocking1-sfx2.diff
cws-webdavandgvfslocking1-tools.diff
cws-webdavandgvfslocking1-ucb.diff
cws-webdavandgvfslocking1-unotools.diff

[ WebDAV ]
SectionOwner => jholesov
SectionIssue => i#29152

# WebDAV locking implementation - the original version
# This was originally forward-ported from ooo-build-2-4-1,
# but has now been modified significantly, so the name of
# this diff is a bit misleading.

webdav-locking-from-ooo-build-2-4-1.diff

# fix saving files on Novell teaming via WebDaV
webdav-locking-local-temp-file.diff, bnc#440514, kendy


[ GnomeVFS ]
# gnome-vfs locking implementation
# it was not committed up-stream yet because up-stream uses so old gnome-vfs
# that it did not even compile :-(

gnome-vfs-locking-config_office.diff, i#91151, jholesov

gnome-vfs-locking-ucb.diff, i#91151, jholesov

# Move gnome-vfs out of the startup sequence, load it only when needed
# (up-stream does not like it, because it adds dependency to VCL in URE)
gnome-vfs-late-init.diff, i#84137, jholesov

[ QuickStarter ]
unxsplash-rework.diff, i#60696, michael/jholesov

# fix the systray quickstarter
sfx2-quickstarter-fix.diff, i#88382, michael

# FIXME: unxsplash-rework needs this function which was removed in m13
# due to being unused. fix properly.
hack-readd-GetStringParam.diff

[ QuickStarter ]
# handling of osl pipe has changed, see i#84045
unxsplash-new-osl-pipe.diff, i#60696, jholesov

# fix the slot: handling again :-(
unxsplash-new-osl-pipe-slot.diff, i#60696, n#375529, jholesov

# when OOo fails during startup, don't loop endlessly
unxsplash-finish-on-hangup.diff, i#60696, n#357659, jholesov

# the 'three layer OOo' needs rpath
unxsplash-rpath.diff, i#60696, jholesov

# the OSL_PIPE protocol has changed thanks to 3-layer OOo again :-(
unxsplash-3layer.diff, i#60696, jholesov

# fix bitmap reading; the lines are aliased to 4 bytes
unxsplash-bmp-alias.diff, i#60696, jholesov

[ WriterFixes ]
# Allows to copy/paste html text which is between 2 unknown tags.
sw-html-insert-unknown-tags.diff, i#59064, mloiseleur
# Allows to edit a csv data source after a mail merge
sw-remove-csv-lock.diff, i#85133, mloiseleur

[ WriterFixes ]
# Provides a great speed-up for a mail merge operation : 7x faster
sw-mailmerge-faster.diff, i#40827, mloiseleur


[ CalcFixes ]
# To make CSV Text Import settings persistent, and also allow importing of
# quoted fields as text.
csv-import-preserve-options-sc.diff,        i#3687, i#97416, n#433378, muthusub/kohei
csv-import-preserve-options-officecfg.diff, i#3687, i#97416, n#433378, muthusub/kohei

# Replace usability numb Zoom dialog with a Combo Box
# FIXME: this conflicts with Sun's duplication of this work,
# eg. print preview
zoom-combobox.diff, michael

# make some symbols from sc visible when compiling with gcc4, necessary since m121
gcc4-visibility-sc.diff, i#53261, pmladek

# adds to Autofilter Empty-NonEmpty options bxc #62165
sc-autofilter-empty-nonempty.diff, i#35578, jody

# Improves the standard filter options and menu. bxc #62187 #62495
sc-standard-filter-options.diff, i#35579, michael

# Saves and loads the standard filters in ods
sc-standard-filter-options-ods-hack.diff, i#35579, jonp

# Hides the filtered rows when height of rows are changed bxc #62161
# sc-filter-hide-filteredrows.diff, i#35581, jody

# Autofill doesnt fill filtered rows bxc 62499
sc-filters-fill-fix.diff, jody

# Support modification of data source range in DataPilot after table output has
# been generated.
sc-datapilot-dynamic-range.diff, i#23658, kohei

# Provision for data-pilot to give autoformat bxc #62162
#
# Upstream has already rejected this patch, and closed the issue as WONTFIX.
# This patch needs to be revised to use 'DataPilot *' cell styles instead of
# re-using Table AutoFormat, which is fragile and do not always apply
# correctly.
sc-datapilot-autoformat.diff, i#37388, jody

# BXC 62488 : Allows insertion of rows by shifting down
#sc-paste-insert-rows.diff disable...

# Display min password length in dialog BINC 773
sc-save-password-minlength.diff, i#21923, kohei

# Allow dnd in Change record mode for Data source BINC 70845
sc-change-record-dnd.diff, i#44982, jody

# keybindings: <ctrl> +/‑ to insert/delete a complete line in calc (X#62530)
calc-new-acceleration.diff, i#67029, michael

sc-dp-gridlayout.diff, i#68544 n#190970, jody

# Excel compatibility for handling of "string numbers".
sc-string-arg.diff, i#5658, kohei

# Fix for the above string number patch, for cases where a formula cell is
# being referenced by the origin cell.
sc-string-arg-ref-formula-cell.diff, n#391330, kohei

# Fix an error in presence of string literals in COUNTA.
sc-string-arg-counta-fix.diff, n#446622, kohei

# Print_Area/Print_Titles are only relevant for sheet local names, n#191005
sc-xls-builtin-name-scope.diff, n#191005, n#257422, jonp

# Allow Cols/Rows to be resized even if document is read-only, n#165980, jody
sc-read-only-colrow-resize.diff, jody

# Add a 'Natural' variant of sorting, blocking on ODF extension issues
sc-natural-sort.diff, i#26565, kohei

# Include cell format when sorting via sort icon & determine whether the first
# row is the column header (depends on sc-natural-sort.diff patch).
sc-simple-sort-include-format-header.diff, i#13829, kohei

# Allow 'june-2007' to be properly parsed as June 1 2007 in en-US locales.
sc-date-fix.diff, n#358750, jonp

# For multi-line cell contents, bolding the first line shouldn't bold the
# entire cell.
calc-multiline-pattern-fix.diff, n#359690, n#437137, i#99291, kohei

# Add extra padding so that the cell height is larger -- increases legibility.
sc-extra-cell-margins.diff, n#361358, jonp

# Change default numbering scheme of x-y plot chart from Row 1, Row2, ... to
# 1, 2, 3... when the X labels are not explicitly given.  This is what Excel
# does.
sc-excel-chart-default-xlabels.diff, n#257079, i#83679, kohei

# Fix autoshape excel hyperlink import OOo ( depends on vba-sc-handleautoshapemacro-import.diff )
vba-sc-autoshapes-hyperlinks.diff, i#66550, noelpwer

# Delete Rows/Delete Columns should remember the content so that the user is
# able to paste it elsewhere (similar to Insert Cut Cells in Excel)
#TODO: we need to re-implement this as a separate menu option. (n#500985)
#sc-delete-rows-columns-remembers-content.diff, i#71921, jholesov

[ CalcFixes < dev300-m52 ]
# load, store and save the sheet protection options from and to an Excel file,
# and use that information to constrain cell cursor movement when the sheet is
# protected.  Also to support encryption on Excel file export.
cws-scsheetprotection02-sfx2.diff, i#97515, kohei
cws-scsheetprotection02-svx.diff,  i#97515, kohei
cws-scsheetprotection02-sc.diff,   i#97515, kohei

[ CalcFixes ]
# fix a crasher when loading xls doc with unsupported encryption.
calc-xls-decryption-crash-fix.diff, i#102906, kohei

# Unit conversion fixes in ScDrawLayer.
sc-drwlayer-units.diff, i#83735, jonp
# overwrite character level font attributes when changing them at cell level.
sc-overwrite-char-font-attrs.diff, n#374580, i#53545, i#96853, kohei
# When filtering by date, strip off the time element from each value.
calc-filter-by-date-strip-time.diff, n#414303, i#94695, kohei
# preserve line breaks when referencing it in formula.
calc-multiline-formula-ref.diff, i#35913, kohei

# always store ranges in ODF using Calc A1 formula syntax.
chart-odf-always-calc-a1.diff, n#463305, kohei

# Enable these in ooo-build.  They are still disabled upstream.
enable-xls-export-encryption.diff, kohei
enable-sheet-protection-options.diff, kohei

# Paste clipboard when ENTER is pressed, then clear clipboard.
sc-paste-on-enter.diff, n#358545, i#28535, jonp
calc-paste-on-enter-crash-fix.diff, i#102456, kohei

# Support copy & pasting of non-contiguous region.
calc-multi-range-copy-paste.diff, n#447003, i#25855, kohei

# Place a border around the Copy source cell(s).
sc-copy-source-border.diff, n#367489, jonp

# Ensure that Print Preview is consistent with Print output.
sc-print-selected-sheets.diff, n#335684, i#45497, jonp

# Allow biffdump.cxx to compile on 64-bit platforms
sc-biffdump.diff, i#82184, jonp

# Allow objects to stay within cells as expected when rows are resized.
sc-object-row-position.diff, i#47088, jonp

# Launch navigator when double-clicking the leftmost status area box.
sc-status-bar-launch-navigator.diff, i#49491, kohei

# Support print & page preview for files containing only lines
sc-print-lines.diff, n#351468, i#85076, jonp

# Dynyamically resize filtered range when new data rows are present.
sc-dbrange-dynamic-resize.diff, n#352662, i#85305, kohei

# Have cell background paint over the gridlines.
sc-cellbackground-over-gridlines.diff, n#361360, i#3907, kohei

# Make cell number format toolbar icons togglable & remove the standard format
# button.
sc-cellformat-icon-toggle.diff, n#358548, i#86377, kohei

# ignore manual breaks when the "fit to x pages wide and x pages tall" option
# is used, for Excel interoperability.
sc-fit-to-width-height-skip-breaks.diff, n#404232, n#404563, i#94698, kohei

# skip data in hidden cells when rendering charts.
chart-skip-hidden-cells-chart2.diff, n#404190, i#81209, n#427545, kohei
chart-skip-hidden-cells-offapi.diff, n#404190, i#81209, n#425617, kohei
chart-skip-hidden-cells-oox.diff, n#404190, i#81209, n#425617, kohei
chart-skip-hidden-cells-xmloff.diff, n#404190, i#81209, n#425617, kohei
chart-skip-hidden-cells-sc.diff, n#404190, i#81209, n#425617, kohei
chart-skip-hidden-cells-sc-fix.diff, i#101273, kohei

# render charts with multiple chart types correctly for xls interop.
chart-axis-multi-chart-types-chart2.diff, n#437322, i#95934, kohei
chart-axis-multi-chart-types-sc.diff,     n#437322, i#95934, kohei
chart-axis-multi-chart-types-xmloff.diff, n#437322, i#95934, kohei

# Don't use pShapeContext after deleting the instance.  Fixes SEGFAULT.
calc-filter-xml-free-context.diff, n#467536, jonp

# modify the autofill behavior to bring it a little closer to Excel's.
calc-autofill-increment-fix.diff, i#5550, kohei

# fixed change track export to xls files wrt cell change records.
calc-change-track-xls-export-fix.diff, n#416045, i#93839, kohei

# show COUNT and COUNTA results even if current range contains an error.
calc-status-bar-func.diff, n#430655, i#94618, kohei

# support custom names in data pilot tables.
calc-dp-custom-names-offapi.diff, n#338014, i#22029, kohei
calc-dp-custom-names-sc.diff,     n#338014, i#22029, kohei
calc-dp-custom-names-sc-win32-fix.diff, kohei
calc-dp-custom-names-sc-group-fix.diff, n#491637, kohei

# default output to new sheet, instead of current sheet.
calc-dp-default-new-sheet.diff, i#50886, kohei

[ CalcFixes < dev300-m52 ]
# always use OOo address convention when parsing address in DDE function.
calc-dde-always-ooo-conv.diff, n#442143, i#101041, kohei

[ CalcFixes ]
# Replace 'Manual Break' with 'Page Break' in menu texts.
calc-menu-manual-page-break.diff, kohei

# make biffdumper build
fix-biffdumper.diff, noelpwer

# accelerate calc HTML import from it's horribly turgid state
# removes an N^2 algorithm, and saves 8 bn cycles for a small
# HTML file for me.
sc-speed-html-import.diff, i#100827, michael
sc-speed-html-import-sizing.diff, i#100827, michael
svx-speed-editeng.diff, i#100827, michael
# FIXME: enable me after 3.1 release ...
# svtools-speed-itemset.diff, i#100910, michael

[ LinuxOnly ]
# accelerate linking, by extreme cunning i#63927
# this is an increasingly marginal win ...
speed-local-link-except.diff, i#63927, michael
# the file this one patches ends with CR chars... :-(
speed-local-link-except-offuh.diff

speed-local-link.diff, i#63927, michael

# make some symbols from svtools visible for the kde fpicker when compiling with gcc4
# fix: this breaks win32
fpicker-kde-gcc4-visibility.diff, pmladek

[ LinuxOnly < dev300-m53 ]
#Backport a more recent mozilla building. For the while not for win32, since
#there are not yet precompiled packages for mozilla based on this CWS.
cws-moz2seamonkey01-moz.diff
cws-moz2seamonkey01-configure.diff
cws-moz2seamonkey01-connectivity.diff


[ Misc ]
# Insert symbol defaults to the Symbol font - not a random one
gui-sw-insert-symbol.diff, i#15512, michael
# Address data source ordering x#62860
addrbk-datasrc-ordering.diff, michael
# Changed the default option in the Templates and Documents dialog.
svtools-default-new-document.diff, rodo
# contextual autocomplete
context-autocomplete.diff, i#22961, michael

# Fix casts in db_java_wrap.c
# db4-jni-casting.diff, rengelha - broken with 'split' ...

# Grouping items in the templates dialog n#106603
svtools-unsort-template-dialogentries.diff, rodo

# display command line help '-h' to stdout instead of stderr.
desktop-cmdhelp-stdout.diff, kohei

# always enable file save even when the document is not modified.
always-allow-save-document-sfx2.diff, n#347423, n#450789, i#5226, kohei
always-allow-save-document-sc.diff,   n#347423, n#450789, i#5226, kohei

# Adjust scroll speed while extending selection beyoud visible sheet area.
scroll-accel-sc.diff, n#375909, i#71362, kohei
scroll-accel-vcl.diff, n#375909, i#71362, kohei

# reduce mininum password length from 5 to 1.
min-password-length-sfx2.diff, i#85453, kohei

# allow users to change current document password.
document-password-change-sfx2.diff, kohei

[ PopupRemoval ]
# Remove unnecessary popups that might show up during startup.

# remove updater code that is only relevant for the upstream version.
sfx2-remove-check-update-on-fileload.diff, kohei

# prevent the registration dialog from showing up on startup.
desktop-disable-startup-registration.diff, kohei


[ EasterEgg ]
# go-oo.org people active in this release
go-oo-team.diff, michael


[ NovellOnly ]
# add in an entry for a corporate common dictionary
corporate-dictionary.diff, michael

# Some Novell colors ...
novell-palette.diff, michael

# finally disable -fsigned-char on pcc
solenv-really-use-unsinged-char-on-ppc.diff, i#81127, n#169875, pmladek


[ NotDebian ]

# Disable the printer properties which are unused#583
# related issue: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=353595
# also last comment in: https://bugzilla.novell.com/show_bug.cgi?id=83925
# also http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=373974

# due to popular demand, putting back the paper orientation checkbox
#printer-properties-disable.diff, i#14036, michael

# Enable layout'ed dialogs.  Not to be released, therefore NotDebian.
layout-default-enable-config_office.diff, janneke

[ CustomUserConfig ]

# This section includes patches that deal with custom user configuration items
# that are not present upstream.

SectionOwner => kohei

# Swap the delete and backspace key bindings but leave the menus alone.
sc-default-delete-backspace-key.diff, i#17965, kohei

# migrate keyboard shortcuts & reset character set for CSV import dialog.
desktop-config-migration.diff n#367160, n#376473, n#421070, n#466064, kohei/jholesov

[ DebianBaseOnly ]
SectionOwner => rengelha

sensible-ooomua.diff
sensible-browser.diff
default-cairo-disable.diff
gcj-32bit-runtime-path.diff, i#64888, mklose
# remove mozilla plug-in option completely since we enable it per default
# and therefore this option is sense-/useless
no-mozilla-plug-in-option.diff
# read variables from /etc/openoffice/sofficerc, since /usr/lib/openoffice/sofficerc
# just refers to it
oosplash-etc-openoffice-sofficerc.diff
# build using -O2 on x86 and sparc according to Debian policy.
debian-opt.diff
ubuntu-soffice-config.diff, mklose
ubuntu-openoffice-java-common.diff, ccheney
ubuntu-javaldx.diff, ccheney

# mention openoffice.org-report-builder instead of getting people
# to download it from elsewhere
reportdesign-mention-package.diff, rengelha

# add JDK paths for MySQL, PostgreSQL, JTDS
jdbc-driver-classpaths-debian.diff

[ GoOoSplash ]
# move progress bar for go-oo splash
go-oo-splash.diff

[ SlackwareOnly ]
SectionOwner => Slackware

pushfont-psstream.diff
scp2-user-config-ooo3.diff

[ DebianBaseOnly ]
# fix the splash progressbar colors
debian-splash.diff

[ DroplineGNOMEOnly ]
SectionOwner => DropLine

pushfont-psstream.diff, i#84481
scp2-user-config-ooo3.diff


[ MandrivaOnly ]
SectionOwner => gghibo
# gcc401-stlport45-include.diff
mandriva-archflags.diff
mandriva-java32_64.diff
# db42-fix-jni-includes.diff
# Fixes msfontextract tool (uninitialized variable)
msfontextract.diff, mrl
# Fixes ooqstart.desktop Exec command
ooqstart.desktop-exec.diff, Marcelo Ricardo Leitner
# Adds Angola currency. FIXME: probably done in the worst way.
angola.diff, mrl
# Fix DictOOo.swx and FontOOo.swx paths, as Mandriva doesn't ship them
# inside share/dict/ooo dir.
wizards-path.diff, mrl
mdv-toolbariconstosmall.diff, cabral
mdv-exceptcxx-include-string.diff, cabral

[ MandrivaOnlyUnix ]

SectionOwner => gghibo
help-support-mdv.diff
# change user config dir name from ~/.openoffice.org3 to ~/.ooo3
scp2-user-config-ooo3.diff, pmladek


[ NovellOnlyUnix ]

# Help Support page
help-support.diff, michael
# change user config dir name from ~/.openoffice.org3 to ~/.ooo3
scp2-user-config-ooo3.diff, pmladek
# Push fonts into the ps stream always
pushfont-psstream.diff, i#84481, michael

[ BrokenSystemNSS ]

# fix build with system libnss installed apart from mozilla
# strictly required on SL10.1/SLED10 where the xulrunner-nss.pc is broken
libxmlsec-system-nss.diff, i#69368, n#195272, pmladek

[ BuildBits ]
novell-win32-agfa-monotype-fonts.diff, tml

# allow to define java target, so the build is usable with the JVM 1.5
# even when it is built with JDK 1.6
build-java-target.diff, i#93115, pmladek

# do not create '.' subdirectories
# omit './' in paths
solenv-installer-cleaner-paths.diff, pmladek

# do not print twice the lang name in the filelist
# for example, generate gid_Module_Langpack_Basis_es instead of
# gid_Module_Langpack_Basis_es.es
solenv-installer-lang-filelist-names.diff, pmladek

# allow to get path also from ./file
# otherwise, it installed the license files into ugly subdirectories
# for example into <ooo-home>/LICENSE.html/LICENSE.html
# even worse, the direcotry had the rights 444
installer-get-path-correctly.diff, pmladek

# allow to use the prebuilt jsr173_1.0_api.jar
build-prebuilt-stax.diff, i#93116, pmladek

# enforce alignment for typesconfig (fixes e.g. IA64, ARM build)
typesconfig-enforce.alignment.diff. i#100469

# fix build with neon-0.24
ucb-neon-0.24.diff, pmladek

# add ro
postset-add-ro.diff

# rename getline() to avoid conflict with glibc-2.10.1 and above
soltools-mkdepend-getline.diff, aradke

# localize fails with duplicated symlinks
transex3-localize-find.diff, i#102296, pmladek

# don't break dmake with environment variables containing space in the name
# [which is a broken setup, but apparently most apps don't break with that ;-)] 
dmake-space-in-envvar-name.diff, i#101786, jholesov

armeabi-softfp-buildfix.diff, i#105302, doko

# support db4.8
db4.8.diff, rengelha

[ Gcc44 ]
buildfix-sw-printf.diff, ccheney

[ Java14 ]

# enable build with Java 1.4; can't go upstream
build-java-1.4-enable.diff, i#12345, pmladek
# disable optional @Override; can't go upstream
build-java-1.4-filter.diff, i#12345, pmladek
# various build fixes for Sun Java 1.4; can't go upstream
build-java-1.4-qadevOOo.diff, i#12345, pmladek
build-java-1.4-wizards.diff, i#12345, pmladek
# Sun Java 1.4 does not know the -Xbootclasspath option, will not go upstream
build-java-1.4-no-Xbootclasspath.diff, i#12345, pmladek
# another fallback to load libhsqldb with JRE 1.4
connectivity-load-libhsqldb-with-jre-1.4.diff, n#431360, pmladek

[ GTK28 ]

# gtk-2.8 does not know the link-color properties;
# do not try to read them to avoid annoying warning messages
vcl-gtk-2.8-unsupported-link-colors.diff, n#440514, pmladek

[ GoOoOnlyWin32 ]
SectionOwner => tml

go-oo-win32-installer-branding.diff
go-oo-win32-vrb-branding.diff, n#191913, i#68817
go-oo-win32-registry-branding.diff, n#191913

[ NovellOnlyWin32 ]
SectionOwner => tml

novell-win32-installer-branding.diff
novell-win32-vrb-branding.diff, n#191913, i#68817
novell-win32-registry-branding.diff, n#191913


[ NovellLikeOnlyWin32 ]
SectionOwner => tml

win32-prebuilt-writingaids-zip.diff
win32-prebuilt-writingaids-zip-scp2.diff

# drop stuff that is needed only on Win9x
novell-win32-drop-win9x.diff

[ translate-org-za-common ]
SectionOwner => davidf

# use the dejavu fonts - commented out as different patches in the works
# dejavu-fonts.diff, i#59853


[ FrugalwareOnly ]


# ( mmp@oo.o deals with defaults apparently )

[ Defaults ]
# Disable the recovery report dialog
recovery-report.diff, i#53531, martink

#
# Controversial bits - no use filing up-stream
#

# automatically do any migration we can, with no wizard
default-no-startup-wizard.diff, michael

# don't throw up the style dialog on 1st run
default-no-style-dialog.diff, michael

# pestering people serves no useful purpose
default-no-registration.diff, michael

# The Industrial OOo icon theme is too old. The OOo Tango icon
# theme is closer to the current GNOME Industrial theme rules.
# => Tango should be preferred over Industrial.
tango-prefer-over-industrial.diff, n#304615, pmladek

# no Help->registration dialog by default
default-no-registration-menu.diff, michael
# CR line endings again...
default-no-registration-menu-sd.diff, michael/kohei

# flatten the structure of the 3 layer OOo a bit
scp2-3layer-nicer-paths.diff, i#90430, jholesov

# Fix the system default fpicker
default-system-fpicker.diff, michael

[ DefaultSettings ]

# default to anti-alias at point size of 1 point
default-font-aasize.diff, michael
# set default font size to 10pt
default-font-size.diff, i#35565, michael
# Dramatically improve MS import / export cf. i8276 et. al.
default-ms-filter-convert.diff, i#8276, michael
# use pair kerning in new documents
#KENDY TESTME: should be on using a different patch. default-pairkerning-on.diff, i#35873, jholesov
# Optimal Page Wrap should be default for graphics insertion (X#59831)
writer-default-as-optimal-page-wrap.diff, i#38108, jody
#
# Controversial bits - no use filing up-stream
#
# Use the Gnome VFS on KDE as well if it's there (better than nothing)
vfs-kde-too.diff, michael
# Trade speed for reliability with valgrind
valgrind-alloc.diff, michael

# disable the IDEA algorithm in the internal openssl; It is pattented.
# There is no license fee only for non-commercial use.
# This change actually affects only the Windows builds because the others
# should use --with-system-openssl
default-openssl-no-idea-alg.diff, pmladek

# load and save also odf documents in flat xml format as opposed to the
# compressed ones (conforming to the odf specifications)
odf-flatxml-import-export.diff

[ Features ]
# ask user on logout/shutdown to save documents
session-management.diff, i#63156, rodo

# search <ooo-home>/share/template/common for language independent templates
# will not push it upstream because it will be replaced by upcomming kendy's work
office-cfg-common-template-dir.diff, pmladek

# add new category "Labels" for blank Labels, calling cards, CD labels, etc.
# will not push it upstream because it will be obsoleted by upcomming kendy's work
sfx2-template-category-labels.diff, pmladek
# add labels folder to scp2 module too
scp2_add_additional_dirs.diff, kami


[ BuildBits ]
build-identification.diff, tml

# add -dontstrip option to the installer
installer-strip-optional.diff, i#48814, pmladek

# add missing #include <stdio.h> in autodoc, breaks when building with STLport5
#autodoc-add-missing-stdio-h.diff, rengelha

# Workaround for compile failure with glibc 2.4's langinfo.h
i18nutil-glibc-braindamage-workaround.diff, brosenk

# changes the SDK gid module name to gid_Module_Root_SDK, so the generated list
# of files does not conflict with the main package, i#64802
sdk-gid-module-name.diff, pmladek, i#64802

# do not pack any potential .orig files with ppds
psprint_config-no-orig.diff, jholesov

# GCC warnings: suggest a space before '; ' or explicit braces around empty body in 'for' statement
stlport-gcc-warnings.diff, i#100223, gokcen

[ SdkFixes ]
odk-remove-nonexisting-package.diff, i#105803

[ DebianOnly ]
seamonkey-is-iceape.diff

[ BuildBits ]
# allow separate helpcontent build
# FIXME: is anybody using this feature?
#FIXME src680: separate-helpcontent.diff, jholesov

# use --hash-style=gnu linking when supported
# disabled for Debian as Debian policy (for now) is to use=both
speed-hash-style.diff, pmladek

# bind all those function / named relocations locally
speed-symbolic-functions.diff, i#85679, pmladek

# use -Wl,--as-needed, save 1% of relocations
link-as-needed.diff, i#89511, pmladek

[ MandrivaOnly ]
SectionOwner => gghibo
# mozilla-firefox.diff

[ ArkOnly ]
SectionOwner => brosenk

# Db 4.3/4.4 needs -lpthread
system-db-4.3-use-lpthread.diff, i#58474, rengelha


[ PLDOnly ]
SectionOwner => arekm

# fix build of sal project
solenv-unxlngi4-link.diff, i#66982
# fix for macro browser crash
sfx2-badscript.diff, i#67976


[ BuildBits ]
# work around http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22392
svx-customshapes-NOOPTFILES.diff, martink

# This set seem to be related to a gcc bug ...
# fixes warnings about missing return values
warning-return-values-filter.diff, i#58977, pmladek
warning-return-values-registry.diff, i#58979, pmladek
# fixes warnings about that a variable is used unitialized
warning-uninitialized-variables-tools-2.diff, i#58984, pmladek

#fix a build issue on solaris with sunpro 5.9 aka Sun Studio 12
stlport-solaris-fileno.diff, fridrich

# fix build with vba as extension
buildfix-vba-as-extn.diff, i#86937, hmth


[ BFBuildBits ]
SectionOwner => pmladek

# STLport fixes
binfilter-stl.diff, i#63770, hmth

# use -Wl,--as-needed, save 1% of relocations
link-as-needed-bf.diff, i#89511, pmladek

[ SystemBuildBits ]
# !!!! applied only when libs_extern_sys source tarball is unpacked !!!!
SectionOwner => fridrich

# Mozilla build-bits to not break on Solaris 11
# moz-solaris11-makefiles.diff, fridrich

[ LinuxOnly ]

system-python-ure-bootstrap.diff, deb#501028, i#90701
pyuno-ooodir.diff, i#90701
system-python-uno-path.diff, i#97629

# Fix two problems with some GTK+ themes:
# - menu separators that should be almost black on a dark menu
# background aren't,
# - when menubar and men use opposite bg/fg colours, the menubar test
# is invisible
vcl-gtk-menubar-text-color.diff, n#526004, n#527356, i#103999, tml

[ DejaVuFonts ]

# Following the changed names of DejaVu fonts
# Add Liberation fonts for all platforms
dejavu_liberation_packaging_fix.diff, kami
dejavu_liberation_making_fix.diff, kami

[ VCL ]

#
# These two patches are consequences of each other quite
# possibly, the real fix is in the WM, or the toolkit backend.
#
# don't throw an exception we can't catch when throwing up the splash.
crash-startup.diff, i#100171, michael
# Don't let the splash screen take over
no-splash-takeover.diff, i#23609, rodo

# Better fallback when some of the plugins are not available
vcl-better-fallback.diff, i#50857, jholesov

# prioritize hebrew culmus fonts, Debian bugs #280084, #296152, #300642
hebrew-culmus.diff, noelpwer

# write setup to %%Begin(End)Setup, instead of %%Begin(End)PageSetup when
# generating PostScript
psprint-postscript-page-setup.diff, i#65491, n#80448, jholesov

# enable vcl to load bitmaps when height it negative
vcl-bitmap2-negative-height.diff

prevent-multiple-window-resize-calls-when-maximised.diff, i#104469

[ SystemBits ]
# use getopt() and readdir_r() from system glibc
#FIXME src680: system-libc.diff, i#69033, rengelha

[ TangoIcons ]
# default to large icons in the toolbar
gui-toolbox-large-icons.diff, jholesov

# use it by default under Win32
tango-icons-default-w32.diff, n#254855, pmladek


[ NotDebian ]
# Improve readability of BUILD_VER_STRING in Help:About dialog
# rengelha doesn't like it, so put in NotDebian
# or maybe should be in Win32Only even?
about-build-ver-readability.diff, i#68590, tml


[ Fpickers ]
# Modify the fpicker makefile
fpicker-common-build.diff, jholesov

# Show "Use OpenOffice.org dialogs" check box only if the system fpicker is
# available (better implementation) FIXME IZ number
fpicker-show-checkbox.diff, jholesov

# Out-of-process implementation of KDE fpicker
# FIXME: No IZ number for this, because it is necessary to do it internal first
fpicker-kde-service.diff, jholesov
# Out-of-process implementation of KDE fpicker
# FIXME: No IZ number for this, because it is necessary to do it internal first
fpicker-kde-dialog.diff, jholesov
# Partially support KIO (download the file locally if we cannot handle it in
# OOo or (FIXME) using gnome-vfs) binc#60527
fpicker-kde-partial-kio.diff, jholesov
# Workaround for 'Filter name (*.blah)' vs. 'Filter name' problem in
# Insert->Picture->From File... n#66873
fpicker-kde-filter-name.diff, jholesov

# Adapt to changes in resources handling of fpickers
fpicker-kde-resmgr.diff, jholesov

# Handle media:/ files locally
fpicker-kde-local-media.diff, jholesov
fpicker-kde-local-media2.diff, jholesov, n#238695
# Fix too wide "Menu -> Insert -> Picture -> From File..." dialog Novell#72010
fpicker-kde-too-wide.diff, jholesov

# Don't overwrite files containing spaces, etc. n#241080
fpicker-kde-dont-overwrite.diff, n#241080, n#487952, jholesov
# Work even with non-UTF-8 locales n#168616
fpicker-kde-non-utf8.diff, jholesov

# KDE fpicker should be modal n#265718
fpicker-kde-modal.diff, jholesov

# Let the KDE and Gtk+ fpickers build and install FIXME IZ number
fpicker-common-scp2.diff, jholesov

# Fix the KDE fpicker for 3layer OOo
fpicker-kde-3layer.diff, n#413475, jholesov

# Fix the KDE fpicker after the change of behavior intoduced in
# gnome-fpicker-main-thread.diff, i#93366, cmc
fpicker-kde-less-threads.diff, n#427336, jholesov


[ AddressBooks ]

# Evolution should also be default database(n#66217).
default-evolution-database.diff, michael
# Mailmerge column mapping by default (n#73627)
default-evo-column-mapping.diff, michael
# build either the driver for Evolution 1.x or 2.x
# they produce the same binary and configuration, so they can't be built at once
# I think that the Evolution 1.x address book is obsolete anyway
buildfix-evo1-vs-evo2.diff, bnc#496902, i#101439, pmladek

# NB. when this cws goes up-stream we need to enable this
default-evo2-ab.diff, michael


[ Lwp ]
# Lotus Word Pro Import Filter
lwp-filter-component.diff, i#11215, noelpwer
# Integrate cws ooo11lotusfilter for WordPro filter
cws-ooo11lotusfilter-lwp-filter-component.diff, Fong
cws-ooo11lotusfilter-lwp-filter.diff, Fong
cws-ooo11lotusfilter-lwp-xfilter.diff, Fong
# avoid warning: control reaches end of non-void function
warning-return-values-lotuswordpro.diff, pmladek


[ Win32Only ]

# 2 more makefiles in sysui are seriously broken #35628
# parallel-python-makefile_mk.diff # looks to be upstream
# Work around G/W mail component crasher bug #FIXME - re-file vs. i#34264
# Also fix OOo/GW deadlock
win32-gw-send-mail.diff, i#34264, n#418407, tml
# This is a pretty nasty IE problem i#19510, i#65209
win32-activex-disable.diff, i#65209, i#19510, n#168534, tml

# This enables building scsolver on Win32
boost-patch.diff, tml
# fixes for visual studio express 2005 ( ooo-build only )
2005-express-stl-remove.diff, noelpwer, i#71404

# This enables building multi language installsets with new (Windows SDK) problematic msitrans.exe
msitrans-problemchecksum.diff, kami


[ MultilanguageWin32Only ]
# Multi-language installer stuff
win32-multi-lang-installer.diff, i#66062, i#88638, i#88639, tml

[ VBABits ]
# Parse (& ignore) 'Attribute' statements
vba-attribute.diff, i#37347, noelpwer
#basic depends on built and delivered ooovbaapi
basic-prj-build_lst.diff

[ GentooExperimental ]
SectionOwner => hmth

# jemalloc, FreeBSD 7 allocator
jemalloc.diff

[ GentooOnly ]
SectionOwner => aprosky

# Allow build to proceed with PaX enabled
gentoo-pax-fix.diff, aprosky
# support server-only versions of 64bit JDKs
64bit-jdk-server-paths.diff, i#65974, hmth
# use IBM j9vm over IBM classic JVM
ibm-j9vm.diff, hmth
# system db check
system-db-check.diff, i#65979, hmth
# User ~/.ooo3 as user dir
scp2-user-config-ooo3.diff, pmladek
# default inc/lib
config_office-XINC-XLIB-defaults.diff, i#65976
# linux-headers-2.6.22 issue?!
linux-headers.diff
# Sandbox problem with wrong path
gentoo-sandbox.diff
# specific JVM search path
jvm-search-path.diff

[ DebianBaseOnly ]
SectionOwner => rengelha

help-msg-add-package-info.diff

[ DebianBaseNoHelpContent ]
SectionOwner => rengelha

disable-helpcontent2.diff
disable-xmlsearch-and-xmlhelp-jar.diff

[ DebianOnly ]
# build against xulrunner 1.9.1+
xulrunner-1.9.1.diff, ccheney

[ Mono ]
SectionOwner => rodo


#
# These patches are experimental beware ...
#

cli_ure-source-bootstrap-assembly-cs.diff
cli_ure-source-bootstrap-managed_bootstrap-cs.diff
cli_ure-source-bootstrap-native_glue-cxx.diff

# The build
mono-scp2.diff, rodo

cli_ure-source-bootstrap-makefile-mk.diff, rodo
cli_ure-mono-bridge.diff, rodo

mono-build.diff, rodo

build-mono-link.diff, jholesov
# sign the output assembly using the key pair; it is needed to install
# the versioned assemblies into the system Global Assembly Cache  (GAC)
mono-build-keyfile.diff, rodo
mono-climaker.diff, rodo
mono-testtools.diff, rodo

# FIXME: ooo310-m1: the makefile is quite rewritten;
#        the pieces removed by the older version of this diff are missing now
#        it is possible that we would need another change, though
#        => need to check on Windows
climaker-csharp-win.diff, rodo

buildfix-climaker-disabled.diff, rodo
mono-bootstrap-config-and-policy.diff, rodo
mono-bridge-version.diff, n#361463, rodo

buildfix-use-climaker-in-unoil.diff, rodo

cli_ure-prj-build-lst.diff

# climaker rewritten in C#
mono-climaker-config.diff

mono-climaker-bridgetest.diff

[ Mono24 ]
# WARNING: Use on your own risk ;-)
# This just fixes the build with mono-2.4; I have no idea whether the mono bridge still works
# you might want to apply the right fix into mono, see https://bugzilla.novell.com/show_bug.cgi?id=471379
mono-2.4-workaround.diff, bnc#495112, pmladek

[ VBAObjects ]
SectionOwner => noelpwer

#FIXME: changed by kendy, pmladek: Noel, please have a look
sc-hacky-handle-boolean.diff, noelpwer
#tweak cws-npower7/8 to build vba before filter ( filter uses headers generated
#from oovbapi.rdb )
sc-vba-build-lst.diff

svx-source-inc-fmundo-hxx.diff, i#68893
svx-source-form-fmscriptingenv-cxx.diff, i#68893
svx-source-form-makefile.diff, i#68893

svx-source-form-fmundo-cxx.diff, i#68893

vbaevents-services-build.diff, i#68893

scp_vba_uno_service.diff, i#68893

vba-support-export-palette.diff, i#68900

# always get non-filtered range selection when querying for current selection
# address.
vba-get-nonfiltered-range-selection.diff, n#415002, kohei

vba-allow-ranges-for-cell-functions.diff

vba-error-object.diff

# allows access to some internals needed for vba api, doesn't change
# any functionality
sc-vba-autofill-support.diff, i#68883
#-DVBA_OOBUILD_HACK ( make sure this flag is set for ooo-build builds )
# this flag hooks in code in vba api model implementation that depends on
# core changes not yet upstream
sc-source-ui-vba-makefile-mk.diff

# export of macro bindings for shapes
sc-export-shape-macro-bindings.diff, n#304739, noelpwer

# export of hlink bindings for shapes
sc-export-shape-hlink-bindings.diff, n#304739, noelpwer

# attributes present in the vba streams can override the default shape name
# used for the control in the binary format
sc-vbaimport-override-controlname.diff, n#359933, noelpwer

# Application.Caller
api-application-caller.diff, n#339941, noelpwer

default-autotext-and-form-name.diff, n#353687, i#85358

# fix --disable-vba build
oovbaapi-disable-vba.diff


#fix for n#309981
vba-fixup-singlerange-sheetref.diff, n#309981, noelpwer
#always (try) to set the default property to an SbxUnoObject
vba-always-set-defaultprop.diff, n#388049, noelpwer
#clean up the macro security check, prepare for object/form modules
vba-check-for-macro.diff
#make properties available for non class modules
#also allow paramaters to be supported for Get properties
vba-support-properties-inmodules.diff

# import graphic for image control
controls-with-images-import.diff, Fong

#use of form control models in userforms/dialogs, additionally
#enables use of document embedded images in image control for
#userforms/dialogs ( note: depends on controls-with-images-in-document.diff )
enhanced-form-userform-controls.diff, noelpwer

# object module support... getting there
ObjectModule.diff
# userform ( depends on ObjectModule.diff )
vba-userform.diff

# uno interface for vba mode
vba-compatible-mode-uno.diff, Fong

# support to display spinbutton in userform
vba-spinbutton-in-userform.diff, Fong

vbaevents-services-sources.diff, i#68893
# vba workbook/worksheet events
vba-workbook-worksheet-events.diff, Fong

# worksheet_calculate event fix
vba-worksheet-calculate-event-fix.diff, Fong

# add support for passing a caller to basic when calling a script
# via the scripting framework - note depends on vbaevents-services-sources.diff
basic-caller-support.diff
# comparison of tow empty type fix in vba mode
vba-empty-comparison-fix.diff, n#397438, Fong
# Add Worksheet.EnableSelection ( depends on cws-scsheetprotection02-sc.diff )
vba-worksheet-enableselection.diff, n#405312, Fong

# keywords (including NAME, LINE, TEXT) can be used as variable
vba-keyword-fix.diff, n#403586, Fong

#some userform import issues including improved identification
#of the progressbar activex control
userform-activex-identify.diff, i#93111
#some unknown userform binary format tweaks for some customer documents
#one hunk seems to be related to grouped labels in a userform
#the other ( no idea )
userform-possible-groupingtweak.diff
#disable to delete or rename objectmodule name in basic ide
basic-ide-objectmodule.diff, Fong
# display a friendly name for objectmodule tab
basic-ide-module-object-name-combile.diff, Fong
vba-fix-ide-friendly-modulename.diff, n#439971, Fong
# display a friendly basic macro tree in macrochoose dialog
vba-basic-macrochoose-dialog.diff, Fong
vba-fix-basic-macro-organizer.diff, n#439972, Fong
# fix bug accessing default member of userform control
range-listBox-compare.diff, n#421939
# fix bug comparing string that can't be converted to number
stringnumbercompare.diff, n#422559

# fix import sizes and geometry of userforms
vba-userform-geometry-tweak.diff

# n#426415
vba-allow-forms-resetvalue-binding.diff
# n#426416
fix-vba-NOT-trigger-update.diff
# variant + string
vba-variant-fix.diff, Fong
# fix for image import for userform
userform-image-import-fix.diff
# spinbutton change wasn't imported correctly
spinbutton-import-valuechange.diff

# don't apply regex to MATCH function if typical
# 'regex' like characters are present
vba-noregrex-for-match.diff

# fix treatment of NULL with
# a) NOT operator b) comparison operators
vba-null-not-treatment.diff, n#496844
# fix core issue in Commandbar
vba-commandbar-fix.diff, n#434214, n#437157, Fong

# always use English Excel grammar when parsing formulas.
# (depends on calc-grammar-xls-english-*.diff patches.)
vba-xls-formula-parser.diff, n#422145, kohei

vba-fix-docmodule-import-crash.diff, n#447560

vba-servicemacros-rework.diff

#vba-word-executable-option.diff, Fong
vba-interior-object-fix.diff, n#459479, Fong
range-defaultmethod-i98476.diff, i#98476 
vba-excel-iserror-fix.diff, n#469762

# filter to read custom toolbars ( and other customization data ) from writer
word-read-custom-toolbar-filter.diff, noelpwer
# vba for word support
vba-word-support.diff
vba-templateobject.diff
vba-vpagebreak-object.diff, hanbo

vba-combobox-listindex-fix.diff, n#476891, Fong
vba-fix-copysheet-toend.diff, n#478187 
vba-improve-toolbarapi-macro-search.diff
vba-autotext-ole-read-fix.diff, i#99786, i#99790
# fix core when there is an error in the doc close vba
# event handler ( bit of a hack )
fix-doc-exit-basic-error-core.diff
read-vba-dir-stream-fix.diff
vba-commandbar-enabled.diff, n#459458, Fong
# worksheet change event rework
vba-worksheet-change-event-fix.diff, Fong
# fix core(s) reading custom menu's from word docs
vba-toolbar-menufilter-core-fix.diff
# enhancement to above to read new menus added to the builtin menubar
word-read-builtinmenubar-filter.diff
# fix compiler error to do with leading spaces and object 'DOT' operator
# when occuring after a line continue '_'
fix-lineconintue.diff, i#100578
# allow private/public modifier for DECLARE
vba-fix-private-declare.diff
# import customization and macros from global templates ( if defined ) when 
# opening word documents
vba-import-globaltemplate-customizations.diff
# fix problem with syntax like 'If LCase(str1) = str2 <> 0 Then'
vba-basic-if-compare-fix.diff, i#100600, n#488588, Fong
# fix parallel build problems in basic
# (probably obsoletes vba-parallel-build.diff)
vba-basic-parallel-build.diff
# fix parallel build problems in oovbaapi
vba-oovbaapi-parallel-build.diff

basic-allow-objectforerror-symbol.diff, n#492423
vba-fix-named-any-para-pass.diff, n#485467
vba-allow-arrays-in-usertypes.diff, n#485623
# disable project reference and toolbar/menu customization import
# for 3.1
vba-disable-toolbar+customizationimport.diff
# fix IsEmpty where api objects are passed
vba-fix-IsEmpty-api-object.diff, n#494990
# fix crash when attempting to use geometry attributes of
# control on sheet/document
vba-fix-control-shape-geom-fix.diff, n#500006
# 
basic-public-dim-fix.diff, n#488590, i#100659
vba-fix-optionalparam-assigment.diff, n#494667
vba-reset-screenupdateing.diff, n#494964
vba-redim-array-fix.diff, n#495604
vba-fix-userform-init.diff, n#497923
vba-fix-Range-Insert-CopyOrigin.diff, n#498325
calc-vba-volatile-user-func.diff
vba-documentcontext.diff
fix-read-disabled-toolbarimport.diff
# more api related changes + dummy model support for multi-page
# would be nice to be able to move it nearer the other word patch
# but it won't apply there
vba-word-support-part2.diff
# tweak custom toolbar import slightly to 
# import dropdowns not associated with builtin menu additions
vba-only-import-std-menutoolbar.diff
# sometimes the resize event cores the office
vba-fix-workbook-resize-core.diff
# fix macromode in documents opened by the api
vba-fix-macromode-api-docopen.diff
#fixup macro search ( provide a central macro resolve function )
vba-fixup-macrosearch.diff
#rework use of getCurrentDocument, additionally create new
#getCurrentExcelDoc & getCurrentWordDoc
vba-currentcomponent-rework.diff
#tweak testvba.cxx to cater for newly imported ProjectName
vba-testclient-fix-project.diff
#fix checkbox access via vba api
vba-fix-checkbox-ole-access.diff, n#507400
# fix vbadocumentbase::getPath & vbadocumentbase::getFullName
vba-fix-path-fullname.diff, n#507745 
# fix setting control default value ( when accessed from sheet )
fix-sheet-control-valueset.diff, n#507748 
# fix auto calculation of shift direction for delete ( where none specified )
vba-fix-range-delete-shift.diff, n#508101
# allow worksheet to be passed as ( before or after ) param
vba-fix-worksheet-add-before-param-object.diff, n#507760 
# active newly added worksheet
vba-fix-worksheet-add-activate.diff, n#507758
# add Application.Quit api
vba-application-quit.diff, n#510003
# menu/toolbar rework
vba-commandbar-rework.diff, Fong
# add menubars related object
vba-menubar-objects.diff, n#508113, Fong
# fix missing codename problems
vba-fix-missing-codename.diff, n#507768
# fix zoom, should only affect active sheet
vba-zoom-per-sheet.diff
# fall back to doc context for active sheet if it fails
vba-fallback-to-calling-doc-context.diff
# when selecting full range view is not scrolled back 
vba-cursor-pos-for-selected-maxrange.diff
# fix BulletId property in NumberingRules
writer-uno-numberingrule-bulletid.diff, i#103021, Fong
# fix combox binding data import in userform
vba-combobox-rowsource-fix.diff, Fong
# support workbook auto_open event
vba-workbook-auto-open-event.diff, n#520228, Fong
# support buildin toolbar in CommandBar object
vba-buildin-toolbar-fix.diff, n#520228, Fong
# support WorkBook.PrecisionAsDisplayed
vba-workbook-precisionasdisplayed.diff, n#520228, Fong
# fix for uno api in XMenu::getPopupMenu
uno-xmenu-getpopupMenu-fix.diff, i#103486, Fong
# support CommandbarControl.Enabled
vba-commandbarcontrol-enabled.diff, n#520228, Fong
# create toolbar/menubar in document scope
vba-commandbar-document-scope.diff, Fong
# fix for dim a variable as vba constant
vba-dim-as-contants-fix.diff, n#521820, Fong
# fix for find the toolbar creating during importing
vba-commandbar-toolbar-fix.diff, Fong
# fix for set involving an automation object ( in vba mode )
vba-automation-set-fix.diff, n#507501, iz#103859
# various improvements, handle tooltip, handle seperators, fix bug where 
# toolbar control isn't displayed if the macro isn't resolved, 
# added classes for excel toolbar import ( disabled )
tool-menu-bar-improvements.diff
# fix for the issue in Styles.Add in Calc
vba-styles-add-fix.diff, Fong
vba-financial-functions.diff, n#525633, n#525635, n#525642, n#525647, 
vba-typename-fix.diff, n#525649
vba-reenable-rowsourcefixes.diff, n#540960
vba-autofiltermode.diff, n#549383
vba-control-api-vis-fix.diff, bnc#542132
vba-fix-isempty.diff, bnc#541749 
vba-fix-wsfunction-booleanparam.diff, bnc#541735
vba-fix-selection-dot-inproject.diff
vba-fix-override-exportproblem.diff
vba-fix-find-wraparound-onfail.diff. n#554261
[VBAUntested]
SectionOwner => noelpwer
# doesn't work
vba-basic-null.diff i#85349, jjiao
vba-support-stoc-typeprovider-xexactname.diff, #no-upstream
#must ask kendy about this ( noelp )
vba-parallel-build.diff, #no-upstrea
#not so useful but perhaps we can build on it later
basic-speedup-fix.diff

# the following patch is in cws pflin10
# NOT parameter without brackets
vba-not-param-withoutbrackets.diff, n#397325, Fong
# fix datevalue function in non-en_US locale
vba-datevalue-function-fix.diff, Fong
# Fixed for n#407805
basic-not-is-nothing.diff, n#407805, Fong
basic-replace-function-fix.diff, n#411203, Fong

# the following patch is in cws npower11
# needs a ScCompiler change upstream
vba-worksheetfunctions-fix.diff, n#414248, Fong
# fix window.SplitRow issue
vba-window-api-fix.diff, Fong


[ Features ]
# Pre- and postprocessing capabilities for loading and saving.
sfx2-pre-and-postprocess-during-save-load.diff, i#71939, florian
sfx2-pre-and-postprocess-crash-fix.diff, n#270544, rodo

[ msaccess ]
SectionOwner => strba
SectionIssue => i#33654

#cws-mdbdriver01.diff

#cws-mdbdriver02.diff

#mdbtools.diff
#mdbtools-makefile-mk.diff
#mdbtools-prj-build-lst.diff
#mdbtools-prj-d-lst.diff

#connectivity-source-drivers-mdb-mdb-map.diff

#hack to get the proper msaccess tabpage
#msaccess-db-create-dialog-fix.diff


#[ STLport5 ]
#SectionIssue => i#63770
#
#system-stlport5.diff, i#79875
#system-stlport51.diff, i#79876


[ OOXML ]
win32-installer-register-moox-types.diff

writerfilter-module-writer.diff
writerfilter-source-dmapper-domainmapper-debug.diff
docx-import-fixes.diff

buildfix-oox-depends-on-unotools.diff

oox-fix-placeholder-layout.diff, n#485316, n#480223, rodo
oox-fix-list-style-apply.diff, n#485417, rodo
oox-import-chart-externalref.diff, n#480868, janneke
oox-import-table-autofilter.diff, n#479381, janneke
oox-import-conditional-formatting.diff, n#479396, i#100544, janneke
oox-import-shape-textbox-hyperlink.diff, n#480854, janneke
oox-fix-ole2.diff, n#485418, rodo
oox-custom-shape-polygons.diff, n#485418, rodo
oox-import-comments-fix-add-annotation.diff, n#480876, janneke
oox-import-sheet-protect.diff, n#481317, janneke
oox-fix-slide-background-gradients.diff, n#383555, rodo
oox-import-drawing-font-spacing.diff, n#479822, rodo
oox-import-text-vert-anchor-and-anchorctr.diff, n#479829, rodo
oox-pptx-import-fix-layout.diff, n#480223, rodo
oox-pptx-import-fix-wipe-transition.diff, n#480243, rodo
oox-pptx-import-fix-transition-auto-advance.diff, n#480243, rodo
oox-pptx-import-fix-subtitle-placeholder.diff, n#480243, rodo
oox-pptx-import-fix-header-footer-visibility.diff, n#480243, rodo
oox-pptx-import-fix-hidden-slides.diff, n#480229, rodo
oox-pptx-import-fix-text-body-vert.diff, n#479829, rodo

[ CalcFixes ]
# Support PHONETIC function to display asian phonetic guide.
calc-formula-asian-phonetic.diff, i#80764, i#80765, i#80766, kohei

# Toggle gridline display per sheet.
sc-sheet-gridline-toggle.diff, i#14893, kohei

# Skip overlapped cells (cells that are hidden under a merged cell) when
# navigating through cells.
sc-skip-overlapped-cells.diff, i#86943, n#362674, kohei

# Make the formula separators changeable per locale setting, and add new 
# configuration page for formula syntax and separators.

calc-formula-variable-separators-sc.diff,        n#447164, i#92056, kohei

calc-formula-variable-separators-svx.diff,       n#447164, i#92056, kohei
calc-formula-variable-separators-officecfg.diff, n#447164, i#92056, kohei

[ CalcFixes < dev300-m52 ]
# Display references when entering input mode, even when the separators are not ';'.
calc-formula-variable-separators-ref-display.diff, n#469395, i#101090, kohei

[ CalcFixes ]
# Fix chart breakage for non-default formula syntax (Excel A1 and R1C1).
chart-formula-syntax.diff, n#487350, i#101091, kohei
# Squeeze chart's subtitle into the 2nd line of the main title when exporting
# to xls.
chart-subtitle-xls-export.diff, i#92357, kohei

# Enable external defined name import on xls documents.
calc-external-defined-names-enable.diff, kohei

# Don't adjust row height on xls load for better layout preservation and
# faster file load.
calc-xls-disable-adjust-row-height.diff, kohei

# Support Excel English grammar needed for VBA and (probably) for xlsx filter.
calc-grammar-xls-english-offapi.diff, kohei

calc-grammar-xls-english-sc.diff, kohei

# Support custom sheet tab colors option (by Daniel Watson).
calc-sheet-tab-color-officecfg.diff, i#5560, kohei/danielbw
calc-sheet-tab-color-svtools.diff,   i#5560, kohei/danielbw
calc-sheet-tab-color-sc.diff,        i#5560, kohei/danielbw
calc-sheet-tab-color-oox.diff,       i#5560, kohei/danielbw
calc-sheet-tab-color-filter.diff,    i#5560, kohei/danielbw

# Make it easier to un-select tabs when multiple tabs are selected.
calc-single-click-unselect-tabs.diff, i#70320, kohei/rail

# Support finding and replacing empty cells.
calc-find-replace-empty-cells-sc.diff  i#49380, n#415352, kohei
calc-find-replace-empty-cells-svx.diff i#49380, n#415352, kohei

# Merging/unmerging of cells on multiple sheets & merge center icon.
calc-enhanced-merge-cells-sc.diff,        n#213205, i#67243, i#101042, jholesov/kohei
calc-enhanced-merge-cells-officecfg.diff, n#213205, i#67243, i#101042, jholesov/kohei

[ CalcFixes < dev300-m52 ]
calc-named-range-excel-syntax-fix.diff, n#481200, i#101043, kohei

[ CalcFixes ]
# import/export precision of value cells correctly.
calc-filter-dbf-precision.diff, n#479025, i#101045, kohei

# don't do useless case matching on autoinput.
calc-autoinput-case-insensitive-matching.diff, n#472395, i#101046, kohei

# support alternative language to be used for HTML import, mostly for locale-
# dependent number recognition.
calc-html-import-custom-lang-filter.diff,  i#102141, n#484272, kohei
calc-html-import-custom-lang-sc.diff,      i#102141, n#484272, kohei

# support alternative language & number options for csv import.
calc-csv-import-custom-lang-sc.diff,        n#510168, i#97416, kohei
calc-csv-import-custom-lang-officecfg.diff, n#510168, i#97416, kohei

[ CalcFixes < dev300-m52 ]
# Don't duplicate merge flags when inserting a new row, to avoid merge flag 
# corruption.
calc-remove-merge-flags-on-row-insert.diff, n#484599, i#101047, kohei

[ CalcFixes ]
# quick editing of field member visibilities via popup window.
calc-dp-hide-list-menu.diff,        n#483379, i#100619, kohei
calc-dp-hide-list-menu-bugfix.diff, n#483379, i#100619, kohei
calc-dp-hide-list-menu-crash-fix.diff, n#520556, i#103512, kohei

[ CalcFixes < dev300-m52 ]
# disable autofilter within datapilot output.
calc-dp-disable-autofilter.diff, n#484600, i#101048, kohei

[ CalcFixes ]
# allow ctrl-[ and ctrl-] to jump to references used in a formula expression.
calc-jump-on-formula-ref-offapi.diff,    n#464359, i#101018, kohei
calc-jump-on-formula-ref-officecfg.diff, n#464359, i#101018, kohei
calc-jump-on-formula-ref-sc.diff,        n#464359, i#101018, kohei
calc-jump-on-formula-ref-sfx2.diff,      n#464359, i#101018, kohei
calc-jump-on-formula-ref-vcl.diff,       n#464359, i#101018, kohei

[ CalcFixes < dev300-m52 ]
# extend column range to Calc's max column when the range ends with 256.
calc-xls-import-maxcol.diff, n#495140, i#101330, kohei

[ CalcFixes ]
# support custom sort in datapilot tables.
calc-dp-custom-sort.diff, n#443361, kohei

# support ods import/export of sheet options and password hash.
calc-ods-sheet-protection-sc.diff,      i#60305, i#71468, kohei
calc-ods-sheet-protection-xmloff.diff,  i#60305, i#71468, kohei
calc-ods-sheet-protection-svtools.diff, i#60305, i#71468, kohei

# support ods import/export for datapilot's custom names.
calc-dp-custom-names-ods-sc.diff,     n#479062, i#22029, kohei
calc-dp-custom-names-ods-xmloff.diff, n#479062, i#22029, kohei

# when making selection, don't move the cursor position.
calc-selection-fixed-cursor.diff, n#502717, i#102151, kohei

# show cursor in non-active panes, instead of ugly black box.
calc-cursor-split-view.diff, n#433834, kohei

# update progress bar less frequently during formula calculation.
calc-less-formula-progress.diff, i#102566, kohei

# shrink selection to data area before setting autofilter.
calc-autofilter-shrink-selection.diff, n#514164, kohei

[ OOXML ]
oox-import-zoom-setting-with-tab-color.diff, n#494603, janneke


#[ OOXSTLport5 ]
#
## oox devs, please reconsider operator[] use,
## see i#80084/cws chart11 ! thank you!
#system-stlport51-oox.diff
#system-stlport51-oox-map.diff

[ PostgreSQL ]
sdbc-postgresql.diff
sdbc-postgresql-build-lst.diff
connectivity-workben-postgresql.diff
gcc-4.3-postgresql.diff
sdbc-postgresql-config_office.diff

[ KDE4 ]
SectionOwner => jholesov
SectionIssue => i#103283

# KDE4 support by Eric Bischoff, Bernhard Rosenkraenzer and Roman Shtylman
kde4-configure.diff, i#103288
kde4-configure2.diff, i#105127, bnc#539035, pmladek
kde4-buildfix-connectivity.diff

kde4-shell-prj.diff, i#103286
kde4-shell-source.diff, i#103286

kde4-fpicker-prj.diff, i#103290
kde4-fpicker-source.diff, i#103290

kde4-scp2.diff, i#103289

kde4-plugin-detection.diff, i#103284
kde4-vcl-prj.diff, i#103284
kde4-vcl-source.diff, i#103284

kde4-oxygen-icons.diff, i#103482

# Further fixes on top of existing kde4 support
kde4_fpicker_fixes.diff
kde4_vcl_fixes.diff

# Fixes filter issues and crash when dragging
kde4_fpicker_fixes2.diff

[ KDE4Experimental ]
# Not yet ported to co-exist with the KDE3 stuff
kde4-kab.diff

[ OptionalIconThemes ]
# FIXME: seems to work well but I am not brave enough to put it into common section at this stage
# fallback to any installed icon theme
# show only the installed icon themes in Tools/Options.../OpenOffice.org/View
optional-icon-themes.diff, i#105062, bnc#529404, pmladek

[ NovellOnlyUnix and OptionalIconThemes ]
# search also /usr/share for icons
# it is a temporary hack; we should do more clean FHS compliant installation
# we need a good plan before, though ;-)
split-icons-search-usr-share-and-optional-icons.diff, n#296502, pmladek

[ NovellOnlyUnix and not OptionalIconThemes ]
# search also /usr/share for icons
# it is a temporary hack; we should do more clean FHS compliant installation
# we need a good plan before, though ;-)
split-icons-search-usr-share.diff, n#296502, pmladek

[ ArkOnly ]
SectionOwner => brosenk

# We use KMail...
# There's no point in upstreaming this because not everyone uses KMail.
ark-default-ExternalMailer.diff

[ ArkOnlyExperimental ]
# There's no point in upstreaming this because it relies on the Ark
# Java lib naming scheme and won't work anywhere else.
# Not applied right now, needs porting
compiletime-skip-duplicate-jars.diff
# Don't crash HelpLinker
# FIXME check if this is still needed with m190
gcj-HelpLinker-no-NullPointerException.diff, i#61278

# This is faster, and solves gcj -C's private bug. But it's also
# close to untested.
# FIXME this needs reimplementation with the current build system
ark-experimental-gcj-use-ecj.diff, i#64917

# Ark Linux includes precompiled versions of Xerces, Xt and db.jar.
# There's no need to precompile them again, just use the system version.
# There's no point in upstreaming this because it relies on the Ark
# Java lib naming scheme and won't work anywhere else.
# FIXME this needs reimplementation with the current build system
ark-system-precompiled-java.diff

[ DebianBaseOnly ]
# link with -lcolamd, needed because our liblpsolve55{,_pic}.a doesn't include it
system-lpsolve-link-with-colamd.diff, rengelha

[ DebianOnly ]
debian-dictionary.diff, rengelha
#debian-gccXXXXX.solenv.javaregistration.diff


[ OpenGLTransitions ]
transogl-transitions-slideshow.diff
transogl-transitions-sd.diff
transogl-transitions-officecfg.diff
transogl-transitions-scp2.diff
transogl-more-transitions.diff
transogl-vsync.diff
transogl-shader-transitions.diff
transogl-mesa-fallback.diff
transogl-shader-transitions-1.diff
transogl-dispose-fix.diff
transogl-sync-fix.diff

[ Fixes ]
transogl-transitions-newsflash-pptin.diff, thorsten

[ OpenGLTransitions ]
transogl-transitions-newsflash.diff, thorsten
transogl-detect-fix.diff
transogl-buildfix.diff
transogl-pixmap-to-texture.diff
transogl-fix-dual-head.diff
transogl-buildfix-pixmap-ext.diff
transogl-fix-presenter-view.diff
transogl-debug-time.diff
transogl-fix-remote.diff
transogl-fix-first-slide.diff
slideshow-plugin-transition-fix.diff, n#430449, rodo

[ OpenGLTransitionsMesa703 ]

# very hacky build fix for Mesa-7.0.3; used on openSUSE-10.2
transogl-buildfix-mesa-7.0.3.diff, pmladek

[ Experimental ]
# sal_uInt32 -> sal_uIntPtr for events on some places
events-intptr.diff, i#59411, jholesov

[ DebianEtchOnly ]
static-libs-use-_pic.diff, rengelha
hunspell-lib-use-_pic.diff, rengelha
libhnj-lib-use-_pic.diff, rengelha
# use -llpsolve55_pic
system-lpsolve-use-_pic.diff, rengelha

[ DebianSidOnly ]
static-libs-use-_pic.diff, rengelha
# link dynamically with liblpsolve55.so
system-lpsolve-rpath.diff, rengelha

[ UbuntuOnly ]
SectionOwner => ccheney

ubuntu-palette.diff
ubuntu-dictionary.diff
ubuntu-lpi.diff, i#64895, mklose
ubuntu-sparc-hack.diff, mklose
human-icons-add.diff, mklose
static-libs-use-_pic.diff, rengelha
unxlngi6-notune.diff, doko
ubuntu-no-stack-protector.diff, doko
# link dynamically with liblpsolve55.so
system-lpsolve-rpath.diff, rengelha
#gccXXXXX.solenv.javaregistration.diff
ubuntu-mstopdf.diff, ccheney

[ UbuntuL10nOnly ]
human-icons-i18n.diff, mklose

[ FedoraLinuxOnlyFixes ]
ooo64508.vcl.honourfontconfighinting.diff

[ FedoraCommonFixes ]
ooo67658.sfx2.reloadcrash.diff

oooXXXXX.vcl.x86_64.impressatk.diff

ooo73201.sw.a11yloadcrash.diff

ooo86080.unopkg.bodge.diff

oooXXXX.partial-revert-ooo95118.diff

# add unopkg add --link option to register uncompressed extensions
# it helps to get automatic depencies when packaging extensions in RPMs
ooo83878.unopkg.enablelinking.diff, i#83878, bnc#493994, caolan

[ CairoFonts ]
# needs Gtk2.0 >= 2.10 and cairo, so this is on the own section
ooo59127.vcl.honourcairofont.diff
psprint-fontconfig-fix.diff, n#407958, thorsten

[ GStreamer ]
SectionOwner => rodo
SectionIssue => i#68717

gstreamer-avmedia.diff
gstreamer-sd.diff
gstreamer-scp2.diff
gstreamer-config-office.diff
gstreamer-slideshow.diff
gstreamer-solenv.diff
gstreamer-svtools-content-types.diff
gstreamer-avmedia-file-types.diff
gstreamer-vcl.diff
avmedia-source-gstreamer-ChangeLog.diff
avmedia-source-gstreamer-exports.dxp.diff
avmedia-source-gstreamer-gstcommon.hxx.diff
avmedia-source-gstreamer-gstframegrabber.cxx.diff
avmedia-source-gstreamer-gstframegrabber.hxx.diff
avmedia-source-gstreamer-gstmanager.cxx.diff
avmedia-source-gstreamer-gstmanager.hxx.diff
avmedia-source-gstreamer-gstplayer.cxx.diff
avmedia-source-gstreamer-gstplayer.hxx.diff
avmedia-source-gstreamer-gstuno.cxx.diff
avmedia-source-gstreamer-gstwindow.cxx.diff
avmedia-source-gstreamer-gstwindow.hxx.diff
avmedia-source-gstreamer-makefile.mk.diff
letter-wizard-resource-id.diff, i#84209

# Loop the A/V when the 'loop' flag is set; from Caolan
gstreamer-avmedia-loopingetc.diff

[ Shrink ]
SectionOwner => michael

# kill >1Mb of bloat in sal
size-sal-textenc.diff, i#70166

# don't export trivial strings in svtools, increases linking time, bloats size
sw-dont-extern-sRTF-sHTML.diff, i#86772, jholesov
# warning: comparison with string literal results in unspecified results
warning-string-comparsion-sw.diff, i#86880, i#86772, pmladek

# don't export trivial strings in svtools, increases linking time, bloats size
svtools-dont-extern-sRTF-sHTML.diff, i#86772, jholesov

[ BFShrink ]
# don't export trivial strings in svtools, increases linking time, bloats size
binfilter-dont-extern-sRTF-sHTML.diff, i#86772, jholesov


[ NovellOnlyUnix ]
# search also gij32, ..., so the 32-bit package works on 64-bit
jvmfwk-gij32.diff, n#222708, pmladek

[ SUSE112 ]
xulrunner-1.9.1.diff, ccheney

[ SVGImport ]
# A bit less partial implementation of SVG import
# Work in progress, but fairly usable already
svg-import-filter.diff, thorsten

# like svg-import-filter.diff, but adds a graphic filter for SVG
svg-import-filter-gfxfilter.diff, thorsten

# fixes some nastiness with viewbox
svg-import-viewbox-fix.diff, thorsten

# improves parsing of paint fragments
svg-import-painturi-fix.diff, thorsten

# much improved text import
svg-import-textimport.diff, thorsten

# fixing relative size calculation
svg-import-convlength-fix.diff, cmc

# fixing handling of opacity attribute
svg-import-opacity-fix.diff, thorsten

[ NovellLikeOnlyWin32 ]
novell-win32-msi-patchability.diff, tml

[ MacOSXOnly ]
SectionOwner => pluby

[ PardusOnly ]
pardus-default-ExternalMailer.diff
pardus-clipart.diff
no-mozilla-plug-in-option.diff
dont-check-fqdn.diff

[ UnUsedButNotYetRemovedFromSVN ]
# diffs kept for reference as there might soon be a need to resurrect
# part of the code
win32-quickstarter-exit.diff, i#73550, tml
novell-win32-avoid-premature-shutdown.diff, n#269146, tml
comphelper-msvc8-fix.diff, thorsten, i#89973
# some versions of make don't like us
cygwin-make-ver.diff, i#68283, michael


[ Store ]
SectionOwner => rodo
SectionIssue => i#75399
store-core.diff
store-install.diff

store-registry.diff

# don't burn 3% of startup doing CRC's we don't need
speed-store.diff, i#78495, michael
# don't do a load of locking we don't need to 1% of startup
speed-store-lck.diff, i#78526, michael

[ WMF ]
wmf-pattern-brush.diff, n#232232, rodo


[ LayoutDialogs ]
# use old style widgets as plugin in a layout dialog
layout-plugin-toolkit.diff

# use one or more layout tabpages in old .src tabbed dialog
layout-tab-toolkit.diff
layout-tab-sfx2.diff
layout-tab-sc.diff
layout-tab-svx.diff
layout-tab-scp2.diff

[ LayoutDialogs ]
# convert some simple dialogs to layout engine
layout-simple-dialogs-offapi.diff
layout-simple-dialogs-sc.diff
layout-simple-dialogs-scp2.diff
layout-simple-dialogs-scripting.diff
layout-simple-dialogs-sd.diff
layout-simple-dialogs-sfx2.diff
layout-simple-dialogs-solenv.diff
layout-simple-dialogs-starmath.diff
layout-simple-dialogs-svx.diff
#layout-simple-dialogs-svx-no-gtk.diff
layout-simple-dialogs-sw.diff
layout-simple-dialogs-toolkit.diff
layout-simple-dialogs-vcl.diff
layout-tab-sfx2-fix.diff, thorsten

# FIXME: hack to avoid internal copiler error with gcc (SUSE Linux) 4.3.2 20080613 (prerelease)
#        on openSUSE-11.1-alpha0; pmladek is discussing it with the gcc team
toolkit-layout-gcc-4.3.2-hack.diff, pmladek

# These merge with the layoutdialogs2 cws
layout-disable-experimental.diff

# Fix crasher with find & replace dialog
layout-find-dialog-crash-fix.diff, n#477854, kohei

layout-accessibility-dispose-only-once.diff, n#500267, janneke

[ LayoutDialogs ]
layoutdialogs2-development.diff
buildfix-toolkit-workben-layout.diff

# Fix heavy parallel build of the zips containing the xmls
layout-parallel-build.diff

layout-calc-advanced-search-in.diff, n#548249, janneke
layout-listbox-line-count-move-copy-sheet.diff, n#548091, janneke

[ FrameworkFeature ]
SectionOwner => kohei
SectionIssue => i#62234

# Correct accidental use of cAPS LOCK KEY!
autocorrect-accidental-caps-lock-offapi.diff
autocorrect-accidental-caps-lock-officecfg.diff
autocorrect-accidental-caps-lock-sc.diff
autocorrect-accidental-caps-lock-sw.diff
autocorrect-accidental-caps-lock-svx.diff
autocorrect-accidental-caps-lock-vcl.diff

# Fancy document modified status window
statusbar-fancy-modified-status-sc.diff,       i#103862, kohei
statusbar-fancy-modified-status-sd.diff,       i#103862, kohei
statusbar-fancy-modified-status-sfx2.diff,     i#103862, kohei
statusbar-fancy-modified-status-starmath.diff, i#103862, kohei
statusbar-fancy-modified-status-svx.diff,      i#103862, kohei
statusbar-fancy-modified-status-sw.diff,       i#103862, kohei
statusbar-fancy-modified-status-helpcontent2.diff,       i#103862, kami

[ UnitTesting ]
SectionOwner => jholesov
SectionIssue => i#87469
# FIXME: file more issuses when ready

# teach build.pl what to do with prj/tests.lst's
unittesting-build-pl.diff
# the tests
unittesting-basebmp.diff
unittesting-basegfx.diff
unittesting-basic.diff
unittesting-bean.diff
unittesting-bridges.diff
unittesting-canvas.diff
unittesting-cli_ure.diff
unittesting-codemaker.diff
unittesting-configmgr.diff
unittesting-connectivity.diff
unittesting-cppu.diff
unittesting-cppuhelper.diff
unittesting-dbaccess.diff
unittesting-desktop.diff
unittesting-dtrans.diff
unittesting-embeddedobj.diff
unittesting-extensions.diff
unittesting-filter.diff
unittesting-forms.diff
unittesting-fpicker.diff
unittesting-framework.diff
unittesting-chart2.diff
unittesting-idlc.diff
unittesting-io.diff
unittesting-javaunohelper.diff
unittesting-jurt.diff
unittesting-jvmaccess.diff
unittesting-linguistic.diff
unittesting-offapi.diff
unittesting-o3tl.diff
unittesting-package.diff
unittesting-qadevOOo.diff
unittesting-registry.diff
unittesting-ridljar.diff
unittesting-sal.diff
unittesting-salhelper.diff
unittesting-sandbox.diff
unittesting-sax.diff
unittesting-sc.diff
unittesting-scripting.diff
unittesting-sd.diff
unittesting-sfx2.diff
unittesting-shell.diff
unittesting-slideshow.diff
unittesting-sot.diff
unittesting-starmath.diff
unittesting-stoc.diff
unittesting-store.diff
unittesting-svtools.diff
unittesting-svx.diff
unittesting-sw.diff
unittesting-testshl2.diff
unittesting-testtools.diff
unittesting-toolkit.diff
unittesting-tools.diff
unittesting-ucbhelper.diff
unittesting-ucb.diff
unittesting-udkapi.diff
unittesting-vcl.diff
unittesting-writerfilter.diff
unittesting-xmerge.diff
unittesting-xmlhelp.diff
unittesting-xmloff.diff
unittesting-xmlscript.diff
unittesting-xmlsecurity.diff

[ UnitBootstrap ]
SectionOwner => michael
SectionIssue => i#86525

# initial cut at a unit testing framework
unit-deliver.diff
unit-comphelper.diff
unit-sc.diff

[ ReducedDefaults ]
SectionOwner => jholesov

# disable automatic spellchecking by default
reduced-disable-auto-spellcheck.diff

[ Features ]
novell-win32-odma.diff, i#6885, i#32741, tml

[ VOSremoval ]

# remove vos/process.hxx
# FIXME: in vcl, ExtCommandLine was removed, and the osl_ calls were used.
# Should we use the new salhelper::ExtCommandLine there, or should we remove
# even salhelper::ExtCommandLine, and introduce the functionality where
# needed?  (It's on one place only)
vosremoval-process.diff

# remove vos/diagnose.hxx
vosremoval-diagnose.diff

# remove vos/ref*.hxx
vosremoval-reference.diff

# remove vos/thread.hxx
vosremoval-thread.diff

# remove vos/mutex.hxx
vosremoval-mutex.diff

# remove vos/conditn.hxx
vosremoval-conditn.diff

# remove vos/macros.hxx
vosremoval-macros.diff

# remove vos/xception.hxx
vosremoval-xception.diff

# remove vos/signal.hxx
vosremoval-signal.diff

# remove vos/module.hxx
vosremoval-module.diff

# remove vos/security.hxx
vosremoval-security.diff

# remove vos/socket.hxx
vosremoval-socket.diff

# remove includes of non-existing/unused headers (vos/process.hxx,
# vos/dynload.hxx, vos/object.hxx, vos/types.hxx, vos/runnable.hxx,
# vos/thread.hxx)
vosremoval-unused-stuff.diff

# remove vos/pipe.hxx
vosremoval-pipe.diff

# remove vos/timer.hxx, introduce salhelper/timer.hxx
vosremoval-timer.diff

# removel VOSLIB from makefile.mk's
vosremoval-cleanup.diff


[ OxygenOfficePalettes ]
palette-enhanced-arrow.diff
palette-enhanced-color.diff
palette-enhanced-dash.diff
palette-enhanced-gradient.diff
palette-enhanced-hatch.diff

[ DebianBaseOnly ]
configures-explicit-arch.diff
icu-arm.diff, doko


[ Fixes ]
svx-sdrobjeditview-update-edit-area.diff, n#305205, n#347355, rodo
goodies-eps-filter-unix.diff, n#200053, rodo

[ EMFPlus ]
SectionOwner => rodo
emf+-cppcanvas-renderer.diff
emf+-cppcanvas-emfplus.diff
emf+-offapi-renderer.diff
emf+-vcl-bitmap.diff
emf+-vcl-renderer.diff
emf+-svtools.diff
emf+-scp2-renderer.diff
emf+-crash-fix.diff, n#361534, rodo
vcl-grey-alpha-unix-sal-bitmap.diff, rodo
emf+-multipart-objects.diff, rodo
emf+-use-canvas-only-for-emf+.diff, rodo
emf+-embedded-mf-image.diff, rodo
vcl-pluggable-mtf-renderer.diff, thorsten
emf+-cppcanvas-input-validation.diff, thorsten

[ LinkWarningDlg ]
linkwarn-dlg-in-apps.diff, n#348149, thorsten
linkwarn-sfx2-disable-cb-persistency.diff, n#348149, thorsten

linkwarn-svtools-miscopts-bits.diff, n#348149, thorsten

linkwarn-officecfg-disable-msgbox.diff, n#348149, thorsten

linkwarn-svx-warning-dlg.diff, n#348149, thorsten
linkwarn-sd-no-dnd-links.diff, n#348149, thorsten

[ IntegrateExtensions ]
scp2_build_extensions.diff
scp2_makefile_extensions.diff
scp2_extensions.diff
scp2_extensions_sdf.diff
scp2_extensions_templates.diff
extensions_configure.diff
extensions_packinfo.diff
# Originally, it was for OxygenOffice but the language depended Sun Templates Pack also require this changes
premium-splitted-language-packages.diff
scp2_accessories_templates.diff
scp2_accessories_templates_makefile.diff
extensions_deliver.diff

[ OxygenOfficeDefaultSettings ]
# Always enable extended tips
i27928-extended-tips-on.diff
# We like rules in impress
i54709-default-impress-ruler.diff
# Full branding for Windows installer
ooop-win32-installer-branding.diff
#Update URL added to the OxygenOffice
ooop-update-URL.diff
#Adding hidden buttons to the toolbar
#for epmty document
toolbars_framework.diff
#for Calc
toolbars_sc.diff
#for Draw and Impress
toolbars_sd.diff
#for Writer
toolbars_sw.diff
#Always use default iconset
always_default_iconset.diff
#Always create backup files
always-create-backups.diff

[ OxygenOfficeExtras ]
# Adding new items to extras module
accessories_build.diff
accessories_target.diff
# Adding extended support for additional gallery localizations
gallery_galtheme.diff
gallery_inc_gallery.diff
gallery_inc_galtheme.diff
# Include new elements into scp2 module
scp2_accessories.diff
scp2_accessories_sdf.diff
scp2_build_accessories.diff
scp2_directory_accessories.diff
scp2_makefile_accessories.diff

# Splitting new contents into new packages
# NOTE: premium-splitted-language-packages.diff moved to IntegrateExtensions section, but it contains all required function for OOOP too.
premium-splitted-language-pack-solenv.diff
premium-splitted-packages.diff

# Add configure options
extras_configure.diff
# Add environment variables base on new configure switches
extras_solenv.diff
extras_wizard.diff
extras_fonts.diff
# Add our macros stuffs to wizard module
premium_macro_build.diff
premium_macro_dialog.diff
premium_macro_script.diff
premium_macro_target.diff
# Add menu elements for Users guide
helpdocument-genericcommand.diff
# Uniformize Help menu of us
helpdocument-menubar.diff
# Adding OOoWikiPedia commands and DataMiner toolbars
ooowikipedia_genericcommands.diff
ooowikipedia_writer.diff
ooowikipedia_toolbars.diff

[ OxygenOfficeWin32Only ]
# Update Windows installation of OpenOffice.org even the version is same
# So you can upgrade to OxygenOffice without removing OpenOffice.org
ooop-updatable-sameversion.diff

[ Win32Only ]
mozilla-source-1.7.5.patch.diff, i#84961, tml

[ TemporaryHacks ]

[ Fixes ]
#sc-xclimpchangetrack-discard-bogus-formula-size.diff, n#355304, tml

[ Glib2 ]
external-package-glib2.diff
scp2-package-glib2.diff
setup_native-package-glib2.diff

[ Fixes ]
fix-ppt-linespacing-import-export.diff, n#355302, rodo
sw-section-import-fix.diff, n#364533, freuter
sw-allow-negative-spacing.diff, n#364534, freuter
sw-tab-export-fix-i100264.diff, n#479068, freuter
sw-section-header-export-problem.diff, i#100918, freuter
oox-fix-abs-relations.diff, n#493528, freuter
field-patch.diff, n#248354, freuter
# FIXME: hack to fix split build by pmladek
field-patch-split-build.diff, n#248354, freuter
sw-import-html-controls.diff, n#485609, freuter
svx-hacky-htmlselect-control-import.diff, n#523191, noelpwer

sd-slideshow-slideshowview-transformation-fix.diff, rodo

sd-view-zoom-fix.diff, n#380013, i#88939, thorsten

sd-custom-show-fix.diff, n#355638, i#90145, thorsten

# hyperlink issue with numeric slide names in Impress
sd-update-relative-links.diff, n#355674, i#55224, rodo

# have Impress outline text boxes shrink font automatically when text
# starts to overflow
fit-list-to-size.diff, i#94086, thorsten

fit-list-to-size-ui.diff, i#94086, thorsten
fit-list-to-size-style-defaults.diff, i#94086, thorsten
fit-list-to-size-popup.diff, i#94086, thorsten

# apply this patch if you need to disable vcl grabbing your mouse -
# after applying the patch, set SAL_NO_MOUSEGRABS in your env
#vcl-disable-mouse-grab.diff

# adhere to
# http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html
sal-xdg-config-dir.diff, i#91247, thorsten

# temporary fix. does no harm and gets the job done but its not
# beautiful. Since the whole section needs to be refactored anyway decided not
# to waste for time with this fix but to focus on the refactoring
sw-nested-positionned-tables-ww8-import-fix.diff, n#376688, flr

# fix crash when exporting notes with hyperlinks
sw-export-commentfields.diff, i#101159, cmc

xmloff_dis26300_conformance.diff, n#396280, flr

# don't do dns lookup on startup
# TODO file up-stream
lockfile-dont-do-dns-lookup.diff, n#389257, jholesov
# and don't expose unnecessary symbols
# TODO file up-stream
lockfile-less-symbols.diff, jholesov

# fix incorrect background color of text frame
sw-ww8-textframe-background-fix.diff, Fong, n#547308
# fix the bullet indent issue
sw-ww8-import-list-fix.diff, Fong, n#547308

[ InternalMesaHeaders ]
internal-mesa-headers-config_office.diff, fridrich
internal-mesa-headers-slideshow.diff, fridrich
internal-mesa-headers-mesa.diff, fridrich


[ Lockdown ]
# Disable UI [toolbars, menus] customization
ui-desktop-integration.diff, michael


[ InternalCairo ]
cairo-pixman-makefile-mk.diff
cairo-cairo-makefile-mk.diff
internal-cairo-configure.diff
package-pixman-scp2-source-ooo-file_library_ooo_scp.diff


[ WWInProgress ]
sw_layout_in_table_cell_fix.diff, n#367341, flr

sw-collapse-empty-table-par-like-html.diff, n#376690, flr

sw-team-pane.diff

sw-do-not-capture-surround-through-objs-patch.diff, n#367341, i#18732, flr


[ Fixes ]
cppcanvas-fix-roundcorners.diff, rodo

sd-more-title-styles.diff, i#23221, thorsten
officecfg-bighandles-default.diff, thorsten

slideshow-colorspace-fix.diff, thorsten
slideshow-cutblack.diff, thorsten
canvas-colorspace-fix.diff, thorsten

unoxml-boost-workaround.diff, thorsten

sw-source-filter-xml-xmltbli-uninitializedvalue.diff, fridrich

# FIXME 2008-11-26: fails for dev300-m35
#vcl-salnativewidgets-uninitializedvalues.diff, fridrich

[ LocalizeFixes ]
# it is Y axis, not X one [in Spanish]
chart2-es-eje-Y.diff, i#83821, rengelha

# Fix Spanish translation of the autofilter menu; thanks to Eduardo Moreno
sc-autofilter-l10n-es.diff, i#103840, pmladek

extended-tips-abbrev-it.diff, i#88915, rengelha

[ UnstableLibwpd ]
config_office-testing.diff
libwpd-testing.diff
libwpg-testing.diff
libwps-testing.diff
writerperfect-testing.diff

[ PieceBits ]
# zipintro is not kind to us ...
piece-desktop.diff

[ PieceBits ]
SectionOwner => michael
# Experimental piece-wise source code split for build
piece-build.diff
piece-deliver.diff
piece-checkdll.diff
piece-target.diff
piece-icons.diff
piece-startup.diff
piece-basic.diff
piece-svx.diff
# zipintro is not kind to us ...
piece-scripting.diff
piece-helpcontent2.diff
piece-sdext.diff
piece-swext.diff
piece-writerfilter.diff
piece-ridljar.diff
piece-offapi.diff
piece-offuh.diff
piece-cppuhelper.diff
piece-cpputools.diff
piece-connectivity.diff
piece-bridges.diff
piece-saxon.diff
piece-stoc.diff
piece-unoil.diff
piece-javaunohelper.diff
piece-io.diff
piece-remotebridges.diff
piece-scp2.diff
piece-solenv.diff
piece-services.diff
piece-ant.diff
piece-extensions.diff
piece-setup_native.diff
piece-jvmfwk.diff
piece-forms.diff
piece-apache-commons.diff
piece-vbahelper.diff
piece-sc.diff
piece-sw.diff
piece-xmerge.diff
piece-packimages.diff
piece-automation.diff
piece-cli_ure.diff
piece-transex3.diff
piece-odk.diff

# the noarch packages adds compat symlinks of the preset user configuration
# the real files should be copied to the user configuration
# the symlinker system files are read-only otherwise
piece-desktop-avoid-user-conf-symlinks.diff, pmladek

piece-jfreereport.diff
piece-reportbuilder.diff

[ BFFixes ]
fit-list-to-size-binfilter.diff, i#94086, thorsten

[ ArkOnly ]
SectionOwner => brosenk

# See what breaks if we build with more optimizations
testing-more-optimizations-ark.diff

[ Fixes ]
svtools-update-ole.diff, n#411855, thorsten

[ ExtensionFixes ]
pdfimport-lax-restrictions.diff, i#90468, thorsten

[ NovellLikeOnlyWin32 ]
i92372.diff, i#92372, n#353143, tml

[ Fixes ]
#sw-import-TOC.diff ,n#404254, Amelia Wang
jurt-jnilib-deliver.diff, i#93516, thorsten
timely-canvas-disposing.diff, i#94007, thorsten
# only build full package for en_US, use langpacks for the rest
instset-prefer-langpacks.diff, thorsten
# call unopkg such that java does not require interactive session
solenv-installer-unopkg-call.diff, thorsten
# (disabled) debug code extracting SdrOLE streams to some tmp location
svx-debug-sdrolestreams.diff, thorsten
instset-macos-langpacks.diff, i#64937, cloph
sal-disable-backtrace.diff, thorsten
sw-invert-border-spacing.diff, n#391591, flr

[ Fixes < dev300-m48 ]
cws-impress162-sd.diff, i#94193, thorsten
cws-impress162-canvas.diff, i#94193, thorsten
cws-impress162-slideshow.diff, i#94193, thorsten

[ Fixes ]
canvas-directx-lostdevice-fix.diff, n#445628, thorsten
sw-table-join-fix-i99267.diff, n#417814, flr
svtools-svrtf-token-ignore-case.diff, n#417818, flr

# fix wrong en-US accelerators in Impress
fix-sd-accelerators.diff, n#463733, i#97088, jholesov

[ MinGW ]
# build fix for odma - not up-stream
mingw-buildfix-odma.diff, jholesov

# more allowed -I's in OOo's cpp [for scp2]
mingw-cpp-increase-include-limit.diff, i#95193, jholesov

# sleep using osl::Thread::wait()
mingw-thread-wait-instead-of-sleep.diff, i#95200, jholesov

[ Fixes ]
# fix problem with outline numbering broken in master document
sw-outline-numbering-broken-fix.diff, i#96092, n#445536, Amelia Wang
# one of pagebreak enhancements
sw-insert-pagebreak-in-numbered-paragraph.diff, n#396648, Amelia Wang

# Drop the lame and misleading tooltips for the icon on the desktop
# and in the Start Menu on Windows
win32-tooltips.diff, tml

[ Fixes ]
# fix problem with calling private and protected members in layout code
sfx2-privateprotectedpublic.diff
# add make_pair<>()-like type generator functions to generated header files
codemaker-function-template-generators.diff, i#98625, thorsten
# UI + core to make OLE editing optionally outplace
optional-outplace-ole.diff, i#98970, thorsten
# UI + core to have in-slideshow user drawing configurable (color &
# stroke width)
slideshow-configurable-paintoverlay.diff, i#97972, fredus
# Add visibility markup to servicedecl's c component functions
# (necessary since bulk addition of VISIBILITY_HIDDEN=TRUE to several
# component makefiles)
comphelper-symbol-visibility.diff, i#100225, thorsten
# let ctrl-<keycode> stuff pass dlg keyboard handling, to permit
# global application-wide shortcuts also in open dialogs
vcl-permit-global-shortcuts.diff, i#105676, thorsten
# make ok and cancel btns work on return and esc, resp. in Impress'
# custom animation create dialog
sd-customanimation-defbutton.diff, i#105675, thorsten
# make Impress ruler behave as before 3.0
sd-ruler-fix.diff, i#101269, thorsten
# related to the ruler fix, aligns odf list writing with ui & ppt
sd-odf-relaxed-listlevel.diff, i#101269, thorsten
# another extract from CWS slideshow1 - crash & mouse lock in
# Impress animation UI
sd-animation-ui-fix.diff, thorsten
# mute sound on all but the first slideshow view
slideshow-mute-sound.diff, thorsten
# manually force page preview obj to PRESOBJ_PAGE
sd-pptin-slidepreview-fix.diff, i#101051, thorsten

# avoid subpixel clipping in cairocanvas
canvas-nosubpixel-clip.diff, thorsten

# several compile fixes for --enable-debug.
buildfix-enable-debug.diff

# unresolved Base64 Java classes
base64.diff, i#100620, hmth

# gtk quickstarter crashes on disable/exit
sfx2-qstart-nocrashhack.diff, i#101245, pmladek

# backports from DEV300 
# Disabled because it caused bug n#497708
#svtools-transferable-fix.diff, thorsten

# CWS metropatch01
vcl-extra-sync.diff, thorsten
# Disabled because it caused bug n#497708
#sd-ooo320-backports.diff, thorsten
svx-ooo320-backports.diff, thorsten

# Fix from Andre, allows to step back one animation effect
slideshow-effect-rewind.diff, i#48179, thorsten
# import and export StyleTextProp also for empty text
svx-ppt-text-style-fix.diff, n#485630, thorsten
# correctly set table row height during ppt import
svx-ppt-tablerow-height-fix.diff, n#483951, i#100275, thorsten
# detect additinal monitor in xinerama setup during runtime, from cws
# vcl101 (fix courtesy cmc/pl)
vcl-gtk-multimonitor-detect.diff, i#101184, thorsten
# guard against grossly invalid dpi settings (fix courtesy cmc)
vcl-guarding-display-dpi.diff, i#101145, thorsten

[ ExtensionFixes ]
# Fix from Andre, allows to step back one animation effect
slideshow-effect-rewind-sdext.diff, i#48179, thorsten

[ OxygenOfficeDefaultSettings ]
#Create langpack and full installers
ooop-langpack-policy.diff

[ NovellOnly ]
mail-document-subject.diff, n#459176

[ OOXMLExport ]
SectionOwner => jholesov
# OPC changes, and SVX + PPT split
cws-ooxml03-opc-svx-and-ptt-split.diff

# Fix output of dates - xsi:type=... should be there only for dcterms
cws-ooxml03-oox-dcterms.diff

# Snapshot of the docx export filter from ooxml03
# Note: It creates an own filter, libdocx.  This is not what is intended
# up-stream, there should really the doc and docx export be in one filter.
cws-ooxml03-docx-scp2.diff
cws-ooxml03-docx-sw.diff
# temp patches, created too late to be in cws-ooxml03-docx-sw.diff, will be
# removed with the next snapshot of ooxm03 (they are committed there)
cws-ooxml03-docx-sw-fix-gridcols.diff, n#493673
cws-ooxml03-docx-sw-fix-section-columns.diff, n#497556
cws-ooxml03-docx-sw-fix-table-width-height.diff, n#497554
cws-ooxml03-docx-sw-fix-bookmarks-endless-loop.diff, n#498755
cws-ooxml03-docx-sw-fix-spacing.diff, n#493673
cws-ooxml03-docx-sw-fix-nested-tables.diff, n#499118

#FIXME! kendy: is this functionalities actually needed or just cloned?
field-patch-fix-docx.diff

# For the purpose of the 3.1 release, all the pptx and xlsx are done as
# separate libraries as well, so that we are safe wrt. the binary export
# FIXME: Remove this patch (and update the other pptx patches) after 3.1 is
# branched
pptx-filter-as-a-separate-lib.diff

[ OOXMLExport and not OpenGLTransitions ]
pptx-filter-as-a-separate-lib-sd-build-lst-without-transogl.diff

[ OOXMLExport and OpenGLTransitions ]
pptx-filter-as-a-separate-lib-sd-build-lst-with-transogl.diff

[ OOXMLExport ]

# Snapshot of the pptx export filter at the time of creation of ooxml03
# This is until 0475--fix-crash-introduced-by-Jonathan-s-changes-in-eppt.patch
# (including)
pptx-snapshot-at-ooxml03-creation.diff
# ...and the rest from the git tree
# (until 'more qnimations export work', including)
pptx-the-rest-from-git.diff
pptx-export-empty-animations-node-and-groupshape-fix.diff, rodo

# ugly temp fix to make GraphicShapeContext recognise layout
pptx-gfx-layout-fix.diff, thorsten

# handles case where a connector shape is not connected
pptx-fix-connector-crash.diff, n#499129, thorsten

# For the purpose of the 3.1 release, all the pptx and xlsx are done as
# separate libraries as well, so that we are safe wrt. the binary export
# FIXME: Remove this patch (and update the other xlsx patches) after 3.1 is
# branched
xlsx-filter-as-a-separate-lib.diff
# update with the changes introduced up to m17
xlsx-filter-as-a-separate-lib-m17-update.diff

# build fix
xlsx-build-fix.diff, kohei

# tweak to above ( associated with vba-fallback-to-calling-doc-context.diff )
xlsx-separate-lib-vba-fallback-tweak.diff
# Snapshot of the xlsx export filter at the time of creation of ooxml03
# This is until 0453-Fix-formatted-text-change-tracking.patch, inluding, and
# should contain all the available changes.
xlsx-snapshot.diff

# Make the xlsx export and import work at the same time
# (converts the xlsx export to a UNO filter)
xlsx-shared-import-and-export.diff

xlsx-arabic-export-crash.diff, n#497419, janneke
xlsx-export-notes-avoid-dereferencing-0-svx.diff, n#497417, janneke
xlsx-export-set-xml-2007-flavour.diff, n#502090, janneke
xlsx-export-simple-autofilter.diff, n#497559, janneke
# hack to ignore writerfilter when odf-converter is present
odf-converter-ignore-writerfilter.diff, n#348471, n#502173, jholesov
xlsx-export-skip-auto-format.diff, n#497560, janneke

# fixes visibility to make it work with some compilers
svx-visibility.diff, fridrich

# the smart art import work
unoxml-fast-sax-serializable.diff, thorsten
# FIXME: similar fix already in dev300_m50
# partial support for two template types
# it is needed to process the new XFastSAXSerializable.idl
# the patch fixes the semantic analyze but not the output
# the output of template types seems to be incomplete anyway
autodoc-two-template-types.diff, i#103005, pmladek
# this here depends on oox changes in OOXMLExport
oox-smartart-import.diff, thorsten

xlsx-export-cell-style-max-builtin.diff, n#497563, janneke

[ OOXML ]
oox-pptx-export-fix-hidden-slides.diff, n#499131, rodo

[ OOXMLExportExperimental ]
# apply this patch to enable docx export once ooxml03 is integrated
cws-ooxml03-enable-docx.diff

# here because it patches a file added by cws-ooxml03-docx-sw.diff
[ Fixes ]
#ww8-image-position.diff, n#532920, cbosdo


[ CalcFixes ]

# register chart listener per chart object when for xls import & don't modify
# cell's dirty flag upon loading.
calc-dirty-cells-after-load-fix.diff, n#491898, kohei

# set document modified when switching external link source.
calc-external-ref-modify-link-modified.diff, i#103598, kohei

# fix incorrect import of hyperlink texts in presence of single quotes in sheet name.
calc-xls-hyperlink-single-quote-fix.diff, n#521447, kohei

# determine in-line array sizes more reliably.
calc-xls-import-array-size.diff, kohei

# draw an animated dashed border around copied ranges.
calc-copy-range-animated-border-sc.diff, kohei
calc-copy-range-animated-border-svx.diff, kohei

# fix incorrect casting of chart positioning code.
calc-chart-wrong-cast.diff, i#104484, caolan/kohei

[ CalcRowLimit ]
# The work to increase Calc's row size limit, and any work associated with it.
SectionOwner => kohei

# increase the row limit and make the row header a little wider.
calc-increase-row-limit.diff, n#443634, i#30215, kohei

# check for last edited row when exporting automatic styles.
calc-odf-export-autostyle-maxrow.diff, n#497610, kohei

# add implementation of flat_segment_tree and its wrapper classes.
calc-perf-flat-segment-tree.diff, kohei

# speed up ods import by using flat_segment_tree.
calc-perf-ods-import-properties.diff, n#498547, kohei

# squash USHORT where SCROW or SCCOL should have been used.
calc-row-limit-bad-ushort.diff, n#509768, kohei

# better algorithm to search for best-fit zoom level during page break calculation,
# and to optimize pagenations by as much as 900% by using better data structure
# for flag storage.
calc-perf-page-and-manual-breaks.diff, n#503482, kohei

# refactor to store hidden and filtered flags in flat_segment_tree structure.
calc-perf-table-hidden-flags.diff, n#495140, kohei

# type cast to SCROW and SCCOL for row and column, not to USHORT!
calc-ods-export-no-more-ushort.diff, n#501029, kohei

# Speed up sorting, especially on large data set.
calc-perf-sort.diff, n#504827, kohei

# Speed up selection of large area, cursor placement in split view.
calc-perf-lazy-overlay-objects.diff, n#511006, kohei

# Better algorithm for row flag copying.
calc-perf-copy-table-flags.diff, n#514156, kohei

# don't show progress bar during row height adjustment if the row count is 
# less than 1000.
calc-perf-rowheight-no-progress-bar.diff, n#514156, kohei


[ OOXMLExport ]
oox-calc-export-row-limit.diff, n#504623, janneke.

[ Fixes ]
wmf-mm-text.diff, n#417818, rodo
wmf-mm-text-1.diff, n#417818, rodo
sd-pptx-crash-fix.diff, i#101563, sj
sd-create-table-height-fix.diff, i#100275, thorsten
svx-pptin-global-child-bounds-fix.diff, n#485637, thorsten
pptx-autoplay-fix.diff, n#485645, thorsten


[ UbuntuHardyOnly ]
# Add patch to only show local files needed when gnome-vfs/gio is disabled
ubuntu-gnome-fpicker-local-only.diff

[ UbuntuIntrepidOnly ]
# Add patch to force use of gvfs fuse path needed when gnome-vfs/gio is disabled
ubuntu-gnome-fpicker-gfile-fuse.diff, ccheney

[ UbuntuJauntyOnly ]
# Add patch to force use of gvfs fuse path needed when gnome-vfs/gio is disabled
ubuntu-gnome-fpicker-gfile-fuse.diff, ccheney

[ UbuntuKarmicOnly ]
# Add patch to force use of gvfs fuse path needed when gnome-vfs/gio is disabled
ubuntu-gnome-fpicker-gfile-fuse.diff, ccheney
xulrunner-1.9.1.diff, ccheney
# -Os in karmic on powerpc doesn't work, copy to Lucid as well ...
ubuntu-opt.diff, mklose

[ Fixes ]
# Fix for crash on Windows by Rail Aliev. Root cause unknown.
configmgr-validate-removedtree.diff, n#505704
svx-fix-fit-to-frame-crash.diff, n#508621, rodo
vcl-gtk-fullscreen-fix.diff, n#480324, thorsten
vcl-startup-crash-fix.diff, i#103148, thorsten
sd-disable-layoutpane.diff, i#73289, thorsten

# adds various color conversion functions to basegfx's BColor
basegfx-color-tools.diff, thorsten

# much improved surface shades, gradient color for customshapes
ppt-customshape-shading-fix.diff, n#485637, thorsten
svx-fontwork-crash-fix.diff, n#526342, thorsten
ppt-customshape-shading-fix-fix.diff, i#105654, thorsten

# purge autoshape geometry on model change
svx-autoshape-cache-purge.diff, n#520104, thorsten

# expand path placeholders early in template dialog
normalize-template-paths-fix.diff, n#512146, thorsten

# decode hex-encoded unicode chars in URI in Edit Links dialog.
edit-links-decode-unicode-uri.diff, i#104166, kohei

# cache fontconfig's pre-substitution result for better rendering performance.
fontconfig-cache-pre-substitution.diff, n#529532, kohei

[ OOXML ]
oox-pptx-import-fix-placeholder-text-style.diff, n#479834, rodo
oox-pptx-import-fix-text-body-properties-priority.diff, n#403402, rodo

[ OOXMLExport ]
oox-pptx-export-hyperlinks.diff, n#499124, rodo
oox-pptx-export-vertical-text.diff, n#498737, rodo
oox-pptx-export-para-linespacing.diff, n#498737, rodo
oox-pptx-export-fix-action-button-presets.diff, n#497570, rodo
oox-drawingml-fix-shapes-map-crash.diff, rodo
oox-pptx-export-animations-filter.diff, n#497570, rodo
oox-calc-export-export-pivot-content.diff, n#505917, janneke
oox-pptx-export-animations-paragraph-target.diff, n#497570, rodo
oox-pptx-export-blip-luminance.diff, n#497570, rodo
#oox-calc-export-sotstorage-init.diff, n#505917, janneke

[ CrossWin32Patches ]
# Experimental patches to crosscompile OOo for Win32
crosswin32-accessibility-nojava.diff
crosswin32-basegfx-no-cppunit.diff
crosswin32-bridges-mingw.diff
crosswin32-config_office-cross.diff
crosswin32-config_office-mingw.diff
crosswin32-connectivity-mingw.diff
crosswin32-cppuhelper-mingw.diff
crosswin32-cppunit-mingw.diff
crosswin32-dbaccess-mingw.diff
crosswin32-desktop-mingw.diff
crosswin32-dtrans-mingw.diff
crosswin32-embeddedobj-mingw.diff
crosswin32-embedserv-mingw.diff
crosswin32-extensions-mingw.diff
crosswin32-external-mingwheaders.diff
crosswin32-fpicker-mingw.diff
crosswin32-funit-char-line.diff
crosswin32-goodies-mingw.diff
crosswin32-helpcontent2-mingw.diff
crosswin32-hyphen-mingw.diff
crosswin32-i18npool-cross.diff
crosswin32-i18npool-mingw.diff
crosswin32-icc-cross.diff
crosswin32-instsetoo_native-mingw.diff
crosswin32-lingucomponent-mingw.diff
crosswin32-o3tl-no-cppunit.diff
crosswin32-unixodbc-disable.diff
crosswin32-odk-cross.diff
crosswin32-postprocess-mingw.diff
crosswin32-pyuno-mingw.diff
crosswin32-sal-cross.diff
crosswin32-sal-mingw-c.diff
crosswin32-sal-mingw.diff
crosswin32-sccomp-mingw.diff
crosswin32-scp2-mingw.diff
crosswin32-setup_native-mingw.diff
crosswin32-shell-mingw.diff
crosswin32-solenv-cross.diff
crosswin32-solenv-mingw-installer.diff
crosswin32-solenv-mingw.diff
crosswin32-solenv.diff
crosswin32-soltools-cross.diff
crosswin32-store-core.diff
crosswin32-store-registry.diff
crosswin32-svx-mingw.diff
crosswin32-sysui-mingw.diff
crosswin32-tools-mingw.diff
crosswin32-trans-mingw.diff
crosswin32-unotools-mingw.diff
crosswin32-vcl-mingw.diff
crosswin32-writerperfect-cross.diff
# things to fix later
crosswin32-ugly-hacks.diff

[ Experimental ]
experimental_ooapi.diff, flr
desktop-cmd-bulk-conversion.diff, flr

[ CalcExperimental ]
# It's empty but please don't remove this section.
SectionOwner => kohei

# when reading csv file, don't read multiple physical lines for one logical 
# line even if matching quotes are on separate lines.
stream-read-csv-always-single-line.diff, n#523517, kohei

# set cell format to Text when a string format is requested, and don't 
# prepend ' in front of the value.
calc-html-csv-import-force-text-cell.diff, n#523414, i#103939, kohei

# When finding or replacing cell contents, skip filtered cells.
calc-find-replace-skip-filtered.diff, n#539282, kohei

# When the cache table is being populated as part of the GETPIVOTDATA call, 
# force-interpret formula cell results.
calc-getpivotdata-force-interpret-formula.diff, n#540563, kohei

# allow insertion of merged cells over existing merged cells.
calc-insert-over-merged-cells.diff, n#540923, i#7500, kohei

# fix incorrect export of combo boxes, by adding two empty bytes to make Excel
# 2003 and 2007 happy.
calc-combo-listbox-export-fix.diff, n#540566, noelp

# Disable context menu on non-selectable cells.
calc-selection-protected-cells.diff, n#542024, kohei

# When the cell format is 'General', automatically adjust the number of decimals
# to be displayed based on the cell value.
calc-general-type-auto-decimal-sc.diff,        n#541973, kohei
calc-general-type-auto-decimal-svtools.diff,   n#541973, kohei
calc-general-type-auto-decimal-officecfg.diff, n#541973, kohei

# Correctly encrypt zero bytes in the conditional formatting records.
calc-xls-export-encryption-condfmt-fix.diff, n#541058, kohei

# Set reference edge to bottom when importing cells with slanted text.
calc-xls-import-slanted-border-sc.diff,  n#549728, i#38709, kohei
calc-xls-import-slanted-border-oox.diff, n#549728, i#38709, kohei

# Fix incorrect import of sheet protection options.
calc-xls-import-sheet-protection-fix.diff, n#542024, kohei

# Speed up filtering performance with notes.
calc-perf-filtering-with-notes.diff, n#556927, kohei

[ CalcExperimental and CalcRowLimit ]
# speed up row's hidden state query during pagenation.
calc-perf-page-and-manual-breaks-fwd-iterator.diff, n#503482, kohei

# Refactor row height storage to speed up page break updates.
calc-perf-speedup-pagebreak-update.diff, n#554955, kohei

[ AutoLayout ]
sd-layoutcode.diff, cocofan
offapi-layoutcode.diff, cocofan
xmloff-layoutcode.diff, cocofan

[ Fixes ]
avoid-too-long-filenames.diff
oox-fix-create-data-sequence.diff, n#500175, rodo
drawinglayer-textbounds-fix.diff, n#523603, thorsten
dtrans-aqua-dragrect-fix.diff, i#104390, thorsten

[ MySQL ]
cws-mysqlnative-20090916.diff

[ MySQL and DebianBaseOnly ]
# add hack to link against STLport version of libmysqlcppconn on i386.
# Needs a libmysqlcppconn-stlport.so etc built with STLport
debian-mysqlc-build-against-stlport-hack.diff

[ EMFPlus ]
emf+-driver-string.diff, n#519715, rodo

[ Fixes ]
sd-print-fix-pageoffset.diff, n#537931, rodo
svx-ppt-import-fix-bullet-size.diff, n#515972, rodo
sd-ppt-fix-document-summary-reading.diff, n#546758, rodo
# fixes crasher in xml parser
unoxml-fix-empty-xmlns.diff, rodo
oox-pptx-import-fix-header-footer-backport.diff, n#549246, rodo

[ HPPA ]
cws-linuxhppa1.diff, i#107051