File: icon-naming-spec.xml

package info (click to toggle)
lazarus 0.9.28.2-12
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 93,096 kB
  • ctags: 89,312
  • sloc: pascal: 820,189; xml: 202,194; makefile: 110,323; sh: 2,460; perl: 395; sql: 174; ansic: 133
file content (2194 lines) | stat: -rw-r--r-- 54,522 bytes parent folder | download | duplicates (12)
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
<?xml version="1.0"?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" 
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
]>
<article id="index">
  <articleinfo>
    <title>Icon Naming Specification</title>
    <releaseinfo>Version 0.6</releaseinfo>
    <date>December 07 2005</date>
    <authorgroup>
      <author>
	<firstname>Rodney</firstname>
	<surname>Dawes</surname>
	<affiliation>
	  <address>
	    <email>dobey@novell.com</email>
	  </address>
	</affiliation>
      </author>
    </authorgroup>
  </articleinfo>

  <sect1 id="overview">
    <title>Overview</title>
    <para>
The Icon Theme Specification has been in use now for a while, in several
desktops, including KDE and Gnome. However, there has never been any
centralized direction on how to name the icons that are available for use
by applications, when creating a theme. This has meant that artists have
historically had to duplicate many icons, in order for their themes to
work across desktop environments.
    </para>
    <para>
This specification aims to solve this problem, by laying out a standard
naming scheme for icon creation, as well as providing a minimal list of
must have icons, and a larger list with many more examples to help with
the creation of extended icons for third party applications, devices,
and new MIME types.
    </para>
  </sect1>

  <sect1 id="context">
    <title>Context</title>

    <para>
      The list of default Contexts for the icon theme are:
    </para>

    <table>
      <title>Standard Contexts</title>

      <tgroup cols="3">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	    <entry>Directory</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>Actions</entry>
	    <entry>
Icons which are generally used in menus and dialogs for
interacting with the user.
	    </entry>
	    <entry>actions</entry>
	  </row>
	  <row>
	    <entry>Animations</entry>
	    <entry>
Animated images used to represent loading web sites, or other
background processing which may be less suited to more verbose
progress reporting in the user itnerface.
	    </entry>
	    <entry>animations</entry>
	  </row>
	  <row>
	    <entry>Applications</entry>
	    <entry>
Icons that describe what an application is, for use in the
Programs menu, window decorations, and the task list. These may
or may not be generic depending on the application and its
purpose. Applications which are to be considered part of the base desktop,
such as the calculator or terminal, should use the generic icons specified in
this specification, while more advanced applications such as web browsers and
office applications should use branded icons which still give the user an idea
of what function the application provides.
	    </entry>
	    <entry>apps</entry>
	  </row>
	  <row>
	    <entry>Categories</entry>
	    <entry>
Icons that are used for categories in the Programs menu, or
the Control Center, for separating applications, preferences, and
settings for display to the user.
	    </entry>
	    <entry>categories</entry>
	  </row>
	  <row>
	    <entry>Devices</entry>
	    <entry>
Icons for hardware that is contained within or connected to the
computing device.
	    </entry>
	    <entry>devices</entry>
	  </row>
	  <row>
	    <entry>Emblems</entry>
	    <entry>
Icons for tags and properties of files, that are displayed in the
file manager. This context contains emblems for such things as
	      <quote>read-only</quote> or <quote>photos</quote>.
	    </entry>
	    <entry>emblems</entry>
	  </row>
	  <row>
	    <entry>Emotes</entry>
	    <entry>
Icons for emotions that are expressed through text chat
applications such as :-) or :-P in IRC or instant messengers.
	    </entry>
	    <entry>emotes</entry>
	  </row>
	  <row>
	    <entry>International</entry>
	    <entry>
Icons for international denominations such as flags.
	    </entry>
	    <entry>intl</entry>
	  </row>
	  <row>
	    <entry>MimeTypes</entry>
	    <entry>
Icons for different types of data, such as audio or image files.
	    </entry>
	    <entry>mimetypes</entry>
	  </row>
	  <row>
	    <entry>Places</entry>
	    <entry>
Icons used to represent locations, either on the local
filesystem, or through remote connections. Folders, trash, and
workgroups are some examples.
	    </entry>
	    <entry>places</entry>
	  </row>
	  <row>
	    <entry>Status</entry>
	    <entry>
Icons for presenting status to the user. This context contains
icons for warning and error dialogs, as well as for the current
weather, appointment alarms, and battery status.
	    </entry>
	    <entry>status</entry>
	  </row>
	</tbody>
      </tgroup>
    </table>
  </sect1>

  <sect1 id="guidelines">
    <title>Icon Naming Guidelines</title>

    <para>
Here we define some guidelines for when creating new icons that extend
the standardized list of icon names defined here, in order to provide
icons for more specific MIME types, devices, or international flags.
      <itemizedlist>
	<listitem>
	  <para>
Icon names are in the en_US.US_ASCII locale. This means that the
allowable characters in the icon names, must fall withing the
US-ASCII character set. As a further restriction, all icon names
may only contain lowercase letters, numbers, underscore, dash, or
period characters. Spaces, colons, slashes, and backslashes are
not allowed. Also, icon names must be spelled as they are in the
en_US dictionary.
	  </para>
	</listitem>
	<listitem>
	  <para>
The dash <quote>-</quote> character is used to separate levels of
specificity in icon names, for all contexts other than MimeTypes.
For instance, we use <quote>input-mouse</quote> as the generic
item for all mouse devices, and we use <quote>input-mouse-usb</quote>
for a USB mouse device. However, if the more specific item does not exist
in the current theme, and does exist in a parent theme, the generic icon
from the current theme is preferred, in order to keep consistent style.
	  </para>
	</listitem>
        <listitem>
          <para>
Icons for branded applications should be named the same as the binary
executable for the application.
	  </para>
	</listitem>
      </itemizedlist>
    </para>
  </sect1>

  <sect1 id="names">
    <title>Standard Icon Names</title>

    <para>
This section describes the standard icon names that should be used by
artists when creating themes, and by developers when writing applications
which will use the Icon Theme Specification.
    </para>

    <table id="actions">
      <title>Standard Action Icons</title>
      <tgroup cols="2">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>address-book-new</entry>
	    <entry>
The icon used for the action to create a new address book.
	    </entry>
	  </row>
	  <row>
	    <entry>application-exit</entry>
	    <entry>
