summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 44669b59b7105f22354a2f7f29e71612b4b51f53 (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
2000-09-08  Maciej Stachowiak  <mjs@eazel.com>

	* src/nautilus-window-menus.c (help_menu_about_nautilus_callback):
	Added Ali Abdin and Ian McKellar.

	* AUTHORS: Updated to match about box (it would be nice if we
	could keep this name list in just one place).

	* THANKS: New file; I credited everyone who has contributed and
	who is not in AUTHORS, as far as I could tell from the various
	ChangeLogs.

2000-09-08  Andy Hertzfeld  <andy@eazel.com>

	* libnautilus-extensions/nautilus-icon-canvas-item.c:
	(draw_or_measure_label_text), (draw_or_measure_label_text_aa),
	(nautilus_icon_canvas_item_get_max_text_width):
	fixed bug 2060, implement Arlo's text layout scheme, which is now 135 pixel
	instead of 80 in the standard layout mode; it's still 80 in the tighter
	layout mode.
	 
2000-09-07  Rebecca Schulman  <rebecka@eazel.com>

	* components/tree/nautilus-tree-view.c:
	Fixed a "gtk_entry_list_unref" that should
	have been a "gtk_target_list_unref"
	
2000-09-07  Mathieu Lacage  <mathieu@eazel.com>

	Moves the tree view to the new standard way of dnd.
	This now makes it consistant with the rest of the icon
	and list view.
	Fixes a number of bugs in the process: 2897, 2905, 2353
	
	* components/tree/nautilus-tree-view.c: it just changes 
	a lot of things and cleans the code. Dnd should be now fully 
	functional for file drag and drops. Please, test and report
	bugs.

2000-09-07  Maciej Stachowiak  <mjs@eazel.com>

	* components/tree/nautilus-tree-model.c
	(nautilus_tree_model_directory_files_changed_callback): Look up
	the node based on the NautilusFile, not the uri, since the URI may
	have changed, if we are getting a "change" signal.
	
2000-09-07  Eskil Heyn Olsen  <eskil@eazel.com>

	* components/services/install/command-line/eazel-alt-install-corba.
	c: (set_parameters_from_command_line), (md5_check_failed), (main):
	Fixed the setting of server/port/tempdir now that libeazelinstall
	uses gconf.
	Uses the md5_check_failed signal/
	
	* components/services/install/idl/trilobite-eazel-install.idl:
	Added the md5_check_failed signal.
	
	* components/services/install/lib/eazel-install-corba-callback.h:
	* components/services/install/lib/eazel-install-corba-callback.c:
	(impl_md5_check_failed), (eazel_install_callback_get_epv),
	(eazel_install_callback_finalize),
	(eazel_install_callback_class_initialize):
	Added the md5_check_failed signal.
	
	* components/services/install/lib/eazel-install-corba-types.h:
	* components/services/install/lib/eazel-install-corba-types.c:
	(corba_packagedatastructlist_from_packagedata_list),
	(corba_packagedatastruct_from_packagedata),
	(packagedata_from_corba_packagedatastruct):
	Changed corba_packagedatastruct_from_packagedata to return a
	pointer instead of a struct. Hope it doesn't introduce any funky
	leaks in corba_packagedatastructlist_from_packagedata_list.
	
	* components/services/install/lib/eazel-install-md5.h:
	* components/services/install/lib/eazel-install-md5.c:
	(md5_get_string_from_md5_digest):
	Added a method to convert a md5 digest to a human-readable string.
	
	* components/services/install/lib/eazel-install-metadata.c:
	Added authors and includeds trilobite-core-utils (for
	trilobite_debug)
	
	* components/services/install/lib/eazel-install-public.h:
	* components/services/install/lib/eazel-install-object.c:
	(create_temporary_directory),
	Open tmpdir in 0700 instead of 0755.
	(eazel_install_alter_mode_on_temp),
	(eazel_install_delete_downloads), 
	(eazel_install_install_packages),
	(eazel_install_emit_install_progress_default),
	(eazel_install_class_initialize), 
	Changed all 'g_.* ("D: ' to trilobite_debug
	(eazel_install_emit_md5_check_failed),
	(eazel_install_emit_md5_check_failed_default),
	Added the md5_check_failed signal
	(eazel_install_emit_dependency_check_default),
	Modified because of the change in eazel-install-corba-types.
	(eazel_install_emit_done):
	Output cleaning.
	
	* components/services/install/lib/eazel-install-protocols.c:
	(gnome_vfs_xfer_callback), (gnome_vfs_fetch_remote_file),
	(eazel_install_fetch_file), (eazel_install_fetch_package),
	(get_url_for_package):
	Changed all 'g_.* ("D: ' to trilobite_debug
	Output cleaning.
	Always add downloaded file to downloaded_files, thus always doing
	md5 check on them.
	
	* components/services/install/lib/eazel-install-query.c:
	(eazel_install_simple_rpm_query):
	Output cleaning.

	* components/services/install/lib/eazel-install-rpm-glue.c:
	(eazel_install_download_packages),
	(eazel_install_pre_install_packages), (hest),
	(eazel_install_monitor_rpm_propcess_pipe),
	(eazel_install_monitor_subcommand_pipe),
	(eazel_install_do_transaction_md5_check),
	(eazel_install_free_rpm_system_close_db_foreach),
	(eazel_install_free_rpm_system),
	(eazel_install_prepare_rpm_system),
	(eazel_install_fetch_rpm_dependencies), (print_package_list),
	(eazel_install_ensure_deps), (eazel_uninstall_upward_traverse),
	(eazel_uninstall_downward_traverse),
	(eazel_uninstall_check_for_install), (eazel_uninstall_globber):
	Changed all 'g_.* ("D: ' to trilobite_debug
	Output cleaning.

	* components/services/install/lib/eazel-install-xml-package-list.c:
	(generate_xml_package_list), (osd_parse_implementation),
	(osd_parse_softpkg), (osd_parse_shared),
	(parse_osd_xml_from_memory):
	Changed all 'g_.* ("D: ' to trilobite_debug
	Output cleaning.

	* components/services/trilobite/libtrilobite/trilobite-root-client.
	c: (trilobite_root_client_unref),
	(trilobite_root_client_initialize):
	* components/services/trilobite/libtrilobite/trilobite-root-helper.
	c: (trilobite_root_helper_destroy),
	(trilobite_root_helper_initialize):
	Removed some debug output.
	
2000-09-07  Robey Pointer  <robey@eazel.com>

	* components/services/install/lib/eazel-install-metadata.c:
	(get_conf_string), (get_conf_int), (get_conf_boolean):

	Work around fatal API flaw in gconf, so we can detect whether
	ints/bools are set before we substitute default values.

2000-09-07  Andy Hertzfeld  <andy@eazel.com>

	* libnautilus-extensions/nautilus-icon-dnd.c:
	(receive_dropped_tile_image):
	fixed bug 2896, tiled backgrounds don't work in the icon view.
	nautilus_background_receive_dropped_background_image was passing the
	GtkSelectionData object, instead of the data it points to.  Mathieu
	caused this when he reworked the drag and drop stuff recently.
	
	
2000-09-07  John Sullivan  <sullivan@eazel.com>

	Fixed bug 2218 (Duplicate items appear in history list)

	Also changed a few places to compare uris with the new
	nautilus_uris_match instead of strcmp.

	* libnautilus-extensions/nautilus-bookmark.h,
	* libnautilus-extensions/nautilus-bookmark.c:
	(nautilus_bookmark_compare_with): Use nautilus_uris_match.
	(nautilus_bookmark_compare_uris): New function, compares
	bookmarks' uris with nautilus_uris_match; ignores names.
	
	* src/nautilus-window-manage-views.c:
	(nautilus_window_set_displayed_location), (handle_go_elsewhere),
	(open_location): Use nautilus_uris_match.
	
	* src/nautilus-window.c: (nautilus_add_to_history_list):
	Use nautilus_bookmark_compare_uris instead of _compare_with.
	This was the source of the bug. Due to asynchronicity introduced
	sometime after this code was written, when the bookmark for the 
	current location was created it did not	yet know what name to use, 
	and so it did not match any of the old History items that had the 
	correct name. But for the History list we only want one entry per 
	uri anyway, so it needn't have been comparing the names in the 
	first place.

2000-09-07  Andy Hertzfeld  <andy@eazel.com>

	* src/nautilus-sidebar.c: (nautilus_sidebar_initialize):
	fixed bug 1246 by adding event initializing code
	* src/nautilus-window.c: (nautilus_window_constructed):
	removed the sidebar event initializing code from the window class.
	
	* src/nautilus-zoom-control.c:
	(nautilus_zoom_control_initialize_class),
	(nautilus_zoom_control_initialize), (draw_pixbuf_with_prelight),
	(draw_zoom_control_image),
	(nautilus_zoom_control_set_prelight_mode),
	(nautilus_zoom_control_leave_notify),
	(nautilus_zoom_control_motion_notify):
	fixed bug 838, zoom control doesn't prelight, by receiving motion
	events and prelighting appropriately.
	
2000-09-07  Gene Z. Ragan  <gzr@eazel.com>

	Fixed bug causing icon view not to display trash:
	URI.
	
	* libnautilus-extensions/nautilus-mime-actions.c:
	(is_known_mime_type):
	New function to return if mime type is recognized.
	Return FALSE if mim tye if NULL or of type
	application/octet-stream.
	
	(nautilus_mime_get_default_component_for_uri_internal),
	(nautilus_do_component_query):
	Call is_known_mime_type () instead of old != NULL check.
	
2000-09-07  Robey Pointer  <robey@eazel.com>

	* components/services/install/lib/eazel-install-metadata.c:
	(done_with_gconf), (check_gconf_init), (get_conf_string),
	(get_conf_int), (get_conf_boolean), (get_urltype_from_string),
	(init_default_install_configuration),
	(init_default_transfer_configuration), (transferoptions_destroy),
	(installoptions_destroy):
	* components/services/install/lib/eazel-install-metadata.h:
	* components/services/install/lib/eazel-install-object.c:
	(eazel_install_new_with_config):
	* components/services/install/lib/eazel-install-public.h:
	* components/services/install/server/main.c:
	(eazel_install_service_factory):
	
	Rip out all the old XML-based configuration code, and replace it
	with gconf-based code.

	* components/services/trilobite/libtrilobite/trilobite-redirect.c:

	Put redirection table into the same subtree as other trilobite
	stuff.  (This may change soon anyway.)

2000-09-08  Daniel Egger  <egger@suse.de>

	* components/help/converters/gnome-db2html2/gdb3html.c:
	Reverted patch from 2000-09-06 on popular demand because
	it doesn't match the Eazel styleguide.

2000-09-07  Gene Z. Ragan  <gzr@eazel.com>

	Fixed bug 2134, items cannot be dragged from desktop or windows
	onto Trash icon.
	
	* libnautilus-extensions/nautilus-drag.c:
	(nautilus_drag_default_drop_action_for_icons):
	Check and see if target is trash: URI. If it is,
	use find_directory to locate the actual trash directory
	URI.
	
	* libnautilus-extensions/nautilus-file-operations.c:
	(nautilus_file_operations_copy_move):
	Check and see if target is trash: URI. If it is,
	use find_directory to locate the actual trash directory
	URI for the volume of the source file.
	
2000-09-07  Michael Engber  <engber@eazel.com>
	
	Added Robin to the about box.
	* src/nautilus-window-menus.c: (help_menu_about_nautilus_callback):

2000-09-07  John Sullivan  <sullivan@eazel.com>

	Fixed bug 2875 (update set of built-in bookmarks)

	* data/static_bookmarks.xml:

	Fixed bug 2872 (Complaint about bookmark location mismatch 
	when visiting new folder)

	* libnautilus-extensions/nautilus-file-utilities.h:
	* libnautilus-extensions/nautilus-file-utilities.c:
	(nautilus_uris_match): New function, compares two uris
	after canonicalizing each.
	
	* src/nautilus-window-manage-views.c:
	(check_last_bookmark_location_matches_window):
	Use nautilus_uris_match to compare bookmark's uri with
	window's uri.

2000-09-07  Ramiro Estrugo  <ramiro@eazel.com>

	Turn on smooth fonts in the icon view.  This is controlled by the
	SMOOTH_GRAPHICS preference.  I tried to cause a minimum amount of
	disruption to the icon-canvas-item beast.  For this reason, there
	are some serious preformance problems.  I plan to attack those
	next.

	In case of emergency, i left a life boat in there.  Just comment
	out the SMOOTH_FONTS define in the top of the file.  I expect to
	yank this out in the next day or so.

	* libnautilus-extensions/nautilus-icon-canvas-item.c:
	(draw_or_measure_label_text), Teach it about the smooth fonts
	case.  (measure_label_text),  Same here.
	(draw_label_text), Here too.  (draw_or_measure_label_text_aa), New
	function to do the drawing or measuring using NautilusScalableFont
	instead of GdkFont.
	(draw_label_text_aa): New function that draws the smooth text into
	a pixbuf so what we can continue to use the old rendering
	machinery.  This is the reason for at least on of the performance
	problems.  We should be able to render directly into the canvas
	item's buffer.  
	
2000-09-07  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-icon-canvas-item.c:
	(nautilus_icon_canvas_item_initialize_class),
	(draw_or_measure_label_text):
	Simplify the highlight color initialization.
	
	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_text_layout_paint):
	Restore rendering in the passed in color.  Add a mini hack to make
	sure the color is opaque.
	
