~ubuntu-branches/ubuntu/trusty/debtags/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
Facet: accessibility
Status: needing-review
Description: Accessibility Support
 Accessibility support provided by the package

Tag: accessibility::input
Description: Input Systems
 Applies to input methods for non-latin languages as well as special input
 systems.

Tag: accessibility::ocr
Description: Text Recognition (OCR)
 The translation of text images into machine-editable text by means of
 Optical Character Recognition (OCR).

Tag: accessibility::screen-magnify
Description: Screen Magnification
 Displays enlarged screen content.

Tag: accessibility::screen-reader
Description: Screen Reading
 Converts text into speech.

Tag: accessibility::speech
Description: Speech Synthesis
 The artificial production of human speech.

Tag: accessibility::speech-recognition
Description: Speech Recognition
 Converts speech into text.

Tag: accessibility::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: admin
Status: needing-review
Description: System Administration
 Which system administration activities the package may perform

Tag: admin::accounting
Description: Accounting

Tag: admin::automation
Description: Automation and Scheduling
 Automating the execution of software in the system.

Tag: admin::backup
Description: Backup and Restoration

Tag: admin::benchmarking
Description: Benchmarking

Tag: admin::boot
Description: System Boot

Tag: admin::cluster
Description: Clustering

Tag: admin::configuring
Description: Configuration Tool

Tag: admin::file-distribution
Description: File Distribution

Tag: admin::filesystem
Description: Filesystem Tool
 Creation, maintenance, and use of filesystems

Tag: admin::forensics
Description: Forensics and Recovery
 Recovering lost or damaged data.
 This tag will be split into admin::recovery
 and security::forensics.

Tag: admin::hardware
Description: Hardware Support

Tag: admin::install
Description: System Installation

Tag: admin::issuetracker
Description: Issue Tracker

Tag: admin::kernel
Description: Kernel or Modules

Tag: admin::logging
Description: Logging

Tag: admin::login
Description: Login
 Logging into the system

Tag: admin::monitoring
Description: Monitoring

Tag: admin::package-management
Description: Package Management

Tag: admin::power-management
Description: Power Management

Tag: admin::recovery
Description: Data Recovery

Tag: admin::user-management
Description: User Management

Tag: admin::virtualization
Description: Virtualization
 This is not hardware emulation, but rather those facilities that allow to
 create many isolated compartments inside the same system.

Tag: admin::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: biology
Description: Biology
 How the package is related to the field of biology

Tag: biology::emboss
Description: EMBOSS
 Packages related to the European Molecular Biology Open Software Suite.

Tag: biology::format:aln
Description: Clustal/ALN
 Used in multiple alignment of biological sequences.

Tag: biology::format:fasta
Description: Fasta/Pearson
 Very popular format for biological sequences.
 
Tag: biology::format:nexus
Description: Nexus
 Popular format for phylogenetic trees.

Tag: biology::nuceleic-acids
Description: Nucleic Acids
 Software that works with sequences of nucleic acids:
 DNA, RNA but also non-natural nucleic acids such as PNA or LNA.

Tag: biology::peptidic
Description: Proteins
 Software that works with sequences of aminoacids: peptides and proteins.


Facet: culture
Status: complete
Description: Culture
 The culture for which the package provides special support

Tag: culture::afrikaans
Description: Afrikaans

Tag: culture::arabic
Description: Arabic

Tag: culture::basque
Description: Basque

Tag: culture::bengali
Description: Bengali

Tag: culture::bokmaal
Description: Norwegian Bokmaal

Tag: culture::bosnian
Description: Bosnian

Tag: culture::brazilian
Responsible: stratus@acm.org
Description: Brazilian

Tag: culture::british
Description: British

Tag: culture::bulgarian
Description: Bulgarian

Tag: culture::catalan
Description: Catalan

Tag: culture::chinese
Description: Chinese

Tag: culture::czech
Description: Czech

Tag: culture::croatian
Description: Croatian

Tag: culture::danish
Description: Danish

Tag: culture::dutch
Description: Dutch

Tag: culture::esperanto
Description: Esperanto

Tag: culture::estonian
Description: Estonian

Tag: culture::faroese
Description: Faroese

Tag: culture::farsi
Description: Farsi

Tag: culture::finnish
Description: Finnish

Tag: culture::french
Description: French

Tag: culture::galician
Description: Galician

Tag: culture::german
Description: German

Tag: culture::greek
Description: Greek

Tag: culture::hebrew
Description: Hebrew

Tag: culture::hindi
Description: Hindi

Tag: culture::hungarian
Description: Hungarian

Tag: culture::icelandic
Description: Icelandic

Tag: culture::indonesian
Description: Indonesian

Tag: culture::irish
Description: Irish (Gaeilge)

Tag: culture::italian
Description: Italian

Tag: culture::japanese
Description: Japanese

Tag: culture::korean
Description: Korean

Tag: culture::latvian
Description: Latvian

Tag: culture::lithuanian
Description: Lithuanian

Tag: culture::mongolian
Description: Mongolian

Tag: culture::nynorsk
Description: Norwegian Nynorsk

Tag: culture::norwegian
Description: Norwegian

Tag: culture::polish
Description: Polish

Tag: culture::portuguese
Description: Portuguese

Tag: culture::punjabi
Description: Punjabi

Tag: culture::romanian
Description: Romanian

Tag: culture::russian
Description: Russian

Tag: culture::serbian
Description: Serbian

Tag: culture::slovak
Description: Slovak

Tag: culture::spanish
Description: Spanish

Tag: culture::swedish
Description: Swedish

Tag: culture::taiwanese
Description: Taiwanese

Tag: culture::tajik
Description: Tajik

Tag: culture::tamil
Description: Tamil

Tag: culture::thai
Description: Thai

Tag: culture::turkish
Description: Turkish

Tag: culture::ukrainian
Description: Ukrainian

Tag: culture::uzbek
Description: Uzbek

Tag: culture::welsh
Description: Welsh

Tag: culture::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: devel
Status: needing-review
Description: Software Development
 How the package is related to the field of software development

Tag: devel::bugtracker
Description: Bug Tracking

Tag: devel::buildtools
Description: Build Tool

Tag: devel::code-generator
Description: Code Generation
 Parser, lexer and other code generators

Tag: devel::compiler
Description: Compiler

Tag: devel::debian
Description: Debian
 Tools, documentation, etc. of use primarily to Debian developers.

Tag: devel::debugger
Description: Debugging

Tag: devel::doc
Description: Documentation

Tag: devel::docsystem
Description: Literate Programming
 Tools and auto-documenters

Tag: devel::ecma-cli
Description: ECMA CLI
 Tools and libraries for development with implementations of
 the ECMA CLI (Common Language Infrastructure), like Mono
 or DotGNU Portable.NET.

Tag: devel::editor
Description: Source Editor

Tag: devel::examples
Description: Examples

Tag: devel::ide
Description: IDE
 Integrated Development Environment

Tag: devel::interpreter
Description: Interpreter

Tag: devel::i18n
Description: Internationalization

Tag: devel::lang:TODO
Description: Need an extra tag

Tag: devel::lang:ada
Description: Ada Development

Tag: devel::lang:c
Description: C Development

Tag: devel::lang:c++
Description: C++ Development

Tag: devel::lang:c-sharp
Description: C# Development