The icon used for exiting an application. Typically this is seen
in the application's menus as File-&gt;Quit.
	    </entry>
	  </row>
	  <row>
	    <entry>appointment-new</entry>
	    <entry>
The icon used for the action to create a new appointment
in a calendaring application.
	    </entry>
	  </row>
	  <row>
	    <entry>contact-new</entry>
	    <entry>
The icon used for the action to create a new contact
in an address book application.
	    </entry>
	  </row>
	  <row>
	    <entry>dialog-cancel</entry>
	    <entry>
The icon used for the <quote>Cancel</quote> button that
might appear in dialog windows.
	    </entry>
	  </row>
	  <row>
	    <entry>dialog-close</entry>
	    <entry>
The icon used for the <quote>Close</quote> button that
might appear in dialog windows.
	    </entry>
	  </row>
	  <row>
	    <entry>dialog-ok</entry>
	    <entry>
The icon used for the <quote>OK</quote> button that
might appear in dialog windows.
	    </entry>
	  </row>
	  <row>
	    <entry>document-new</entry>
	    <entry>
The icon used for the action to create a new document.
	    </entry>
	  </row>
	  <row>
	    <entry>document-open</entry>
	    <entry>
The icon used for the action to open a document.
	    </entry>
	  </row>
	  <row>
	    <entry>document-open-recent</entry>
	    <entry>
The icon used for the action to open a document that
was recently opened.
	    </entry>
	  </row>
	  <row>
	    <entry>document-page-setup</entry>
	    <entry>
The icon for the page setup action of a document editor.
	    </entry>
	  </row>
	  <row>
	    <entry>document-print</entry>
	    <entry>
The icon for the print action of an application.
	    </entry>
	  </row>
	  <row>
	    <entry>document-print-preview</entry>
	    <entry>
The icon for the print preview action of an application.
	    </entry>
	  </row>
	  <row>
	    <entry>document-properties</entry>
	    <entry>
The icon for the action to view the properties of a
document in an application.
	    </entry>
	  </row>
	  <row>
	    <entry>document-revert</entry>
	    <entry>
The icon for the action of reverting to a previous
version of a document.
	    </entry>
	  </row>
	  <row>
	    <entry>document-save</entry>
	    <entry>
The icon for the save action.
	    </entry>
	  </row>
	  <row>
	    <entry>document-save-as</entry>
	    <entry>
The icon for the save as action.
	    </entry>
	  </row>
	  <row>
	    <entry>edit-copy</entry>
	    <entry>
The icon for the copy action.
	    </entry>
	  </row>
	  <row>
	    <entry>edit-cut</entry>
	    <entry>
The icon for the cut action.
	    </entry>
	  </row>
	  <row>
	    <entry>edit-delete</entry>
	    <entry>
The icon for the delete action.
	    </entry>
	  </row>
	  <row>
	    <entry>edit-find</entry>
	    <entry>
The icon for the find action.
	    </entry>
	  </row>
	  <row>
	    <entry>edit-find-replace</entry>
	    <entry>
The icon for the find and replace action.
	    </entry>
	  </row>
	  <row>
	    <entry>edit-paste</entry>
	    <entry>
The icon for the paste action.
	    </entry>
	  </row>
	  <row>
	    <entry>edit-redo</entry>
	    <entry>
The icon for the redo action.
	    </entry>
	  </row>
	  <row>
	    <entry>edit-select-all</entry>
	    <entry>
The icon for the select all action.
	    </entry>
	  </row>
	  <row>
	    <entry>edit-undo</entry>
	    <entry>
The icon for the undo action.
	    </entry>
	  </row>
	  <row>
	    <entry>format-indent-less</entry>
	    <entry>
The icon for the decrease indent formatting action.
	    </entry>
	  </row>
	  <row>
	    <entry>format-indent-more</entry>
	    <entry>
The icon for the increase indent formatting action.
	    </entry>
	  </row>
	  <row>
	    <entry>format-justify-center</entry>
	    <entry>
The icon for the center justification formatting action.
	    </entry>
	  </row>
	  <row>
	    <entry>format-justify-fill</entry>
	    <entry>
The icon for the fill justification formatting action.
	    </entry>
	  </row>
	  <row>
	    <entry>format-justify-left</entry>
	    <entry>
The icon for the left justification formatting action.
	    </entry>
	  </row>
	  <row>
	    <entry>format-justify-right</entry>
	    <entry>
The icon for the right justification action.
	    </entry>
	  </row>
	  <row>
	    <entry>format-text-direction-ltr</entry>
	    <entry>
The icon for the left-to-right text formatting action.
	    </entry>
	  </row>
	  <row>
	    <entry>format-text-direction-rtl</entry>
	    <entry>
The icon for the right-to-left formatting action.
	    </entry>
	  </row>
	  <row>
	    <entry>format-text-bold</entry>
	    <entry>
The icon for the bold text formatting action.
	    </entry>
	  </row>
	  <row>
	    <entry>format-text-italic</entry>
	    <entry>
The icon for the italic text formatting action.
	    </entry>
	  </row>
	  <row>
	    <entry>format-text-underline</entry>
	    <entry>
The icon for the underlined text formatting action.
	    </entry>
	  </row>
	  <row>
	    <entry>format-text-strikethrough</entry>
	    <entry>
The icon for the strikethrough text formatting action.
	    </entry>
	  </row>
	  <row>
	    <entry>go-bottom</entry>
	    <entry>
The icon for the go to bottom of a list action.
	    </entry>
	  </row>
	  <row>
	    <entry>go-down</entry>
	    <entry>
The icon for the go down in a list action.
	    </entry>
	  </row>
	  <row>
	    <entry>go-first</entry>
	    <entry>
The icon for the go to the first item in a list action.
	    </entry>
	  </row>
	  <row>
	    <entry>go-home</entry>
	    <entry>
The icon for the go to home location action.
	    </entry>
	  </row>
	  <row>
	    <entry>go-jump</entry>
	    <entry>
The icon for the jump to action.
	    </entry>
	  </row>
	  <row>
	    <entry>go-last</entry>
	    <entry>
The icon for the go to the last item in a list action.
	    </entry>
	  </row>
	  <row>
	    <entry>go-next</entry>
	    <entry>
The icon for the go to the next item in a list action.
	    </entry>
	  </row>
	  <row>
	    <entry>go-previous</entry>
	    <entry>
The icon for the go to the previous item in a list action.
	    </entry>
	  </row>
	  <row>
	    <entry>go-top</entry>
	    <entry>