2000-09-07  John Sullivan  <sullivan@eazel.com>

	Better job of what I did in my last checkin. I caught one case
	before, but there are two other cases I skipped. Now they're
	all equally de-fatal.

	* src/nautilus-window-manage-views.c:
	(check_last_bookmark_location_matches_window), (handle_go_back),
	(handle_go_forward), (handle_go_elsewhere):

2000-09-07  Gene Z. Ragan  <gzr@eazel.com>

	Fixed bug 2445,  Some volume monitor code applies only to desktop case.
	Fixed bug 2452,  find_volumes confused about which volumes to include.
	Fixed bug 2451,  Incorrect test for removability of ISO9660 volumes.
	
	* libnautilus-extensions/nautilus-volume-monitor.c: 
	* libnautilus-extensions/nautilus-volume-monitor.h:
	(floppy_sort):
	Changed function to use NautilusVolumes as opposed to paths
	
	(nautilus_volume_monitor_volume_is_removable):
	New function to check and see if volume is removable.
	
	(nautilus_volume_monitor_get_removable_volumes):
	New function to return a list of removable NautilusVolumes
	
	(nautilus_volume_monitor_get_volume_name):
	New function to return a human readable name of volume
	
	(nautilus_volume_monitor_volume_is_mounted),
	(mount_volume_floppy_set_state), (mount_volume_mount),
	(find_volumes), (nautilus_volume_monitor_mount_unmount_removable):
	Clean up and bug fix work.
	
	
	* src/file-manager/fm-desktop-icon-view.c: (create_mount_link),
	(fm_desktop_icon_view_create_background_context_menu_items),
	(volume_unmounted_callback):
	Use new functions in NautilusVolumeMonitor.

2000-09-07  John Sullivan  <sullivan@eazel.com>

	* src/nautilus-window-manage-views.c: (handle_go_elsewhere):

	De-fatalized bug 2872 (Common crash when navigating, complaint
	about last_location_bookmark not matching window->location).

	Changed an assert (fatal) to a message (annoying) to prevent
	this now very common bug from being fatal. I'll fix the real
	problem soon.

2000-09-07  Mathieu Lacage  <mathieu@eazel.com>

	* components/tree/nautilus-tree-view.c: add support for NautilusDragInfo.
	* libnautilus-extensions/nautilus-drag.c: add new scroll calculation fucntion.
	(nautilus_drag_autoscroll_calculate_delta):
	* libnautilus-extensions/nautilus-drag.h: add decalrtion of scroll function
	plus bits and pieces of constants used everywhere.
	* libnautilus-extensions/nautilus-icon-dnd.c:
	(auto_scroll_timeout_callback): move this to the shared version of the scroll
	* libnautilus-extensions/nautilus-list.c: implement auto scrolling.
	(nautilus_list_drag_leave), (nautilus_list_real_scroll),
	(auto_scroll_timeout_callback), (nautilus_list_start_auto_scroll),
	(nautilus_list_stop_auto_scroll), (nautilus_list_drag_motion):

2000-09-07  Eli Goldberg  <eli@eazel.com>

	* docs/smoketests.html:
	Updated to show test files in /h/public/QE/smoketests

2000-09-07  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-label.c:
	(nautilus_label_initialize):
	Make the default font size something more reasonable.
	
2000-09-07  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-icon-canvas-item.c:
	(nautilus_icon_canvas_item_set_smooth_font_size):
	The new font was not getting assigned.
	
2000-09-07  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-icon-container.c: (destroy),
	(nautilus_icon_container_initialize),
	(nautilus_icon_container_update_icon),
	(nautilus_icon_container_set_label_font_for_zoom_level),
	(nautilus_icon_container_set_smooth_label_font):
	* libnautilus-extensions/nautilus-icon-container.h:
	* libnautilus-extensions/nautilus-icon-private.h:
	Add support for smooth fonts.  We simply manage one font and an
	array of sizes.  The management of the smooth font parallels that
	of regular non smooth Gdk fonts, except we have just one.  Instead
	of an array of fonts, we have an array of font sizes.  We use
	these to update the canvas icon items.
	
2000-09-07  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-scalable-font.h:
	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_scalable_font_draw_text), (nautilus_text_layout_paint),
	(nautilus_gdk_pixbuf_new_from_text):
	Add function to create a GdkPixbuf from a string.  Also fixed a
	debuggin typo from before.

	* test/test-nautilus-font.c: (create_named_background),
	(rgba_run_alpha), (pixbuf_draw_rectangle),
	(pixbuf_draw_rectangle_around), (main):
	Add text to GdkPixbuf to GdkPixbuf compositing test.  Also add a
	bunch of hacks to make the tests more useful.
	
2000-09-07  Mathieu Lacage  <mathieu@eazel.com>

	First work toward bug 2353, fixes bug 2570, 1289
	
	* components/tree/nautilus-tree-view.c: fix a dnd bug in
	gtk_drag_dest_set.
	* libnautilus-extensions/nautilus-drag.c: (nautilus_drag_init):
	initialize the new field drop_occured to FALSE.
	* libnautilus-extensions/nautilus-drag.h: new field drop_occured.
	* libnautilus-extensions/nautilus-icon-dnd.c: use the new field
	and make it behave slightly more sanely by doing actual actions
	in data_received instead of drag_drop. This is the only way to avoid
	race conditions. (drag_data_received_callback), (drag_motion_callback),
	(drag_drop_callback)
	* libnautilus-extensions/nautilus-list.c:
	(nautilus_list_initialize_class), (nautilus_list_dnd_initialize),
	(nautilus_list_initialize), (nautilus_list_drag_start),
	(nautilus_list_ensure_drag_data), (nautilus_list_drag_begin),
	(nautilus_list_drag_end), (nautilus_list_drag_leave),
	(nautilus_list_find_drop_target), (nautilus_list_get_drop_action),
	(nautilus_list_drag_motion), (nautilus_list_drag_drop),
	(nautilus_list_drag_data_received):
	add support for the drop_occured field, fix the same bug as in tree view
	and make it behave slightly more sanely as in icon view.
	The tree view now needs some work to catch up with all those changes.
	* src/file-manager/fm-list-view.c: (fm_list_handle_dropped_icons):
	space.

2000-09-07  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_text_layout_free), (nautilus_text_layout_new),
	(nautilus_text_layout_paint):
	* libnautilus-extensions/nautilus-scalable-font.h:
	Add support for drawing underlined text.  I also added a FIXME for
	the issue of hard coding the underline baseline rather than
	fetching the information from the rendred string.
	
	* test/test-nautilus-font.c: (main):
	Add underlined text test.
	
2000-09-07  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_scalable_font_measure_text), (invert_glyph),
	(nautilus_scalable_font_draw_text),
	(nautilus_scalable_font_draw_text_lines_with_dimensions),
	(nautilus_scalable_font_draw_text_lines),
	(nautilus_text_layout_paint):
	* libnautilus-extensions/nautilus-scalable-font.h:
	Add support for drawing inverted text.  Also cleanup the rendering
	function a bit.  
	
	* libnautilus-extensions/nautilus-icon-factory.c: (embed_text):
	* libnautilus-extensions/nautilus-label.c: (render_buffer_pixbuf):
	* src/nautilus-about.c: (draw_aa_string):
	* src/nautilus-sidebar-tabs.c: (draw_one_tab_plain),
	(draw_one_tab_themed):
	Update all these for the new inverted scalable font api.
	
	* test/test-nautilus-font.c: (main):
	Add a inverted text test.
	
2000-09-07  Eskil Heyn Olsen  <eskil@eazel.com>

	* nautilus-installer/src/Makefile:
	Just to clear things up : this file is in cvs since it's 
	not created by configure.in (yet)

	* nautilus-installer/src/Makefile.am:
	* nautilus-installer/src/link.sh:
	makefile/link stroking to make it work after the changes
	to trilobite-core-utils.

	* libnautilus-adapter/Makefile.am
	Removed libnautilus.la to fix build

2000-09-07  Maciej Stachowiak  <mjs@eazel.com>

	* components/tree/nautilus-tree-model.c (report_node_added):
	ifdef'd out a g_warning that happens a lot more often than I
	expected.

2000-09-07  Maciej Stachowiak  <mjs@eazel.com>

	* libnautilus-adapter/Makefile.am: Link against libnautilus.

	* src/nautilus-component-adapter-factory.h,
	src/nautilus-component-adapter-factory.c: Fist cut at the easy to
	use wrapper interface for the soon to come adapter component (part
	of the work for bugzilla.eazel.com 1994). I made this a singleton
	object with the object actually exposed, but maybe I should hide
	the object details completely and just expose the actually useful
	function (which will instantiate the singleton when/if
	appropriate).

	* src/Makefile.am: Add to the build. Link against libnautilus-adapter.

2000-09-07  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-scalable-font.c:
	(text_layout_free_row), (nautilus_text_layout_free),
	(nautilus_text_layout_new), (nautilus_text_layout_paint):
	* libnautilus-extensions/nautilus-scalable-font.h:
	Add text layout functions copied from
	libgnomeui/gnome-icon-text.[ch] and modified to work with
	NautilusScalalbleFont and GdkPixbuf instead of GdkFont and
	GdkDrawable.

	* test/test-nautilus-font.c: (main):
	Add text layout test.
	
2000-09-07  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-icon-factory.c: (embed_text):
	Make the empty line height 1/2 of the font size to cram more stuff
	into the embedded text.
	
	* libnautilus-extensions/nautilus-label.c:
	(nautilus_label_size_request), (render_buffer_pixbuf),
	(label_get_empty_line_height),
	(label_get_total_text_and_line_offset_height),
	(label_recompute_line_geometries):
	Update for scalable font changes.
	
	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_scalable_font_measure_text_lines),
	(nautilus_scalable_font_draw_text_lines_with_dimensions),
	(nautilus_scalable_font_draw_text_lines):
	* libnautilus-extensions/nautilus-scalable-font.h:
	Add empty_line_height argument to text line measuring and drawing
	functions.  Use this in both measure and drawing computations.
		
	* test/test-nautilus-font.c: (gdk_pixbuf_draw_rectangle),
	(draw_rectangle_around), (main):
	Update for scalable font changes.  Also draw a box around area
	that is being clipped (or measured) to determine whether things
	work precisely.

2000-09-07  Eskil Heyn Olsen  <eskil@eazel.com>

	* components/services/install/command-line/eazel-alt-install-corba.
	c: (install_failed), (main):
	Default to services.eazel.com instead of ham.eazel.com
	Nicer print for install failed in the case the package is already
	installed.
	Free the category & package date structures.
	
	* components/services/install/lib/eazel-install-corba-callback.c:
	(impl_install_failed), (impl_uninstall_failed):
	Free some category & package date structures (leak fixing project)
	
	* components/services/install/lib/eazel-install-corba-types.c:
	(categorydata_list_from_corba_categorystructlist):
	Fixed a g_new(categorydata) to categorydata_new
	
	* components/services/install/lib/eazel-install-corba.c:
	(impl_Eazel_Install_install_packages),
	(impl_Eazel_Install_simple_query):
	Inserted some newlines (exiting eh ?)
	
	* components/services/install/lib/eazel-install-md5.h:
	* components/services/install/lib/eazel-install-md5.c:
	(md5_get_digest_from_md5_string):
	Added a call that converts a md5 string into a 16 byte digest
	string.
	
	* components/services/install/lib/eazel-install-object.c:
	(eazel_install_finalize):
	Some newlines!!
	
	* components/services/install/lib/eazel-install-protocols.h:
	* components/services/install/lib/eazel-install-protocols.c:
	(http_fetch_remote_file), (eazel_install_fetch_package),
	(eazel_install_fetch_package_which_provides),
	(get_url_for_package):
	Added comments to what get_url_for_package and
	get_search_url_for_package does.
	Removed excess code from http_fetch_remote_file (creation of temp
	dir).
	Changed get_url_for_package to take a packagedata object as last
	argument. This is used for setting the serverside md5. Also uses
	trilobite_fetch_uri now.
	
	* components/services/install/lib/eazel-install-query.c:
	(eazel_install_simple_rpm_query):
	Inserted newlines (okay, I do that a lot, it makes the code
	readable...)
	
	* components/services/install/lib/eazel-install-rpm-glue.c:
	(eazel_install_flatten_categories),
	Changed to initally copy the category->packages. That way I don't
	end up having a list in the category where the first element is
	NULL (leak).
	(eazel_install_download_packages),
	(eazel_install_pre_install_packages),
	Nuke the modifies list after called check_existing. No reason to
	send those to the client, since the status flags is updated to
	show that the package is already installed.
	(eazel_install_do_transaction_md5_check),
	Finished the md5 checking (thus my required milestone bugs are
	done now, woohoo)
	(eazel_install_prune_packages),
	Commented out the block that destroys packagedata objects.
	(eazel_install_check_existing_packages),
	Set the stats to "already installed".
	(eazel_install_fetch_rpm_dependencies),
	(eazel_uninstall_check_for_install):
	Removed silly g_messages in danish that I used for debugging.
	
	* components/services/install/lib/eazel-install-types.h:
	Removed some weird old structure defines.
	
	* components/services/install/lib/eazel-install-types.c:
	(categorydata_new), (categorydata_destroy_foreach),
	(packagedata_destroy):
	Added some more messages in the category/packagedata alloc/dealloc
	debugging.
	
	* components/services/install/lib/eazel-install-xml-package-list.c:
	(generate_xml_package_list), (osd_parse_implementation),
	(osd_parse_softpkg), (osd_parse_shared),
	(parse_osd_xml_from_memory):
	Added D: to some stdout stuff.
	Decodes the MD5 tag
	Had to add a hack to compensate for lack of useragent in gnome-vfs
	http (bug 2862)
	
	* components/services/trilobite/libtrilobite/trilobite-core-utils.h
	* components/services/trilobite/libtrilobite/trilobite-core-utils.c
	: (trilobite_fetch_uri), (trilobite_fetch_uri_to_file),
	(trilobite_fetch_uri), (trilobite_fetch_uri_to_file):
	Wrote "slim" versions that use libghttp, for the bootstrap
	installer.
	
	* nautilus-installer/src/.cvsignore:
	Ignore the prezip binary
	* nautilus-installer/src/Makefile:
	* nautilus-installer/src/link.sh:
	Makefile cosmetics
	
	* nautilus-installer/src/rpmsearch.cgi:
	The makeshift rpmsearch cgi script.

	* libnautilus-adapter/.cvsignore
	stuff to ignore stuff.
	