Tag: devel::lang:erlang
Description: Erlang Development

Tag: devel::lang:fortran
Description: Fortran Development

Tag: devel::lang:haskell
Description: Haskell Development

Tag: devel::lang:java
Description: Java Development

Tag: devel::lang:ecmascript
Description: Ecmascript/JavaScript Development

Tag: devel::lang:lisp
Description: Lisp Development

Tag: devel::lang:lua
Description: Lua Development

Tag: devel::lang:ml
Description: ML Development

Tag: devel::lang:objc
Description: Objective-C Development

Tag: devel::lang:ocaml
Responsible: zack@debian.org
Description: OCaml Development

Tag: devel::lang:octave
Description: GNU Octave Development

Tag: devel::lang:pascal
Description: Pascal Development

Tag: devel::lang:perl
Description: Perl Development

Tag: devel::lang:posix-shell
Description: POSIX shell

Tag: devel::lang:php
Description: PHP Development

Tag: devel::lang:pike
Description: Pike Development

Tag: devel::lang:prolog
Description: Prolog Development

Tag: devel::lang:python
Description: Python Development

Tag: devel::lang:r
Description: GNU R Development

Tag: devel::lang:ruby
Description: Ruby Development

Tag: devel::lang:scheme
Description: Scheme Development

Tag: devel::lang:sql
Description: SQL

Tag: devel::lang:tcl
Description: Tcl Development

Tag: devel::lang:vala
Description: Vala Development

Tag: devel::library
Description: Libraries

Tag: devel::machinecode
Description: Machine Code
 Assemblers and other machine-code development tools.

Tag: devel::modelling
Description: Modelling
 Programs and libraries that support creation of software models
 with modelling languages like UML or OCL.

Tag: devel::packaging
Description: Packaging
 Tools for packaging software.

Tag: devel::prettyprint
Description: Prettyprint
 Code pretty-printing and indentation/reformatting.

Tag: devel::profiler
Description: Profiling
 Profiling and optimization tools.

Tag: devel::rcs
Description: Revision Control
 RCS (Revision Control System) and SCM (Software Configuration Manager)

Tag: devel::rpc
Description: RPC
 Remote Procedure Call, Network transparent programming

Tag: devel::runtime
Description: Runtime Support
 Runtime environments of various languages and systems.

Tag: devel::testing-qa
Description: Testing and QA
 Tools for software testing and quality assurance.

Tag: devel::ui-builder
Description: User Interface
 Tools for designing user interfaces.

Tag: devel::web
Description: Web
 Web-centric frameworks, CGI libraries and other web-specific development
 tools.

Tag: devel::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: field
Status: controversial
Comment: how broad is the definition of a "field"?
Description: Field
 Which branch of knowledge is the package related to

Tag: field::arts
Description: Arts

Tag: field::astronomy
Description: Astronomy

Tag: field::aviation
Description: Aviation

Tag: field::biology
Description: Biology

Tag: field::biology:bioinformatics
Description: Bioinformatics
 Sequence analysis software.

Tag: field::biology:molecular
Description: Molecular Biology
 Software useful to molecular cloning and related wet biology.

Tag: field::biology:structural
Description: Structural Biology
 Software useful to model tridimentional structures.

Tag: field::chemistry
Description: Chemistry

Tag: field::electronics
Description: Electronics
 Circuit editors and other electronics-related software

Tag: field::finance
Description: Financial
 Accounting and financial software

Tag: field::genealogy
Description: Genealogy

Tag: field::geography
Description: Geography

Tag: field::geology
Description: Geology

Tag: field::linguistics
Description: Linguistics

Tag: field::mathematics
Description: Mathematics

Tag: field::medicine
Description: Medicine

Tag: field::medicine:imaging
Description: Medical Imaging

Tag: field::meteorology
Description: Meteorology

Tag: field::physics
Description: Physics

Tag: field::religion
Description: Religion

Tag: field::statistics
Description: Statistics

Tag: field::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: game
Status: needing-review
Description: Games and Amusement
 Kind of games provided by the package

Tag: game::adventure
Description: Adventure

Tag: game::arcade
Description: Action and Arcade

Tag: game::board
Description: Board

Tag: game::board:chess
Description: Chess

Tag: game::card
Description: Card

Tag: game::demos
Description: Demo

Tag: game::fps
Description: First Person Shooter

Tag: game::mud
Description: Multiplayer RPG
 MUDs, MOOs, and other multiplayer RPGs

Tag: game::platform
Description: Platform

Tag: game::puzzle
Description: Puzzle

Tag: game::rpg
Description: Role-playing

Tag: game::rpg:rogue
Description: Rogue-like RPG
 Games like Nethack, Angband etc.

Tag: game::simulation
Description: Simulation

Tag: game::sport
Description: Sport Games

Tag: game::sport:racing
Description: Racing

Tag: game::strategy
Description: Strategy

Tag: game::tetris
Description: Tetris-like

Tag: game::toys
Description: Toy or Gimmick

Tag: game::typing
Description: Typing Tutor

Tag: game::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: hardware
Status: draft
Description: Hardware Enablement
 How the package is related to hardware enablement 

Tag: hardware::bluetooth
Description: Bluetooth

Tag: hardware::camera
Description: Digital Camera

Tag: hardware::detection
Description: Hardware Detection

Tag: hardware::embedded
Description: Embedded

Tag: hardware::emulation
Description: Emulation

Tag: hardware::gps
Description: GPS
 Global Positioning System

Tag: hardware::input
Description: Input Devices

Tag: hardware::input:joystick
Description: Joystick

Tag: hardware::input:keyboard
Description: Keyboard

Tag: hardware::input:mouse
Description: Mouse

Tag: hardware::input:touchscreen
Description: Touchscreen

Tag: hardware::joystick
Description: Joystick (legacy)

Tag: hardware::hamradio
Description: Ham Radio

Tag: hardware::laptop
Description: Laptop

Tag: hardware::modem
Description: Modem

Tag: hardware::modem:dsl
Description: xDSL Modem

Tag: hardware::opengl
Description: Requires video hardware acceleration

Tag: hardware::power
Description: Power Management

Tag: hardware::power:ups
Comment: out of place under power:
Description: UPS
 Uninterruptible Power Supply

Tag: hardware::power:acpi
Description: ACPI Power Management

Tag: hardware::power:apm
Description: APM Power Management

Tag: hardware::printer
Description: Printer

Tag: hardware::scanner
Description: Image-scanning Hardware

Tag: hardware::storage
Description: Storage

Tag: hardware::storage:cd
Description: CD reader
 Compact Disc

Tag: hardware::storage:cd-writer
Description: CD writer
 Compact Disc writer

Tag: hardware::storage:dvd
Description: DVD reader
 Digital Versatile Disc

Tag: hardware::storage:dvd-writer
Description: DVD writer
 Digital Versatile Disc writer

Tag: hardware::storage:floppy
Description: Floppy Disk

Tag: hardware::usb
Description: USB
 Universal Serial Bus

Tag: hardware::video
Description: Graphics and Video

Tag: hardware::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: made-of
Status: needing-review
Description: Made Of
 The languages or data formats used to make the package

Tag: made-of::audio
Description: Audio

Tag: made-of::dictionary
Description: Dictionary

Tag: made-of::font
Description: Font

Tag: made-of::html
Description: HTML, Hypertext Markup Language