The icon for the go to the top of a list action.
	    </entry>
	  </row>
	  <row>
	    <entry>go-up</entry>
	    <entry>
The icon for the go up in a list action.
	    </entry>
	  </row>
	  <row>
	    <entry>help-about</entry>
	    <entry>
The icon for the About item in the Help menu.
	    </entry>
	  </row>
	  <row>
	    <entry>help-contents</entry>
	    <entry>
The icon for Contents item in the Help menu.
	    </entry>
	  </row>
	  <row>
	    <entry>help-faq</entry>
	    <entry>
The icon for the FAQ item in the Help menu.
	    </entry>
	  </row>
	  <row>
	    <entry>insert-image</entry>
	    <entry>
The icon for the insert image action of an application.
	    </entry>
	  </row>
	  <row>
	    <entry>insert-link</entry>
	    <entry>
The icon for the insert link action of an application.
	    </entry>
	  </row>
	  <row>
	    <entry>insert-object</entry>
	    <entry>
The icon for the insert object action of an application.
	    </entry>
	  </row>
	  <row>
	    <entry>insert-text</entry>
	    <entry>
The icon for the insert text action of an application.
	    </entry>
	  </row>
	  <row>
	    <entry>list-add</entry>
	    <entry>
The icon for the add to list action.
	    </entry>
	  </row>
	  <row>
	    <entry>list-remove</entry>
	    <entry>
The icon for the remove from list action.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-forward</entry>
	    <entry>
The icon for the forward action of an electronic mail application.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-mark-important</entry>
	    <entry>
The icon for the mark as important action of an electronic mail application.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-mark-junk</entry>
	    <entry>
The icon for the mark as junk action of an electronic mail application.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-mark-notjunk</entry>
	    <entry>
The icon for the mark as not junk action of an electronic mail application.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-mark-read</entry>
	    <entry>
The icon for the mark as read action of an electronic mail application.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-mark-unread</entry>
	    <entry>
The icon for the mark as unread action of an electronic mail application.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-message-new</entry>
	    <entry>
The icon for the compose new mail action of an electronic mail application.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-reply-all</entry>
	    <entry>
The icon for the reply to all action of an electronic mail application.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-reply-sender</entry>
	    <entry>
The icon for the reply to sender action of an electronic mail application.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-send-receive</entry>
	    <entry>
The icon for the send and receive action of an electronic mail application.
	    </entry>
	  </row>
	  <row>
	    <entry>media-eject</entry>
	    <entry>
The icon for the eject action of a media player or file manager.
	    </entry>
	  </row>
	  <row>
	    <entry>media-playback-pause</entry>
	    <entry>
The icon for the pause action of a media player.
	    </entry>
	  </row>
	  <row>
	    <entry>media-playback-start</entry>
	    <entry>
The icon for the start playback action of a media player.
	    </entry>
	  </row>
	  <row>
	    <entry>media-playback-stop</entry>
	    <entry>
The icon for the stop action of a media player.
	    </entry>
	  </row>
	  <row>
	    <entry>media-record</entry>
	    <entry>
The icon for the record action of a media application.
	    </entry>
	  </row>
	  <row>
	    <entry>media-seek-backward</entry>
	    <entry>
The icon for the seek backward action of a media player.
	    </entry>
	  </row>
	  <row>
	    <entry>media-seek-forward</entry>
            <entry>
The icon for the seek forward action of a media player.
	    </entry>
	  </row>
	  <row>
	    <entry>media-skip-backward</entry>
	    <entry>
The icon for the skip backward action of a media player.
	    </entry>
	  </row>
	  <row>
	    <entry>media-skip-forward</entry>
	    <entry>
The icon for the skip forward action of a media player.
	    </entry>
	  </row>
	  <row>
	    <entry>system-lock-screen</entry>
	    <entry>
The icon used for the <quote>Lock Screen</quote> item in the desktop's
panel application.
	    </entry>
	  </row>
	  <row>
	    <entry>system-log-out</entry>
	    <entry>
The icon used for the <quote>Log Out</quote> item in
the desktop's panel application.
	    </entry>
	  </row>
	  <row>
	    <entry>system-run</entry>
	    <entry>
The icon used for the <quote>Run Application...</quote> item in
the desktop's panel application.
	    </entry>
	  </row>
	  <row>
	    <entry>system-search</entry>
	    <entry>
The icon used for the <quote>Search</quote> item in
the desktop's panel application.
	    </entry>
	  </row>
	  <row>
	    <entry>tools-check-spelling</entry>
	    <entry>
The icon used for the <quote>Check Spelling</quote> item in the
application's <quote>Tools</quote> menu.
	    </entry>
	  </row>
	  <row>
	    <entry>view-fullscreen</entry>
	    <entry>
The icon used for the <quote>Fullscreen</quote> item in the
application's <quote>View</quote> menu.
	    </entry>
	  </row>
	  <row>
	    <entry>view-refresh</entry>
	    <entry>
The icon used for the <quote>Refresh</quote> item in the
application's <quote>View</quote> menu.
	    </entry>
	  </row>
	  <row>
	    <entry>view-sort-ascending</entry>
	    <entry>
The icon used for the <quote>Sort Ascending</quote> item in the
application's <quote>View</quote> menu, or in a button for
changing the sort method for a list.
	    </entry>
	  </row>
	  <row>
	    <entry>view-sort-descending</entry>
	    <entry>
The icon used for the <quote>Sort Descending</quote> item in the
application's <quote>View</quote> menu, or in a button for
changing the sort method for a list.
	    </entry>
	  </row>
	  <row>
	    <entry>window-close</entry>
	    <entry>
The icon used for the <quote>Close Window</quote> item in the
application's <quote>Windows</quote> menu.
	    </entry>
	  </row>
	  <row>
	    <entry>window-new</entry>
	    <entry>
The icon used for the <quote>New Window</quote> item in the
application's <quote>Windows</quote> menu.
	    </entry>
	  </row>
	  <row>
	    <entry>zoom-best-fit</entry>
	    <entry>
The icon used for the <quote>Best Fit</quote> item in the
application's <quote>View</quote> menu.
	    </entry>
	  </row>
	  <row>
	    <entry>zoom-in</entry>
	    <entry>
The icon used for the <quote>Zoom in</quote> item in the
application's <quote>View</quote> menu.
	    </entry>
	  </row>
	  <row>
	    <entry>zoom-original</entry>
	    <entry>