2000-09-06  Daniel Egger  <egger@suse.de>

	* components/help/converters/gnome-db2html2/gdb3html.c: 
	A small beatification.

2000-09-06  Raph Levien  <raph@acm.org>

	* librsvg/test-ft-gtk.c: Added "-a" option for attaching AFM
	files, used to confirm that bugzilla.eazel.com 2141 affects
	TrueType and not Type1 fonts. Also added const to filename
	argument.

	* librsvg/rsvg.c (rsvg_start_svg): Patch for bugzilla.eazel.com
	2239. If width and height are not specified in the SVG file,
	defaults are used. Previously, the creation of the pixbuf was
	failing, causing downstream code to segfault on the NULL.

2000-09-07  Andy Hertzfeld  <andy@eazel.com>

	* libnautilus-extensions/nautilus-background.c:
	(nautilus_background_draw_aa),
	(nautilus_background_set_color_no_emit),
	(nautilus_background_set_image_uri_no_emit):
	
	fixed bug 1899, background customization lost when theme changes,
	by clearing the color when the an image is set.  Also, fixed
	bug where color customization wasn't working for the arlo theme,
	by removing the solid color case in background_draw_aa.
	
2000-09-06  Maciej Stachowiak  <mjs@eazel.com>

	* src/nautilus-application.c, src/nautilus-shell.c: Fixed FIXME
	bugzilla.eazel.com 2535 (had to be fixed once I made the idl file
	properly includable).

2000-09-06  Maciej Stachowiak  <mjs@eazel.com>

	* libnautilus/Makefile.am: Fix makefile problem

2000-09-06  Gene Z. Ragan  <gzr@eazel.com>

	Fixed bug 2011, Numeric keypad enter key doesn't work
	right in Search field.

	Fixed bug 2012, Undo doesn't work in search 
	text-entry fields.

	I switched the GtkEntry items to be NautilusEntry items
	and wired up the undo signal handlers.
	
	* src/nautilus-complex-search-bar.c:
	* src/nautilus-search-bar-criterion-private.h:
	* src/nautilus-search-bar-criterion.c:
	(nautilus_search_bar_criterion_destroy),
	(nautilus_search_bar_criterion_new_from_values):
	* src/nautilus-search-bar-criterion.h:
	* src/nautilus-simple-search-bar.c:
	(nautilus_simple_search_bar_initialize),
	(nautilus_simple_search_bar_destroy),
	(nautilus_simple_search_bar_set_location),
	(nautilus_simple_search_bar_get_location):

2000-09-06  John Sullivan  <sullivan@eazel.com>

	I almost fixed bug 2598 ("Select All Files" enabled when the
	directory is empty), only to realize at the last moment that
	there is no current API to tell whether a directory view is
	displaying any files or not (just as there is no API to tell
	the count of displayed files, which is part of the problem
	with bug 480).

	While fixing this, I changed the directory view menu-updating 
	mechanism so that the real work gets done in an idle handler 
	instead of immediately, to prevent/fix performance problems 
	caused by multiple menu	updates happening in succession. So I'm
	checking in this performance change but not yet addressing
	bug 2598 itself.

	* src/file-manager/fm-directory-view.c:
	(fm_directory_view_destroy): remove menu-updating idle handler.
	(update_menus_idle_callback): New function, calls
	fm_directory_view_update_menus and resets idle handler id.
	(schedule_update_menus): New function, adds idle handler that
	calls update_menus_idle_callback.
	(remove_custom_icons_callback), 
	(fm_directory_view_notify_selection_changed),
	(fm_directory_view_load_uri),
	(fm_directory_view_trash_state_changed_callback),
	(fm_directory_view_real_merge_menus): schedule menu update instead
	of doing it immediately.
	(compute_menu_item_info): Add FIXME with bug 2598 here.
	(fm_directory_view_real_update_menus): Update Select All item.

000-09-06  Maciej Stachowiak  <mjs@eazel.com>

	* libnautilus-adapter/nautilus-adapter-factory.idl: New IDL
	interface for the special adapter component that will be used to
	wrap ordinary Bonobo components to look like Nautilus::Views as
	part of the solution to bugzilla.eazel.com #1994.
	* libnautilus-adapter/Makefile.am: Build a library containing the
	stubs and sekeletons.

	* libnautilus/nautilus-view-component.idl: Some changes so this
	IDL file can be included in others safely.
	* libnautilus/Makefile.am: Made necessary build adjustments for
	the above.

	* configure.in, Makefile.am: add libnautilus-adapter directory to
	build.
	
2000-09-06  Robin * Slomkowski  <rslomkow@eazel.com>

	* README: added requirment of BEFORE_NEW_UI_HANDLER_1
	tag for bonobo, gtkhtml, eog, xpdf

2000-09-06  Andy Hertzfeld  <andy@eazel.com>

	* src/nautilus-sidebar-tabs.c: (get_tab_width):
	fixed bug 2505, scale in sidebar tabs shouldn't be hardwired.
	This was made irrelevant when we changed it to use scalable fonts
	instead of the old scaling hack, so I'm just removing the fixme.
	
2000-09-06  Raph Levien  <raph@acm.org>

	* librsvg/test-ft-gtk.c (test_ft_quit): Invoke rsvg_ft_ctx_done()
	to facilitate testing of cleanup and for checking for mem leaks.

	* librsvg/rsvg-ft.c: Actually evict glyphs when glyph cache
	becomes full. Fixed some mem leaks in rsvg_ft_ctx_done - it
	wasn't freeing everything in the context.

2000-09-06  Gene Z. Ragan  <gzr@eazel.com>

	Fixed bug 2816, Home icon doesn't link to changed home directory.

	Now the link is updated both at dekstop launch and whenever
	the user changed the preference in the Navigation pane of
	the preferences dialog.
	
	* src/file-manager/fm-desktop-icon-view.c: (home_uri_changed),
	(fm_desktop_icon_view_initialize), (find_and_update_home_link),
	(place_home_directory), (find_and_rename_trash_link),
	(remove_old_mount_links):

2000-09-06  Andy Hertzfeld  <andy@eazel.com>

	* src/nautilus-sidebar-title.c: (update_font):
	fixed bug 2499, font leak in sidebar title.
	
	* icons/vector/Makefile.am:
	* icons/vector/vector.xml:
	fixed bug 2206, vector icon zoom control draws wrong, by removing
	the custom zoom control for the vector theme, which was
	experimental and not intended to stay around.

2000-09-06  Robey Pointer  <robey@eazel.com>

	* components/services/install/lib/eazel-install-md5.c:
	(_byte_reverse), (md5_update), (md5_final), (md5_get_digest),
	(md5_get_digest_from_file), (main):
	* components/services/install/lib/eazel-install-md5.h:

	Fix evil gint/gchar types in MD5 to use native types according to
	the style guide.
	
2000-09-06  John Sullivan  <sullivan@eazel.com>

	Fixed bug 1794 (New directory view background context menu design)

	Any complaints or revisions of the context menus in directory
	views should be written up as new bugs.

	* libnautilus-extensions/nautilus-gtk-extensions.h,
	* libnautilus-extensions/nautilus-gtk-extensions.c:
	(nautilus_gtk_menu_insert_separator): New function, slight
	generalization of _append_separator that takes a position.
	(nautilus_gtk_menu_append_separator): Now calls _insert_separator.
	
	* src/file-manager/fm-icon-view.h: Added supports_auto_layout 
	function pointer for subclasses to optionally override.
	
	* src/file-manager/fm-icon-view.c: 
	renamed details->updating_bonobo_marked_menu_item to
	updating_toggle_menu_item since I realized that it's not
	a Bonobo-specific problem.
	(tighter_layout_callback): updated for API changes.
	(fm_icon_view_using_auto_layout),
	(fm_icon_view_using_tighter_layout): New convenience function
	to share a little code.
	(compute_menu_item_info): Changed toggle_item boolean parameter
	to menu_item_type that returns an enum for normal, check,
	radio, and subtree items; moved some layout-related items in
	here so the context menu can avoid duplicating code.
	(context_menu_layout_radio_item_callback),
	(append_one_context_menu_layout_item): New functions, used by
	layout items in context menu. 
	(insert_one_context_menu_item): Now handles the various menu item 
	types returned by compute_menu_item_info, and returns the new item.
	(append_one_context_menu_item): Now returns the new item.
	(fm_icon_view_create_background_context_menu_items): Add the
	layout items to the context menu per bug 1794.
	(fm_icon_view_supports_auto_layout): New function, calls
	virtual function.
	(real_supports_auto_layout): Returns TRUE.
	(fm_icon_view_initialize_class): Wire up supports_auto_layout.
	(update_layout_menus): Now skips some work if supports_auto_layout
	is false; also updates reversed_order item in a way that works
	even the reversed_order field was changed elsewise.
	(fm_icon_view_get_directory_sort_by),
	(fm_icon_view_set_directory_sort_by),
	(fm_icon_view_get_directory_sort_reversed),
	(fm_icon_view_set_directory_sort_reversed),
	(fm_icon_view_get_directory_auto_layout),
	(fm_icon_view_set_directory_auto_layout): Bail out early if
	supports_auto_layout is false.
	(fm_icon_view_begin_loading): Refactor a little.
	(insert_bonobo_menu_item): Handle the different menu item types
	returned by compute_menu_item_info.
	(set_sort_criterion_by_path): New function, extracted from
	sort_callback so it could be used elsewhere.
	(sort_callback): Now calls set_sort_criterion_by_path.
	(sort_direction_callback): Changed signature so it can be used
	for both Bonobo and Gtk menus; changed implementation not to
	rely on Bonobo menu state.
	(manual_layout_callback): Changed signature so it can be used
	for both Bonobo and Gtk menus
	(layout_changed_callback),  (icon_position_changed_callback): 
	Use new convenience functions.
	(fm_icon_view_merge_menus): Use insert_bonobo_menu_item for
	more items to avoid duplicating code with context menus.
	(update_one_menu_item): Updated for compute_menu_item_info API change.

	* src/file-manager/fm-desktop-icon-view.c:
	(fm_desktop_icon_view_get_directory_sort_by),
	(fm_desktop_icon_view_set_directory_sort_by),
	(fm_desktop_icon_view_get_directory_sort_reversed),
	(fm_desktop_icon_view_set_directory_sort_reversed),
	(fm_desktop_icon_view_get_directory_sort_auto_layout),
	(fm_desktop_icon_view_set_directory_sort_auto_layout): Removed
	these overridden function pointers, obviated by new
	supports_auto_layout.
	(fm_desktop_icon_view_initialize_class): removed function
	pointer wiring for the above set; added function pointer
	wiring for supports_auto_layout.
	(real_supports_auto_layout): New function, returns FALSE.

2000-09-06  Darin Adler  <darin@eazel.com>

	* libnautilus-extensions/nautilus-search-uri.c: Got rid of a FIXME
	for a bug that was already fixed.
	* libnautilus-extensions/nautilus-volume-monitor.c: (eject_cdrom):
	Got rid of a FIXME for a bug that was already fixed.

2000-09-06  Andy Hertzfeld  <andy@eazel.com>

	* src/nautilus-location-bar.c: (try_to_expand_path):
	fixed bug 2828, append a slash when auto-completing
	directory names.
	
2000-09-06  Eli Goldberg  <eli@eazel.com>

	Checked in Nautilus Smoke Tests to doc tree.

	* docs/smoketests.html

2000-09-06  Darin Adler  <darin@eazel.com>

	Fixed bug 1960 (nautilus_strdup_strftime relies on glibc strftime
	behavior) and bug 2820 (date/time formatting uses non-standard
	glibc extension).

	* libnautilus-extensions/nautilus-glib-extensions.h:
	* libnautilus-extensions/nautilus-glib-extensions.c:
	(nautilus_strdup_strftime): Rewrote nautilus_strdup_strftime so
	that it provides the features we need, but no longer requires the
	GNU glibc version of strftime.
	(nautilus_g_string_append_len): Added a half-assed version of the
	GLib 2.0 function g_string_append_len, since I needed it for
	nautilus_strdup_strftime.
	(test_strftime), (nautilus_self_check_glib_extensions): Added
	light self-checks for the nautilus_strdup_strftime function to
	confirm that my rewrite didn't break it.

	* libnautilus-extensions/nautilus-file.c:
	(nautilus_file_get_date_as_string): Refined the comments for
	localizers to make it clear that the GNU "%-" and "%_" extensions
	are allowed, but other GNU extensions are not.

	* components/services/trilobite/libtrilobite/.cvsignore:
	Ignore some generated files that weren't in the list.
	