Tag: made-of::icons
Description: Icons

Tag: made-of::info
Description: Documentation in Info Format

Tag: made-of::man
Description: Manuals in Nroff Format

Tag: made-of::pdf
Description: PDF Documents

Tag: made-of::postscript
Description: PostScript

Tag: made-of::sgml
Description: SGML, Standard Generalized Markup Language

Tag: made-of::svg
Description: SVG, Scalable Vector Graphics

Tag: made-of::tex
Description: TeX, LaTeX and DVI

Tag: made-of::vrml
Description: VRML, Virtual Reality Markup Language

Tag: made-of::xml
Description: XML

Tag: made-of::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: interface
Status: needing-review
Description: User Interface
 What kind of user interface the package provides

Tag: interface::3d
Description: Three-Dimensional

Tag: interface::commandline
Description: Command Line

Tag: interface::daemon
Description: Daemon
 Runs in background, only a control interface is provided, usually on
 commandline.

Tag: interface::framebuffer
Description: Framebuffer

Tag: interface::shell
Description: Command Shell

Tag: interface::svga
Description: Console SVGA

Tag: interface::text-mode
Description: Text-based Interactive

Tag: interface::web
Description: World Wide Web

Tag: interface::x11
Description: X Window System

Tag: interface::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: implemented-in
Description: Implemented in
 What language the software is implemented in

Tag: implemented-in::ada
Description: Ada

Tag: implemented-in::c
Description: C

Tag: implemented-in::c++
Description: C++

Tag: implemented-in::c-sharp
Description: C#

Tag: implemented-in::erlang
Description: Erlang

Tag: implemented-in::fortran
Description: Fortran

Tag: implemented-in::haskell
Description: Haskell

Tag: implemented-in::java
Description: Java

Tag: implemented-in::ecmascript
Description: Ecmascript/Javascript

Tag: implemented-in::lisp
Description: Lisp

Tag: implemented-in::lua
Description: Lua

Tag: implemented-in::ml
Description: ML

Tag: implemented-in::objc
Description: Objective C

Tag: implemented-in::ocaml
Responsible: zack@debian.org
Description: OCaml

Tag: implemented-in::perl
Description: Perl

Tag: implemented-in::php
Description: PHP

Tag: implemented-in::pike
Description: Pike

Tag: implemented-in::python
Description: Python

Tag: implemented-in::r
Description: GNU R

Tag: implemented-in::ruby
Description: Ruby

Tag: implemented-in::scheme
Description: Scheme

Tag: implemented-in::shell
Description: sh, bash, ksh, tcsh and other shells

Tag: implemented-in::tcl
Description: Tcl, Tool Command Language

Tag: implemented-in::vala
Description: Vala

Tag: implemented-in::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: junior
Status: draft
Description: Junior Applications
 Applications recommended for younger users

Tag: junior::arcade
Description: Arcade Games

Tag: junior::games-gl
Description: 3D Games

Tag: junior::meta
Comment: not that the target group knows what a metapackage is
Description: Metapackages

Tag: junior::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: mail
Status: controversial
Description: Electronic Mail
 How the package is related to eletronic mail transmission 

Tag: mail::filters
Description: Filters

Tag: mail::imap
Description: IMAP Protocol

Tag: mail::list
Description: Mailing Lists

Tag: mail::notification
Description: Notification
 Software that notifies users about status of mailbox.

Tag: mail::pop
Description: POP3 Protocol

Tag: mail::smtp
Description: SMTP Protocol

Tag: mail::delivery-agent
Description: Mail Delivery Agent
 Software that delivers mail to users' mailboxes.

Tag: mail::transport-agent
Description: Mail Transport Agent
 Software that routes and transmits mail accross the system and the network.

Tag: mail::user-agent
Description: Mail User Agent
 Software that allows users to access e-mail.

Tag: mail::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: office
Description: Office and business
 Applications related to office and business activities

Tag: office::finance
Description: Finance

Tag: office::groupware
Description: Groupware

Tag: office::presentation
Description: Presentation

Tag: office::project-management
Description: Project Management

Tag: office::spreadsheet
Description: Spreadsheet

Tag: office::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: works-with
Status: needing-review
Description: Works with
 What kind of data (or even processes, or people) the package can work with

Tag: works-with::3dmodel
Description: 3D Model

Tag: works-with::archive
Description: Archive

Tag: works-with::audio
Description: Audio

Tag: works-with::biological-sequence
Description: Biological Sequence

Tag: works-with::bugs
Description: Bugs or Issues

Tag: works-with::db
Description: Databases

Tag: works-with::dictionary
Description: Dictionaries

Tag: works-with::dtp
Description: Desktop Publishing (DTP)

Tag: works-with::fax
Description: Faxes

Tag: works-with::file
Description: Files

Tag: works-with::font
Description: Fonts

Tag: works-with::graphs
Description: Trees and Graphs

Tag: works-with::im
Description: Instant Messages
 The package can connect to some IM network (or networks).

Tag: works-with::logfile
Description: System Logs

Tag: works-with::mail
Description: Email

Tag: works-with::music-notation
Description: Music Notation

Tag: works-with::network-traffic
Description: Network Traffic
 Routers, shapers, sniffers, firewalls and other tools
 that work with a stream of network packets.

Tag: works-with::people
Description: People

Tag: works-with::pim
Description: Personal Information

Tag: works-with::image
Description: Image

Tag: works-with::image:raster
Description: Raster Image
 Images made of dots, such as photos and scans

Tag: works-with::image:vector
Description: Vector Image
 Images made of lines, such as graphs or most clipart

Tag: works-with::software:package
Description: Packaged Software

Tag: works-with::software:running
Description: Running Programs

Tag: works-with::software:source
Description: Source Code

Tag: works-with::spreadsheet
Description: Spreadsheet

Tag: works-with::text
Description: Text

Tag: works-with::unicode
Description: Unicode
 Please do not tag programs with simple unicode support,
 doing so would make this tag useless.
 Ultimately all applications should have unicode support.

Tag: works-with::vcs
Description: Version control system

Tag: works-with::video
Description: Video and Animation

Tag: works-with::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: works-with-format
Status: needing-review
Description: Supports Format
 Which data formats are supported by the package

Tag: works-with-format::bib
Description: BibTeX
 BibTeX list of references

Tag: works-with-format::chm
Description: Compiled HTML Help
 Link: http://en.wikipedia.org/wiki/Microsoft_Compiled_HTML_Help

Tag: works-with-format::diff
Description: Diff-format patches
 Textual patches in diff's "normal" (default), context (diff -c),
 or unified (diff -u) format.
 .
 Link: http://en.wikipedia.org/wiki/Diff

Tag: works-with-format::djvu
Description: DjVu
 File format to store scanned documents.
 .
 Link: http://en.wikipedia.org/wiki/Djvu

Tag: works-with-format::docbook
Description: DocBook

Tag: works-with-format::dvi
Description: TeX DVI
 DeVice Independent page description file, usually generated
 by TeX or LaTeX.

Tag: works-with-format::elf
Description: Executable and Linkable Format
 The Executable and Linkable Format (ELF, formerly called Extensible Linking
 Format) is a common standard file format for executables, object code, shared
 libraries, and core dumps.
 .
 Link: http://en.wikipedia.org/wiki/Executable_and_Linkable_Format