The icon used for the <quote>Original Size</quote> item in the
application's <quote>View</quote> menu.
	    </entry>
	  </row>
	  <row>
	    <entry>zoom-out</entry>
	    <entry>
The icon used for the <quote>Zoom Out</quote> item in the
application's <quote>View</quote> menu.
	    </entry>
	  </row>
	</tbody>
      </tgroup>
    </table>

    <table id="animations">
      <title>Standard Animation Icons</title>
      <tgroup cols="2">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>process-working</entry>
	    <entry>
This is the standard spinner animation for web browsers and
file managers to show that the location is loading. This image
should be a multi-frame PNG with the frames as the size that
the directory containing the image, is specified to be in. The
first frame of the animation should be used for the resting
state of the animation.
	    </entry>
	  </row>
        </tbody>
      </tgroup>
    </table>

    <table id="apps">
      <title>Standard Application Icons</title>
      <tgroup cols="2">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>accessories-calculator</entry>
	    <entry>
The icon used for the desktop's calculator accessory program.
	    </entry>
	  </row>
	  <row>
	    <entry>accessories-character-map</entry>
	    <entry>
The icon used for the desktop's international and extended text
character accessory program.
	    </entry>
	  </row>
	  <row>
	    <entry>accessories-dictionary</entry>
	    <entry>
The icon used for the desktop's dictionary accessory program.
	    </entry>
	  </row>
	  <row>
	    <entry>accessories-text-editor</entry>
	    <entry>
The icon used for the desktop's text editing accessory program.
	    </entry>
	  </row>
	  <row>
	    <entry>help-browser</entry>
	    <entry>
The icon used for the desktop's help browsing application.
	    </entry>
	  </row>
	  <row>
	    <entry>multimedia-volume-control</entry>
	    <entry>
The icon used for the desktop's hardware volume control application.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-desktop-accessibility</entry>
	    <entry>
The icon used for the desktop's accessibility preferences.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-desktop-font</entry>
	    <entry>
The icon used for the desktop's font preferences.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-desktop-keyboard</entry>
	    <entry>
The icon used for the desktop's keyboard preferences.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-desktop-locale</entry>
	    <entry>
The icon used for the desktop's locale preferences.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-desktop-multimedia</entry>
	    <entry>
The icon used for the desktop's multimedia preferences.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-desktop-screensaver</entry>
	    <entry>
The icon used for the desktop's screen saving preferences.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-desktop-theme</entry>
	    <entry>
The icon used for the desktop's theme preferences.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-desktop-wallpaper</entry>
	    <entry>
The icon used for the desktop's wallpaper preferences.
	    </entry>
	  </row>
	  <row>
	    <entry>system-file-manager</entry>
	    <entry>
The icon used for the desktop's file management application.
	    </entry>
	  </row>
	  <row>
	    <entry>system-software-update</entry>
	    <entry>
The icon used for the desktop's software updating application.
	    </entry>
	  </row>
	  <row>
	    <entry>utilities-terminal</entry>
	    <entry>
The icon used for the desktop's terminal emulation application.
	    </entry>
	  </row>
	</tbody>
      </tgroup>
    </table>

    <table id="categories">
      <title>Standard Category Icons</title>
      <tgroup cols="2">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>applications-accessories</entry>
	    <entry>
The icon for the <quote>Accessories</quote> sub-menu of the Programs menu.
	    </entry>
	  </row>
	  <row>
	    <entry>applications-development</entry>
	    <entry>
The icon for the <quote>Programming</quote> sub-menu of the Programs menu.
	    </entry>
	  </row>
	  <row>
	    <entry>applications-games</entry>
	    <entry>
The icon for the <quote>Games</quote> sub-menu of the Programs menu.
	    </entry>
	  </row>
	  <row>
	    <entry>applications-graphics</entry>
	    <entry>
The icon for the <quote>Graphics</quote> sub-menu of the Programs menu.
	    </entry>
	  </row>
	  <row>
	    <entry>applications-internet</entry>
	    <entry>
The icon for the <quote>Internet</quote> sub-menu of the Programs menu.
	    </entry>
	  </row>
	  <row>
	    <entry>applications-multimedia</entry>
	    <entry>
The icon for the <quote>Multimedia</quote> sub-menu of the Programs menu.
	    </entry>
	  </row>
	  <row>
	    <entry>applications-office</entry>
	    <entry>
The icon for the <quote>Office</quote> sub-menu of the Programs menu.
	    </entry>
	  </row>
	  <row>
	    <entry>applications-other</entry>
	    <entry>
The icon for the <quote>Other</quote> sub-menu of the Programs menu.
	    </entry>
	  </row>
	  <row>
	    <entry>applications-system</entry>
	    <entry>
The icon for the <quote>System Tools</quote> sub-menu of the Programs menu.
	    </entry>
	  </row>
	  <row>
	    <entry>applications-utilities</entry>
	    <entry>
The icon for the <quote>Utilities</quote> sub-menu of the Programs menu.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-desktop</entry>
	    <entry>
The icon for the <quote>Desktop Preferences</quote> category.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-desktop-accessibility</entry>
	    <entry>
The icon for the <quote>Accessibility</quote> sub-category of
the <quote>Desktop Preferences</quote> category.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-desktop-peripherals</entry>
	    <entry>
The icon for the <quote>Peripherals</quote> sub-category of
the <quote>Desktop Preferences</quote> category.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-desktop-personal</entry>
	    <entry>
The icon for the <quote>Personal</quote> sub-category of
the <quote>Desktop Preferences</quote> category.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-other</entry>
	    <entry>
The icon for the <quote>Other</quote> preferences category.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-system</entry>
	    <entry>
The icon for the <quote>System Preferences</quote> category.
	    </entry>
	  </row>
	  <row>
	    <entry>preferences-system-network</entry>
	    <entry>
The icon for the <quote>Network</quote> sub-category of
the <quote>System Preferences</quote> category.
	    </entry>
	  </row>
	  <row>
	    <entry>system-help</entry>
	    <entry>
The icon for the <quote>Help</quote> system category.
	    </entry>
	  </row>
	</tbody>
      </tgroup>
    </table>

    <table id="devices">
      <title>Standard Device Icons</title>
      <tgroup cols="2">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>audio-card</entry>
	    <entry>
The icon used for the audio rendering device.
	    </entry>
	  </row>
	  <row>
	    <entry>audio-input-microphone</entry>
	    <entry>