2000-09-06  Arlo Rose  <arlo@eazel.com>

	* icons/arlo/left-bumper-active-prelight.png:
	Lopped off a pixel.

2000-09-06  Mathieu Lacage  <mathieu@eazel.com>

	* components/tree/nautilus-tree-view.c: implement autoscroll
	by stealing code from nautilus-icon-dnd.c fixes task 2418
	* libnautilus-extensions/nautilus-icon-container.c:
	(nautilus_icon_container_scroll), (reveal_icon),
	(nautilus_icon_container_update_scroll_region): do not access
	the GtkLayout internal structures but use the gtk accessors.
	ie: gtk_layout_get_[vh]adjustment

2000-09-06  Gene Z. Ragan  <gzr@eazel.com>

	Fixed bug 2644, Enter and Return should invoke file renaming.
	
	* libnautilus-extensions/nautilus-icon-container.c:
	(key_press_event):

2000-09-06  Darin Adler  <darin@eazel.com>

	Added checks in Nautilus to guarantee we will notice leaks
	of UI handlers in the future.

	The check will fire unless you get new Bonobo, since I just fixed
	a UI handler leak bug in Bonobo.

	* src/nautilus-window.c: (nautilus_window_real_set_content_view):
	Added code to check for a still-merged Open menu item in the file
	menu. This will catch leaks of UI handlers fairly quickly, instead
	of the traditional way we discover them, after long debugging
	sessions.

	* components/history/nautilus-history-view.c:
	(history_view_frame_call_end):
	* libnautilus-extensions/nautilus-undo-manager.c:
	(release_transaction), (nautilus_undo_manager_undo):
	* libnautilus/nautilus-clipboard.c: (add_menu_items_callback):
	* libnautilus/nautilus-undo.c: (undo_manager_unref_cover),
	(nautilus_undo_attach_undo_manager):
	* libnautilus/nautilus-view.c: (view_frame_call_end):
	* src/file-manager/fm-directory-view.c:
	(bonobo_control_activate_callback):
	* src/nautilus-application.c: (nautilus_application_startup):
	* src/nautilus-view-frame-bonobo-embeddable.c:
	(bonobo_subdoc_load_location):
	* src/nautilus-view-frame-nautilus-view.c:
	(nautilus_view_try_load_client):
	* src/nautilus-view-frame.c: (nautilus_view_frame_destroy_client),
	(nautilus_view_frame_load_client):
	Use bonobo_object_dup_ref and bonobo_object_release_unref to
	simplify some code.
	
	* components/loser/content/nautilus-content-loser.c:
	(loser_merge_bonobo_items_callback):
	* components/loser/sidebar/nautilus-sidebar-loser.c:
	(loser_merge_bonobo_items_callback):
	* components/mozilla/nautilus-mozilla-content-view.c:
	(mozilla_merge_bonobo_items_callback):
	* components/sample/nautilus-sample-content-view.c:
	(sample_merge_bonobo_items_callback):
	Add missing unref to avoid leaking a UI handler.
	
	* components/services/time/nautilus-view/trilobite-eazel-time-view.c:
	Remove a bunch of code inside #if 0, which had out of date copies
	of the sample code. I decided this was better than trying to fix
	it.
	
2000-09-06  John Sullivan  <sullivan@eazel.com>

	Fixed bug 2377 (Menu separators in search date criterion
	look wrong and are selectable)

	* src/nautilus-search-bar-criterion.c:
	(get_date_modified_location_for): Replaced "--" with
	"" when defining menu item text.
	(nautilus_search_bar_criterion_new_from_values): When
	constructing option menu items, treat empty string specially
	by not translating it and making an insensitive separator.

2000-09-06  Eskil Heyn Olsen  <eskil@eazel.com>

	* components/services/install/lib/eazel-install-metadata.c:
	(create_default_metadata), (create_default_configuration_metafile),
	(xml_doc_sanity_checks):
	Removed \n's for g_print/warnings/messages
	
	* components/services/install/lib/eazel-install-object.c:
	(eazel_install_finalize), 
	Changed to call parents finalize
	(eazel_install_alter_mode_on_temp),
	(eazel_install_lock_tmp_dir), (eazel_install_unlock_tmp_dir),
	Calls to chmod all the downloaded files and the tmpdir.
	(eazel_install_delete_downloads),
	(eazel_install_install_packages):
	Moved the deletion of downloads to a seperate call, so revert can
	also reap it's benefits.
	
	* components/services/install/lib/eazel-install-protocols.c:
	(gnome_vfs_xfer_callback), (eazel_install_fetch_file),
	Fixed download progress emission to only emit with amount==0 once
	for gnome-vfs downloads.
	Also checks for existence of package prior to download. This
	should be safe once md5 checking is done, and prevents
	fetch_dependencies from fetching the same file over and over
	(which maybe should be solver in another way).
	(eazel_install_fetch_package),
	Moved the md5 checking code into eazel_install_start_transaction.
	(eazel_install_fetch_package_which_provides),
	Fixed evil bug I found now that i modified rpmsearch.cgi to
	support ?provides= searches.
	(get_url_for_package):
	Fixed a packagedata_destroy_foreach call.
	
	* components/services/install/lib/eazel-install-public.h:
	Prototypes for the calls to chmod unchmod tmpdir + downloads.
	
	* components/services/install/lib/eazel-install-rpm-glue.c:
	(eazel_install_flatten_categories), 
	Reversed the order of list concatenation.
	(install_new_packages),
	Creates tmpdir, needed for reverttransaction.
	(eazel_install_download_packages),
	Removed the EAZEL_INSTALL_DOWNLOADS status flag, check the
	downloaded_files list in private instead.
	(eazel_install_monitor_rpm_propcess_pipe),
	Moved a comment reg. parsing rpm --percent here.
	(eazel_install_monitor_subcommand_pipe),
	(eazel_install_do_transaction_md5_check),	
	(eazel_install_start_transaction),
	Moved the md5 checking to be near the installtion routine.
	(eazel_install_check_existing_packages),
	Modified some strings to be more i18n friendly
	(eazel_install_fetch_rpm_dependencies),
	Do a check so the some packages isn't added several times.
	(eazel_install_ensure_deps):
	list append rather then prepend. Seems rpm isn't as nonchalant
	about the order of rpm's as we were led to believe.
	
	* components/services/install/lib/eazel-install-rpm-glue.h:
	Removed the EAZEL_INSTALL_DOWNLOADS status flag, check the
	downloaded_files list in private instead.

	* components/services/install/lib/eazel-install-types.h:
	* components/services/install/lib/eazel-install-types.c:
	(packagedata_new), (packagedata_destroy):
	Made the md5 a pointer rather then char[16];
	
	* components/services/install/lib/makefile.staticlib.in:
	* components/services/trilobite/libtrilobite/makefile.staticlib.in:
	* components/services/trilobite/libtrilobite/trilobite-core-utils.c:
	I needed some cpp loving to keep the gnome-vfs stuff out of
	nautilus-installer.
	
	* components/services/trilobite/sample/service/sample-service-impl.
	c: (sample_service_finalize), (sample_service_unref),
	(sample_service_class_initialize):
	* components/services/trilobite/sample/command-line/main.c: (main):
	* components/services/trilobite/sample/lib/sample-service-public.h:
	* components/services/trilobite/sample/service/main.c:
	(trilobite_service_factory_destroy):
	Fixed the destroy mechanism's of sample-service (bug 967)
	
	* configure.in:
	Added the mystic libtrilobite/makefile/staticlib.in
	
	* nautilus-installer/src/Makefile:
	* nautilus-installer/src/callbacks.c: (begin_install),
	(prep_install), (prep_finish):
	* nautilus-installer/src/callbacks.h:
	* nautilus-installer/src/installer.c: (create_finish_page_good),
	(create_finish_page_evil), (create_window),
	(eazel_installer_initialize):
	* nautilus-installer/src/link.sh:
	More installer loving. Now it enables/disables the next/back
	buttons in a more sane manner, plus handles lack of
	package-list.xml better.

2000-09-05  Robey Pointer  <robey@eazel.com>

	* components/services/install/lib/eazel-install-object.c:
	(eazel_install_install_packages):
	* components/services/trilobite/libtrilobite/trilobite-core-utils.c
	: (trilobite_init):
	* components/services/trilobite/libtrilobite/trilobite-root-helper.
	c: (trilobite_root_helper_start):

	Fix bug 2684 that would cause an occasional crash if running as
	root (freeing a password that had never been collected).

2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-icon-canvas-item.c:
	(nautilus_icon_canvas_item_initialize_class),
	(nautilus_icon_canvas_item_initialize),
	(nautilus_icon_canvas_item_destroy),
	(nautilus_icon_canvas_item_set_arg),
	(nautilus_icon_canvas_item_get_arg), (icon_canvas_item_is_smooth),
	(nautilus_icon_canvas_item_get_max_text_width),
	(nautilus_icon_canvas_item_set_smooth_font),
	(nautilus_icon_canvas_item_set_smooth_font_size):
	* libnautilus-extensions/nautilus-icon-canvas-item.h:
	Add arguments and setter functions to set the font and font size
	in smooth mode.  Also added a function to determine whether we are
	in smooth mode or not.
	
2000-09-05  Pavel Cisler  <pavel@eazel.com>

	* libnautilus-extensions/nautilus-directory-notify.h:
	* libnautilus-extensions/nautilus-directory.c:
	(nautilus_direcotry_copy_move_metadata_key),
	(nautilus_directory_move_metadata),
	(nautilus_directory_copy_metadata),
	(nautilus_directory_schedule_metadata_copy),
	(nautilus_directory_schedule_metadata_move),
	(nautilus_directory_schedule_metadata_remove):
	* libnautilus-extensions/nautilus-file-changes-queue.c:
	(nautilus_file_changes_queue_schedule_metadata_remove),
	(nautilus_file_changes_consume_changes):
	* libnautilus-extensions/nautilus-file-changes-queue.h:
	* libnautilus-extensions/nautilus-file-operations.c:
	(sync_xfer_callback):
	Add hooks for metadata removal.

2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-lib-self-check-functions.h:
	Add hook for scalable fonts test which im going to add soon.

	* libnautilus-extensions/nautilus-scalable-font.h:
	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_scalable_font_text_width), New convenience function to
	measure just the text width.
	(nautilus_self_check_scalable_font): Add hook for scalable fonts
	test which im going to add soon.

2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_scalable_font_draw_text),
	(nautilus_scalable_font_draw_text_lines_with_dimensions),
	(nautilus_scalable_font_draw_text_lines),
	(initialize_global_stuff_if_needed):
	Add support for rendering text on pixbufs without alpha channels.
	
	* libnautilus-extensions/nautilus-icon-factory.c: (embed_text):
	No longer need to create a pixbuf with alpha channel duplicate.
	
	* test/test-nautilus-font.c: (main):
	Paint the pixbuf white before drawing stuff to it.		
	
2000-09-05  Andy Hertzfeld  <andy@eazel.com>

	* icons/arlo/sidebar_tab_pieces/Makefile.am:
	* icons/arlo/sidebar_tab_pieces/fill-active-prelight.png:
	* icons/arlo/sidebar_tab_pieces/left-bumper-active-prelight.png:
	* icons/arlo/sidebar_tab_pieces/right-top-active-prelight.png:
	added new tab pieces for active prelight state
	
	* src/nautilus-sidebar-tabs.c:
	(nautilus_sidebar_tabs_load_tab_pieces), (draw_one_tab_themed),
	(nautilus_sidebar_tabs_expose):
	fixed bug 2504, active tabs don't prelight, by adding, loading
	and drawing the appropriate tab pieces.  Also, moved the text
	down one pixel at Arlo's request.
	
2000-09-05  Arlo Rose  <arlo@eazel.com>
	
	* icons/arlo/sidebar_tab_pieces/left-bumper.png        
	* icons/arlo/sidebar_tab_pieces/left-bumper-active.png
        * icons/arlo/sidebar_tab_pieces/left-bumper-prelight.png
	Took off left side pixel in order to get rid of the double
	black line that was there.

2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	* test/Makefile.am:
	* test/font-test.sh:
	Add a dumb script to make it easy to run the font test.
	
	* test/test-nautilus-font.c: (main):
	Make the clipping test better; clip both vertically and
	horizontally.