Tag: works-with-format::epub
Description: EPub electronic publication
 Link: http://en.wikipedia.org/wiki/EPUB

Tag: works-with-format::gif
Description: GIF, Graphics Interchange Format

Tag: works-with-format::xml:gpx
Description: GPX, GPS eXchange Format

Tag: works-with-format::html
Description: HTML, Hypertext Markup Language

Tag: works-with-format::info
Description: Documentation in Info Format

Tag: works-with-format::iso9660
Description: ISO 9660 CD Filesystem

Tag: works-with-format::jpg
Description: JPEG, Joint Photographic Experts Group

Tag: works-with-format::json
Description: JSON
 JavaScript Object Notation

Tag: works-with-format::ldif
Description: LDIF
 Lightweight Directory Interchange Format

Tag: works-with-format::man
Description: Manpages

Tag: works-with-format::mp3
Description: MP3 Audio

Tag: works-with-format::mpc
Description: Musepack Audio

Tag: works-with-format::odf
Description: ODF, Open Document Format

Tag: works-with-format::oggtheora
Description: Ogg Theora Video

Tag: works-with-format::oggvorbis
Description: Ogg Vorbis Audio

Tag: works-with-format::pdf
Description: PDF Documents

Tag: works-with-format::plaintext
Description: Plain Text

Tag: works-with-format::png
Description: PNG, Portable Network Graphics

Tag: works-with-format::po
Description: PO, Portable Object
 Message translations for internationalized programs

Tag: works-with-format::postscript
Description: PostScript

Tag: works-with-format::sgml
Description: SGML, Standard Generalized Markup Language

Tag: works-with-format::svg
Description: SVG, Scalable Vector Graphics

Tag: works-with-format::swf
Description: SWF, ShockWave Flash

Tag: works-with-format::tar
Description: Tar Archives

Tag: works-with-format::tex
Description: TeX and LaTeX

Tag: works-with-format::tiff
Description: TIFF, Tagged Image File Format

Tag: works-with-format::vrml
Description: VRML 3D Model
 Virtual Reality Markup Language

Tag: works-with-format::wav
Description: MS RIFF Audio
 Wave uncompressed audio format

Tag: works-with-format::xml
Description: XML

Tag: works-with-format::xml:rss
Description: RSS Rich Site Summary
 XML dialect used to describe resources and websites.

Tag: works-with-format::xml:xslt
Description: XSL Transformations (XSLT)

Tag: works-with-format::zip
Description: Zip Archives

Tag: works-with-format::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: scope
Description: Scope
 Characterization by scale of coverage 

Tag: scope::utility
Description: Utility
 A narrow-scoped program for particular use case or few use cases. It
 only does something 10-20% of users in the field will need. Often has
 functionality missing from related applications.

Tag: scope::application
Description: Application
 Broad-scoped program for general use. It probably has functionality
 for 80-90% of use cases. The pieces that remain are usually to be
 found as utilities.

Tag: scope::suite
Description: Suite
 Comprehensive suite of applications and utilities on the scale of
 desktop environment or base operating system.

Tag: scope::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: system
Description: Class of system
 Class of system a package provides specific functionality for.

Tag: system::cloud
Description: Cloud
 Cloud computing is the delivery of computing as a service rather than
 a product, whereby shared resources, software, and information are
 provided to computers and other devices as a metered service over a
 network (typically the Internet).
 .
 Link: http://en.wikipedia.org/wiki/Cloud_computing

Tag: system::embedded
Description: Embedded
 A computer system designed for specific control functions within a larger
 system.
 .
 Link: http://en.wikipedia.org/wiki/Embedded_system

Tag: system::laptop
Description: Laptop
 A personal computer for mobile use.
 .
 Link: http://en.wikipedia.org/wiki/Laptop

Tag: system::mobile
Description: Mobile device
 A small, hand-held computing device, typically having a display screen with
 touch input and/or a miniature keyboard.
 .
 http://en.wikipedia.org/wiki/Mobile_device

Tag: system::server
Description: Server
 A physical computer (a computer hardware system) dedicated to
 running one or more such services (as a host),[1] to serve the needs
 of users of the other computers on the network. Depending on the
 computing service that it offers it could be a database server, file
 server, mail server, print server, web server, or other.
 .
 Link: http://en.wikipedia.org/wiki/Server_(computing)

Tag: system::virtual
Description: Virtual
 A virtual computer hides the physical characteristics of a computing platform
 from users, instead showing another abstract computing platform.
 .
 Link: http://en.wikipedia.org/wiki/Hardware_virtualization

Tag: system::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: role
Status: draft
Description: Role
 Role performed by the package

Tag: role::app-data
Description: Application Data

Tag: role::data
Description: Standalone Data

Tag: role::debug-symbols
Description: Debugging symbols
 Debugging symbols.

Tag: role::devel-lib
Description: Development Library
 Library and header files used in software development or building.

Tag: role::documentation
Description: Documentation

Tag: role::dummy
Description: Dummy Package
 Packages used for upgrades and transitions.

Tag: role::examples
Description: Examples

Tag: role::kernel
Description: Kernel and Modules
 Packages that contain only operating system kernels and kernel modules.

Tag: role::metapackage
Description: Metapackage
 Packages that install suites of other packages.

Tag: role::plugin
Description: Plugin
 Add-on, pluggable program fragments enhancing functionality
 of some program or system.

Tag: role::program
Description: Program
 Executable computer program.

Tag: role::shared-lib
Description: Shared Library
 Shared libraries used by one or more programs.

Tag: role::source
Description: Source Code
 Human-readable code of a program, library or a part thereof.

Tag: role::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: security
Status: needing-review
Description: Security
 How the package is related to system security

Tag: security::antivirus
Description: Anti-Virus

Tag: security::authentication
Description: Authentication

Tag: security::cryptography
Description: Cryptography
 Cryptographic and privacy-oriented tools.

Tag: security::firewall
Description: Firewall

Tag: security::forensics
Description: Forensics
 Post-mortem analysis of intrusions.

Tag: security::ids
Description: Intrusion Detection

Tag: security::integrity
Description: File Integrity
 Tools to monitor system for changes in filesystem and report changes
 or tools providing other means to check system integrity.

Tag: security::log-analyzer
Description: Log Analyzer

Tag: security::privacy
Description: Privacy

Tag: security::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: sound
Status: needing-review
Responsible: free@agnula.org
Description: Sound and Music
 How the package is related to the field of sound and music

Tag: sound::compression
Description: Compression

Tag: sound::midi
Description: MIDI Software

Tag: sound::mixer
Description: Mixing

Tag: sound::player
Description: Playback

Tag: sound::recorder
Description: Recording

Tag: sound::sequencer
Description: MIDI Sequencing

Tag: sound::speech
Description: Speech Synthesis

Tag: sound::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: special
Status: draft
Description: Service tags
 Group of special tags

Tag: special::not-yet-tagged
Description: !Not yet tagged packages!

Tag: special::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: suite
Status: controversial
Comment: What is considered a 'suite'?  So far the idea was to just use tags in this facet to group together related packages.
Description: Application Suite
 Groups together related packages

Tag: suite::apache
Description: Apache

Tag: suite::bsd
Description: BSD
 Berkeley Software Distribution, sometimes called Berkeley Unix or BSD Unix,
 and its family of descendants: FreeBSD, NetBSD or OpenBSD.
 .
 Link: http://en.wikipedia.org/wiki/Berkeley_Software_Distribution