The icon used for the microphone audio input device.
	    </entry>
	  </row>
	  <row>
	    <entry>battery</entry>
	    <entry>
The icon used for the system battery device.
	    </entry>
	  </row>
	  <row>
	    <entry>camera-photo</entry>
	    <entry>
The icon used for a digital still camera devices.
	    </entry>
	  </row>
	  <row>
	    <entry>camera-video</entry>
	    <entry>
The icon used for a video or web camera.
	    </entry>
	  </row>
	  <row>
	    <entry>computer</entry>
	    <entry>
The icon used for the computing device as a whole.
	    </entry>
	  </row>
	  <row>
	    <entry>drive-cdrom</entry>
	    <entry>
The icon used for CD and DVD drives.
	    </entry>
	  </row>
	  <row>
	    <entry>drive-harddisk</entry>
	    <entry>
The icon used for hard disk drives.
	    </entry>
	  </row>
	  <row>
	    <entry>drive-removable-media</entry>
	    <entry>
The icon used for removable media drives.
	    </entry>
	  </row>
	  <row>
	    <entry>input-gaming</entry>
	    <entry>
The icon used for the gaming input device.
	    </entry>
	  </row>
	  <row>
	    <entry>input-keyboard</entry>
	    <entry>
The icon used for the keyboard input device.
	    </entry>
	  </row>
	  <row>
	    <entry>input-mouse</entry>
	    <entry>
The icon used for the mousing input device.
	    </entry>
	  </row>
	  <row>
	    <entry>media-cdrom</entry>
	    <entry>
The icon used for physical CD and DVD media.
	    </entry>
	  </row>
	  <row>
	    <entry>media-floppy</entry>
	    <entry>
The icon used for physical floppy disk media.
	    </entry>
	  </row>
	  <row>
	    <entry>multimedia-player</entry>
	    <entry>
The icon used for generic multimedia playing devices.
	    </entry>
	  </row>
	  <row>
	    <entry>network-wired</entry>
	    <entry>
The icon used for wired network connections.
	    </entry>
	  </row>
	  <row>
	    <entry>network-wireless</entry>
	    <entry>
The icon used for wireless network connections.
	    </entry>
	  </row>
	  <row>
	    <entry>printer</entry>
	    <entry>
The icon used for a printer which is connected locally.
	    </entry>
	  </row>
	  <row>
	    <entry>video-display</entry>
	    <entry>
The icon used for the monitor that video gets displayed to.
	    </entry>
	  </row>
	</tbody>
      </tgroup>
    </table>

    <table id="emblems">
      <title>Standard Emblem Icons</title>
      <tgroup cols="2">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>emblem-default</entry>
	    <entry>
The icon used as an emblem to specify the default selection of a printer for
example.
	    </entry>
	  </row>
	  <row>
	    <entry>emblem-documents</entry>
	    <entry>
The icon used as an emblem for the directory where a user's documents are stored.
	    </entry>
	  </row>
	  <row>
	    <entry>emblem-downloads</entry>
	    <entry>
The icon used as an emblem for the directory where a user's
downloads from the internet are stored.
	    </entry>
	  </row>
	  <row>
	    <entry>emblem-favorite</entry>
	    <entry>
The icon used as an emblem for files and directories that the
user marks as favorites.
	    </entry>
	  </row>
	  <row>
	    <entry>emblem-important</entry>
	    <entry>
The icon used as an emblem for files and directories that are
marked as important by the user.
	    </entry>
	  </row>
	  <row>
	    <entry>emblem-mail</entry>
	    <entry>
The icon used as an emblem to specify the directory where the
user's electronic mail is stored.
	    </entry>
	  </row>
	  <row>
	    <entry>emblem-photos</entry>
	    <entry>
The icon used as an emblem to specify the directory where the
user stores photographs.
	    </entry>
	  </row>
	  <row>
	    <entry>emblem-readonly</entry>
	    <entry>
The icon used as an emblem for files and directories which can
not be written to by the user.
	    </entry>
	  </row>
	  <row>
	    <entry>emblem-shared</entry>
	    <entry>
The icon used as an emblem for files and directories that are
shared to other users.
	    </entry>
	  </row>
	  <row>
	    <entry>emblem-symbolic-link</entry>
	    <entry>
The icon used as an emblem for files and direcotires that are
links to other files or directories on the filesystem.
	    </entry>
	  </row>
	  <row>
	    <entry>emblem-synchronized</entry>
	    <entry>
The icon used as an emblem for files or directories that are
configured to be synchronized to another device.
	    </entry>
	  </row>
	  <row>
	    <entry>emblem-system</entry>
	    <entry>
The icon used as an emblem for directories that contain system
libraries, settings, and data.
	    </entry>
	  </row>
	  <row>
	    <entry>emblem-unreadable</entry>
	    <entry>
The icon used as an emblem for files and directories that are inaccessible.
	    </entry>
	  </row>
	</tbody>
      </tgroup>
    </table>

    <table id="emotes">
      <title>Standard Emotion Icons</title>
      <tgroup cols="2">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>face-angel</entry>
	    <entry>
The icon used for the 0:-) emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-crying</entry>
	    <entry>
The icon used for the :'( emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-devil-grin</entry>
	    <entry>
The icon used for the >:-) emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-devil-sad</entry>
	    <entry>
The icon used for the >:-( emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-glasses</entry>
	    <entry>
The icon used for the B-) emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-kiss</entry>
	    <entry>
The icon used for the :-* emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-monkey</entry>
	    <entry>
The icon used for the :-(|) emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-plain</entry>
	    <entry>
The icon used for the :-| emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-sad</entry>
	    <entry>
The icon used for the :-( emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-smile</entry>
	    <entry>
The icon used for the :-) emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-smile-big</entry>
	    <entry>
The icon used for the :-D emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-smirk</entry>
	    <entry>
The icon used for the :-! emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-surprise</entry>
	    <entry>
The icon used for the :-0 emote.
	    </entry>
	  </row>
	  <row>
	    <entry>face-wink</entry>
	    <entry>
The icon used for the ;-) emote.
	    </entry>
	  </row>
	</tbody>
      </tgroup>
    </table>

    <table id="intl">
      <title>Standard International Icons</title>
      <tgroup cols="2">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>flag-aa</entry>
	    <entry>