2000-09-05  John Sullivan  <sullivan@eazel.com>

	Much context-menu-related cleanup and some bug fixes.

	2734: comment fm_directory_view_add_context_menu_item

	* libnautilus-extensions/nautilus-gtk-extensions.h,
	* libnautilus-extensions/nautilus-gtk-extensions.c:
	(nautilus_gtk_menu_append_separator): New convenience function
	for appending a separator to a GtkMenu.
	(nautilus_gtk_menu_set_item_visibility): New convenience function
	for hiding/showing a menu item in a GtkMenu.
	
	* src/file-manager/fm-directory-view.h:
	Removed overridable function pointers for 
	create_background_context_menu_zoom_items and
	create_background_context_menu_background_items; I made sure the
	API supports what these were used for in a more general way.
	Added overridable function pointer for supports_zooming. Now the
	base class handles disabling/removing things for subclasses that
	don't support zooming.
	Changed fm_directory_view_add_context_menu_item to
	_insert_context_menu_item and gave it a position parameter.
	* src/file-manager/fm-directory-view.c:
	(fm_directory_view_initialize_class): removed function pointer
	assignment for deleted calls; added function pointer assignment
	for new supports_zooming call.
	(select_all_callback): Removed this function because I removed
	the item from the context menu (as per bug 1794).
	(fm_directory_view_bump_zoom_level),
	(fm_directory_view_zoom_to_level),
	(fm_directory_view_set_zoom_level),
	(fm_directory_view_restore_default_zoom_level),
	(fm_directory_view_can_zoom_in), (fm_directory_view_can_zoom_out):
	Bail out without calling overridable function pointer for these
	calls if supports_zooming is FALSE.
	(finish_inserting_menu_item): New function, generalization of
	finish_appending_menu_item that takes a position.
	(finish_appending_menu_item): Now calls finish_inserting_menu_item.
	Also, renamed this from finish_adding_menu_item.
	(compute_menu_item_info): Removed ellipsis from "Show Properties"
	and added comment explaining why it needs no ellipsis.
	(append_gtk_menu_item_with_view),
	(append_selection_menu_subtree): Update for adding -> appending rename.
	(fm_directory_view_insert_context_menu_item): Generalization of
	_append_context_menu_item that takes a position parameter.
	(fm_directory_view_append_context_menu_item): Renamed from
	_add_context_menu_item, and now calls _insert_context_menu_item.
	(real_create_background_context_menu_zoom_items),
	(real_create_background_context_menu_background_items):
	Removed these functions. These menu items are no longer treated as
	special cases.
	(fm_directory_view_real_create_background_context_menu_items):
	Now inserts zooming items only if supports_zooming is TRUE;
	resurrected the accidentally-obliterated "Reset Background" item.
	(add_separator): Removed this function in favor of 
	nautilus_gtk_menu_append_separator.
	(add_application_to_gtk_menu), (add_component_to_gtk_menu),
	(create_open_with_gtk_menu),
	Update for API renames.
	(fm_directory_view_real_create_selection_context_menu_items):
	Use nautilus_gtk_menu_append_separator.
	(fm_directory_view_supports_zooming): New function, calls 
	virtual function.
	(fm_directory_view_real_supports_zooming): New function,
	returns TRUE.

	* src/file-manager/fm-icon-view.c:
	(fm_icon_view_create_background_context_menu_items):
	Remove "Icon Captions..." item per bug 1794

	* src/file-manager/fm-desktop-icon-view.c:
	(fm_desktop_icon_view_create_background_context_menu_zoom_items),
	(fm_desktop_icon_view_create_background_context_menu_background_items),
	(bump_zoom_level), (zoom_to_level), (restore_default_zoom_level),
	(can_zoom_in), (can_zoom_out): Removed these functions due to
	reworking the responsibilities of super- and subclass.
	(real_supports_zooming): New function, returns FALSE.	
	(fm_desktop_icon_view_initialize_class): Remove overrides of various
	functions; add override for supports_zooming.
	(new_folder_menu_item_callback): Removed this now that it inherits
	New Folder from parent.
	(fm_desktop_icon_view_create_background_context_menu_items):
	Cleaned this up to start with inherited and make modifications
	as necessary rather than reimplementing the whole thing.

2000-09-05  Robey Pointer  <robey@eazel.com>

	* components/services/install/lib/eazel-install-protocols.c:
	(eazel_install_fetch_package):
	* components/services/install/lib/eazel-install-rpm-glue.c:
	(eazel_install_download_packages):
	* components/services/install/nautilus-view/nautilus-service-instal
	l-view.c: (nautilus_service_install_downloading):
	* components/services/install/server/main.c:
	(trilobite_service_factory_destroy), (main):

	Fix small bug in eazel-install (don't set the downloaded flag if
	the rpm didn't get downloaded); correct FIXME comment; clean up
	install main to have the right log domain and remove unused code.

2000-09-05  Michael Engber  <engber@eazel.com>
	
	We now update the gnome_config settings that store the list
	of background images that populate the background capplet's
	popup menu. bug 2343.

	* libnautilus-extensions/nautilus-directory-background.c:
	(nautilus_directory_background_write_desktop_settings):

2000-09-05  Mathieu Lacage  <mathieu@eazel.com>

	* components/tree/nautilus-tree-view.c: implement task bugzilla.eazel.com
	2416

2000-09-05  Andy Hertzfeld  <andy@eazel.com>

	fixed bug 2610, can't delete duplicate colors from property browser.
	Also, made property browser use anti-aliased item labels
		
	* src/nautilus-property-browser.c: (remove_color),
	(add_new_button_callback), (remove_button_callback),
	(element_clicked_callback), (make_properties_from_directories):
	fixed bug by checking for delete property when finding item to delete;
	also, set up nautilus_buffered_widget properities for labels
	* src/nautilus-search-bar-criterion.c: (make_emblem_value_menu):
	made it use nautilus_label routines to access returned label text	
	* libnautilus-extensions/nautilus-customization-data.h:
	changed type of label returned from GtkLabel to GtkWidget
	* libnautilus-extensions/nautilus-customization-data.c:
	(nautilus_customization_data_get_next_element_for_display):
	return a nautilus_label instead of a gtk_label
	
2000-09-05  Mathieu Lacage  <mathieu@eazel.com>

	* components/tree/nautilus-tree-view.c:
	(nautilus_tree_view_insert_model_node): add some dnd UI nicety.
	GtkCTreeNode now hold a pointer to their NautilusTreeNode instead 
	of their char *uri.
	
	* libnautilus-extensions/nautilus-search-uri.c:
	(nautilus_self_check_search_uri): fix tests after rebecka 
	second break of them :)

2000-09-05  Darin Adler  <darin@eazel.com>

	* check-FIXME.pl: Removed some special-case file names
	that aren't needed any more.
	
	* libnautilus-extensions/nautilus-file-operations.c:
	(get_link_name): Added comments to help localizers.
	* libnautilus-extensions/nautilus-file.c:
	(nautilus_file_get_date_as_string): Added comments to help
	localizers. Deals with bug 2720 (Please add a comment to help
	localizers do date translations)
	* libnautilus-extensions/nautilus-icon-canvas-item.c:
	(draw_or_measure_label_text): Added a comment to help localizers.
	* src/file-manager/fm-directory-view.c:
	(fm_directory_view_display_selection_info): Unmarked one string
	that doesn't make sense to translate and adding a comment to
	another to explain why it is marked for translation.
	(add_separator): Changed add_open_with_gtk_menu_item into this
	function, which deals with bug 2735 (add_open_with_gtk_menu_item
	only called to create separator?).
	(create_open_with_gtk_menu): Call the new add_separator function.
	* src/nautilus-zoom-control.c: (create_zoom_menu_item): Added a
	comment to help localizers.
	
	* libnautilus-extensions/nautilus-link.c: (make_local_path): Fixed
	logic here that was doing strange things with URIs.  This deals
	with bugs 2492 (Incorrect unescaping when dealing with link
	files), 2493 (Mysterious and probably incorrect "+7" when escaping
	URI for link file), and 2737 (link code must make path into URI).
	
	* libnautilus-extensions/nautilus-search-bar-criterion.c:
	* libnautilus-extensions/nautilus-search-bar-criterion.h:
	* po/POTFILES.in:
	Removed these duplicate files. Rebecca moved them to src, but she
	didn't remove the old ones. I didn't have to remove them from the
	makefile, since they were already removed, but I had to remove
	them from the list of files to translate.
	
	* src/nautilus-search-bar-criterion.h:
	* libnautilus-extensions/nautilus-search-uri.h:
	Moved some of the stuff from nautilus-search-bar-criterion.h to
	here, since it's really about search URIs, not specific to the
	search bar. Over time we will move more.
	
	* src/nautilus-search-bar-criterion.c: Added include of the
	nautilus-search-uri.h header now that stuff was moved there.
	
	* src/file-manager/fm-search-list-view.c:
	Fixed includes to get the nautilus-search-bar-criterion.h from its
	new location. This is not a real solution to the problem that was
	exposed by moving the search bar code. The bug 2815 covers this.
	* src/nautilus-complex-search-bar.c: Fix search bar so it gets
	the real location of the header. It was including the old one.
	* src/nautilus-simple-search-bar.c: Fix search bar so it gets
	the real location of the header. It was including the old one.

	* src/nautilus-main.c: (main): Some small cleanups including some
	additional parameter checking and returning a failure code to
	the invoking shell in the case where the parameters are not
	consistent.
	
2000-09-05  Pavel Cisler  <pavel@eazel.com>

	* configure.in:
	Remove the -Wuninitialized to unbreak the build.
	(It should be part of -Wall so it's probably not needed anyhow).

2000-09-05  Pavel Cisler  <pavel@eazel.com>

	* components/help/converters/gnome-db2html2/gdb3html.c:
	(xml_parse_document):
	* components/help/hyperbola-nav-index.c: (end_element):
	* components/services/summary/nautilus-view/nautilus-summary-view.c
	: (logout_button_cb):
	* components/services/time/service/trilobite-eazel-time-service.c:
	(trilobite_eazel_time_service_do_http_request):
	* components/tree/nautilus-tree-view.c:
	* configure.in:
	* libnautilus-extensions/bonobo-stream-vfs.c:
	(bonobo_stream_vfs_open):
	* libnautilus-extensions/nautilus-background.c:
	(nautilus_background_draw), (nautilus_background_draw_aa):
	* libnautilus-extensions/nautilus-customization-data.c:
	(nautilus_customization_data_new):
	* libnautilus-extensions/nautilus-directory-background.c:
	(nautilus_directory_background_write_desktop_settings):
	* libnautilus-extensions/nautilus-file-operations.c:
	(nautilus_file_operations_move_to_trash), (do_empty_trash):
	* libnautilus-extensions/nautilus-file.c: (nautilus_file_dump):
	* libnautilus-extensions/nautilus-icon-canvas-item.c:
	(draw_or_measure_label_text), (emblem_layout_next):
	* libnautilus-extensions/nautilus-icon-factory.c:
	(get_image_from_cache):
	* libnautilus-extensions/nautilus-icon-text-item.c:
	(iti_paint_text):
	* libnautilus-extensions/nautilus-list.c: (draw_cell), (draw_row):
	* libnautilus-extensions/nautilus-mime-actions.c:
	(nautilus_mime_add_application_to_short_list_for_uri):
	* libnautilus-extensions/nautilus-program-chooser.c:
	(program_file_pair_get_short_status_text),
	(program_file_pair_get_long_status_text):
	* libnautilus-extensions/nautilus-program-choosing.c:
	(nautilus_choose_component_for_file),
	(nautilus_choose_application_for_file):
	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_scalable_font_draw_text_lines_with_dimensions):
	* libnautilus-extensions/nautilus-theme.c:
	(nautilus_theme_make_selector):
	* librsvg/rsvg-ft.c: (rsvg_ft_get_glyph):
	* librsvg/test-ft-gtk.c: (set_text):
	* librsvg/test-ft.c: (save_pixbuf_to_file_internal),
	(save_pixbuf_to_file):
	* librsvg/test-rsvg.c: (save_pixbuf_to_file_internal),
	(save_pixbuf_to_file):
	* src/file-manager/fm-directory-view.c: (display_pending_files),
	(compute_menu_item_info):
	* src/file-manager/fm-icon-view.c: (compute_menu_item_info):
	* src/file-manager/fm-list-view.c: (get_column_from_attribute):
	* src/nautilus-application.c: (nautilus_application_startup):
	* src/nautilus-search-bar-criterion.c:
	(nautilus_search_bar_criterion_next_new),
	(nautilus_search_bar_criterion_get_location),
	(get_date_modified_location_for):
	* src/nautilus-sidebar-tabs.c: (draw_one_tab_themed),
	(draw_or_layout_all_tabs):
	* src/nautilus-toolbar.c: (nautilus_toolbar_size_allocate):
	* src/nautilus-window-manage-views.c:
	(nautilus_window_get_current_location_title):
	* test/test-nautilus-label.c: (justification_changed_callback):

	Fix all the warnings -Wuninitialized found.
	Quite a number of them were actual bugs.
	Turn on -Wuninitialized in configure.in now that ORBit generates 
	warning-free code.
	