Tag: suite::debian
Description: Debian
 Packages specific to Debian - look into "Software Development::Debian" for 
 Debian Development.

Tag: suite::eclipse
Description: Eclipse
 Eclipse tool platform and plugins.

Tag: suite::emacs
Description: Emacs

Tag: suite::gforge
Description: GForge
 A collaborative development platform.

Tag: suite::gimp
Description: The GIMP

Tag: suite::gkrellm
Description: GKrellM Monitors

Tag: suite::gnome
Description: GNOME

Tag: suite::gnu
Description: GNU
 Gnu's Not Unix. The package is part of the official GNU project

Tag: suite::gnustep
Description: GNUstep
 GNUstep Desktop and WindowMaker

Tag: suite::gpe
Description: GPE
 GPE Palmtop Environment

Tag: suite::kde
Description: KDE

Tag: suite::mozilla
Description: Mozilla
 Mozilla Browser and extensions

Tag: suite::netscape
Description: Netscape Navigator
 The pre-6.0 versions of netscape browser

Tag: suite::openoffice
Description: OpenOffice.org

Tag: suite::openstack
Description: OpenStack
 Open source software for building private and public clouds.
 http://openstack.org/

Tag: suite::opie
Description: Open Palmtop (OPIE)

Tag: suite::postgresql
Description: PostgreSQL

Tag: suite::roxen
Description: Roxen

Tag: suite::samba
Description: Samba

Tag: suite::webmin
Description: Webmin

Tag: suite::xfce
Description: XFce
 Lightweight desktop environment for X11.

Tag: suite::xmms
Description: XMMS

Tag: suite::xmms2
Description: XMMS 2

Tag: suite::zope
Description: Zope
 The Zope (web) publishing platform.

Tag: suite::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: protocol
Status: draft
Description: Network Protocol
 Which network protocols the package can understand

Tag: protocol::atm
Description: ATM
 Asynchronous Transfer Mode, a high speed protocol for communication between
 computers in a network.
 .
 While ATM is used to implement *DSL networks, it has never gained widespread
 use as a technology for building local area networks (LANs), for which it was
 originally intended.
 .
 Link: http://en.wikipedia.org/wiki/Asynchronous_Transfer_Mode

Tag: protocol::bittorrent
Description: BitTorrent
 BitTorrent is a protocol for peer-to-peer based file distribution over
 network.
 .
 Although the actual data transport happens between BitTorrent clients, one
 central node, the so-called trackers, is needed to keep a list of all clients
 that download or provide the same file.
 .
 Link: http://www.bittorrent.com/
 Link: http://en.wikipedia.org/wiki/BitTorrent

Tag: protocol::corba
Description: CORBA
 Common Object Request Broker Architecture, a standard for interoperability
 between programs written in different languages and running on different
 hardware platforms. CORBA includes a client-server network protocol for
 distributed computing.
 .
 With this network protocol, CORBA clients on different computers and written
 in different languages can exchange objects over a CORBA server such as orbit2
 or omniORB.
 .
 Link: http://www.corba.org/

Tag: protocol::db:mysql
Description: MySQL
 Protocol for accessing MySQL database server.

Tag: protocol::db:psql
Description: PostgreSQL
 Protocol for accessing PostgreSQL database server.

Tag: protocol::dcc
Description: DCC
 Direct Client-to-Client (DCC) is an IRC-related sub-protocol enabling peers to
 interconnect using an IRC server for handshaking in order to exchange files or
 perform non-relayed chats.
 .
 Link: http://en.wikipedia.org/wiki/Direct_Client-to-Client

Tag: protocol::dhcp
Description: DHCP
 Dynamic Host Configuration Protocol, a client-server network protocol for
 automatic assignment of dynamic IP addresses to computers in a TCP/IP network,
 rather than giving each computer a static IP address.
 .
 Link: http://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol
 Link: http://www.ietf.org/rfc/rfc2131.txt

Tag: protocol::dns
Description: DNS
 Domain Name System, a protocol to request information associated with domain
 names (like "www.debian.org"), most prominently the IP address. The protocol
 is used in communication with a DNS server (like BIND).
 .
 For the Internet, there are 13 root DNS servers around the world that keep the
 addresses of all registered domain names and provide this information to the
 DNS servers of Internet service providers.
 .
 Link: http://en.wikipedia.org/wiki/Domain_Name_System

Tag: protocol::ethernet
Description: Ethernet
 Ethernet is the most popular networking technology for creating local area
 networks (LANs).
 .
 The computers in an Ethernet network communicate over twisted-pair or fibre
 cables and are identified by their MAC address. Several different types of
 Ethernet exist, distinguishable by the maximum connection speed. The most
 widespread types today are 100MBit/s (100BASE-*) or 1GBit/s (1000BASE-*).
 .
 Link: http://en.wikipedia.org/wiki/Ethernet

Tag: protocol::fidonet
Description: FidoNet
 FidoNet is a mailbox system that enjoyed large popularity in the 1980s and
 1990s.
 .
 The communication between the clients and FidoNet servers was usually carried
 out over the telephone network using modems and could be used for transferring
 messages (comparable to email) and files.
 .
 Link: http://www.fidonet.org/
 Link: http://en.wikipedia.org/wiki/Fidonet

Tag: protocol::finger
Description: Finger
 The Name/Finger protocol is a simple network protocol to provide extensive,
 public information about users of a computer, such as email address, telephone
 numbers, full names etc.
 .
 Due to privacy concerns, the Finger protocol is not widely used any more,
 while it widespread distribution in the early 1990s.
 .
 Link: http://en.wikipedia.org/wiki/Finger_protocol
 Link: http://www.ietf.org/rfc/rfc1288.txt

Tag: protocol::ftp
Description: FTP
 File Transfer Protocol, a protocol for exchanging and manipulation files over
 networks and extensively used on the Internet.
 .
 The communication between FTP servers and clients uses two channels, the
 control and the data channel. While FTP was originally used with
 authentication only, most FTP servers on the Internet provide anonymous,
 passwordless access. Since FTP does not support encryption, sensitive data
 transfer is carried out over SFTP today.
 .
 Link: http://en.wikipedia.org/wiki/File_Transfer_Protocol
 Link: http://www.ietf.org/rfc/rfc0959.txt

Tag: protocol::gadu-gadu
Description: Gadu-Gadu
 The Gadu-Gadu protocol is a proprietary protocol that is used by a
 Polish instant messaging network of the same name.
 .
 Link: http://pl.wikipedia.org/wiki/Gadu-Gadu

Tag: protocol::gopher
Description: Gopher
 The Gopher protocol /ˈɡoʊfər/ is a TCP/IP Application layer protocol designed
 for distributing, searching, and retrieving documents over the Internet.
 .
 Strongly oriented towards a menu-document design, the Gopher protocol was a
 predecessor of (and later, an alternative to) the World Wide Web.
 .
 Link: http://en.wikipedia.org/wiki/Gopher_(protocol)