The flag for the country with the ISO 3166 country code AA. All
flags should use ISO 3166 two-letter country codes, in lowercase
form, as the specifier for the country.
	    </entry>
	  </row>
	</tbody>
      </tgroup>
    </table>

    <table id="mimetypes">
      <title>Standard MIME Type Icons</title>
      <tgroup cols="2">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>application-x-executable</entry>
	    <entry>
The icon used for executable file types.
	    </entry>
	  </row>
	  <row>
	    <entry>audio-x-generic</entry>
	    <entry>
The icon used for generic audio file types.
	    </entry>
	  </row>
	  <row>
	    <entry>font-x-generic</entry>
	    <entry>
The icon used for generic font file types.
	    </entry>
	  </row>
	  <row>
	    <entry>image-x-generic</entry>
	    <entry>
The icon used for generic image file types.
	    </entry>
	  </row>
	  <row>
	    <entry>package-x-generic</entry>
	    <entry>
The icon used for generic package file types.
	    </entry>
	  </row>
	  <row>
	    <entry>text-html</entry>
	    <entry>
The icon used for HTML text file types.
	    </entry>
	  </row>
	  <row>
	    <entry>text-x-generic</entry>
	    <entry>
The icon used for generic text file types.
	    </entry>
	  </row>
	  <row>
	    <entry>text-x-generic-template</entry>
	    <entry>
The icon used for generic text templates.
	    </entry>
	  </row>
	  <row>
	    <entry>text-x-script</entry>
	    <entry>
The icon used for script file types, such as shell scripts.
	    </entry>
	  </row>
	  <row>
	    <entry>video-x-generic</entry>
	    <entry>
The icon used for generic video file types.
	    </entry>
	  </row>
	  <row>
	    <entry>x-office-address-book</entry>
	    <entry>
The icon used for generic address book file types.
	    </entry>
	  </row>
	  <row>
	    <entry>x-office-calendar</entry>
	    <entry>
The icon used for generic calendar file types.
	    </entry>
	  </row>
	  <row>
	    <entry>x-office-document</entry>
	    <entry>
The icon used for generic document and letter file types.
	    </entry>
	  </row>
	  <row>
	    <entry>x-office-presentation</entry>
	    <entry>
The icon used for generic presentation file types.
	    </entry>
	  </row>
	  <row>
	    <entry>x-office-spreadsheet</entry>
	    <entry>
The icon used for generic spreadsheet file types.
	    </entry>
	  </row>
	</tbody>
      </tgroup>
    </table>

    <table id="places">
      <title>Standard Place Icons</title>
      <tgroup cols="2">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>folder</entry>
	    <entry>
The standard folder icon used to represent directories on local
filesystems, mail folders, and other hierarchical groups.
	    </entry>
	  </row>
	  <row>
	    <entry>folder-remote</entry>
	    <entry>
The icon used for normal directories on a remote filesystem.
	    </entry>
	  </row>
	  <row>
	    <entry>network-server</entry>
	    <entry>
The icon used for individual host machines under the
<quote>Network Servers</quote> place in the file manager.
	    </entry>
	  </row>
	  <row>
	    <entry>network-workgroup</entry>
	    <entry>
The icon for the <quote>Network Servers</quote> place in the
desktop's file manager, and workgroups within the network.
	    </entry>
	  </row>
	  <row>
	    <entry>start-here</entry>
	    <entry>
The icon used by the desktop's main menu for accessing places,
applications, and other features.
	    </entry>
	  </row>
	  <row>
	    <entry>user-desktop</entry>
	    <entry>
The icon for the special <quote>Desktop</quote> directory of the user.
	    </entry>
	  </row>
	  <row>
	    <entry>user-home</entry>
	    <entry>
The icon for the special <quote>Home</quote> directory of the user.
	    </entry>
	  </row>
	  <row>
	    <entry>user-trash</entry>
	    <entry>
The icon for the user's <quote>Trash</quote> place in the
desktop's file manager.
	    </entry>
	  </row>
        </tbody>
      </tgroup>
    </table>

    <table id="status">
      <title>Standard Status Icons</title>
      <tgroup cols="2">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>appointment-missed</entry>
	    <entry>
The icon used when an appointment was missed.
	    </entry>
	  </row>
	  <row>
	    <entry>appointment-soon</entry>
	    <entry>
The icon used when an appointment will occur soon.
	    </entry>
	  </row>
	  <row>
	    <entry>audio-volume-high</entry>
	    <entry>
The icon used to indicate high audio volume.
	    </entry>
	  </row>
	  <row>
	    <entry>audio-volume-low</entry>
	    <entry>
The icon used to indicate low audio volume.
	    </entry>
	  </row>
	  <row>
	    <entry>audio-volume-medium</entry>
	    <entry>
The icon used to indicate medium audio volume.
	    </entry>
	  </row>
	  <row>
	    <entry>audio-volume-muted</entry>
	    <entry>
The icon used to indicate the muted state for audio playback.
	    </entry>
	  </row>
	  <row>
	    <entry>battery-caution</entry>
	    <entry>
The icon used when the battery is below 40%.
	    </entry>
	  </row>
	  <row>
	    <entry>battery-low</entry>
	    <entry>
The icon used when the battery is below 20%.
	    </entry>
	  </row>
	  <row>
	    <entry>dialog-error</entry>
	    <entry>
The icon used when a dialog is opened to explain an error
condition to the user.
	    </entry>
	  </row>
	  <row>
	    <entry>dialog-information</entry>
	    <entry>
The icon used when a dialog is opened to give information
to the user that may be pertinent to the requested action.
	    </entry>
	  </row>
	  <row>
	    <entry>dialog-password</entry>
	    <entry>
The icon used when a dialog requesting the authentication
credentials for a user is opened.
	    </entry>
	  </row>
	  <row>
	    <entry>dialog-question</entry>
	    <entry>
The icon used when a dialog is opened to ask a simple
	      question of the user.
	    </entry>
	  </row>
	  <row>
	    <entry>dialog-warning</entry>
	    <entry>
The icon used when a dialog is opened to warn the user of
impending issues with the requested action.
	    </entry>
	  </row>
	  <row>
	    <entry>folder-drag-accept</entry>
	    <entry>
The icon used for a folder while an object is being
dragged onto it, that is of a type that the directory can contain.
	    </entry>
	  </row>
	  <row>
	    <entry>folder-open</entry>
	    <entry>