2000-09-05  John Sullivan  <sullivan@eazel.com>

	Fixed bug 1247 ("Edit Novice Settings" menu item
	needs to be handled better)

	Now this menu item is enabled, and choosing it explains
	that you can't edited the Novice settings but offers
	to switch to Intermediate and let you edit those
	settings.

	* libnautilus-extensions/nautilus-user-level-manager.c,
	* libnautilus-extensions/nautilus-user-level-manager.h:
	Made the #defines for the user level ints public, so
	code elsewhere could use them rather than hardwiring
	a bunch of 0s, 1s, and 2s.

	* libnautilus-extensions/nautilus-caption-table.h:
	* libnautilus-extensions/nautilus-caption.h:
	* libnautilus-extensions/nautilus-font-picker.h:
	* libnautilus-extensions/nautilus-global-preferences.h:
	* libnautilus-extensions/nautilus-password-dialog.h:
	* libnautilus-extensions/nautilus-preference.h:
	* libnautilus-extensions/nautilus-preferences-box.h:
	* libnautilus-extensions/nautilus-preferences-dialog.h:
	* libnautilus-extensions/nautilus-preferences-group.h:
	* libnautilus-extensions/nautilus-preferences-item.h:
	* libnautilus-extensions/nautilus-preferences-pane.h:
	* libnautilus-extensions/nautilus-preferences-private.h:
	* libnautilus-extensions/nautilus-preferences.h:
	* libnautilus-extensions/nautilus-radio-button-group.h:
	* libnautilus-extensions/nautilus-string-picker.h:
	* libnautilus-extensions/nautilus-text-caption.h:
	Changed the closing BEGIN_GNOME_DECLS in these header files
	to END_GNOME_DECLS.
	
	* src/nautilus-window-menus.c:
	(get_user_level_string_for_display): New function, extracted
	from get_customize_user_level_string. Returns the user level
	string to be put into user messages or menu item names.
	(get_customize_user_level_string): Now calls 
	get_user_level_string_for_display
	(switch_and_show_intermediate_settings_callback): New function,
	switches to intermediate level and displays the user level
	settings dialog.
	(user_level_customize_callback): If the current user level is
	NAUTILUS_USER_LEVEL_NOVICE, puts up a dialog telling the user
	that the Novice settings can't be changed, and asking them if
	they want to switch to Intermediate and edit those settings.
	(get_user_level_image), (user_level_changed_callback),
	(nautilus_window_initialize_menus), 
	(convert_menu_path_to_user_level),
	(convert_user_level_to_menu_path): 
	Use #defines for user levels instead of hardwiring integers.
	(switch_to_user_level): New function, extracted from
	user_level_menu_item_callback. Switches to a specified user
	level and updates menu items & title image appropriately.
	(user_level_menu_item_callback): Now calls switch_to_user_level.
	(update_user_level_menu_items): Don't desensitize the Edit 
	Settings item at Novice user level anymore.

2000-09-05  Andy Hertzfeld  <andy@eazel.com>

	* src/nautilus-shell.c: (display_caveat):
	Now that Ramiro fixed the problems in NautilusLabel,
	made the caveat dialog use anti-aliased text

2000-09-05  Gene Z. Ragan  <gzr@eazel.com>

	* libnautilus-extensions/nautilus-link.c:
	(nautilus_link_get_image_uri):
	Added a check for a NULL image tag returned
	by am XML property retrieval.

2000-09-05  Pavel Cisler  <pavel@eazel.com>

	* libnautilus-extensions/nautilus-directory.c:
	(nautilus_direcotry_copy_move_metadata_key),
	(nautilus_directory_copy_metadata_key),
	(nautilus_directory_move_metadata_key),
	(nautilus_directory_move_metadata),
	(nautilus_directory_copy_metadata),
	(nautilus_directory_schedule_metadata_copy),
	(nautilus_directory_schedule_metadata_move):
	Work on metadata copying.
	For now hardcode the metadata keys that get copied.
	Metadata move does not remove old metadata in source location yet.

2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-icon-factory.c: (embed_text):
	Fix a bug I just introduced drawing embedded text in the non
	smooth case.  We need to make sure the pixbuf we feed to the text
	rendering code has an alpha channel.
	
2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	More work on task 1588.

	* libnautilus-extensions/nautilus-icon-factory.c: (embed_text):
	Use NautilusScalableFont to render embedded text.
	
2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_scalable_font_draw_text_lines):
	Add a FIXME for a performance issue.
	
2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-label.c: (render_buffer_pixbuf):
	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_scalable_font_draw_text_lines_with_dimensions),
	(nautilus_scalable_font_draw_text_lines):
	* libnautilus-extensions/nautilus-scalable-font.h:
	Simpify the text line drawing function to not reuqire passing in
	the number of lines or their dimensions.  Compute these when
	needed.  An alternate function that accepts the dimensions is
	available as well.

	* test/test-nautilus-font.c: (main):
	Draw both text lines and single line clipped text to test more
	stuff.
	
2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	Complete task 1733 - need mozilla component support for grokking
	eazel: uris.

	* components/mozilla/nautilus-mozilla-content-view.c:
	(nautilus_mozilla_content_view_initialize),
	(nautilus_mozilla_content_view_destroy), (bonobo_mozilla_callback),
	(mozilla_net_state_callback), (mozilla_open_uri_callback),
	(mozilla_dom_mouse_click_callback):
	For mozilla M17, add support for registering the eazel protocol
	handler.  For mozilla M18, add support for peeking dom events -
	this is the preffered way to deal with these special uris, however
	we cant turn this on until mozilla M18 is released.

2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	* components/mozilla/eazel-protocol-handler/eazel-protocol-channel.cpp:
	Damn, some of this code only builds with mozilla M18.  Updating
	for that.
	
2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	More work on task 1733.

	* components/mozilla/eazel-protocol-handler/.cvsignore:
	* components/mozilla/eazel-protocol-handler/Makefile.am:
	* components/mozilla/eazel-protocol-handler/eazel-protocol-channel.cpp:
	* components/mozilla/eazel-protocol-handler/eazel-protocol-channel.h:
	* components/mozilla/eazel-protocol-handler/eazel-protocol-handler.cpp:
	* components/mozilla/eazel-protocol-handler/eazel-protocol-handler.h:
	* components/mozilla/eazel-protocol-handler/eazel-protocol-module.cpp:
	New files.  A mozilla XPCOM component to grok eazel: protocol uris.
	
	* components/mozilla/Makefile.am:
	Build the eazel-protocol-handler
	
	* configure.in:
	Build the eazel-protocol-handler

2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	* components/tree/.cvsignore:
	Ignore generated files.
	
2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	More work on task 1588.

	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_scalable_font_draw_text),
	(nautilus_scalable_font_measure_text_lines),
	(nautilus_scalable_font_draw_text_lines):
	* libnautilus-extensions/nautilus-scalable-font.h:
	Change text rendering api to take in x,y coordinates along with a
	clip_area.  

	Remove some #if 0 code i left in before.

	Also change the text lines rendering api to optionally do its own
	line measuring - for the convenience of the caller.
	
	* libnautilus-extensions/nautilus-label.c: (render_buffer_pixbuf):
	Update for text rendering changes.
	Fix the justification bug.
	Fix the multiple newlines bug.
	
	* src/nautilus-about.c: (draw_aa_string):
	Update for text rendering changes.
	
	* src/nautilus-sidebar-tabs.c: (draw_one_tab_plain),
	(draw_one_tab_themed):
	Update for text rendering changes.

	* test/test-nautilus-font.c: (main):
	Update for text rendering changes.
	Also add multiple new lines test and clipping test.
	
	* test/test-nautilus-label.c: (main):
	Update for text rendering changes.

2000-09-05  Ramiro Estrugo  <ramiro@eazel.com>

	* librsvg/rsvg-ft.c: (rsvg_ft_render_string):
	Add a band aid fix for the unknown character problem when trying
	to index glyphs from a font face.  I filed a bug for this issue:
	2775.
	
2000-09-04  Maciej Stachowiak  <mjs@eazel.com>

	* src/nautilus-window-manage-views.c
	(nautilus_window_update_view): Fix bug 2462 by causing a NULL
	selection to be interpreted as no selection, rather than an empty
	selection.

2000-09-05  Andy Hertzfeld  <andy@eazel.com>

	* src/nautilus-theme-selector.c:
	(nautilus_theme_selector_initialize), (add_theme_to_icons),
	(dialog_destroy), (add_new_theme_button_callback):
	implement the "add new theme" command by invoking a file dialog;
	this still isn't finished yet.
	
2000-09-04  Ramiro Estrugo  <ramiro@eazel.com>

	Work on task 1588.

	* configure.in:
	* data/Makefile.am:
	* data/fonts/.cvsignore:
	* data/fonts/Makefile.am:
	* data/fonts/urw/.cvsignore:
	* data/fonts/urw/Makefile.am:
	* data/fonts/urw/README:
	* data/fonts/urw/fonts.dir:
	Add a fallback font in case no Type1 fonts are found in the
	system.  This font was plucked from the ghostscript-fonts-5.10a
	package. See data/fonts/urw/README for more info.
	
2000-09-04  Andy Hertzfeld  <andy@eazel.com>

	* icons/Makefile.am:
	* icons/i-web-72.png:
	added a new icon for generic http documents, which is just a
	placeholder.
	* libnautilus-extensions/nautilus-icon-factory.c:
	(nautilus_icon_factory_get_icon_name_for_regular_file):
	made it use a distinct icon for generic documents if the protocol
	associated with the file is "http", so the sidebar can have a decent
	icon when displaying websites.  The current icon is just a placeholder.
	
2000-09-04  Ramiro Estrugo  <ramiro@eazel.com>

	Work on task 1733.

	* configure.in:
	Add macros for only xpcom and nspr libs (for components)
	Add check for mozilla M18 - evil in its purest form.
	
2000-09-04  Ramiro Estrugo  <ramiro@eazel.com>

	Work on task 1733.

	* components/mozilla/mozilla-components.cpp:
	Quiet down the debug noise.

	* components/mozilla/mozilla-events.cpp:
	* components/mozilla/mozilla-events.h:
	A new wrapper for grokking mozilla dom events.

	* components/mozilla/Makefile.am:
	Build the events code.
	
2000-09-04  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-buffered-widget.c:
	(create_background_pixbuf_from_ancestor):
	Remove an assertion that is not needed.
	
2000-09-04  Ramiro Estrugo  <ramiro@eazel.com>

	Work on task 1588.
	
	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_scalable_font_measure_text),
	(nautilus_scalable_font_draw_text),
	(nautilus_scalable_font_measure_text_lines),
	(nautilus_scalable_font_draw_text_lines),
	(nautilus_scalable_font_measure_text_lines),
	(nautilus_scalable_font_draw_text_lines),
	(nautilus_scalable_font_largest_fitting_font_size):
	* libnautilus-extensions/nautilus-scalable-font.h:
	Change api to accept a string with embedded new lines instead of
	an array of strings.  This simplifies many things.
	
	* libnautilus-extensions/nautilus-label.c:
	(nautilus_label_initialize), (nautilus_label_destroy),
	(render_buffer_pixbuf), (label_recompute_line_geometries):
	Update for NautilusScalalbleFont api changes.  No longer need to
	tokenize the text string.  we can feed the string to the rendering
	api as is.
	
	* librsvg/rsvg-ft.c: (rsvg_ft_render_string):
	* librsvg/rsvg-ft.h:
	Change the string to glyph rendering api to accept the string
	length rather than computing it.  This makes it possible to feed
	it arbitrary lengths.
	
	* librsvg/rsvg.c: (rsvg_text_handler_characters):
	* librsvg/test-ft-gtk.c: (draw_line):
	* librsvg/test-ft.c: (main):
	Update for api changes.
	
	* src/nautilus-about.c: (draw_aa_string):
	* src/nautilus-sidebar-tabs.c: (draw_one_tab_plain),
	(draw_one_tab_themed), (get_tab_width):
	* test/test-nautilus-font.c: (main):
	Update test to use text lines drawing api.
	
	* test/test-nautilus-label.c:
	(alpha_background_color_value_changed_callback), (main):
	Update test for 2 new lines in a row.

2000-09-04  Ramiro Estrugo  <ramiro@eazel.com>

	* libnautilus-extensions/nautilus-string-list.c:
	(nautilus_self_check_string_list):
	Make the tokens test a little better.

2000-09-04  Maciej Stachowiak  <mjs@eazel.com>

	* configure.in: Set shared library tree view as default,
	completing task 1647.

2000-09-04  Maciej Stachowiak  <mjs@eazel.com>

	* components/tree/nautilus-tree-model.c:
	(nautilus_tree_model_initialize), (nautilus_tree_model_destroy),
	(nautilus_tree_model_for_each_postorder),
	(nautilus_tree_model_monitor_remove),
	(nautilus_tree_model_get_node), (report_node_added),
	(report_node_changed), (report_node_removed_internal),
	(nautilus_tree_model_directory_files_changed_callback):
	* components/tree/nautilus-tree-node-private.h:
	* components/tree/nautilus-tree-node.c:
	(nautilus_tree_node_destroy), (nautilus_tree_node_new),
	(nautilus_tree_node_get_uri):
	* components/tree/nautilus-tree-node.h:
	* components/tree/nautilus-tree-view.c:
	(nautilus_tree_view_insert_model_node):

	Architecture changes to properly handle the case where a
	NautilusFile object changes name or location. In brief, the tree
	model keeps a hash keyed on NautilusFiles instead of on uris, and
	tries to remember the URI of a node to detect when the URI
	changes. When the URI changes, it gives a remove notification
	followed by an add notification.
	
2000-09-03  Andy Hertzfeld  <andy@eazel.com>

	made the arlo sidebar tabs use the official anti-aliased text machinery,
	instead of the scaling hack it was using.  Also, made the non-themed
	tabs use anti-aliased text.
	
	* src/nautilus-sidebar-tabs.c:
	(nautilus_sidebar_tabs_load_theme_data),
	(nautilus_sidebar_tabs_destroy), (make_colored_pixbuf),
	(draw_one_tab_plain), (draw_one_tab_themed), (get_tab_width):
	use NautilusScalableFont to render and measure the labels, for both
	types of tabs
	