Tag: protocol::http
Description: HTTP
 HyperText Transfer Protocol, one of the most important protocols for the
 World Wide Web.
 .
 It controls the data transfer between HTTP servers such as Apache and HTTP
 clients, which are web browsers in most cases. HTTP resources are requested
 via URLs (Universal Resource Locators). While HTTP normally only supports file
 transfer from server to client, the protocol supports sending information to
 HTTP servers, most prominently used in HTML forms.
 .
 Link: http://en.wikipedia.org/wiki/Http
 Link: http://www.ietf.org/rfc/rfc2616.txt

Tag: protocol::ident
Description: Ident
 The Ident Internet protocol helps to identify or authenticate the user of
 a network connection.
 .
 Link: http://en.wikipedia.org/wiki/Ident

Tag: protocol::imap
Description: IMAP
 Internet Message Access Protocol, a protocol used for accessing email on a
 server from a email client such as KMail or Evolution.
 .
 When using IMAP, emails stay on the server and can be categorized, edited,
 deleted etc. there, instead of having the user download all messages onto
 the local computer, as POP3 does.
 .
 Link: http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol

Tag: protocol::ip
Description: IP
 Internet Protocol (v4), a core protocol of the Internet protocol suite and
 the very basis of the Internet.
 .
 Every computer that is connected to the Internet has an IP address (a 4-byte
 number, typically represented in dotted notation like 192.25.206.10).
 Internet IP addresses are given out by the Internet Corporation for Assigned
 Names and Numbers (ICANN). Normally, computers on the Internet are not
 accessed by their IP address, but by their domain name.
 .
 Link: http://en.wikipedia.org/wiki/IPv4
 Link: http://www.ietf.org/rfc/rfc791.txt

Tag: protocol::ipv6
Description: IPv6
 Internet Protocol (v6), the next-generation Internet protocol, which overcomes
 the restrictions of IP (v4), like shortage of IP addresses, and is supposed to
 form the new basis of the Internet in the future, replacing IP (v4).
 .
 Many programs already support IPv6 along with IP (v4), although it is still
 seldomly used.
 .
 Link: http://en.wikipedia.org/wiki/IPv6
 Link: http://www.ipv6.org/

Tag: protocol::irc
Description: IRC
 Internet Relay Chat, a protocol for text chatting over network, extensively
 used on the Internet. It supports chat rooms, so-called channels, as well as
 private, one-to-one communication.
 .
 IRC servers are organized in networks, so that a client can connect to a
 geographically near IRC server, that itself is connected to other IRC servers
 spread over the whole world.
 .
 The official Debian channel is #debian on the freenode network.
 .
 Link: http://en.wikipedia.org/wiki/Internet_Relay_Chat

Tag: protocol::jabber
Description: XMPP
 Extensible Messaging and Presence Protocol (XMPP) is an open-standard
 communications protocol for message-oriented middleware based on XML
 (Extensible Markup Language).
 .
 The protocol was originally named Jabber, and was developed for
 near-real-time, extensible instant messaging (IM), presence information, and
 contact list maintenance.
 .
 Designed to be extensible, the protocol today also finds application in VoIP
 and file transfer signaling.
 .
 Link: http://xmpp.org/
 Link: http://en.wikipedia.org/wiki/XMPP

Tag: protocol::kerberos
Description: Kerberos
 Kerberos is an authentication protocol for computer networks for secure
 authentication over an otherwise insecure network, using symmetric
 cryptography and a third party service provider, that is trusted both by
 client and server.
 .
 The authentication mechanism provided by Kerberos is mutual, so that not only
 a server can be sure of a client's identity, but also a client can be sure a
 connection to a server is not intercepted.
 .
 Link: http://en.wikipedia.org/wiki/Kerberos_%28protocol%29
 Link: http://www.ietf.org/rfc/rfc4120.txt

Tag: protocol::ldap
Description: LDAP
 Lightweight Directory Access Protocol

Tag: protocol::lpr
Description: LPR
 The Line Printer Daemon protocol, a protocol used for accessing or providing
 network print services in a Unix network, but also used for local setups.
 .
 CUPS, the Common Unix Printing System, was developed to replace the old
 LPD/LPR system, while maintaining backwards compatibility.
 .
 Link: http://en.wikipedia.org/wiki/Line_Printer_Daemon_protocol
 Link: http://www.ietf.org/rfc/rfc1179.txt

Tag: protocol::msn-messenger
Description: MSN Messenger
 The MSN messenger protocol is the protocol that is used by Microsoft's own
 instant messaging network.
 .
 The protocol is a proprietary protocol. Although Microsoft once send a draft
 of the protocol specification to the IETF, it has since dated out and clients
 that connect to the MSN Messenger network have to rely on reverse-engineered
 information.
 .
 Link: http://www.hypothetic.org/docs/msn/

Tag: protocol::nfs
Description: NFS
 Network File System, a protocol originally developed by Sun Microsystems in
 1984 and defined in RFCs 1094, 1813, and 3530 (obsoletes 3010) as a
 distributed file system, allows a user on a client computer to access files
 over a network as easily as if attached to its local disks.
 .
 Link: http://en.wikipedia.org/wiki/Network_File_System

Tag: protocol::nntp
Description: NNTP
 Network News Transfer Protocol, a protocol for reading and writing Usenet
 articles (a Usenet article is comparable with an email), but also used among
 NNTP servers to transfer articles.
 .
 Link: http://en.wikipedia.org/wiki/Network_News_Transfer_Protocol
 Link: http://www.ietf.org/rfc/rfc977.txt

Tag: protocol::oscar
Description: OSCAR (AIM/ICQ)
 Open System for CommunicAtion in Realtime, an instant messaging used by
 AOL's instant messaging network (AIM). The protocol versions 7, 8 and 9
 of the ICQ IM network are also instances of the OSCAR protocol.
 .
 OSCAR is a binary proprietary protocol. Since there is no official documentation,
 clients that connect to AIM or ICQ have to rely on information that has
 been reverse-engineered.
 .
 Link: http://en.wikipedia.org/wiki/OSCAR_protocol
 Link: http://www.oilcan.org/oscar/

Tag: protocol::pop3
Description: POP3
 Post Office Protocol, a protocol to download emails from a mail server,
 designed for users that have only intermittent connection to the Internet.
 .
 In contrast to IMAP server, messages that are downloaded via POP3 are not
 supposed to stay on the server afterwards, since POP3 does not support
 multiple mailboxes for one account on the server.
 .
 Link: http://en.wikipedia.org/wiki/Post_Office_Protocol
 Link: http://www.ietf.org/rfc/rfc1939.txt

Tag: protocol::radius
Description: RADIUS
 Remote Authentication Dial In User Service, a protocol for authentication,
 authorization and accounting of network access, mostly used by Internet
 service providers to handle dial-up Internet connections.
 .
 Link: http://en.wikipedia.org/wiki/RADIUS
 Link: http://www.ietf.org/rfc/rfc2865.txt

Tag: protocol::sftp
Description: SFTP
 SSH File Transfer Protocol, a protocol for secure, encrypting file exchange
 and manipulation over insecure networks, using the SSH protocol.
 .
 SFTP provides a complete set of file system operations, different from its
 predecessor SCP, which only allows file transfer. It is not, other than the
 name might suggest, a version of the FTP protocol executed through an SSH
 channel.
 .
 Link: http://en.wikipedia.org/wiki/SSH_file_transfer_protocol