The icon used for folders, while their contents are being
displayed within the same window. This icon would normally be
shown in a tree or list view, next to the main view of a folder's contents.
	    </entry>
	  </row>
	  <row>
	    <entry>folder-visiting</entry>
	    <entry>
The icon used for folders, while their contents are being
displayed in another window. This icon would typically be used
when using multiple windows to navigate the hierarchy, such as
in Nautilus's spatial mode.
	    </entry>
	  </row>
	  <row>
	    <entry>image-loading</entry>
	    <entry>
The icon used when another image is being loaded, such as
thumnails for larger images in the file manager.
	    </entry>
	  </row>
	  <row>
	    <entry>image-missing</entry>
	    <entry>
The icon used when another image could not be loaded.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-attachment</entry>
	    <entry>
The icon used for an electronic mail that contains attachments.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-unread</entry>
	    <entry>
The icon used for an electronic mail that is unread.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-read</entry>
	    <entry>
The icon used for an electronic mail that is read.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-replied</entry>
	    <entry>
The icon used for an electronic mail that has been replied to.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-signed</entry>
	    <entry>
The icon used for an electronic mail that contains a signature.
	    </entry>
	  </row>
	  <row>
	    <entry>mail-signed-verified</entry>
	    <entry>
The icon used for an electronic mail that contains a signature
which has also been verified by the security system.
	    </entry>
	  </row>
	  <row>
	    <entry>media-playlist-repeat</entry>
	    <entry>
The icon for the repeat action of a media player.
	    </entry>
	  </row>
	  <row>
	    <entry>media-playlist-shuffle</entry>
	    <entry>
The icon for the shuffle action of a media player.
	    </entry>
	  </row>
	  <row>
	    <entry>network-error</entry>
	    <entry>
The icon used when an error occurs trying to intialize the network connection
of the computing device. This icon should be two computers, one in the
background, with the screens of both computers, colored black, and with the
theme's style element for errors, overlayed on top of the icon.
	    </entry>
	  </row>
          <row>
            <entry>network-idle</entry>
            <entry>
The icon used when no data is being transmitted or received, while the
computing device is connected to a network. This icon should be two computers,
one in the background, with the screens of both computers, colored black.
            </entry>
          </row>
	  <row>
	    <entry>network-offline</entry>
	    <entry>
The icon used when the computing device is disconnected from the network. This
icon should be a computer in the background, with a screen colored black, and
the theme's icon element to show that a device is not accessible, in the
foreground.
	    </entry>
	  </row>
          <row>
            <entry>network-receive</entry>
            <entry>
The icon used when data is being received, while the computing device is
connected to a network. This icon should be two computers, one in the
background, with its screen colored green, and the screen of the computer in
the foreground, colored black.
            </entry>
          </row>
          <row>
            <entry>network-transmit</entry>
            <entry>
The icon used when data is being transmitted, while the computing device is
connected to a network. This icon should be two computers, one in the
background, with its screen colored black, and the screen of the computer in
the foreground, colored green.

            </entry>
          </row>
          <row>
            <entry>network-transmit-receive</entry>
            <entry>
The icon used data is being both transmitted and received simultaneously,
while the computing device is connected to a network. This icon should be two
computers, one in the background, with the screens of both computers, colored
green.
            </entry>
          </row>
	  <row>
	    <entry>printer-error</entry>
	    <entry>
The icon used when an error occurs while attempting to print. This icon should
be the theme's printer device icon, with the theme's style element for errors,
overlayed on top of the icon.
	    </entry>
	  </row>
	  <row>
	    <entry>printer-printing</entry>
	    <entry>
The icon used while a print job is successfully being spooled to a printing
device. This icon should be the theme's printer device icon, with a document
emerging from the printing device.
	    </entry>
	  </row>
	  <row>
	    <entry>software-update-available</entry>
	    <entry>
The icon used when an update is available for software installed
on the computing device, through the system software update program.
	    </entry>
	  </row>
	  <row>
	    <entry>software-update-urgent</entry>
	    <entry>
The icon used when an urgent update is available through the
system software update program.
	    </entry>
	  </row>
	  <row>
	    <entry>sync-error</entry>
	    <entry>
The icon used when an error occurs while attempting to
synchronize data from the computing device, to another device.
	    </entry>
	  </row>
	  <row>
	    <entry>sync-synchronizing</entry>
	    <entry>
The icon used while data is successfully synchronizing to another device.
	    </entry>
	  </row>
	  <row>
	    <entry>task-due</entry>
	    <entry>
The icon used when a task is due soon.
	    </entry>
	  </row>
	  <row>
	    <entry>task-passed-due</entry>
	    <entry>
The icon used when a task that was due, has been left incomplete.
	    </entry>
	  </row>
	  <row>
	    <entry>user-away</entry>
	    <entry>
The icon used when a user on a chat network is away from their
keyboard and the chat program.
	    </entry>
	  </row>
	  <row>
	    <entry>user-idle</entry>
	    <entry>
The icon used when a user on a chat network has not been an
active participant in any chats on the network, for an extended period of time.
	    </entry>
	  </row>
	  <row>
	    <entry>user-offline</entry>
	    <entry>
The icon used when a user on a chat network is not available.
	    </entry>
	  </row>
	  <row>
	    <entry>user-online</entry>
	    <entry>
The icon used when a user on a chat network is available to
initiate a conversation with.
	    </entry>
	  </row>
	  <row>
	    <entry>user-trash-full</entry>
	    <entry>
The icon for the user's <quote>Trash</quote> in the desktop's
file manager, when there are items in the <quote>Trash</quote>
waiting for disposal or recovery.
	    </entry>
	  </row>
	  <row>
	    <entry>weather-clear</entry>
	    <entry>
The icon used while the weather for a region is <quote>clear skies</quote>.
	    </entry>
	  </row>
	  <row>
	    <entry>weather-clear-night</entry>
	    <entry>
The icon used while the weather for a region is <quote>clear skies</quote>
during the night.
	    </entry>
	  </row>
	  <row>
	    <entry>weather-few-clouds</entry>
	    <entry>
The icon used while the weather for a region is <quote>partly cloudy</quote>.
	    </entry>
	  </row>
	  <row>
	    <entry>weather-few-clouds-night</entry>
	    <entry>
The icon used while the weather for a region is <quote>partly cloudy</quote>
during the night.
	    </entry>
	  </row>
	  <row>
	    <entry>weather-fog</entry>
	    <entry>
The icon used while the weather for a region is <quote>foggy</quote>.
	    </entry>
	  </row>
	  <row>
	    <entry>weather-overcast</entry>
	    <entry>