Sun Sep 03 19:09:49 2000  George Lebl <jirka@5z.com>

	* src/nautilus-first-time-druid.c (nautilus_first_time_druid_show):
	  mark druid_welcome.png for translation (it contains english text)
	  and put in a comment explaining why which should appear in the
	  .po file.

2000-09-03  Maciej Stachowiak  <mjs@eazel.com>

	* components/tree/nautilus-tree-model.c
	(nautilus_tree_model_for_each_postorder): Some optional debugging
	statements.
	(nautilus_tree_model_monitor_remove): Also unmonitor any nodes
	that might be monitored by this client.

	* components/tree/nautilus-tree-view.c
	(nautilus_tree_view_destroy): Stop monitoring the model

2000-09-03  Ali Abdin  <aliabdin@aucegypt.edu>

        I now consider navigation links to be 'done' (Fixes bug #2201)

        * components/help/converters/gnome-db2html2/gdb3html.c:
        (parse_file): Renamed a variable. Updated the call to sect_footer.
        Cleaned up in a couple misc. spots
        (sect_footer): Renamed the variables to be more descriptive. Modified
        calls to print_footer (function changed + we now pass the full URI).
        Fixed memory leaks by actually freeing the variables.
        (print_footer): Change the function arguments to make it a 'sane'
        function. Also - just print what we recieve.

        * components/help/converters/gnome-db2html2/toc-elements.c:
        (toc_title_start_element),
        (toc_title_end_element):
        Disable the links to sect2/sect3/sect4/sect5 tags as they already get
        'included' with the sect1 tags.

        Ideally we should create anchor tags in the sect1 'pages' and use that
        instead, but this will not work due to mozilla issues

2000-09-03  Maciej Stachowiak  <mjs@eazel.com>

	* components/services/install/lib/eazel-install-protocols.c:
	(eazel_install_fetch_package):
	* components/services/login/nautilus-view/nautilus-login-view.c:
	(nautilus_login_view_initialize):
	* components/services/summary/nautilus-view/nautilus-summary-view.c
	: (authn_cb_succeeded), (authn_cb_failed), (login_button_cb),
	(nautilus_summary_view_initialize):
	* components/tree/libmain.c: (tree_shlib_object_destroyed):
	* components/tree/nautilus-tree-view.c:
	* libnautilus-extensions/nautilus-link.c: (make_local_path):
	* libnautilus-extensions/nautilus-search-bar-criterion.c:
	(make_emblem_value_menu):
	* src/file-manager/fm-directory-view.c:
	(add_open_with_gtk_menu_item):
	* src/nautilus-search-bar-criterion.c: (make_emblem_value_menu),
	(emblems_changed_callback):

	Added bug numbers for FIXMEs
	
2000-09-03  Pavel Cisler  <pavel@eazel.com>

	* libnautilus-extensions/nautilus-directory-notify.h:
	* libnautilus-extensions/nautilus-directory.c:
	(nautilus_directory_schedule_metadata_copy),
	(nautilus_directory_schedule_metadata_move):
	* libnautilus-extensions/nautilus-file-changes-queue.c:
	(nautilus_file_changes_queue_schedule_metadata_copy),
	(nautilus_file_changes_queue_schedule_metadata_move),
	(nautilus_file_changes_consume_changes):
	* libnautilus-extensions/nautilus-file-changes-queue.h:
	* libnautilus-extensions/nautilus-file-operations.c:
	(progress_dialog_set_files_remaining_text),
	(handle_xfer_vfs_error), (handle_xfer_duplicate),
	(sync_xfer_callback):
	Work on task bugzilla task 330.
	Add notification hooks for metadata copying to NautilusFileChangesQueue.
	Using the new top_level_item, call the hooks from the copy engine 
	synchronous callback. 

2000-09-03  Maciej Stachowiak  <mjs@eazel.com>

	* components/tree/nautilus-tree-view.c: (insert_hack_node,
	remove_hack_node, freeze_if_have_hack_node): Remove gratuitous
	debugging messages.

2000-09-03  Andy Hertzfeld  <andy@eazel.com>

	* components/rpmview/nautilus-rpm-verify-window.h:
	added "continue" signal
	* components/rpmview/nautilus-rpm-verify-window.c:
	(nautilus_rpm_verify_window_initialize_class),
	(continue_button_callback), (cancel_button_callback),
	(nautilus_rpm_verify_window_initialize),
	(nautilus_rpm_verify_window_set_error_mode):
	implemented verify error presentation, by adding a continue and cancel button,
	with a method to show them, and a signal to resume verification after errors
	
	* components/rpmview/nautilus-rpm-view.c:
	(nautilus_rpm_view_verify_files),
	(nautilus_rpm_view_verify_package_callback),
	(rpm_view_continue_verify):
	connect to the "continue" signal and resume verification; remember where we
	left off in an instance variable.  We still need more descriptive messages.
	
2000-09-02  Andy Hertzfeld  <andy@eazel.com>

	* components/rpmview/Makefile.am:
	* components/rpmview/nautilus-rpm-verify-window.c,h:
	(nautilus_rpm_verify_window_initialize_class),
	(nautilus_rpm_verify_window_destroy),
	(nautilus_rpm_verify_window_initialize),
	(nautilus_rpm_verify_window_new),
	(nautilus_rpm_verify_window_set_message):
	added verify window class to give feedback during the verify operation
	* components/rpmview/nautilus-rpm-view.c:
	(nautilus_rpm_view_destroy), (nautilus_rpm_view_update_from_uri),
	(nautilus_rpm_view_verify_package_callback):
	made the verify command work, but it's still needs to handle verification errors
	made the file list work correctly with rpmlib version >= 3.0
	
	* src/nautilus-about.c: (nautilus_about_draw_info):
	at Arlo's request, made the comment text in the about window have a white shadow
	
2000-09-02  Eskil Heyn Olsen  <eskil@eazel.com>

	* components/hardware/nautilus-hardware-view.c:
	(get_RAM_description), (get_IDE_description),
	(setup_overview_form), (setup_IDE_form),
	(nautilus_hardware_view_load_uri):
	Added Shane Butlers <sbutle@deakin.edu.au> patch for showing IDE
	devices in the hardware overview. Also fixed the size display
	problem (unsigned long overflow).
	
Sat Sep 02 02:56:48 2000  George Lebl <jirka@5z.com>

	* libnautilus-extensions/nautilus-icon-canvas-item.c (map_pixbuf),
	  libnautilus-extensions/nautilus-theme.c (load_theme_document):
	  Deal with the fact that nautilus_pixmap_file can return a NULL
	  if the file doesn't exist.

	* src/nautilus-first-time-druid.c (create_named_pixbuf),
	  (make_hbox_user_level_radio_button):
	  Deal with nautilus_pixmnap_file_returning NULL.  Also do
	  not assert out when no icon can be loaded.  Things need to
	  work/fail gracefully if icons are not installer properly instead of
	  just asserting.
	  (set_page_sidebar) (nautilus_first_time_druid_show):
	  Use the create_named_pixbuf function for loading the pixbufs

	* src/nautilus-shell.c (display_caveat):  Again deal with
	  non-existant image.  If it doesn't exist don't even create the
	  frame for the image.

2000-09-01  Eskil Heyn Olsen  <eskil@eazel.com>

	* components/services/install/lib/eazel-install-types.h:
	* components/services/install/lib/eazel-install-rpm-glue.h:
	* components/services/install/lib/eazel-install-types.c:
	(categorydata_destroy_foreach), (packagedata_new),
	(packagedata_destroy), (packagedata_remove_soft_dep):
	The packagedata_destroy_foreach has been removed,
	packagedata_destroy now takes a boolean that controls the deep
	destroy.
	
	* components/rpmview/nautilus-rpm-view.c:
	(nautilus_rpm_view_destroy), (nautilus_rpm_view_update_from_uri):
	* components/services/install/command-line/eazel-alt-install-corba.
	c: (main):
	Use the categorydata_new call
	
	* components/services/install/lib/eazel-install-corba-callback.c:
	(impl_dep_check), (impl_install_progress),
	(impl_uninstall_progress):
	Fixed to use the changed packagedata_destroy
	
	* components/services/install/lib/eazel-install-corba.c:
	(impl_Eazel_Install_simple_query):
	Call the correct query call
	
	* components/services/install/lib/eazel-install-private.h:
	Added a glist to hold downloaded packages
	
	* components/services/install/lib/eazel-install-object.c:
	(eazel_install_initialize), (eazel_install_install_packages),
	(eazel_install_uninstall_packages),
	(eazel_install_revert_transaction_from_xmlstring),
	(eazel_install_query_package_system),
	(eazel_install_emit_install_progress_default):
	Modified the deletion, so it now deletes all downloaded files (and
	only downloaded files). Also this file is now responsible for
	calling prepare_package_system.
	
	* components/services/install/lib/eazel-install-protocols.c:
	(eazel_install_fetch_file):
	Added downloaded packages to the glist in eazel_install.
	
	* components/services/install/lib/eazel-install-query.c:
	(eazel_install_simple_rpm_query), (eazel_install_simple_query):
	Removed the prepare/free_package_system calls
	
	* components/services/install/lib/eazel-install-rpm-glue.c:
	(eazel_install_flatten_categories),
	(eazel_install_download_packages),
	(eazel_install_pre_install_packages),
	(eazel_install_do_install_packages), (uninstall_all_packages),
	(ei_get_packages_with_mod_flag), (ei_check_uninst_vs_downgrade),
	(revert_transaction), (eazel_install_do_transaction_fill_hash),
	(eazel_install_do_transaction_get_total_size),
	(eazel_install_start_transaction_make_argument_list),
	(eazel_install_do_transaction_save_report_helper),
	(eazel_install_display_arguments),
	(eazel_install_start_transaction),
	(eazel_install_prune_packages_helper),
	(eazel_install_prune_packages), (eazel_install_load_rpm_headers),
	(eazel_install_free_rpm_system),
	(eazel_install_prepare_rpm_system), (eazel_install_add_to_rpm_set),
	(eazel_install_add_to_extras_foreach),
	(eazel_install_check_existing_packages),
	(eazel_install_fetch_rpm_dependencies), (print_package_list),
	(eazel_install_ensure_deps), (eazel_uninstall_upward_traverse),
	(eazel_uninstall_downward_traverse),
	(eazel_uninstall_check_for_install), (eazel_uninstall_globber):
	changed all the iterations to use g_list_next.
	Changed the packagedata_destroy calls
	Fixed the reversion
	Modified the prepare package system scheme
	
	* components/services/install/nautilus-view/nautilus-service-instal
	l-view.c: (nautilus_install_parse_uri),
	(nautilus_service_install_view_update_from_uri):
	Changed the packagedata_destroy calls.
	Used categorydata_new instead of g_new
	
	* components/services/install/nautilus-view/nautilus-service-instal
	l.c: (nautilus_service_install_view_install_package_callback),
	(nautilus_service_install_view_uninstall_package_callback):
	Used categorydata_new instead of g_new

	* nautilus-installer/src/druid-sidebar.xpm:
	Nicer ui
	
	* nautilus-installer/src/installer.c: (check_system):
	Comment to the danish dialog box...

2000-09-01  J Shane Culpepper  <pepper@eazel.com>

	* components/services/summary/nautilus-view/nautilus-summary-view.c
	: (generate_summary_form), (maintenance_button_cb),
	(community_button_cb), (register_button_cb):

	Adding missing buttons to the summary view.

2000-09-01  Robey Pointer  <robey@eazel.com>

	* components/services/login/nautilus-view/Makefile.am:
	* components/services/login/nautilus-view/nautilus-login-view.c:
	(generate_login_form), (entry_changed_cb), (authn_succeeded),
	(authn_failed), (start_login), (login_button_cb),
	(nautilus_login_view_initialize), (nautilus_login_view_destroy):

	Fix the "login view" so that it's really the change-password
	view.  Another bug (2710) has been filed on cleaning this up and
	possibly renaming it.

2000-09-01  Darin Adler  <darin@eazel.com>

	* libnautilus-extensions/nautilus-directory-private.h:
	* libnautilus-extensions/nautilus-directory-async.c:
	(nautilus_directory_is_anyone_monitoring_file_list):
	Made this function public because it's needed to get the
	assert right.
	(start_or_stop_io): Use it by the new public name.
	* libnautilus-extensions/nautilus-vfs-directory.c:
	(vfs_is_not_empty): Use the new function to get the assert
	right, which fixes bug 2706 (crash at startup with
	bookmark for nonexistent trash file).
	
	* libnautilus-extensions/nautilus-trash-directory.c:
	(remove_trash_volume): Fix a NautilusDirectory leak.

	* libnautilus-extensions/nautilus-glib-extensions.c:
	(print_key_string), (free_hash_tables_at_exit):
	Print keys before complaining about hash table so you
	see them first if you have things set to drop into
	the debugger on warnings.

2000-09-01  John Sullivan  <sullivan@eazel.com>

	Changed all nautilus dialog calls to take a window title
	(or NULL to get "Nautilus: Error" and the like). Updated 
	all callers to pass a window title.

	* libnautilus-extensions/nautilus-stock-dialogs.h,
	* libnautilus-extensions/nautilus-stock-dialogs.c:
	(show_message_box), (show_ok_box), (nautilus_info_dialog),
	(nautilus_warning_dialog), (nautilus_error_dialog),
	(nautilus_error_dialog_with_details), (nautilus_yes_no_dialog):
	Updated all public & private dialog-creating calls to take
	a dialog_title parameter.

	* components/rpmview/nautilus-rpm-view-install.c:
	(nautilus_rpm_view_install_done):
	* libnautilus-extensions/nautilus-file-operations.c:
	(confirm_empty_trash):
	* libnautilus-extensions/nautilus-program-chooser.c:
	(nautilus_program_chooser_show_no_choices_message):
	* libnautilus-extensions/nautilus-program-choosing.c:
	(nautilus_launch_application_parented):
	* src/file-manager/fm-error-reporting.c:
	(fm_report_error_renaming_file), (fm_report_error_setting_group),
	(fm_report_error_setting_owner),
	(fm_report_error_setting_permissions):
	* src/nautilus-application.c:
	(nautilus_application_check_user_directories),
	(nautilus_application_startup):
	* src/nautilus-first-time-druid.c:
	(nautilus_first_time_druid_show):
	* src/nautilus-property-browser.c: (emblem_image_file_changed),
	(add_background_to_browser):
	* src/nautilus-sidebar.c: (receive_dropped_uri_list):
	* src/nautilus-window-manage-views.c: (handle_unreadable_location),
	(report_content_view_failure_to_user),
	(report_sidebar_panel_failure_to_user),
	(nautilus_window_end_location_change_callback):
	* src/nautilus-window-menus.c: (forget_history_if_confirmed),
	(show_bogus_bookmark_window): Made up dialog titles for all
	title-less dialogs. A few were already setting titles after
	the fact, so I removed the now-extraneous set_title calls.

2000-09-01  J Shane Culpepper  <pepper@eazel.com>

	* components/services/nautilus-dependent-shared/shared-service-widg
	ets.c: (create_summary_service_title_top_widget),
	(create_summary_service_title_bottom_widget),
	(create_services_header_widget),
	(create_summary_service_large_grey_header_widget),
	(create_summary_service_small_grey_header_widget):
	* components/services/nautilus-dependent-shared/shared-service-widg
	ets.h:
	* components/services/summary/nautilus-view/nautilus-summary-view.c
	: (generate_summary_form):

	Finishing Bug #2631.  Arlo titles to all sections of the summary view.

2000-09-01  Michael Engber  <engber@eazel.com>
	
	Removed our quitting logic from nautilus-application
	(where it was tied to nautilus-window closing) and added
	a more general mechanism in main.c - by which you can
	register any gtk object to keep the main event loop
	alive while the object is around. This, in turn, fixed 
	a problem with the first-time-druid not causing nautilus
	to quit when it was cancel via the close box (bug 2211)
	and also a problem with nautilus quitting before you had
	a chance to see an error dialog (bug 1871). Also, added
	nautilus_main_event_loop_quit as the preferred way to
	cause nautilus to quit (as opposed to gtk_main_quit)

	* src/nautilus-application.c: (nautilus_application_startup),
	(nautilus_application_close_desktop),
	(nautilus_application_destroyed_window):
	* src/nautilus-application.h:
	* src/nautilus-first-time-druid.c: (druid_finished),
	(nautilus_first_time_druid_show):
	* src/nautilus-main.c: (nautilus_main_is_event_loop_needed),
	(nautilus_main_event_loop_unregister),
	(nautilus_main_event_loop_register),
	(nautilus_main_is_event_loop_mainstay),
	(nautilus_main_event_loop_quit), (main):
	* src/nautilus-main.h:
	* src/nautilus-shell.c: (corba_quit), (corba_restart):
	* src/nautilus-window-manage-views.c:
	(nautilus_window_end_location_change_callback):
	* src/nautilus-window.c: (nautilus_window_initialize):

2000-09-01  J Shane Culpepper  <pepper@eazel.com>

	* components/services/nautilus-dependent-shared/icons/Makefile.am:
	* components/services/nautilus-dependent-shared/shared-service-widg
	ets.c: (create_summary_service_title_top_widget),
	(create_summary_service_title_bottom_widget):
	* components/services/nautilus-dependent-shared/shared-service-widg
	ets.h:
	* components/services/summary/nautilus-view/nautilus-summary-view.c
	: (generate_summary_form):

	First part of the arlo titles for the summary view.

2000-09-01  Darin Adler  <darin@eazel.com>

	* libnautilus-extensions/nautilus-glib-extensions.c:
	(print_key_string), (free_hash_tables_at_exit),
	(nautilus_g_hash_table_new_free_at_exit): Added code to print out
	the keys for the hash table at exit time if it's a hash table with
	string keys. I can tell the keys are strings because the hash
	function is g_str_hash.
	
	* src/file-manager/nautilus-trash-monitor.c:
	(nautilus_trash_monitor_initialize): Used connect_while_alive
	instead of connect to get rid of some nasty problems with
	lingering signal handlers.

2000-09-01  Maciej Stachowiak  <mjs@eazel.com>

	* components/tree/libmain.c (tree_shlib_object_destroyed): Don't
	call oaf_plugin_unuse for now, it kills stuff.

	* components/tree/nautilus-tree-model.c:
	(nautilus_tree_model_destroy,
	nautilus_tree_model_for_each_postorder): Bug fixes to avoid crashing.
	
	* components/tree/nautilus-tree-view.c: (insert_hack_node,
	remove_hack_node, freeze_if_have_hack_node): Assorted fixes to
	avoid crashing or locking up when in-process.

	* configure.in: Fix configure text for in-proc tree view.

2000-09-01  John Sullivan  <sullivan@eazel.com>

	Fixed bug 1476 (Using bogus local bookmark should update
	its icon). The specific bug led me to changing some of
	the internals of NautilusBookmark in a way that has nice
	UI consequences. Now if you use Nautilus to move a bookmarked
	file, the bookmark will continue to find the moved file, and
	if you delete a file, the bookmark's icon will change to the
	"missing location" icon.

	* libnautilus-extensions/nautilus-bookmark.c:
	(nautilus_bookmark_disconnect_file),
	(nautilus_bookmark_connect_file): New helper functions that
	handle wiring or unwiring the connection between a bookmark
	and its NautilusFile.
	(nautilus_bookmark_destroy): Use nautilus_bookmark_disconnect_file.
	(nautilus_bookmark_new_with_icon): Use nautilus_bookmark_connect_file.
	(bookmark_file_changed_callback): Notice changes in the file's URI
	and update the bookmark to use the new URI; notice when the file
	is gone and disconnect/reconnect to file.

	Miscellaneous tweaks:
	
	* src/file-manager/fm-search-list-view.c:
	(compute_reveal_item_name_and_sensitivity): At the suggestion of
	a localizer (menthos), added explanatory comments before the use
	of "Reveal in New Window" and "Reveal in <n> New Windows". It turns
	out that a comment just before a translatable text string will
	appear in the .pot files that localizers use.
	* src/nautilus-first-time-druid.c: (set_up_user_level_page):
	Fixed two misspellings of "technical" and one missing period. Thanks
	to menthos for pointing these out.
	* src/nautilus-window-menus.c: 
	(show_bogus_bookmark_window): Use nautilus_format_uri_for_display
	for bookmark uris shown in user messages. Simplify the message you
	get if you choose a known-bogus URI from the Go menu.

2000-09-01  Gene Z. Ragan  <gzr@eazel.com>

	Fixed bug 2491, remove GtkHtml web browser from build.
	
	* components/Makefile.am:
	Removed the http component
	
2000-09-01  Ali Abdin  <aliabdin@aucegypt.edu>

        * components/help/converters/gnome-db2html2/sect-elements.c:
        Ooops - Make the QUOTE tag actually print the characters out

2000-09-01  Maciej Stachowiak  <mjs@eazel.com>

	* components/tree/nautilus-tree-model.c:
	(nautilus_tree_model_destroy, nautilus_tree_model_unref_callback,
	nautilus_tree_model_for_each_postorder, remove_all_nodes,
	report_node_removed_internal, report_node_removed): Clean up all
	the nodes when destroying the model.
	
	* components/tree/nautilus-tree-view.c: Unref the model when
	destroying the view.

	* components/tree/nautilus-tree-node-private.h,
	components/tree/nautilus-tree-node.c:
	(nautilus_tree_node_remove_from_parent): Renamed from
	`nautilus_tree_remove_from_parent'

2000-09-01  Pavel Cisler  <pavel@eazel.com>

	Fix bugzilla 2186 - Move/Copy/Make-Link for times from multiple directories
	fails. Still needs more testing.
	Reworked file operations to match new gnome_vfs_xfer... APIs that now take
	lists of URIs for copy source and destination.

	* components/services/install/lib/eazel-install-protocols.c:
	(gnome_vfs_fetch_remote_file):
	Update to use new API. 
	
	* libnautilus-extensions/nautilus-file-operations.c:
	(check_target_directory_is_or_in_trash),
	(new_uri_from_escaped_string), (append_basename_unescaped),
	(nautilus_file_operations_copy_move),
	(nautilus_file_operations_new_folder),
	(nautilus_file_operations_move_to_trash),
	(nautilus_file_operations_delete), (do_empty_trash):
	Reworked to use new APIs.
	Eliminated FIXME 1107.
	Updated find_directory calls to use proper "create if needed" flags.
	
	* libnautilus-extensions/nautilus-file-utilities.c:
	(nautilus_get_user_main_directory):
	* libnautilus-extensions/nautilus-file.c: (nautilus_file_rename):
	Updated to use new APIs.

2000-09-01  Eskil Heyn Olsen  <eskil@eazel.com>

	* components/rpmview/nautilus-rpm-view-install.c:
	(nautilus_rpm_view_download_progress_signal),
	(nautilus_rpm_view_install_progress_signal),
	(nautilus_rpm_view_download_failed), 
	Emits load_underway signals, although they do not seem to start
	the spinner.
	(get_detailed_errors_foreach),
	(get_detailed_errors), 
	(nautilus_rpm_view_install_failed),
	Generates contents for the dialog box showed when the operation
	failed.
	(nautilus_rpm_view_dependency_check),
	(nautilus_rpm_view_install_done), 
	If failed, show a box to the user
	(nautilus_service_need_password),
	(nautilus_service_try_again), 
	(set_root_client), 
	Added Robeys password dialog stuff
	(delete_files),
	emits a FALSE when asked to delete files.	
	(nautilus_rpm_view_install_package_callback),
	(nautilus_rpm_view_uninstall_package_callback):
	Still defaults to testmachine.eazel.com (bad, but landa.eazel.com
	seems to be down). Sets up the password query thing.
	
	* components/rpmview/nautilus-rpm-view.c:
	(nautilus_rpm_view_initialize), 
	(nautilus_rpm_view_destroy),
	(check_installed):
	Fixed the nautilus_label problem by ifdeffing it to use gtk_label
	for the strings that will most likely contain \n\n
	
	* components/rpmview/nautilus-rpm-view.h:
	Added some calls to get div fields from details.
	
	* components/services/install/command-line/eazel-alt-install-corba.
	c: (set_parameters_from_command_line):
	Fixed the --root handling of dirs.
	
	* components/services/install/lib/eazel-install-protocols.c:
	Now set to use the old CGI stuff while landa doesn't serve me my
	rpm's..
	
	* components/services/install/lib/eazel-install-rpm-glue.c:
	(eazel_install_prune_packages_helper),
	Added some debug output
	(eazel_install_package_name_compare):
	Removed some debug output
	
	* components/services/install/lib/eazel-install-types.c:
	(packagedata_destroy_foreach), (packagedata_destroy),
	free the pack structure itself
	(packagedata_remove_soft_dep):
	paranoia check
	
	* components/services/trilobite/libtrilobite/trilobite-root-client-
	public.h:
	Changed the include to use "'s instead of <'s. 
	
	* nautilus-installer/src/Makefile:
	* nautilus-installer/src/installer.c: (create_pixmap),
	(create_what_to_do_page), (create_install_page),
	(create_finish_page_good), (create_finish_page_evil),
	(create_window), (create_info_druid_page):
	Better image loading for the static installer.

2000-09-01  J Shane Culpepper  <pepper@eazel.com>

	* components/services/nautilus-dependent-shared/icons/Makefile.am:
	Forgot to update the Makefile.am for the new icons.

2000-09-01  J Shane Culpepper  <pepper@eazel.com>

	* components/services/summary/nautilus-view/nautilus-summary-view.c
	: (generate_summary_form):

	Minor ui fixes to prepare adding the arlo title widgets.  Adding
	several images as well.

2000-09-01  Andy Hertzfeld  <andy@eazel.com>

	* components/rpmview/nautilus-rpm-view.c:
	(nautilus_rpm_view_initialize), (check_installed),
	(nautilus_rpm_view_update_from_uri):
	removed anti-aliased text from rpm_view, since it was causing
	too many problems; displayed icon contained in package header, or
	a generic package icon if there isn't one; gather and display
	package install time correctly.
	
2000-08-31  Maciej Stachowiak  <mjs@eazel.com>

	* ChangeLog: rolled over to ChangeLog-20000831.