Tag: protocol::smb
Description: SMB
 Server Message Block, a protocol for providing file access and printer sharing
 over network, mainly used by Microsoft Windows(tm). CIFS (Common Internet File
 System) is a synonym for SMB.
 .
 Although SMB is a proprietary protocol, the Samba project reverse-engineered
 the protocol and developed both client and server programs for better
 interoperability in mixed Unix/Windows networks.
 .
 Link: http://en.wikipedia.org/wiki/Server_Message_Block
 Link: http://www.samba.org/

Tag: protocol::smtp
Description: SMTP
 Simple Mail Transfer Protocol, a protocol for transmitting emails over the
 Internet.
 .
 Every SMTP server utilizes SMTP to hand on emails to the next mail server
 until an email arrives at its destination, from where it is usually retrieved
 via POP3 or IMAP.
 .
 Link: http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol
 Link: http://www.ietf.org/rfc/rfc2821.txt

Tag: protocol::snmp
Description: SNMP
 Simple Network Management Protocol, a member of the Internet protocol suite
 and used for monitoring or configuring network devices.
 .
 SNMP servers normally run on network equipment like routers.
 .
 Link: http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol
 Link: http://www.ietf.org/rfc/rfc3411.txt

Tag: protocol::soap
Description: SOAP
 Simple Object Access Protocol, a protocol for exchanging messages between
 different computers in a network. The messages are encoded in XML and usually
 sent over HTTP.
 .
 SOAP is used to provide APIs to web services, such as the Google API to
 utilize Google's searching engine from client applications.
 .
 Link: http://en.wikipedia.org/wiki/SOAP
 Link: http://www.w3.org/TR/soap/

Tag: protocol::ssh
Description: SSH
 Secure Shell, a protocol for secure, encrypted network connections. SSH can
 be used to execute programs on a remote host with an SSH server over otherwise
 insecure protocols through an SSH channel. The main use is, as the name
 suggest, to provide encrypted login and shell access on remote servers.
 .
 SSH authentication can be done with password or, which is the preferred
 mechanism, via asymmetric public/private key cryptography.
 .
 Link: http://en.wikipedia.org/wiki/Secure_Shell

Tag: protocol::ssl
Description: SSL/TLS
 Secure Socket Layer/Transport Layer Security, a protocol that provides
 secure encrypted communication on the Internet. It is used to authenticate
 the identity of a service provider (such as a Internet banking server) and
 to secure the communications channel.
 .
 Otherwise insecure protocols such as FTP, HTTP, IMAP or SMTP can be
 transmitted over SSL/TLS to secure the transmitted data. In this case, an
 "S" is added to the protocol name, like HTTPS, FTPS etc.
 .
 Link: http://en.wikipedia.org/wiki/Secure_Sockets_Layer

Tag: protocol::telnet
Description: Telnet
 TELecommunication NETwork, a mostly superseded protocol for remote logins.
 .
 Link: http://en.wikipedia.org/wiki/TELNET

Tag: protocol::tcp
Description: TCP
 Transport Control Protocol, a core protocol of the Internet protocol suite
 and used for data transport.
 .
 TCP is used as the transport protocol for many services on the Internet,
 such as FTP, HTTP, SMTP, POP3, IMAP, NNTP etc.
 .
 Link: http://en.wikipedia.org/wiki/Transmission_Control_Protocol
 Link: http://www.ietf.org/rfc/rfc793.txt

Tag: protocol::tftp
Description: TFTP
 Trivial File Transfer Protocol, a simple file transfer protocol.  TFTP allows
 a client to get or put a file onto a remote host.  One of its primary uses is
 the network booting of diskless nodes on a Local Area Network.  It is designed
 to be easy to implement so it fits on ROM.
 .
 Link: http://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol
 Link: http://www.ietf.org/rfc/rfc1350.txt

Tag: protocol::udp
Description: UDP
 User Datagram Protocol, a core protocol of the Internet protocol suite
 and used for data transport.
 .
 UDP is not as reliable as TCP, but faster and thus better fit for
 time-sensitive purposes, like the DNS protocol and VoIP.
 .
 Link: http://en.wikipedia.org/wiki/User_Datagram_Protocol
 Link: http://www.ietf.org/rfc/rfc768.txt

Tag: protocol::voip
Description: VoIP
 Voice over IP, a general term for protocols that route voice conversations
 over the Internet.
 .
 Popular VoIP protocols are SIP, H.323 and IAX.
 .
 Link: http://en.wikipedia.org/wiki/Voice_over_IP

Tag: protocol::webdav
Description: WebDAV
 Web-based Distributed Authoring and Versioning, a extension of the HTTP
 protocol to support creating and changing documents on an HTTP server. Thus,
 the client can access the documents on an HTTP server as it would those on the
 local file system.
 .
 Link: http://en.wikipedia.org/wiki/WebDAV
 Link: http://www.ietf.org/rfc/rfc2518.txt

Tag: protocol::xmlrpc
Description: XML-RPC
 XML Remote Procedure Call, a simple protocol for remote procedure calls that
 uses XML for encoding and the HTTP protocol for transport.
 .
 SOAP, which is a considerably more sophisticated protocol, was developed from
 XML-RPC.
 .
 Link: http://en.wikipedia.org/wiki/XML-RPC
 Link: http://www.xmlrpc.com/

Tag: protocol::yahoo-messenger
Description: Yahoo! Messenger
 The Yahoo! Messenger protocol is used to connect to Yahoo!'s instant messaging
 network.
 .
 This a proprietary binary protocol without any official documentation. Clients
 that connect to the Yahoo! Messenger network have to rely on reverse-engineered
 information.
 .
 Link: http://en.wikipedia.org/wiki/Yahoo%21_Messenger
 Link: http://www.venkydude.com/articles/yahoo.htm

Tag: protocol::zeroconf
Description: Zeroconf
 Zero Configuration Networking (Zeroconfig), is a set of techniques that
 automatically creates a usable IP network without configuration or special
 servers.
 .
 This tag is used for packages that implement one or more of:
  * IPv4LL for choosing addresses
  * mDNS for name resolution
  * DNS-SD for service discovery
 .
 Link: http://www.zeroconf.org
 Link: http://en.wikipedia.org/wiki/Zeroconf

Tag: protocol::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: uitoolkit
Status: needing-review
Description: Interface Toolkit
 Which interface toolkit the package provides

Tag: uitoolkit::athena
Description: Athena Widgets

Tag: uitoolkit::fltk
Description: FLTK

Tag: uitoolkit::glut
Description: GLUT

Tag: uitoolkit::gnustep
Description: GNUstep

Tag: uitoolkit::gtk
Description: GTK

Tag: uitoolkit::motif
Description: Lesstif/Motif

Tag: uitoolkit::ncurses
Description: Ncurses TUI

Tag: uitoolkit::qt
Description: Qt

Tag: uitoolkit::sdl
Description: SDL

Tag: uitoolkit::tk
Description: Tk

Tag: uitoolkit::wxwidgets
Description: wxWidgets

Tag: uitoolkit::xlib
Description: X library

Tag: uitoolkit::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: use
Status: controversial
Description: Purpose
 The general purpose of the software

Tag: use::analysing
Description: Analysing
 Software for turning data into knowledge.

Tag: use::browsing
Description: Browsing

Tag: use::calculating
Description: Calculating

Tag: use::chatting
Description: Chatting

Tag: use::checking
Description: Checking
 All sorts of checking, checking a filesystem for validity, checking
 a document for incorrectly spelled words, checking a network for
 routing problems. Verifying.