The icon used while the weather for a region is <quote>overcast</quote>.
	    </entry>
	  </row>
	  <row>
	    <entry>weather-severe-alert</entry>
	    <entry>
The icon used while a sever weather alert is in effect for a region.
	    </entry>
	  </row>
	  <row>
	    <entry>weather-showers</entry>
	    <entry>
The icon used while rain showers are occurring in a region.
	    </entry>
	  </row>
	  <row>
	    <entry>weather-showers-scattered</entry>
	    <entry>
The icon used while scattered rain showers are occurring in a region.
	    </entry>
	  </row>
	  <row>
	    <entry>weather-snow</entry>
	    <entry>
The icon used while snow showers are occurring in a region.
	    </entry>
	  </row>
	  <row>
	    <entry>weather-storm</entry>
	    <entry>
The icon used while storms are occurring in a region.
	    </entry>
	  </row>
	</tbody>
      </tgroup>
    </table>

  </sect1>

  <appendix id="changelog">
    <title>Change History</title>
    <formalpara>
      <title>Version 0.7, 15 February 2006, Rodney Dawes</title>
      <para>
        <itemizedlist>
          <listitem>
            <para>Remove the wallpaper-* icon names</para>
          </listitem>
          <listitem>
            <para>Align text blocks to the left</para>
          </listitem>
          <listitem>
            <para>Add "weather-few-clouds-night" and "weather-clear-night" to
the status context</para>
          </listitem>
          <listitem>
            <para>Remove "network-online" from the status context</para>
          </listitem>
          <listitem>
            <para>Add "network-idle", "network-receive", "network-transmit",
and "network-transmit-receive" to the status context</para>
          </listitem>
          <listitem>
            <para>Update the printer status icon definitions</para>
          </listitem>
        </itemizedlist>
      </para>
    </formalpara>
    <formalpara>
      <title>Version 0.6, 07 December 2005, Rodney Dawes</title>    
      <para>
	<itemizedlist>
	  <listitem>
	    <para>
              Add the "Animations" and "Places" contexts
	    </para>
          </listitem>
          <listitem>
            <para>
              Add "media-eject" to the actions context
            </para>
          </listitem>
          <listitem>
            <para>
              Move "media-playlist-shuffle" to the status context
            </para>
          </listitem>
	  <listitem>
	    <para>
              Add the "process-working" animation to the animations context
	    </para>
          </listitem>
	  <listitem>
	    <para>
              Add "battery", "camera-photo", "media-floppy", "multimedia-player",
              "network-wired", and "network-wireless" to the devices context
	    </para>
          </listitem>
	  <listitem>
	    <para>
              Remove the printer-remote and video-card icons from devices
	    </para>
          </listitem>
	  <listitem>
	    <para>
              Rename "emblem-favorites" to "emblem-favorite"
	    </para>
          </listitem>
	  <listitem>
	    <para>
              Add "application-x-executable", "package-x-generic",
              "text-x-generic-template", and "text-x-script" to the
              mimetypes context
	    </para>
          </listitem>
	  <listitem>
	    <para>
              Rename "x-directory-normal" to "folder" and move it to the
              places context
	    </para>
          </listitem>
	  <listitem>
	    <para>
              Rename "x-directory-remote" to "folder-remote" and move it to the
              places context
	    </para>
          </listitem>
	  <listitem>
	    <para>
              Rename "x-directory-normal-remote-server" to "network-server"
              and move it to the places context
	    </para>
          </listitem>
	  <listitem>
	    <para>
              Rename "x-directory-normal-remote-workgroup" to
              "network-workgroup" and move it to the places context
	    </para>
          </listitem>
	  <listitem>
	    <para>
              Rename "x-directory-trash" to "user-trash"
              and move it to the places context
	    </para>
          </listitem>
	  <listitem>
	    <para>
              Rename "x-directory-trash-full" to "user-trash-full" and move
              it to the status context
	    </para>
          </listitem>
	  <listitem>
	    <para>
              Add "start-here", "user-desktop", and "user-home" to the places
              context
	    </para>
          </listitem>
	  <listitem>
	    <para>
              Add "folder-drag-accept", "folder-open", "folder-visiting", and
              "media-playlist-repeat" to the status context
	    </para>
          </listitem>
	</itemizedlist>
      </para>
    </formalpara>
    <formalpara>
      <title>Version 0.4, 10 October 2005, Rodney Dawes</title>    
      <para>
	<itemizedlist>
	  <listitem>
	    <para>
              Use "The icon" instead of "This icon" for "contact-new" and
              "battery-low"
	    </para>
          </listitem>
          <listitem>
	    <para>
	      Add icons for "preferences-desktop-accessibility" and
              "preferences-desktop-font" in the apps context
	    </para>
	  </listitem>
          <listitem>
            <para>
              Fix typo in "drive-cdrom" name
            </para>
          </listitem>
          <listitem>
            <para>
              Rename "x-font-generic" to "font-x-generic" to match other MIME
              type icons such as for audio, images, and video
            </para>
          </listitem>
          <listitem>
	    <para>
	      Add icons for "image-loading" and "image-missing" to status
	    </para>
	  </listitem>
	</itemizedlist>
      </para>
    </formalpara>
    <formalpara>
      <title>Version 0.3, 28 June 2005, Rodney Dawes</title>    
      <para>
	<itemizedlist>
	  <listitem>
	    <para>
              Replace "printer-local" with "printer" to be more generic.
	    </para>
          </listitem>
          <listitem>
	    <para>
	      Import into freedesktop.org cvs alongside icon-theme-spec.xml
	    </para>
	  </listitem>
          <listitem>
            <para>
              Add missing icon descriptions.
            </para>
          </listitem>
	</itemizedlist>
      </para>
    </formalpara>
    <formalpara>
      <title>Version 0.2, 01 April 2005, Jakub Steiner</title>    
      <para>
	<itemizedlist>
	  <listitem>
	    <para>
              Fixed two small typographical errors.
	    </para>
	  </listitem>
	</itemizedlist>
      </para>
    </formalpara>
    <formalpara>
      <title>Version 0.1, 29 March 2005, Rodney Dawes</title>    
      <para>
	<itemizedlist>
	  <listitem>
	    <para>
              Created initial draft.
	    </para>
	  </listitem>
	</itemizedlist>
      </para>
    </formalpara>
  </appendix>
</article>