Tag: use::comparing
Description: Comparing
 To find what relates or differs in two or more objects.

Tag: use::compressing
Description: Compressing

Tag: use::configuring
Description: Configuration

Tag: use::converting
Description: Data Conversion

Tag: use::dialing
Description: Dialup Access

Tag: use::downloading
Description: Downloading

Tag: use::driver
Description: Hardware Driver

Tag: use::editing
Description: Editing

Tag: use::entertaining
Description: Entertaining

Tag: use::filtering
Description: Filtering

Tag: use::gameplaying
Description: Game Playing

Tag: use::learning
Description: Learning

Tag: use::login
Description: Login

Tag: use::measuring
Description: Measuring

Tag: use::monitor
Description: Monitoring

Tag: use::organizing
Description: Data Organisation

Tag: use::playing
Description: Playing Media

Tag: use::printing
Description: Printing

Tag: use::proxying
Description: Proxying

Tag: use::routing
Description: Routing

Tag: use::searching
Description: Searching

Tag: use::scanning
Description: Scanning

Tag: use::simulating
Description: Simulating

Tag: use::storing
Description: Storing

Tag: use::synchronizing
Description: Synchronisation

Tag: use::timekeeping
Description: Time and Clock

Tag: use::transmission
Description: Transmission

Tag: use::typesetting
Description: Typesetting

Tag: use::viewing
Description: Data Visualization

Tag: use::text-formatting
Description: Text Formatting

Tag: use::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: web
Status: draft
Description: World Wide Web
 What kind of tools for the World Wide Web the package provides

Tag: web::application
Description: Application

Tag: web::appserver
Description: Application Server

Tag: web::blog
Description: Blog Software

Tag: web::browser
Description: Browser

Tag: web::cms
Description: Content Management (CMS)

Tag: web::cgi
Description: CGI

Tag: web::commerce
Description: E-commerce

Tag: web::forum
Description: Forum

Tag: web::microblog
Description: Microblog software

Tag: web::portal
Description: Portal

Tag: web::scripting
Description: Scripting

Tag: web::search-engine
Description: Search Engine

Tag: web::server
Description: Server

Tag: web::wiki
Description: Wiki Software
 Wiki software, servers, utilities and plug-ins.

Tag: web::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: network
Status: draft
Description: Networking
 Role performed concerning computer networks

Tag: network::client
Description: Client

Tag: network::server
Description: Server

Tag: network::configuration
Description: Configuration

Tag: network::firewall
Description: Firewall

Tag: network::hiavailability
Responsible: miope@miope.org
Description: High Availability

Tag: network::load-balancing
Description: Load Balancing

Tag: network::routing
Description: Routing

Tag: network::service
Description: Service

Tag: network::scanner
Description: Scanning

Tag: network::vpn
Description: VPN or Tunneling

Tag: network::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: x11
Status: draft
Description: X Window System
 How the package is related to the X Window System

Tag: x11::applet
Description: Applet

Tag: x11::application
Description: Application

Tag: x11::composite-manager
Description: Composite manager
 This tag also applies to compositing window managers: for compositing window
 managers, please use both x11::composite-manager and x11::window-manager

Tag: x11::display-manager
Description: Login Manager
 Display managers (graphical login screens)

Tag: x11::font
Description: Font

Tag: x11::library
Description: Library

Tag: x11::screensaver
Description: Screen Saver

Tag: x11::terminal
Description: Terminal Emulator

Tag: x11::theme
Description: Theme

Tag: x11::window-manager
Description: Window Manager

Tag: x11::xserver
Description: X Server and Drivers
  X servers and drivers for the X server (input and video)

Tag: x11::TODO
Description: Need an extra tag
 The package can be categorised along this facet, but the right tag for it is
 missing.
 .
 Mark a package with this tag to signal the vocabulary maintainers of cases
 where the current tag set is lacking.


Facet: science
Description: Science
 How the package is related to the field of science

Tag: science::calculation
Description: Calculation

Tag: science::modelling
Description: Modelling

Tag: science::data-acquisition
Description: Data acquisition

Tag: science::plotting
Description: Plotting

Tag: science::bibliography
Description: Bibliography

Tag: science::publishing
Description: Publishing

Tag: science::visualisation
Description: Visualization


Facet: iso15924
Description: Writing script
 Codes for representating writing systems 

Tag: iso15924::arab
Description: Arabic

Tag: iso15924::armn
Description: Armenian

Tag: iso15924::beng
Description: Bengali

Tag: iso15924::bopo
Description: Bopomofo

Tag: iso15924::brai
Description: Braille

Tag: iso15924::cans
Description: Unified Canadian Aboriginal Syllabics

Tag: iso15924::cyrl
Description: Cyrillic

Tag: iso15924::deva
Description: Devanagari (Nagari)

Tag: iso15924::ethi
Description: Ethiopic (Geʻez)

Tag: iso15924::geor
Description: Georgian (Mkhedruli)

Tag: iso15924::grek
Description: Greek

Tag: iso15924::gujr
Description: Gujarati

Tag: iso15924::guru
Description: Gurmukhi

Tag: iso15924::hang
Description: Hangul (Hangŭl, Hangeul)

Tag: iso15924::hani
Description: Han (Hanzi, Kanji, Hanja)

Tag: iso15924::hans
Description: Han (Simplified variant)

Tag: iso15924::hant
Description: Han (Traditional variant)

Tag: iso15924::hebr
Description: Hebrew

Tag: iso15924::hira
Description: Hiragana

Tag: iso15924::jpan
Description: Japanese
 Alias for Han + Hiragana + Katakana.

Tag: iso15924::kana
Description: Katakana

Tag: iso15924::khmr
Description: Khmer

Tag: iso15924::knda
Description: Kannada

Tag: iso15924::kore
Description: Korean
 Alias for Hangul + Han

Tag: iso15924::laoo
Description: Lao

Tag: iso15924::latn
Description: Latin

Tag: iso15924::mlym
Description: Malayalam

Tag: iso15924::mong
Description: Mongolian

Tag: iso15924::mymr
Description: Myanmar (Burmese)

Tag: iso15924::orya
Description: Oriya

Tag: iso15924::sinh
Description: Sinhala

Tag: iso15924::syrc
Description: Syriac

Tag: iso15924::taml
Description: Tamil

Tag: iso15924::tavt
Description: Tai Viet

Tag: iso15924::telu
Description: Telugu

Tag: iso15924::thai
Description: Thai

Tag: iso15924::tibt
Description: Tibetan

Tag: iso15924::yiii
Description: Yi

Tag: iso15924::zsym
Description: Symbols

Facet: secteam
Description: Security status

Tag: secteam::etch-unsupported
Description: No security support on etch
 The security team can not offer security support in Debian Etch for this
 package.

Tag: secteam::lenny-unsupported
Description: No security support on lenny
 The security team can not offer security support in Debian Lenny for this
 package.

Tag: secteam::etch-limited-support
Description: Limited scope of security support, see README.Debian
 Security support for this package is limited in covered functionality
 or to specific use cases. Please see README.Debian for details.

Tag: secteam::lenny-limited-support
Description: Limited scope of security support, see README.Debian
 Security support for this package is limited in covered functionality
 or to specific use cases. Please see README.Debian for details.