File: copyright

package info (click to toggle)
doc-linux-fr 2013.01-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 21,580 kB
  • ctags: 123
  • sloc: xml: 139,071; sh: 361; makefile: 182; lisp: 27
file content (2219 lines) | stat: -rw-r--r-- 87,733 bytes parent folder | download
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
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Source: ftp://ftp.linux-france.org/pub/article/sys/fhs-2.0.fr-nroff.tar.gz (fhs-fr)
 ftp://ftp.linux-france.org/pub/article/fcol-faq/faq-xml.tar.gz (fcol-faq)
 ftp://traduc.org/pub/traduc.org/doc-vf/HOWTO/telechargement/source (howto)
 svn://svn.traduc.org/guides_pratiques/trunk/ (howto)
 http://traduc.org/Guides_pratiques/Suivi/ (howto)
 ftp://traduc.org/pub/traduc.org/doc-vf/documents/info-sheet.fr/info-sheet.fr-html.tar.gz (info-sheet)
 ftp://traduc.org/pub/traduc.org/doc-vf/documents/intro/intro-html.tar.gz (intro)
 ftp://traduc.org/pub/traduc.org/doc-vf/HOWTO/telechargement/html-1page/style.css (style.css)
 ftp://traduc.org/pub/traduc.org/doc-vf/documents/meta-faq.fr/meta-faq.fr-html.tar.gz (meta-faq)
 https://github.com/fevrier/ProductionGuidesPratiques/archive/master.tar.gz (ProductionGuidesPratiques)

Files: debian/*
Copyright: 1996-1999 Christophe Le Bars <clebars@debian.org>
  2000, 2001 Guillaume Morin <gemorin@debian.org>
  2002-2005 Pierre Machard <pmachard@debian.org>
  2012 David Prévot <taffit@debian.org>
License: GPL-2+

Files: fcol-faq/*
Copyright: 1997-2002 Les utilisateurs des forums fr.comp.os.linux.*
License: GFDL-NIV-1.1+

Files: fhs-fr/*
Copyright: 1994-1997 Daniel Quinlan
License: FHS

Files: howto/3-Button-Mouse.sgml
Copyright: 1998 Geoff Short <geoff@kipper.york.ac.uk>
License: HOWTO

Files: howto/3Dfx-HOWTO.sgml
Copyright: 1997, 1998 Bernd Kreimeier <bk@gamers.org>
License: LDP

Files: howto/Accessibility-HOWTO.sgml
Copyright: 1996 Michael De La Rue <access-howto@ed.ac.uk>
License: GPL-2+

Files: howto/ACPI-HOWTO.xml
Copyright: 2002 Dan Singletary <dvsing@sonicspike.net>
  2003, 2004 François Romieu <francois@ueimor.eu.org>
  2003, 2004 Guillaume Lelarge <gleu@wanadoo.fr>
  2003, 2004 Jean-Philippe Guérard <jean-philippe.guerard@corbeaunoir.org>
License: GFDL-NIV-1.1+

Files: howto/ADSL-Bandwidth-Management-HOWTO.xml
Copyright: 2003 Emma Jane Hogbin <emmajane@xtrinsic.com>
  2003 Guillaume Lelarge <gleu@wanadoo.fr>
  2003 Vanessa Conchodon <nessie@little-monster.org>
  2003 Jean-Philippe Guérard <jean-philippe.guerard@corbeaunoir.org>
License: GFDL-NIV-1.1+

Files: howto/ADSM-Backup.sgml
Copyright: 1997 Thomas Koenig <Thomas.Koenig@ciw.uni-karlsruhe.de>
License: HOWTO

Files: howto/Advocacy.sgml
Copyright: 1996-1998 Paul L. Rogers <Paul.L.Rogers@li.org>
License: HOWTO

Files: howto/AI-Alife-HOWTO.xml
Copyright: 1996-2006 John A. Eikenberry
License: HOWTO

Files: howto/Alpha-HOWTO.sgml
Copyright: 1997 Neal Crook, Digital Equipment <davidm@azstarnet.com>
License: HOWTO

Files: howto/Alsa-sound.sgml
Copyright: 1998-1999 Valentijn Sessink <valentyn@alsa-project.org>
License: GPL-2+

Files: howto/Apache-mods.sgml
Copyright: 2000 Ray Van Dolson <rayvd@firetail.org>
License: GPL-2+

Files: howto/Apache+SSL+PHP+fp.sgml
Copyright: 1998 Marcus Faure <marcus@faure.de>
License: HOWTO

Files: howto/Apache-WebDAV-LDAP-HOWTO.xml
Copyright: 2003 Saqib Ali <saqib@seagate.com>
License: HOWTO

Files: howto/Assembly-HOWTO.sgml
Copyright: 1996, 1997 François-René Rideau <rideau@clipper.ens.fr>
License: LDP

Files: howto/ATA-RAID-HOWTO.xml
Copyright: 2002 Murty Rompalli <murty@solar.murty.net>
License: GFDL-NIV-1.1+

Files: howto/Athlon-Powersaving-HOWTO.xml
Copyright: 2003 Daniel Nofftz <daniel@nofftz.net>
License: GFDL-NIV-1.2+

Files: howto/ATM-Linux-HOWTO.sgml
Copyright: 2001 IBM Corporation <paulsch@us.ibm.com>
License: GFDL-NIV-1.1+

Files: howto/Authentication-Gateway-HOWTO-sgml.tar.gz
Copyright: 2001 Nathan Zorn <zornnh@musc.edu>
License: GFDL-NIV-1.1+

Files: howto/Automount.sgml
Copyright: 1998 don@sabotage.org
License: HOWTO

Files: howto/AX25-HOWTO.sgml
Copyright: 1996 Terry Dawson <terry@perf.no.itg.telstra.com.au>
License: LDP

Files: howto/BackspaceDelete.xml
Copyright: 2000-2002 Sebastiano Vigna <vigna@acm.org>
License: HOWTO

Files: howto/Battery-Powered.sgml
Copyright: 1997 Hanno Mueller <hanno@lava.de>
License: HOWTO

Files: howto/Belgian-HOWTO.sgml
Copyright: 1998-2000 Dany Vanderroost <danyv@euronet.be>
License: LDP

Files: howto/Benchmarking-HOWTO.sgml
Copyright: 1997 André D. Balsa <andrewbalsa@usa.net>
License: HOWTO

Files: howto/Beowulf-HOWTO.sgml
Copyright: 1997, 1998 Jacek Radajewski <jacek@usq.edu.au>
  1997, 1998 Douglas Eadline
License: GPL-1+

Files: howto/BogoMips.sgml
Copyright: 1999 Wim van Dorst <baron@clifton.hobby.nl>
License: HOWTO

Files: howto/Bootdisk-HOWTO.xml
Copyright: 1995-1999 Tom Fawcett <fawcett@croftj.net>
  1995-1999 Graham Chapman <grahamc@zeta.org.au>
  1999, 2003 Frank Pavageau <pavageau@imaginet.fr>
  2003 Mathieu Decore <mdecore@linux-france.org>
  2003 Guillaume Hatt <ghatt@netcourrier.com>
License: LDP

Files: howto/BootPrompt-HOWTO.sgml
Copyright: 1995-1998 Paul Gortmaker <gpg109@rsphy1.anu.edu.au>
License: GPL-2

Files: howto/Boot+Root+Raid+LILO.sgml
Copyright: 2000 Michael Robinton <michael@bizsystems.com>
License: GPL-1+

Files: howto/Bridge+Firewall+DSL.sgml
Copyright: 1999, 2000 Derek R. Ney <derek@hipgraphics.com>
License: LDP

Files: howto/Bridge+Firewall.sgml
Copyright: 1997 Peter Breuer <ptb@it.uc3m.es>
License: HOWTO

Files: howto/Bridge.sgml
Copyright: 1998 Christopher Cole <cole@coledd.com>
License: HOWTO

Files: howto/BTTV.sgml
Copyright: 1999 Eric Sandeen <eric_sandeen@bigfoot.co>
License: HOWTO

Files: howto/Build-Minimal-Linux-from-Source-HOWTO.sgml
 howto/From-PowerUp-To-Bash-Prompt-HOWTO.sgml
Copyright: 1999, 2000 Greg O'Keefe <gcokeefe@postoffice.utas.edu.au>
License: GPL-1+

Files: howto/Bzip2.sgml
Copyright: 1999 David Fetter <david@fetter.org>
License: HOWTO

Files: howto/Cable-Modem.sgml
Copyright: 1999 Vladimir Vuksan <vuksan@veus.hr>
License: HOWTO

Files: howto/call-back.sgml
Copyright: 2000 Pawel Skonecki <stona@fizyka.umcs.lublin.pl>
License: LDP

Files: howto/CDROM-HOWTO.sgml
Copyright: 1995-1999 Jeff Tranter <tranter@pobox.com>
License: LDP

Files: howto/CD-Writing-HOWTO.sgml
Copyright: 1997 Winfried Truemper <winni@xpilot.org>
License: HOWTO

Files: howto/Chroot-BIND8-HOWTO.xml
Copyright: 2000, 2001 Scott Wunsch <scott@wunsch.org>
  2004, 2005 Vincent Loupien <vincent.loupien@free.fr>
  2004, 2005 Isabelle Hurbain <isabelle.hurbain@pasithee.net>
  2004, 2005 Jean-Philippe Guérard <jean-philippe.guerard@tigreraye.org>
License: LDP

Files: howto/Chroot-BIND-HOWTO.xml
Copyright: 2000, 2001 Scott Wunsch <scott@wunsch.org>
  2004, 2005 Vincent Loupien <vincent.loupien@free.fr>
  2004, 2005 Benoît Rouit <brouits@free.fr>
  2004, 2005 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: LDP

Files: howto/Clock.sgml
Copyright: 1996 Ron Bean <rbean@execpc.com>
License: HOWTO

Files: howto/Cluster-HOWTO.sgml
Copyright: 2003 Ram Samudrala <me@ram.org>
License: HOWTO

Files: howto/Compressed-TCP.xml
Copyright: 2002 Sebastian Schreiber <Schreib@SySS.de>
  2003, 2004 Vincent Chartier <vchartier@kyxar.fr>
  2003, 2004 Claude Thomassin <cthomassin@waika9.com>
  2003, 2004 Jean-Philippe Guérard <jean-philippe.guerard@tigreraye.org>
License: GFDL-NIV-1.2+

Files: howto/Config-HOWTO.sgml
Copyright: 1998 Guido Gonzato <guido@ibogfs.cineca.it>
License: HOWTO

Files: howto/C++Programming-HOWTO.sgml
Copyright: 2000 Alavoor Vasudevan <alavoor@yahoo.com>
License: GPL-1+

Files: howto/Cryptoloop-HOWTO.xml
Copyright: 2004 Ralf Hölzer <cryptoloop@ralfhoelzer.com>
  2005 Éric Madesclair <eric-m@wanadoo.fr>
  2005 Encolpe Degoute <encolpe@colpi.info>
  2005 Bernard Gisbert <debian.paris@wanadoo.fr>
License: GFDL-NIV-1.1+

Files: howto/CSPM-HOWTO.xml howto/CSPM-HOWTO-xml.tar.gz
Copyright: 2003 IBM Corporation <lorenzc@us.ibm.com>
  2004 Simon Depiets <2df@tuxfamily.org>
  2004 Guillaume Lelarge <gleu@wanadoo.fr>
  2004 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: GFDL-NIV-1.1+

Files: howto/Cyrus-IMAP.sgml
Copyright: 1998 Kevin Mitchell <kevin@iserv.net>
License: HOWTO

Files: howto/Debian-and-Windows-Shared-Printing-xml.tar.gz
Copyright: 2003 Ian Ward <ian@excess.org>
  2003 Vincent Chartier <vchartier@kyxar.fr>
  2003 Claude Thomassin <cthomassin@waika9.com>
  2003 Jean-Philippe Guérard <jean-philippe.guerard@tigreraye.org>
License: GPL-2+

Files: howto/Debian-Jigdo.xml
Copyright: 2001 Peter Jay Salzman <p@dirac.org>
  2004 Philippe Lhardy <philippelhardy@chez.com>
  2004 Claude Thomassin <cthomassin@waika9.com>
  2004 Jean-Philippe Guérard <jean-philippe.guerard@laposte.net>
License: OSL-1.1

Files: howto/Diald-HOWTO.sgml
Copyright: 2000 Andres Seco <AndresSH@ctv.es>
License: GPL-1+

Files: howto/Dico.xml
Copyright: 2002 Arnaud Launay <asl@launay.org>
License: GPL-2+

Files: howto/Diskless-root-NFS-HOWTO.sgml
Copyright: 1999 Hans de Goede <hans@highrise.nl>
License: HOWTO

Files: howto/Diskless.sgml
Copyright: 1996 Robert Nemkin <buci@math.klte.hu>
License: HOWTO

Files: howto/DNS-HOWTO.sgml
Copyright: 1995-1999 Nicolai Langfeldt <janl@math.uio.no>
License: HOWTO

Files: howto/DocBook-Demystification-HOWTO.xml
 howto/DocBook-Demystification-HOWTO-xml.tar.gz
Copyright: 2008 Eric Raymond <esr@thyrsus.com>
License: HOWTO

Files: howto/DocBook-Install.sgml
Copyright: 2001 Robert B. Easter <reaster@comptechnews.com>
License: GFDL-NIV-1.1+

Files: howto/DocBook-OpenJade-SGML-XML-HOWTO.xml
Copyright: 2001 Saqib Ali <saqib@seagate.com>
  2003 Guillaume Audirac <guillaume.audirac@gmail.fr>
  2003 Encolpe Degoute <encolpe@colpi.info>
  2003 Jean-Philippe Guérard <jean-philippe.guerard@corbeaunoir.org>
License: GFDL-NIV-1.1+

Files: howto/Domain.sgml
Copyright: 2000 Christopher Neufeld <neufeld@linuxcare.com>
License: LDP

Files: howto/DOSEMU-HOWTO.sgml
Copyright: 1995 Mike Deisher <deisher@dspsun.eas.asu.edu>
License: HOWTO

Files: howto/DOS-Win-to-Linux-HOWTO.sgml
Copyright: 1999 Guido Gonzato <guido@ibogfs.cineca.it>
License: HOWTO

Files: howto/DPT-Hardware-RAID.sgml
Copyright: 1997 Ram Samudrala <me@ram.org>
License: HOWTO

Files: howto/DVD-Playback-HOWTO.xml
Copyright: 2004 David Jao <djao@dominia.org>
License: GFDL-NIV-1.2+

Files: howto/Ecology-HOWTO.xml
Copyright: 1999-2006 Werner Heuser <wehe@tuxmobil.org>
  2006 Fabien Bagard <f.bagard@gmail.com>
License: LDP

Files: howto/Emacs-Beginner-HOWTO.sgml
Copyright: 1998, 1999 Jeremy D. Zawodny <jzawodn@wcnet.org>
License: GPL-1+

Files: howto/Encrypted-Root-Filesystem-HOWTO.xml
Copyright: 2003 Christophe Devine
License: GFDL-NIV-1.2

Files: howto/Ethernet-Bridge-netfilter-HOWTO.sgml
Copyright: 2002 Nils Radtke <Nils.Radtke_@_Think-Future.de>
License: HOWTO

Files: howto/Ethernet-HOWTO.sgml
Copyright: 1993-1999 Paul Gortmaker <gpg109@rsphy1.anu.edu.au>
  1998, 1999 Mathieu Arnold <p_gortmaker@yahoo.com>
License: FHS

Files: howto/EVMSUG.xml
       howto/images/EVMSUG/*
       howto/addfeatures.xml
       howto/addremoveseg.xml
       howto/appx-csm.xml
       howto/appx-dos.xml
       howto/appx-ext23.xml
       howto/appx-jfs.xml
       howto/appx-lvm.xml
       howto/appx-lvm2.xml
       howto/appx-md.xml
       howto/appx-ntfs.xml
       howto/appx-opengfs.xml
       howto/appx-reiserfs.xml
       howto/appx-xfs.xml
       howto/clusterops.xml
       howto/compatibilityvols.xml
       howto/convertvols.xml
       howto/create-containers.xml
       howto/create-drivelinking.xml
       howto/create-regions.xml
       howto/create-segments.xml
       howto/create-snapshot.xml
       howto/createvolumes.xml
       howto/deleterecurs.xml
       howto/expandshrink.xml
       howto/fsimops.xml
       howto/interfacedisplaydetails.xml
       howto/interfaces.xml
       howto/logfile.xml
       howto/mount-unmount.xml
       howto/move-segstorobjs.xml
       howto/overview.xml
       howto/plugintasks.xml
       howto/preface.xml
       howto/replace-objects.xml
       howto/selectact.xml
Copyright: 2004 IBM
License: EVMSUG

Files: howto/Event-HOWTO.xml
Copyright: 2000 Mark F. Komarinski <mkomarinski@valinux.com>
  2004 Simon Depiets <2df@tuxfamily.org>
  2004 Nathalie Moglie <nat16@9online.fr>
  2004 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: HOWTO

Files: howto/Ext2fs-Undeletion.sgml
Copyright: 1997, 1999 Aaron Crane <aaronc@pobox.com>
License: HOWTO

Files: howto/Fax-Server.sgml
Copyright: 1997 Erez Strauss <erez@newplaces.com>
License: HOWTO

Files: howto/Fedora-Multimedia-Installation-HOWTO.xml
Copyright: 2004 Eric S. Raymond <esr@snark.thyrsus.com>
  2004 Denis Chatelain <denis@octopodus.com>
  2004 Xavier Rose <x.rose@laposte.net>
  2004 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: GFDL-NIV-1.2+

Files: howto/Filesystems-HOWTO.xml
Copyright: 1999 Martin Hinner <mhi@penguin.cz>
License: GPL-2+

Files: howto/Firewall-Piercing.xml
Copyright: 1998-2001 François-René Rideau <fare+fwprc@tunes.org>
License: GFDL-NIV-1.1+

Files: howto/Framebuffer-HOWTO.sgml
Copyright: 2000 Alex Buell <alex.buell@tahallah.clara.co.uk>
  1999 Frederick Niles <frederick.a.niles@gsfc.nasa.gov>
Comment: Multi-Head Mini-HOWTO included (thus the second copyright and
 the LDP licence)
License: HOWTO and LDP

Files: howto/Francophones-HOWTO.sgml
Copyright: 1997-1999, Guylhem Aznar
License: GFDL-NIV-1.1+

Files: howto/Ftape-HOWTO.sgml
Copyright: 1993, 1994 Kai Harrekilde-Petersen <khp@login.dkuug.dk>
License: HOWTO

Files: howto/g4u.xml
Copyright: 1999-2006 Hubert Feyrer <hubert@feyrer.de>
License: BSD-4-Clause

Files: howto/GCC-HOWTO.sgml
Copyright: 1996 Daniel Barlow <dan@detached.demon.co.uk>
License: HOWTO

Files: howto/Glibc2-HOWTO.sgml
Copyright: 1997 Eric Green <ejg3@cornell.edu>
License: LDP

Files: howto/Glibc-Install-HOWTO.xml
Copyright: 2004 Kai Schlachter <linux@murphyslantech.de>
License: GFDL-NIV-1.2+

Files: howto/Hard-Disk-Upgrade.sgml
Copyright: 1998 Yves Bellefeuille <yan@ottawa.com>
License: HOWTO

Files: howto/Hardware-HOWTO.xml
Copyright: 2001-2007 Steve Pritchard <steve@silug.org>
  1997-1999 Patrick Reijnen
License: GPL-2+

Files: howto/Home-Electrical-Control.xml
Copyright: 2000, 2001 Rui Li <ruili@worldnet.att.net>
  2003, 2004 Joan Goutte <joan@fra.net>
  2003, 2004 Claude Thomassin <cthomassin@waika9.com>
  2003, 2004 Jean-Philippe Guérard <jean-philippe.guerard@tigreraye.org>
License: GPL-1+

Files: howto/Home-Network-mini-HOWTO-xml.tar.gz
Copyright: 1999-2002 Paul Ramsey <pramsey@refractions.net>
  2002 Marc Tanguy <mtanguy@ens.uvsq.fr>
License: GFDL-NIV-1.1+

Files: howto/HP-HOWTO.sgml
       howto/images/HP-HOWTO/*
Copyright: 1997-2003 Bruno Cornec <Bruno@HyPer-Linux.org>
License: GFDL-NIV-1.1+

Files: howto/HTML-Validation.sgml
Copyright: 1995 Keith M. Corbett <kmc@specialform.com>
License: HOWTO

Files: howto/Infrared-HOWTO.sgml
Copyright: 1998, 1999 Werner Heuser <wehe@snafu.de>
  1999 Mathieu Arnold <arn_mat@club-internet.fr>
License: LDP

Files: howto/Install-From-ZIP.sgml
Copyright: 1998 Kevin Snively <k.snively@seaslug.org>
License: GPL-1+ and LDP

Files: howto/IO-Port-Programming.xml
Copyright: 1995-2000 Riku Saikkonen <Riku.Saikkonen@hut.fi>
  2002-2006 Jean-François Prévost <prevost@2cse-group.com>
  2002-2006 Guillaume Lelarge <gleu@wanadoo.fr>
  2002-2006 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: HOWTO

Files: howto/IP-Alias.sgml
Copyright: 1997 Harish Pillay <h.pillay@ieee.org>
License: HOWTO

Files: howto/IPCHAINS-HOWTO.sgml
Copyright: 1999 Paul Russell <asl@launay.org>
License: HOWTO

Files: howto/IP-Masquerade-HOWTO.sgml
Copyright: 2000 David Ranch <dranch@trinnet.net>
  2001 Pejvan Ahmad-Beigui <pejvan.ahmad-beigui@ensimag.imag.fr>
License: GPL-1+

Files: howto/IP-Subnetworking.sgml
Copyright: 1997 Robert Hart <hartr@interweft.com.au>
License: GPL-1+

Files: howto/IPX-HOWTO.sgml
Copyright: 1995 Terry Dawson <terry@perf.no.itg.telstra.com.au>>
License: GPL-2+

Files: howto/IRC.xml
Copyright: 2000-2002, 2005 Frédéric L. W. Meunier
License: HOWTO

Files: howto/ISP-Connectivity.sgml
Copyright: 1997 Michael Strates <mstrates@croftj.net>
License: HOWTO

Files: howto/ISP-Hookup-HOWTO.sgml
Copyright: 1996-1998 Egil Kvaleberg <Egil Kvaleberg>
License: LDP

Files: howto/Java-CGI-HOWTO.sgml
Copyright: 1996 David H. Silber <dhs@orbits.com>
License: HOWTO

Files: howto/K7s5a-HOWTO.xml
Copyright: 2002 Sebfrance <rf.eerf@otwohecnarfbes>
License: HOWTO

Files: howto/KernelAnalysis-HOWTO.sgml
Copyright: 2000-2002 Roberto Arcomano <berto@bertolinux.com>
License: GPL-2+

Files: howto/Kerneld.sgml
Copyright: 1996, 1997 Henrik Storner <storner@osiris.ping.dk>
License: HOWTO

Files: howto/Kernel-HOWTO.sgml
Copyright: 1994-1999 Brian Ward <ward@blah.tu-graz.ac.at>
  1995-1997 Eric Dumas <dumas@freenix.fr>
  1999 Christophe Deleuze <christophe.deleuze@lip6.fr>
License: HOWTO

Files: howto/Keyboard-and-Console-HOWTO.sgml
Copyright: 1995 Andries Brouwer, <aeb@cwi.nl>
License: HOWTO

Files: howto/KickStart-HOWTO.sgml
Copyright: 1998 Martin Hamilton <martinh@gnu.org>
License: GPL-2+

Files: howto/Kiosk-HOWTO.sgml
Copyright: 1999 Gene Wilburn <;genew@rom.on.ca>
License: LDP

Files: howto/Large-Disk-HOWTO.sgml
Copyright: 2002 Andries Brouwer <aeb@cwi.nl>
License: HOWTO

Files: howto/LBX.sgml
Copyright: 1997 Paul D. Smith <psmith@baynetworks.com>
License: HOWTO

Files: howto/Leased-Line.sgml
Copyright: 1998 Rob Van der Putten <rob@sput.dsl.nl>
License: HOWTO

Files: howto/LILO.sgml
Copyright: 1998 Cameron Spitzer <cls@truffula.sj.ca.us>
  1998 Alessandro Rubini <tt>rubini@linux.it>
License: HOWTO

Files: howto/Linux-Complete-Backup-and-Recovery-HOWTO.xml
 howto/Linux-Complete-Backup-and-Recovery-HOWTO-xml.tar.gz
Copyright: 2000-2004 Charles Curley <charlescurley@charlescurley.com>
License: GFDL-NIV-1.1+ and GPL-2+
Comment: Attached scripts use GPL-2+, thus the dual licences

Files: howto/Linux-Crash-HOWTO.xml
Copyright: 2002 Norman Patten <nepatten@us.ibm.com>
  2004 Simon Depiets <2df@tuxfamily.org>
  2004 Karine Volpi <nemy@nemy.net>
  2004 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: GFDL-NIV-1.1+

Files: howto/LinuxDoc+Emacs+Ispell-HOWTO.sgml
Copyright: 1998 Philippe Martin <feloy@wanadoo.fr>
License: GPL-2+

Files: howto/Linux+DOS+Win95+OS2.sgml
Copyright: 1997 Mike Harlan <r3mdh@raex.com>
License: HOWTO

Files: howto/Linux+FreeBSD.sgml
Copyright: 1997-2000 Niels Kristian Bech Jensen
  2001 Christophe Deleuze <Christophe.Deleuze@lip6.fr>
License: LDP

Files: howto/Linux-Gamers-HOWTO.xml
Copyright: 2001-2004 Peter Jay Salzman <p@dirac.org>
  2003-2004 Frédéric Delanoy
License: OSL-1.1

Files: howto/Linux+IPv6-HOWTO.xml
Copyright: 2001-2004 Peter Bieringer <pb@bieringer.de>
  2003-2004 Michel Boucey <mboucey@free.fr>
License: GPL-2+

Files: howto/Linux-Modem-Sharing.sgml
Copyright: 1997 Friedemann Baitinger <mailto:baiti@toplink.net>
License: HOWTO

Files: howto/Linux+NT-Loader.sgml
Copyright: 1997 Bernd Reicher <reichert@dial.eunet.ch>
License: HOWTO

Files: howto/Linux+Win95.sgml
Copyright: 1995, 1996 Jonathan Katz <jkatz@in.net>
License: HOWTO

Files: howto/Loadlin+Win95-98-ME.sgml
Copyright: 1997, 1998 Protek Computer Solutions <protek@brigadoon.com>
License: HOWTO

Files: howto/Linux+WinNT.xml
Copyright: 2006 Miroslav “Misko” Skoric <skoric@eunet.yu>
License: GFDL-NIV-1.1+

Files: howto/Loopback-Root-FS.sgml
Copyright: 1998 Andrew M. Bishop <amb@gedanken.demon.co.uk>
License: HOWTO

Files: howto/LVM-HOWTO.xml
Copyright: 2002-2003 Sistina Software, Inc
  2004-2005 Red Hat, Inc
  2005-2006 Terrascale Technologies, Inc
  2006 Rackable Systems, Inc <alewis@rackable.com>
  2004-2007 Emmanuel Araman <Emmanuel@araman.org>
  2004-2007 Camille Huot <cam@cameuh.net>
  2004-2007 Alain Portal <aportal@univ-montp2.fr>
  2004-2007 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: GFDL-NIV-1.2+

Files: howto/Mac-Terminal.sgml
Copyright: 1997 Robert Kiesling <kiesling@terracom.net>
License: LDP

Files: howto/Mail-Administrator-HOWTO.sgml
Copyright: 2000 Guylhem Aznar <guylhem@oeil.qc.ca>
License: LDP

Files: howto/Man-Page.sgml
Copyright: 1995, 1997 Jens Schweikardt <schweikh@noc.dfn.de>
License: HOWTO

Files: howto/Masquerading-Simple-HOWTO.sgml
Copyright: John Tapsell <tapselj0@cs.man.ac.uk>
License: GFDL-NIV-1.1+

Files: howto/MGR-HOWTO.sgml
Copyright: 1995 Vincent Broman <broman@nosc.mil>
License: GPL-1+

Files: howto/MIDI-HOWTO.xml
Copyright: 2002 Phil Kerr <phil@plus24.com>
  2002 Frank Barknecht <barknech@ph-cip.uni-koeln.de>
  2004 Jean-Marc Legrand <cjm.legrand@wanadoo.fr>
  2004 Éric Madesclair <eric-m@wanadoo.fr>
  2004 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: GFDL-NIV-1.1+

Files: howto/MILO-HOWTO.sgml
Copyright: 1995-1997 David A Rusling <david.rusling@reo.mts.dec.co>
License: HOWTO

Files: howto/MindTerm-SSH-HOWTO.sgml
Copyright: 2001 Duane Dunston <duane@duane.yi.org>
License: LDP

Files: howto/MIPS-HOWTO.sgml
Copyright: 2000 Ralf Büchle, <ralf@gnu.org>
License: HOWTO

Files: howto/MMBase.xml
Copyright: 2001-2002 Casper Joost Eyckelhof <joost@dnd.utwente.nl>
License: GPL-2+

Files: howto/Mobile-IPv6-HOWTO.xml howto/Mobile-IPv6-HOWTO-xml.tar.gz
Copyright: 2003, 2004 Lars Strand <lars@unik.no>
  2004 François Romieu <romieu@zoreil.com>
  2004 Camille Huot <cam@cameuh.net>
  2004 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: GFDL-NIV-1.2+

Files: howto/Modems-HOWTO.sgml
Copyright: 1996 Jean Michel Vansteene <vanstee@worldnet.net>
License: HOWTO

Files: howto/Modules.sgml
Copyright: 1998 <rhw@bigfoot.com>
License: GPL-1+

Files: howto/MP3-CD-Burning.xml
Copyright: 2001 Greg Wierzchowski <greg.wierzchowski@usa.net>
License: GFDL-NIV-1.1+

Files: howto/MP3-HOWTO.sgml
Copyright: 1999, 2000 Phil Kerr <phil@plus24.com>
License: GFDL-NIV-1.1+

Files: howto/Multiboot-with-GRUB.xml
Copyright: 2001 Ivan Kanis <ivank@juliva.com>
License: HOWTO

Files: howto/Multiboot-with-LILO.sgml
Copyright: 1998 Renzo Zanelli <rzanelli@southeast.net>
License: HOWTO

Files: howto/Multicast-HOWTO.xml
Copyright: 1998 Juan-Mariano de Goyeneche <jmseyas@dit.upm.es>
  2003 Antoine Duval <aduval@altern.org>
  2003 Fabrice Gadaud <fabrice@gadaud.org>
License: GPL-2+

Files: howto/Multi-Disk-HOWTO.sgml
Copyright: 1998 Stein Gjoen <sgjoen@nyx.net>
License: HOWTO

Files: howto/Multi-Distro-Dev.xml
Copyright: 2001 Ed Hill III <ed@eh3.com>
  2004 Joan Goutte <joan@fra.net>
  2004 Dorian Musso <dodolecyclo@wanadoo.fr>
  2004 Simon Depiets <2df@tuxfamily.org>
  2004 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: GFDL-NIV-1.1+

Files: howto/Multi-Ethernet.sgml
Copyright: 1995 Don Becker <becker@cesdis.gsfc.nasa.gov>
License: HOWTO

Files: howto/NCD-HOWTO.sgml
Copyright: 1999 Bart Geens <bart.geens@advalvas.be>
  1999 Kris Buytaert <kris.buytaert@advaldas.be>
License: HOWTO

Files: howto/NCD-X-Terminal.sgml
Copyright: 1998 Ian Hodge <ian@permedia.ca>
License: HOWTO

Files: howto/Net-HOWTO.sgml
Copyright: 1997 Terry Dawson
  1998 Alessandro Rubini
  1999, 2000 Joshua D. Drake
License: GPL-2+

Files: howto/Network-boot-HOWTO.xml
Copyright: 2000-2002 Brieuc Jeunhomme <bbp@via.ecp.fr>
License: GFDL-NIV-1.1+

Files: howto/Networking-Overview-HOWTO.sgml
Copyright: 1998 Daniel López Ridruejo <arn@mygale.org>
License: HOWTO

Files: howto/News-Leafsite.sgml
Copyright: 1998 Florian Kuehnert <sutok@gmx.de>
License: HOWTO

Files: howto/NFS-HOWTO.sgml
Copyright: 1997-1999 Nicolai Langfeldt <janl@linpro.no>
  1997-1999 Ron Peters <rpeters@hevanet.com>
  1997-1999 Christophe Deleuze <Christophe.Deleuze@lip6.fr>
License: HOWTO

Files: howto/NFS-Root-Client-mini-HOWTO.sgml
Copyright: 1996 Ofer Maor <ofer@hadar.co.il>
License: HOWTO

Files: howto/NFS-Root.sgml
Copyright: 1996 Andreas Kostyrka <andreas@ag.or.at>
License: HOWTO

Files: howto/NIS-HOWTO.sgml
Copyright: 1998 Thorsten Kukuk <kukuk@vt.uni-paderborn.de>
License: HOWTO

Files: howto/Offline-Mailing.sgml
Copyright: 1997, 1998 Gunther Voet <freaker@tuc.ml.org>
License: HOWTO

Files: howto/Optical-Disk-HOWTO.sgml
Copyright: 1996-1998 Skip Rye <abr@preferred.com>
License: LDP

Files: howto/Oracle-7-HOWTO.sgml
Copyright: 1998 Paul Haigh <paul@nailed.demon.co.uk>
License: HOWTO

Files: howto/PalmOS-HOWTO.sgml
Copyright: 1997, 1998 David H. Silber <palm@orbits.com>
License: LDP

Files: howto/PA-RISC-Linux-Boot-HOWTO.sgml
Copyright: 2001-2002 Thomas Marteau
  1999 The Puffin Group
  1999 Deb Richardson
License: GFDL-NIV-1.1+

Files: howto/Parallel-Processing-HOWTO.xml
Copyright: 1998 Hank Dietz <hankd@engr.uky.edu>
License: HOWTO

Files: howto/Partition-Rescue.sgml
Copyright: 1997 Rolf Klausen <rolfk@romsdal.vgs.no>
License: HOWTO

Files: howto/Partition.sgml
Copyright: 1998 Kristan Koehntopp <kris@koehntopp.de>
License: HOWTO

Files: howto/Path.sgml
Copyright: 1997 Esa Turtiainen <etu@dna.fi>
License: GPL-2+

Files: howto/PCI-HOWTO.sgml
Copyright: 1993, 1994 Michael Will <michaelw@student.uni-tuebingen.de>
License: GPL-1+

Files: howto/Petit-guide-du-traducteur.xml
Copyright: 2004 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: FreeArt

Files: howto/Post-Installation-Checklist.xml
Copyright: 2001 Algologic Research & Solutions <algolog@hd1.vsnl.net.in>
  2003-2004 Simon Depiets <sdepiets@hotmail.com>
  2003-2004 Dorian Musso <dodolecyclo@wanadoo.fr>
  2003-2004 Jean-Philippe Guérard <jean-philippe.guerard@tigreraye.org>
License: HOWTO

Files: howto/PLIP.sgml
Copyright: 1996 Andrea Controzzi <controzzi@cli.di.unipi.it>
License: HOWTO

Files: howto/PPP-HOWTO.sgml
Copyright: Robert Hart <hart@interweft.com.au>
License: GPL-1+

Files: howto/Pre-Installation-Checklist.sgml
Copyright: 1997 S. Parthasarathy <algolog@hd1.vsnl.net.in>
License: HOWTO

Files: howto/Printing-HOWTO.sgml
Copyright: 1996 Grant Taylor <gtaylor+pht@picante.com>
License: HOWTO

Files: howto/Printing-Usage-HOWTO.sgml
Copyright: 1995 Matt Foster (<mwf@engr.uark.edu>
  1996-1997 Mark F. Komarinski <markk@auratek.com>
License: HOWTO

Files: howto/Proxy-ARP-Subnet.sgml
Copyright: 1997 Bob Edwards <Robert.Edwards@anu.edu.au>
License: HOWTO

Files: howto/Public-Web-Browser.sgml
Copyright: 1997 Donald B. Marti Jr. <dmarti@best.com>
License: LDP

Files: howto/Qmail+MH.sgml
Copyright: 1998 Christopher Richardson <rdn@tara.n.eunet.de>
License: HOWTO

Files: howto/Quake-HOWTO.sgml
Copyright: 1998 Bob Zimbinski <bobz@mr.net>
  1998 Brett A. Thomas <quark@baz.com>
  1998 Mike Hallock <mikeh@medina.net>
License: LDP

Files: howto/RCS.sgml
Copyright: 1997 Robert Kiesling <kiesling@terracom.net>
License: HOWTO

Files: howto/RedHat-CD-HOWTO.xml howto/RedHat-CD-HOWTO-xml.tar.gz
Copyright: 2003 Luigi Bitonti <uknadors@yahoo.com>
License: HOWTO

Files: howto/Remote-X-Apps.sgml
Copyright: 2001 Vincent Zweije <zweije@xs4all.nl>
License: HOWTO

Files: howto/Root-RAID-HOWTO.sgml
Copyright: 1998 Michael Robinton <michael@bzs.org>
License: GPL-1+

Files: howto/RPM+Slackware.sgml
Copyright: 1997 Dave Whitinger <wolf@redhat.com>
License: HOWTO

Files: howto/Samba-Authenticated-Gateway-HOWTO.xml
Copyright: 2002-2003 Ricardo Alexandre Mattar <ricardo.mattar@bol.com.br>
  2003-2005 Guillaume Lelarge <gleu@wanadoo.fr>
  2003-2005 François-Xavier Detournière <francois-xavier.detourniere@wanadoo.fr>
  2003-2005 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: GFDL-NIV-1.2+

Files: howto/Saving-Space.xml
Copyright: 2001 Guido Gonzat <guido@ibogeo.df.unibo.it>
  2004-2005 Simon Depiets <2df@tuxfamily.org>
  2004-2005 Bernard Adrian <bernadrian@free.fr>
  2004-2005 Éric Madesclair <eric-m@wanadoo.fr>
  2004-2005 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: HOWTO

Files: howto/Scientific-Computing-with-GNU-Linux.xml
Copyright: 2002 Manoj Warrier <m_war@users.sourceforge.net>
  2004-2005 Philippe Wautelet <traduc@fractalzone.be>
License: GFDL-NIV-1.1+

Files: howto/SCSI-Programming-HOWTO.sgml
Copyright: 1996 Heiko Eißfeldt <heiko@colossus.escape.de>
License: HOWTO

Files: howto/Sendmail-Address-Rewrite.sgml
Copyright: 1998 Thomas Roessler <roessler@guug.de>
License: HOWTO

Files: howto/Sendmail+UUCP.sgml
Copyright: 1997 Hadi Salim <jamal@glcom.com>
License: HOWTO

Files: howto/Serial-HOWTO.sgml
Copyright: 1993-1997 Greg Hankins <greg.hankins@cc.gatech.edu>
License: LDP

Files: howto/Serial-Programming-HOWTO.sgml
Copyright: 1997 Peter Baumann <Peter.Baumann@dlr.de>
License: HOWTO

Files: howto/Shadow-Password-HOWTO.sgml
Copyright: 1996 Michael H. Jackson <mhjack@tscnet.com>
License: HOWTO

Files: howto/Sig11.sgml
Copyright: Rogier Wolff <R.E.Wolff@BitWizard.nl>
License: HOWTO

Files: howto/Small-Memory.sgml
Copyright: 1998 Todd Burgess <tburgess@uoguelph.ca>
License: HOWTO

Files: howto/SMP-HOWTO.sgml
Copyright: 2000 David Mentré <David.Mentre@irisa.fr>
License: HOWTO

Files: howto/Software-RAID-HOWTO.sgml
Copyright: 2000 Jakob Østergaard <jakob@ostenfeld.dk>
License: LDP

Files: howto/Software-Release-Practice-HOWTO.sgml
Copyright: 2000 Eric S. Raymond <esr@thyrsus.com>
License: HOWTO

Files: howto/Soundblaster-AWE.sgml
Copyright: 1997 Marcus Brinkmann <Marcus.Brinkmann@ruhr-uni-bochum.de>
License: GPL-2+

Files: howto/Sound-HOWTO.sgml
Copyright: 1995-1997 Jeff Tranter <tranter@pobox.com>
  1998 Gaël Duval <gael@linuxmandrake.com>
License: LDP

Files: howto/Sound-Playing-HOWTO.sgml
Copyright: Yoo C. Chung <wacko@laplace.snu.ac.kr>
License: HOWTO

Files: howto/SRM-HOWTO.sgml
Copyright: 1996 David Mosberger <davidm@azstarnet.com>
License: HOWTO

Files: howto/SSL-Certificates-HOWTO.sgml
Copyright: 2001 Franck Martin <franck@sopac.org>
License: GFDL-NIV-1.1+

Files: howto/Swap-Space.sgml
Copyright: 1994, 1995 H. Peter Anvin
License: HOWTO

Files: howto/TclTk-HOWTO.sgml
Copyright: 1998 Luca Rossetti <lukaros@tin.it>
License: LDP

Files: howto/TCP-Keepalive-HOWTO.xml
Copyright: 2007 Fabio Busatto <fabio.busatto@sikurezza.org>
License: GFDL-NIV-1.1+ and GPL-2+

Files: howto/Term-Firewall.sgml
Copyright: 1996 Barak Pearlmutter <barak.pearlmutter@alumni.cs.cmu.edu>
License: HOWTO

Files: howto/TeTeX-HOWTO.sgml
Copyright: 1997, 1998 Robert Kiesling <kiesling@ix.netcom.com>
License: GPL-1+

Files: howto/TimePrecision-HOWTO.xml
       howto/images/TimePrecision-HOWTO/ntp.png
Copyright: 2002-2004 Avi Alkalay <avi@unix.sh>
  2004, 2005 Philippe Wautelet <traduc@fractalzone.be>
  2005 Raphaël Semeteys <raphael.semeteys@wanadoo.fr>
License: GFDL-NIV-1.1+

Files: howto/Tips-HOWTO.sgml
Copyright: 1998 Paul Anderson <paul@geeky1.ebtech.net>
License: HOWTO

Files: howto/TkRat.sgml
Copyright: 1998, 1999 Dave Whitinger <dave@linuxtoday.com>
License: GPL-2+

Files: howto/Token-Ring.sgml
Copyright: 1995 Michael Eckhoff <meckhoff@zaphod.wayne.esu1.k12.ne.us>
License: HOWTO

Files: howto/Ultra-DMA.sgml
Copyright: 1998 Brion Vibber <brion@pobox.com>
License: HOWTO

Files: howto/UMSDOS-HOWTO.sgml
Copyright: 1995 Jacques Gelinas <jacques@solucorp.qc.ca>
License: HOWTO

Files: howto/Unicode-HOWTO.sgml
Copyright: 1999 Bruno Haible <haible@clisp.cons.org>
License: HOWTO

Files: howto/Unix-and-Internet-Fundamentals-HOWTO.sgml
Copyright: 1998 Eric S. Raymond <esr@snark.thyrsus.com>
License: HOWTO

Files: howto/Update.sgml
Copyright: 1998 Kjell Sundby
  1998 Kjetil Bakkeskaug
  1998 Stein Gjoen <gjoen@nyx.net>
License: HOWTO

Files: howto/Upgrade.sgml
Copyright: 1996 Dynamicro Consulting Limited <glouis@dynamicro.on.ca>
License: GPL-1+

Files: howto/Usenet-News-HOWTO.sgml
Copyright: 1994 Vince Shakan <vince@halcyon.com>
License: HOWTO

Files: howto/User-Group-HOWTO.sgml
Copyright: 1997 Kendall Grant Clark <kclark@cmpu.net>
License: LDP

Files: howto/UUCP-HOWTO.sgml
Copyright: 1994 Vince Skahan <vince@victrola.wa.com>
License: HOWTO

Files: howto/VAIO+Linux.sgml
Copyright: 1998 Hideki Saito <hideki@chatlink.com>
License: HOWTO

Files: howto/VAR-HOWTO.sgml
Copyright: 1997, 1998 Martin Michlmayr
  1999 Mr. Poet
  1999 LinuxPorts
License: HOWTO

Files: howto/VB6-to-Tcl.xml
Copyright: 2003 Mark Hubbard <markh@dcisite.com>
License: GFDL-NIV-1.2+

Files: howto/Vesafb.sgml
Copyright: 1998 Alex Buell <alex.buell@tahallah.demon.co.uk>
License: HOWTO

Files: howto/Virtual-Services-HOWTO.sgml
Copyright: 1997 The Computer Resource Center Inc.
License: HOWTO

Files: howto/Visual-Bell.sgml
Copyright: 1997 Alessandro Rubini <rubini@linux.it>
License: HOWTO

Files: howto/VoIP-HOWTO.xml
Copyright: 2000, 2001 Roberto Arcomano <berto@fatamorgana.com>
License: GPL-2+

Files: howto/VMS-to-Linux-HOWTO.sgml
Copyright: 1999 Guido Gonzato <guido@ibogeo.df.unibo.it>
  1999 Mike Miller <miller5@uiuc.edu>
License: HOWTO

Files: howto/VPN-HOWTO.sgml
Copyright: 1999 Matthew Wilson <matthew@shinythings.com>
License: LDP

Files: howto/VPN-Masquerade-HOWTO.sgml
Copyright: 1999, 2000 John D. Hardin <jhardin@wolfenet.com>
License: LDP

Files: howto/Wacom-Tablet-HOWTO.sgml
Copyright: 1999, 2000 Stefan Runkel <Runkel@runkeledv.de>
License: GPL-2+ or LDP

Files: howto/Webcam-HOWTO.xml
Copyright: 2003 Howard Shane <hshane@austin.rr.com>
License: GFDL-NIV-1.2+

Files: howto/Wireless-HOWTO.xml
Copyright: 2000-2002 Roberto Arcomano <berto@bertolinux.com>
  2003 Clément Chaine <cchaine@dipsoft.com>
  2003 Vanessa Conchodon <nessie@little-monster.org>
  2003 Jean-Philippe Guérard <jean-philippe.guerard@laposte.net>
License: GPL-2+

Files: howto/Wireless-Sync-HOWTO.xml
Copyright: 2001 Éric Womack <eric@lasvegasdata.com>
License: GFDL-NIV-1.1+

Files: howto/WordPerfect.sgml
Copyright: 1995-1997 Wade Hampton <whampton@staffnet.com>
License: HOWTO

Files: howto/WWW-HOWTO.sgml
Copyright: 1997 Wayne Leister <n3mtr@qis.net>
License: GPL-2+

Files: howto/WWW-mSQL-HOWTO.sgml
Copyright: 1997 Oliver Corff <corff@zedat.fu-berlin.de>
License: HOWTO

Files: howto/XDMCP-HOWTO.xml
Copyright: 2000-2003 Thomas Chao <tomchao@lucent.com>
  2004-2005 Denis Berhaut <denis.berhaut@free.fr>
  2004-2005 Éric Madesclair <eric-m@wanadoo.fr>
  2004-2005 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: HOWTO

Files: howto/XDM-Xterm.xml
Copyright: 2000 Kevin Taylor <kevin@northants.lug.org.uk>
License: HOWTO

Files: howto/XFree86-Touch-Screen-HOWTO.xml
Copyright: 2002 Christoph Baumann <cgb@debian.org>
  2005 Éric Madesclair <eric-m@wanadoo.fr>
  2005 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: GFDL-NIV-1.1+

Files: howto/XFree86-XInside.sgml
Copyright: 1996, 1997 Marco Melgazzi <marco@techie.com>
License: GPL-1+

Files: howto/Xinerama-HOWTO.sgml
Copyright: 2000 Dennis Baker <drbaker@softhome.net>
License: HOWTO

Files: howto/Xterm-Title.sgml
Copyright: 1999 Ric Lister <giccs.georgetown.edu>
License: HOWTO

Files: howto/ZIP-Drive.sgml
Copyright: 1999 Kyle Dansie <dansie@ibm.net>
License: HOWTO

Files: howto/ZIP-Install.sgml
Copyright: 1998 John Higgins <jwiggins@comp.uark.edu>
License: HOWTO

Files: howto/Chinese-HOWTO.sgml
       howto/Entrepreneur-HOWTO.sgml
       index.html
       info-sheet/*
       intro/*
       meta-faq/*
Copyright: Public domain
License: public-domain

Files: ProductionGuidesPratiques/*
Copyright: 2012 Jean-Philippe Guérard <jean-philippe.guerard@tigreraye.org>
License: GPL-2+

Files: style.css
Copyright: 2004 Jean-Philippe Guérard <fevrier@tigreraye.org>
License: FreeArt

License: BSD-4-Clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. All advertising materials mentioning features or use of this software
    must display the following acknowledgement:
    This product includes software developed for {{file name}} by
    {{copyright holder}}.
 4. Neither the name of the author nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.
Comment: French version
 La redistribution du code source, modifié ou non, sous forme de binaire
 est soumise aux conditions suivantes :
      * Le copyright ci-dessus, la présente liste des conditions et
 l'avertissement qui la suit doivent figurer dans le code source.
      * La documentation et/ou les fichiers accompagnant le code source
 distribué sous forme de binaire doivent faire apparaître le copyright
 ci-dessus, la présente liste des conditions et l'avertissement qui la suit.
      * Tout produit incluant tout ou partie du code de ce programme doit
 comporter la mention :
 This product includes software developed for {{file name}} by
 {{copyright holder}}.
      * Le nom de l'auteur, pas plus que ceux de ses collaborateurs,
 ne sauraient être utilisés dans le but de promouvoir ou de légitimer un
 produit dérivé de ce programme sans autorisation écrite préalable à cette
 effet.
 .
 CE PROGRAMME EST FOURNI « TEL QU'EN L'ÉTAT » PAR L'AUTEUR ET SES
 COLLABORATEURS ET IL N'EST DONNÉ AUCUNE GARANTIE, IMPLICITE OU EXPLICITE,
 QUANT À SON UTILISATION COMMERCIALE, PROFESSIONNELLE OU AUTRE. L'AUTEUR ET
 SES COLLABORATEURS NE PEUVENT EN AUCUN CAS ÊTRE TENUS POUR RESPONSABLES DE
 QUELQUE DOMMAGE OU PRÉJUDICE DIRECT, INDIRECT, SECONDAIRE OU ACCESSOIRE (Y
 COMPRIS LES PERTES FINANCIÈRES DUES AU MANQUE À GAGNER, À L'INTERRUPTION
 D'ACTIVITÉS, OU LA PERTE D'INFORMATIONS ET AUTRES) DÉCOULANT DE
 L'UTILISATION DU PROGRAMME, OU DE L'IMPOSSIBILITÉ D'UTILISER CELUI-CI, ET
 DONT L'UTILISATEUR ACCEPTE L'ENTIÈRE RESPONSABILITÉ.

License: EVMSUG
 This document may be reproduced or distributed in any form without
 prior permission provided the copyright notice is retained on all
 copies. Modified versions of this document may be freely distributed
 provided that they are clearly identified as such, and this copyright
 is included intact.
Comment: French version
 Ce document peut être reproduit ou distribué sous n'importe quelle
 forme, sans permission préalable, pourvu que la notice de copyright
 soit maintenue sur toutes les copies. Des versions modifiées de ce
 document peuvent être librement distribuées à condition qu'elles
 soient clairement identifiées en tant que telles, et que ce copyright
 soit inclus dans son intégralité.

License: FHS
 Permission is granted to make and distribute verbatim copies of this
 standard provided the copyright and this permission notice are preserved
 on all copies.
 .
 Permission is granted to copy and distribute modified versions of this
 standard under the conditions for verbatim copying, provided also that
 the title page is labeled as modified including a reference to the
 original standard, provided that information on retrieving the original
 standard is included, and provided that the entire resulting derived
 work is distributed under the terms of a permission notice identical to
 this one.
 .
 Permission is granted to copy and distribute translations of this
 standard into another language, under the above conditions for modified
 versions, except that this permission notice may be stated in a
 translation approved by the copyright holder.
Comment: French version
 Nous accordons la permission de faire et de distribuer des copies
 exactes de cette norme à la condition que le copyright et cette note de
 permission soient préservées sur toutes les copies.
 .
 Nous accordons la permission de copier et distribuer des versions
 modifiées de cette norme sous les conditions de copie exacte, à
 condition que la page de titre indique qu'elle a été modifiée en
 incluant une référence à la norme d'origine, à condition que soient
 incluses les informations nécessaires à la recherche de la norme
 d'origine, et à condition que le travail dérivé complet soit distribué
 sous les termes d'une note de permission identique à celle-ci.
 .
 Nous accordons la permission de copier et de distribuer des traductions
 de cette norme dans une autre langue, avec les conditions ci-dessus pour
 les versions modifiées, à part le fait que cette note de permission soit
 donnée dans une traduction approuvée par le tenant du copyright.

License: FreeArt
 Cette feuille de style est libre, vous pouvez la
 redistribuer et la modifier selon les termes de la Licence
 Art Libre. Vous trouverez un exemplaire de cette Licence sur
 http://tigreraye.org/Petit-guide-du-traducteur.html#licence-art-libre
 .
                        Licence Art libre
 1. Préambule
 .
 Avec cette Licence Art libre, l'autorisation est donnée de copier, de diffuser
 et de transformer librement les œuvres dans le respect des droits de l'auteur.
 .
 Loin d'ignorer les droits de l'auteur, cette licence les reconnaît et les
 protège. Elle en reformule le principe en permettant au public de faire un
 usage créatif des œuvres d'art.
 .
 Alors que l'usage fait du droit de la propriété littéraire et artistique
 conduit à restreindre l'accès du public à l'œuvre, la Licence Art libre a pour
 but de le favoriser.
 .
 L'intention est d'ouvrir l'accès et d'autoriser l'utilisation des ressources
 d'une œuvre par le plus grand nombre. En avoir jouissance pour en multiplier
 les réjouissances, créer de nouvelles conditions de création pour amplifier
 les possibilités de création. Dans le respect des auteurs avec la
 reconnaissance et la défense de leur droit moral.
 .
 En effet, avec la venue du numérique, l'invention de l'internet et des
 logiciels libres, un nouveau mode de création et de production est apparu. Il
 est aussi l'amplification de ce qui a été expérimenté par nombre d'artistes
 contemporains.
 .
 Le savoir et la création sont des ressources qui doivent demeurer libres pour
 être encore véritablement du savoir et de la création. C'est à dire rester une
 recherche fondamentale qui ne soit pas directement liée à une application
 concrète. Créer c'est découvrir l'inconnu, c'est inventer le réel avant tout
 souci de réalisme.
 .
 Ainsi, l'objet de l'art n'est pas confondu avec l'objet d'art fini et défini
 comme tel.
 .
 C'est la raison essentielle de cette Licence Art libre : promouvoir et
 protéger des pratiques artistiques libérées des seules règles de l'économie de
 marché.
 .
 2. DÉFINITIONS
 .
 L'œuvre
 .
    il s'agit d'une œuvre commune qui comprend l'œuvre originelle ainsi que
    toutes les contributions postérieures (les originaux conséquents et les
    copies). Elle est créée à l'initiative de l'auteur originel qui par cette
    licence définit les conditions selon lesquelles les contributions sont
    faites.
 .
 L'œuvre originelle
 .
    c'est-à-dire l'œuvre créée par l'initiateur de l'œuvre commune dont les
    copies vont être modifiées par qui le souhaite.
 .
 Les œuvres conséquentes
 .
    c'est-à-dire les propositions des auteurs qui contribuent à la formation de
    l'œuvre en faisant usage des droits de reproduction, de diffusion et de
    modification que leur confère la licence.
 .
 Original (source ou ressource de l'œuvre)
 .
    exemplaire daté de l'œuvre, de sa définition, de sa partition ou de son
    programme que l'auteur présente comme référence pour toutes actualisations,
    interprétations, copies ou reproductions ultérieures.
 .
 Copie
 .
    toute reproduction d'un original au sens de cette licence.
 .
 Auteur de l'œuvre originelle
 .
    c'est la personne qui a créé l'œuvre à l'origine d'une arborescence de
    cette œuvre modifiée. Par cette licence, l'auteur détermine les conditions
    dans lesquelles ce travail se fait.
 .
 Contributeur
 .
    toute personne qui contribue à la création de l'œuvre. Il est l'auteur
    d'une œuvre originale résultant de la modification d'une copie de l'œuvre
    originelle ou de la modification d'une copie d'une œuvre conséquente.
 .
 3. OBJET
 .
 Cette licence a pour objet de définir les conditions selon lesquelles vous
 pouvez jouir librement de cette œuvre.
 .
 4. L'ÉTENDUE DE LA JOUISSANCE
 .
 Cette œuvre est soumise au droit d'auteur et l'auteur par cette licence vous
 indique quelles sont vos libertés pour la copier, la diffuser et la modifier :
 .
 4.1. LA LIBERTÉ DE COPIER (OU DE REPRODUCTION)
 .
 Vous avez la liberté de copier cette œuvre pour un usage personnel, pour vos
 amis, ou toute autre personne et quelle que soit la technique employée.
 .
 4.2.  LA LIBERTÉ DE DIFFUSER, D'INTERPRÉTER (OU DE REPRÉSENTATION)
 .
 Vous pouvez diffuser librement les copies de ces œuvres, modifiées ou non,
 quel que soit le support, quel que soit le lieu, à titre onéreux ou gratuit si
 vous respectez toutes les conditions suivantes :
  - joindre aux copies, cette licence à l'identique, ou indiquer précisément
    où se trouve la licence,
  - indiquer au destinataire le nom de l'auteur des originaux,
  - indiquer au destinataire où il pourra avoir accès aux originaux (originels
    ou conséquents). L'auteur de l'original pourra, s'il le souhaite, vous
    autoriser à diffuser l'original dans les mêmes conditions que les copies.
 .
 4.3.  LA LIBERTÉ DE MODIFIER
 .
 Vous avez la liberté de modifier les copies des originaux (originels et
 conséquents), qui peuvent être partielles ou non, dans le respect des
 conditions prévues à l'article Section 4.2, « LA LIBERTÉ DE DIFFUSER,
 D'INTERPRÉTER (OU DE REPRÉSENTATION) » en cas de diffusion (ou représentation)
 de la copie modifiée.
 .
 L'auteur de l'original pourra, s'il le souhaite, vous autoriser à modifier
 l'original dans les mêmes conditions que les copies.
 .
 5. L'INCORPORATION DE L'ŒUVRE
 .
 Tous les éléments de cette œuvre doivent demeurer libres, c'est pourquoi il ne
 vous est pas permis d'intégrer les originaux (originels et conséquents) dans
 une autre œuvre qui ne serait pas soumise à cette licence
 .
 6. VOS DROITS D'AUTEUR
 .
 Cette licence n'a pas pour objet de nier vos droits d'auteur sur votre
 contribution. En choisissant de contribuer à l'évolution de cette œuvre, vous
 acceptez seulement d'offrir aux autres les mêmes droits sur votre contribution
 que ceux qui vous ont été accordés par cette licence.
 .
 7. LA DURÉE DE LA LICENCE
 .
 Cette licence prend effet dès votre acceptation de ses dispositions. Le fait
 de copier, de diffuser, ou de modifier l'œuvre constitue une acception tacite.
 .
 Cette licence a pour durée la durée des droits d'auteur attachés à l'œuvre. Si
 vous ne respectez pas les termes de cette licence, vous perdez automatiquement
 les droits qu'elle vous confère.
 .
 Si le régime juridique auquel vous êtes soumis ne vous permet pas de respecter
 les termes de cette licence, vous ne pouvez pas vous prévaloir des libertés
 qu'elle confère.
 .
 8. LES DIFFÉRENTES VERSIONS DE LA LICENCE
 .
 Cette licence pourra être modifiée régulièrement, en vue de son amélioration,
 par ses auteurs (les acteurs du mouvement « copyleft attitude ») sous la forme
 de nouvelles versions numérotées.
 .
 Vous avez toujours le choix entre vous contenter des dispositions contenues
 dans la version sous laquelle la copie vous a été communiquée ou alors, vous
 prévaloir des dispositions d'une des versions ultérieures.
 .
 9. LES SOUS-LICENCES
 .
 Les sous-licences ne sont pas autorisées par la présente. Toute personne qui
 souhaite bénéficier des libertés qu'elle confère sera liée directement à
 l'auteur de l'œuvre originelle.
 .
 10. LA LOI APPLICABLE AU CONTRAT
 .
 Cette licence est soumise au droit français.
Comment: English version
 This work of art is free, you can redistribute it and/or
 modify it according to terms of the Free Art license. You
 will find a specimen of this license on the Copyleft
 Attitude web site: http://artlibre.org as well as on other
 sites.
 Please note that the French version of this licence as shown
 on http://tigreraye.org/Petit-guide-du-traducteur.html#licence-art-libre
 is only official licence of this document. The English
 is only provided to help you understand this licence.

License: GFDL-NIV-1.1+
 Permission is granted to copy, distribute and/or modify this document
 under the terms of the GNU Free Documentation License, Version 1.1 or
 any later version published by the Free Software Foundation; with no
 Invariant Sections, with no Front-Cover Texts and with no Back-Cover
 Texts. A copy of the license is included in the section entitled "GNU
 Free Documentation License".
 .
 		GNU Free Documentation License
 		   Version 1.1, March 2000
 .
  Copyright (C) 2000  Free Software Foundation, Inc.
      59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
 .
 .
 0. PREAMBLE
 .
 The purpose of this License is to make a manual, textbook, or other
 written document "free" in the sense of freedom: to assure everyone
 the effective freedom to copy and redistribute it, with or without
 modifying it, either commercially or noncommercially.  Secondarily,
 this License preserves for the author and publisher a way to get
 credit for their work, while not being considered responsible for
 modifications made by others.
 .
 This License is a kind of "copyleft", which means that derivative
 works of the document must themselves be free in the same sense.  It
 complements the GNU General Public License, which is a copyleft
 license designed for free software.
 .
 We have designed this License in order to use it for manuals for free
 software, because free software needs free documentation: a free
 program should come with manuals providing the same freedoms that the
 software does.  But this License is not limited to software manuals;
 it can be used for any textual work, regardless of subject matter or
 whether it is published as a printed book.  We recommend this License
 principally for works whose purpose is instruction or reference.
 .
 .
 1. APPLICABILITY AND DEFINITIONS
 .
 This License applies to any manual or other work that contains a
 notice placed by the copyright holder saying it can be distributed
 under the terms of this License.  The "Document", below, refers to any
 such manual or work.  Any member of the public is a licensee, and is
 addressed as "you".
 .
 A "Modified Version" of the Document means any work containing the
 Document or a portion of it, either copied verbatim, or with
 modifications and/or translated into another language.
 .
 A "Secondary Section" is a named appendix or a front-matter section of
 the Document that deals exclusively with the relationship of the
 publishers or authors of the Document to the Document's overall subject
 (or to related matters) and contains nothing that could fall directly
 within that overall subject.  (For example, if the Document is in part a
 textbook of mathematics, a Secondary Section may not explain any
 mathematics.)  The relationship could be a matter of historical
 connection with the subject or with related matters, or of legal,
 commercial, philosophical, ethical or political position regarding
 them.
 .
 The "Invariant Sections" are certain Secondary Sections whose titles
 are designated, as being those of Invariant Sections, in the notice
 that says that the Document is released under this License.
 .
 The "Cover Texts" are certain short passages of text that are listed,
 as Front-Cover Texts or Back-Cover Texts, in the notice that says that
 the Document is released under this License.
 .
 A "Transparent" copy of the Document means a machine-readable copy,
 represented in a format whose specification is available to the
 general public, whose contents can be viewed and edited directly and
 straightforwardly with generic text editors or (for images composed of
 pixels) generic paint programs or (for drawings) some widely available
 drawing editor, and that is suitable for input to text formatters or
 for automatic translation to a variety of formats suitable for input
 to text formatters.  A copy made in an otherwise Transparent file
 format whose markup has been designed to thwart or discourage
 subsequent modification by readers is not Transparent.  A copy that is
 not "Transparent" is called "Opaque".
 .
 Examples of suitable formats for Transparent copies include plain
 ASCII without markup, Texinfo input format, LaTeX input format, SGML
 or XML using a publicly available DTD, and standard-conforming simple
 HTML designed for human modification.  Opaque formats include
 PostScript, PDF, proprietary formats that can be read and edited only
 by proprietary word processors, SGML or XML for which the DTD and/or
 processing tools are not generally available, and the
 machine-generated HTML produced by some word processors for output
 purposes only.
 .
 The "Title Page" means, for a printed book, the title page itself,
 plus such following pages as are needed to hold, legibly, the material
 this License requires to appear in the title page.  For works in
 formats which do not have any title page as such, "Title Page" means
 the text near the most prominent appearance of the work's title,
 preceding the beginning of the body of the text.
 .
 .
 2. VERBATIM COPYING
 .
 You may copy and distribute the Document in any medium, either
 commercially or noncommercially, provided that this License, the
 copyright notices, and the license notice saying this License applies
 to the Document are reproduced in all copies, and that you add no other
 conditions whatsoever to those of this License.  You may not use
 technical measures to obstruct or control the reading or further
 copying of the copies you make or distribute.  However, you may accept
 compensation in exchange for copies.  If you distribute a large enough
 number of copies you must also follow the conditions in section 3.
 .
 You may also lend copies, under the same conditions stated above, and
 you may publicly display copies.
 .
 .
 3. COPYING IN QUANTITY
 .
 If you publish printed copies of the Document numbering more than 100,
 and the Document's license notice requires Cover Texts, you must enclose
 the copies in covers that carry, clearly and legibly, all these Cover
 Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
 the back cover.  Both covers must also clearly and legibly identify
 you as the publisher of these copies.  The front cover must present
 the full title with all words of the title equally prominent and
 visible.  You may add other material on the covers in addition.
 Copying with changes limited to the covers, as long as they preserve
 the title of the Document and satisfy these conditions, can be treated
 as verbatim copying in other respects.
 .
 If the required texts for either cover are too voluminous to fit
 legibly, you should put the first ones listed (as many as fit
 reasonably) on the actual cover, and continue the rest onto adjacent
 pages.
 .
 If you publish or distribute Opaque copies of the Document numbering
 more than 100, you must either include a machine-readable Transparent
 copy along with each Opaque copy, or state in or with each Opaque copy
 a publicly-accessible computer-network location containing a complete
 Transparent copy of the Document, free of added material, which the
 general network-using public has access to download anonymously at no
 charge using public-standard network protocols.  If you use the latter
 option, you must take reasonably prudent steps, when you begin
 distribution of Opaque copies in quantity, to ensure that this
 Transparent copy will remain thus accessible at the stated location
 until at least one year after the last time you distribute an Opaque
 copy (directly or through your agents or retailers) of that edition to
 the public.
 .
 It is requested, but not required, that you contact the authors of the
 Document well before redistributing any large number of copies, to give
 them a chance to provide you with an updated version of the Document.
 .
 .
 4. MODIFICATIONS
 .
 You may copy and distribute a Modified Version of the Document under
 the conditions of sections 2 and 3 above, provided that you release
 the Modified Version under precisely this License, with the Modified
 Version filling the role of the Document, thus licensing distribution
 and modification of the Modified Version to whoever possesses a copy
 of it.  In addition, you must do these things in the Modified Version:
 .
 A. Use in the Title Page (and on the covers, if any) a title distinct
    from that of the Document, and from those of previous versions
    (which should, if there were any, be listed in the History section
    of the Document).  You may use the same title as a previous version
    if the original publisher of that version gives permission.
 B. List on the Title Page, as authors, one or more persons or entities
    responsible for authorship of the modifications in the Modified
    Version, together with at least five of the principal authors of the
    Document (all of its principal authors, if it has less than five).
 C. State on the Title page the name of the publisher of the
    Modified Version, as the publisher.
 D. Preserve all the copyright notices of the Document.
 E. Add an appropriate copyright notice for your modifications
    adjacent to the other copyright notices.
 F. Include, immediately after the copyright notices, a license notice
    giving the public permission to use the Modified Version under the
    terms of this License, in the form shown in the Addendum below.
 G. Preserve in that license notice the full lists of Invariant Sections
    and required Cover Texts given in the Document's license notice.
 H. Include an unaltered copy of this License.
 I. Preserve the section entitled "History", and its title, and add to
    it an item stating at least the title, year, new authors, and
    publisher of the Modified Version as given on the Title Page.  If
    there is no section entitled "History" in the Document, create one
    stating the title, year, authors, and publisher of the Document as
    given on its Title Page, then add an item describing the Modified
    Version as stated in the previous sentence.
 J. Preserve the network location, if any, given in the Document for
    public access to a Transparent copy of the Document, and likewise
    the network locations given in the Document for previous versions
    it was based on.  These may be placed in the "History" section.
    You may omit a network location for a work that was published at
    least four years before the Document itself, or if the original
    publisher of the version it refers to gives permission.
 K. In any section entitled "Acknowledgements" or "Dedications",
    preserve the section's title, and preserve in the section all the
    substance and tone of each of the contributor acknowledgements
    and/or dedications given therein.
 L. Preserve all the Invariant Sections of the Document,
    unaltered in their text and in their titles.  Section numbers
    or the equivalent are not considered part of the section titles.
 M. Delete any section entitled "Endorsements".  Such a section
    may not be included in the Modified Version.
 N. Do not retitle any existing section as "Endorsements"
    or to conflict in title with any Invariant Section.
 .
 If the Modified Version includes new front-matter sections or
 appendices that qualify as Secondary Sections and contain no material
 copied from the Document, you may at your option designate some or all
 of these sections as invariant.  To do this, add their titles to the
 list of Invariant Sections in the Modified Version's license notice.
 These titles must be distinct from any other section titles.
 .
 You may add a section entitled "Endorsements", provided it contains
 nothing but endorsements of your Modified Version by various
 parties--for example, statements of peer review or that the text has
 been approved by an organization as the authoritative definition of a
 standard.
 .
 You may add a passage of up to five words as a Front-Cover Text, and a
 passage of up to 25 words as a Back-Cover Text, to the end of the list
 of Cover Texts in the Modified Version.  Only one passage of
 Front-Cover Text and one of Back-Cover Text may be added by (or
 through arrangements made by) any one entity.  If the Document already
 includes a cover text for the same cover, previously added by you or
 by arrangement made by the same entity you are acting on behalf of,
 you may not add another; but you may replace the old one, on explicit
 permission from the previous publisher that added the old one.
 .
 The author(s) and publisher(s) of the Document do not by this License
 give permission to use their names for publicity for or to assert or
 imply endorsement of any Modified Version.
 .
 .
 5. COMBINING DOCUMENTS
 .
 You may combine the Document with other documents released under this
 License, under the terms defined in section 4 above for modified
 versions, provided that you include in the combination all of the
 Invariant Sections of all of the original documents, unmodified, and
 list them all as Invariant Sections of your combined work in its
 license notice.
 .
 The combined work need only contain one copy of this License, and
 multiple identical Invariant Sections may be replaced with a single
 copy.  If there are multiple Invariant Sections with the same name but
 different contents, make the title of each such section unique by
 adding at the end of it, in parentheses, the name of the original
 author or publisher of that section if known, or else a unique number.
 Make the same adjustment to the section titles in the list of
 Invariant Sections in the license notice of the combined work.
 .
 In the combination, you must combine any sections entitled "History"
 in the various original documents, forming one section entitled
 "History"; likewise combine any sections entitled "Acknowledgements",
 and any sections entitled "Dedications".  You must delete all sections
 entitled "Endorsements."
 .
 .
 6. COLLECTIONS OF DOCUMENTS
 .
 You may make a collection consisting of the Document and other documents
 released under this License, and replace the individual copies of this
 License in the various documents with a single copy that is included in
 the collection, provided that you follow the rules of this License for
 verbatim copying of each of the documents in all other respects.
 .
 You may extract a single document from such a collection, and distribute
 it individually under this License, provided you insert a copy of this
 License into the extracted document, and follow this License in all
 other respects regarding verbatim copying of that document.
 .
 .
 7. AGGREGATION WITH INDEPENDENT WORKS
 .
 A compilation of the Document or its derivatives with other separate
 and independent documents or works, in or on a volume of a storage or
 distribution medium, does not as a whole count as a Modified Version
 of the Document, provided no compilation copyright is claimed for the
 compilation.  Such a compilation is called an "aggregate", and this
 License does not apply to the other self-contained works thus compiled
 with the Document, on account of their being thus compiled, if they
 are not themselves derivative works of the Document.
 .
 If the Cover Text requirement of section 3 is applicable to these
 copies of the Document, then if the Document is less than one quarter
 of the entire aggregate, the Document's Cover Texts may be placed on
 covers that surround only the Document within the aggregate.
 Otherwise they must appear on covers around the whole aggregate.
 .
 .
 8. TRANSLATION
 .
 Translation is considered a kind of modification, so you may
 distribute translations of the Document under the terms of section 4.
 Replacing Invariant Sections with translations requires special
 permission from their copyright holders, but you may include
 translations of some or all Invariant Sections in addition to the
 original versions of these Invariant Sections.  You may include a
 translation of this License provided that you also include the
 original English version of this License.  In case of a disagreement
 between the translation and the original English version of this
 License, the original English version will prevail.
 .
 .
 9. TERMINATION
 .
 You may not copy, modify, sublicense, or distribute the Document except
 as expressly provided for under this License.  Any other attempt to
 copy, modify, sublicense or distribute the Document is void, and will
 automatically terminate your rights under this License.  However,
 parties who have received copies, or rights, from you under this
 License will not have their licenses terminated so long as such
 parties remain in full compliance.
 .
 .
 10. FUTURE REVISIONS OF THIS LICENSE
 .
 The Free Software Foundation may publish new, revised versions
 of the GNU Free Documentation License from time to time.  Such new
 versions will be similar in spirit to the present version, but may
 differ in detail to address new problems or concerns.  See
 http://www.gnu.org/copyleft/.
 .
 Each version of the License is given a distinguishing version number.
 If the Document specifies that a particular numbered version of this
 License "or any later version" applies to it, you have the option of
 following the terms and conditions either of that specified version or
 of any later version that has been published (not as a draft) by the
 Free Software Foundation.  If the Document does not specify a version
 number of this License, you may choose any version ever published (not
 as a draft) by the Free Software Foundation.
 .
 .
 ADDENDUM: How to use this License for your documents
 .
 To use this License in a document you have written, include a copy of
 the License in the document and put the following copyright and
 license notices just after the title page:
 .
       Copyright (c)  YEAR  YOUR NAME.
       Permission is granted to copy, distribute and/or modify this document
       under the terms of the GNU Free Documentation License, Version 1.1
       or any later version published by the Free Software Foundation;
       with the Invariant Sections being LIST THEIR TITLES, with the
       Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
       A copy of the license is included in the section entitled "GNU
       Free Documentation License".
 .
 If you have no Invariant Sections, write "with no Invariant Sections"
 instead of saying which ones are invariant.  If you have no
 Front-Cover Texts, write "no Front-Cover Texts" instead of
 "Front-Cover Texts being LIST"; likewise for Back-Cover Texts.
 .
 If your document contains nontrivial examples of program code, we
 recommend releasing these examples in parallel under your choice of
 free software license, such as the GNU General Public License,
 to permit their use in free software.

License: GFDL-NIV-1.2
 Permission is granted to copy, distribute and/or modify this document
 under the terms of the GNU Free Documentation License, Version 1.2
 published by the Free Software Foundation; with no Invariant Sections,
 no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
 is included in the section entitled "GNU Free Documentation License".
 .
 On Debian systems, the full text of the GNU Free Documentation
 License version 1.2 can be found in the file
 `/usr/share/common-licenses/GFDL-1.2'.

License: GFDL-NIV-1.2+
 Permission is granted to copy, distribute and/or modify this document
 under the terms of the GNU Free Documentation License, Version 1.2
 or any later version published by the Free Software Foundation;
 with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
 A copy of the license is included in the section entitled "GNU
 Free Documentation License".
 .
 On Debian systems, the full text of the GNU Free Documentation
 License version 1.2 can be found in the file
 `/usr/share/common-licenses/GFDL-1.2'.

License: GPL-1+
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 1, or (at your option)
 any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA  02110-1301 USA
 .
 On Debian systems, the full text of the GNU General Public
 License version 1 can be found in the file
 `/usr/share/common-licenses/GPL-1'.

License: GPL-2
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; version 2 of the License.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License along
 with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 .
 On Debian systems, the full text of the GNU General Public
 License version 2 can be found in the file
 `/usr/share/common-licenses/GPL-2'.

License: GPL-2+
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License along
 with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 .
 On Debian systems, the full text of the GNU General Public
 License version 2 can be found in the file
 `/usr/share/common-licenses/GPL-2'.

License: HOWTO
 Unless otherwise stated, Linux HOWTO documents are copyrighted by their
 respective authors. Linux HOWTO documents may be reproduced and distributed
 in whole or in part, in any medium physical or electronic, as long as
 this copyright notice is retained on all copies. Commercial redistribution
 is allowed and encouraged; however, the author would like to be notified of
 any such distributions.
 .
 All translations, derivative works, or aggregate works incorporating
 any Linux HOWTO documents must be covered under this copyright notice.
 That is, you may not produce a derivative work from a HOWTO and impose
 additional restrictions on its distribution. Exceptions to these rules
 may be granted under certain conditions; please contact the Linux HOWTO
 coordinator at the address given below.
 .
 In short, we wish to promote dissemination of this information through as
 many channels as possible. However, we do wish to retain copyright on the
 HOWTO documents, and would like to be notified of any plans to redistribute
 the HOWTOs.
Comment: French version
 Sauf mention contraire, les documents Linux HOWTO sont la propriété de leurs
 auteurs respectifs. Les documents Linux HOWTO peuvent être reproduits et distribués
 en totalité ou en partie, sur tout support physique ou électronique, tant que cette
 notice de copyright est présente sur chaque copie. La redistribution commerciale est
 autorisée et encouragée; néammoins, l'auteur souhaite être informé de toute
 distribution de ce genre.
 .
 Toute traduction, travail dérivé, ou agrégat incorporant tout ou partie d'un ou plusieurs
 documents Linux HOWTO doit être couvert par ce même copyright. Ce qui veut dire
 que vous ne pouvez produire un travail dérivé d'un HOWTO et imposer des
 restrictions supplémentaires concernant sa distribution. Des exceptions à ces règles
 peuvent être délivrées sous certaines conditions; Contactez le coordinateur des Linux
 HOWTO à l'adresse ci-dessous.
 .
 En bref, nous souhaitons promouvoir la dissémination de cette information à travers
 autant de canaux que possible. Néammoins, nous souhaitons conserver un copyright
 sur les documents HOWTO, et être avisés de tout plan de distribution les concernant.

License: LDP
 This document may be distributed under the terms set forth in the LDP license
 at sunsite.unc.edu/LDP/COPYRIGHT.html.
 .
 This HOWTO is free documentation; you can redistribute it and/or modify it
 under the terms of the LDP license. This document is distributed in the hope
 that it will be useful, but without any warranty; without even the implied
 warranty of merchantability or fitness for a particular purpose. See the LDP
 license for more details.
 .
       LINUX DOCUMENTATION PROJECT LICENSE (LDPL) v2.0, 12 January 1998
 .
 I. COPYRIGHT
 .
 The copyright to each Linux Documentation Project (LDP) document is owned by
 its author or authors.
 .
 II. LICENSE
 .
 The following license terms apply to all LDP documents, unless otherwise
 stated in the document. The LDP documents may be reproduced and distributed in
 whole or in part, in any medium physical or electronic, provided that this
 license notice is displayed in the reproduction. Commercial redistribution is
 permitted and encouraged. Thirty days advance notice via email to the
 author(s) of redistribution is appreciated, to give the authors time to
 provide updated documents.
 .
     A. REQUIREMENTS OF MODIFIED WORKS
 .
       All modified documents, including translations, anthologies, and
       partial documents, must meet the following requirements:
 .
         1. The modified version must be labeled as such.
         2. The person making the modifications must be identified.
         3. Acknowledgement of the original author must be retained.
         4. The location of the original unmodified document be identified.
         5. The original author's (or authors') name(s) may not be used to
            assert or imply endorsement of the resulting document without the
            original author's (or authors') permission.
 .
       In addition it is requested that:
         1. The modifications (including deletions) be noted.
         2. The author be notified by email of the modification in advance of
            redistribution, if an email address is provided in the document.
 .
       As a special exception, anthologies of LDP documents may include a
       single copy of these license terms in a conspicuous location within the
       anthology and replace other copies of this license with a reference to
       the single copy of the license without the document being considered
       "modified" for the purposes of this section.
 .
       Mere aggregation of LDP documents with other documents or programs on the
       same media shall not cause this license to apply to those other works.
 .
       All translations, derivative documents, or modified documents that
       incorporate any LDP document may not have more restrictive license terms
       than these, except that you may require distributors to make the
       resulting document available in source format.
 .
       LDP documents are available in source format via the LDP home page at
       http://sunsite.unc.edu/LDP/.
 .
                               LDP Policy Appendices
 .
 A. TO USE THE LDP LICENSE
 .
 LDP authors who want to use the LDP License should put the following statement
 in their document:
 .
       Copyright (c) by . This document may be distributed only subject to the
       terms and conditions set forth in the LDP License at .
 .
 Authors may include a copy of the license in their documents, as well. If they
 do so, they have the option of ommitting the appendices.
 .
 B. TO USE THE LDP LICENSE, BUT PREVENT MODIFICATION
 .
 LDP authors who want to prevent modification to their document should put
 the following statement in their document:
 .
       Copyright (c) by . This document may be distributed only subject to the
       terms and conditions set forth in the LDP License at , except that this
       document must not be distributed in modified form without the author's
       consent.
 .
 C. TO USE YOUR OWN LICENSE
 .
 LDP authors who want to include their own license on LDP works may do so, as
 long as their terms are not more restrictive than the LDP license, except that
 they may require that the document may not be modified.

License: OSL-1.1
 Permission is granted to copy, distribute and/or modify this
 document under the terms of the Open Software License (OSL),
 version 1.1.
 .
			The Open Software License
			v. 1.1
 .
 This Open Software License (the "License") applies to any original work of
 authorship (the "Original Work") whose owner (the "Licensor") has placed the
 following notice immediately following the copyright notice for the Original
 Work:
 .
 Licensed under the Open Software License version 1.1
 .
 1) Grant of Copyright License. Licensor hereby grants You a world-wide,
 royalty-free, non-exclusive, perpetual, non-sublicenseable license to do the
 following:
 .
 a) to reproduce the Original Work in copies;
 .
 b) to prepare derivative works ("Derivative Works") based upon the Original
 Work;
 .
 c) to distribute copies of the Original Work and Derivative Works to the
 public, with the proviso that copies of Original Work or Derivative Works that
 You distribute shall be licensed under the Open Software License;
 .
 d) to perform the Original Work publicly; and
 .
 e) to display the Original Work publicly.
 .
 2) Grant of Patent License. Licensor hereby grants You a world-wide,
 royalty-free, non-exclusive, perpetual, non-sublicenseable license, under
 patent claims owned or controlled by the Licensor that are embodied in the
 Original Work as furnished by the Licensor ("Licensed Claims") to make, use,
 sell and offer for sale the Original Work. Licensor hereby grants You a
 world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable license
 under the Licensed Claims to make, use, sell and offer for sale Derivative Works.
 .
 3) Grant of Source Code License. The term "Source Code" means the preferred
 form of the Original Work for making modifications to it and all available
 documentation describing how to modify the Original Work. Licensor hereby
 agrees to provide a machine-readable copy of the Source Code of the Original
 Work along with each copy of the Original Work that Licensor distributes.
 Licensor reserves the right to satisfy this obligation by placing a
 machine-readable copy of the Source Code in an information repository reasonably
 calculated to permit inexpensive and convenient access by You for as long as
 Licensor continues to distribute the Original Work, and by publishing the
 address of that information repository in a notice immediately following the
 copyright notice that applies to the Original Work.
 .
 4) Exclusions From License Grant. Nothing in this License shall be deemed to
 grant any rights to trademarks, copyrights, patents, trade secrets or any
 other intellectual property of Licensor except as expressly stated herein. No
 patent license is granted to make, use, sell or offer to sell embodiments of
 any patent claims other than the Licensed Claims defined in Section 2. No
 right is granted to the trademarks of Licensor even if such marks are included
 in the Original Work. Nothing in this License shall be interpreted to prohibit
 Licensor from licensing under different terms from this License any Original
 Work that Licensor otherwise would have a right to license.
 .
 5) External Deployment. The term "External Deployment" means the use or
 distribution of the Original Work or Derivative Works in any way such that the
 Original Work or Derivative Works may be used by anyone other than You,
 whether the Original Work or Derivative Works are distributed to those persons
 or made available as an application intended for use over a computer network.
 As an express condition for the grants of license hereunder, You agree that
 any External Deployment by You of a Derivative Work shall be deemed a
 distribution and shall be licensed to all under the terms of this License, as
 prescribed in section 1(c) herein.
 .
 6) Attribution Rights. You must retain, in the Source Code of any Derivative
 Works that You create, all copyright, patent or trademark notices from the
 Source Code of the Original Work, as well as any notices of licensing and any
 descriptive text identified therein as an "Attribution Notice." You must cause
 the Source Code for any Derivative Works that You create to carry a prominent
 Attribution Notice reasonably calculated to inform recipients that You have
 modified the Original Work.
 .
 7) Warranty and Disclaimer of Warranty. Licensor warrants that the copyright
 in and to the Original Work is owned by the Licensor or that the Original Work
 is distributed by Licensor under a valid current license from the copyright
 owner. Except as expressly stated in the immediately proceeding sentence, the
 Original Work is provided under this License on an "AS IS" BASIS and WITHOUT
 WARRANTY, either express or implied, including, without limitation, the
 warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR
 PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU.
 This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No
 license to Original Work is granted hereunder except under this disclaimer.
 .
 8) Limitation of Liability. Under no circumstances and under no legal theory,
 whether in tort (including negligence), contract, or otherwise, shall the
 Licensor be liable to any person for any direct, indirect, special, incidental,
 or consequential damages of any character arising as a result of this License
 or the use of the Original Work including, without limitation, damages for
 loss of goodwill, work stoppage, computer failure or malfunction, or any and
 all other commercial damages or losses. This limitation of liability shall not
 apply to liability for death or personal injury resulting from Licensor's
 negligence to the extent applicable law prohibits such limitation. Some
 jurisdictions do not allow the exclusion or limitation of incidental or
 consequential damages, so this exclusion and limitation may not apply to You.
 .
 9) Acceptance and Termination. If You distribute copies of the Original Work
 or a Derivative Work, You must make a reasonable effort under the circumstances
 to obtain the express and volitional assent of recipients to the terms of this
 License. Nothing else but this License (or another written agreement between
 Licensor and You) grants You permission to create Derivative Works based upon
 the Original Work or to exercise any of the rights granted in Sections 1 herein,
 and any attempt to do so except under the terms of this License (or another
 written agreement between Licensor and You) is expressly prohibited by U.S.
 copyright law, the equivalent laws of other countries, and by international
 treaty. Therefore, by exercising any of the rights granted to You in Sections
 1 herein, You indicate Your acceptance of this License and all of its terms and
 conditions. This License shall terminate immediately and you may no longer
 exercise any of the rights granted to You by this License upon Your failure to
 honor the proviso in Section 1(c) herein.
 .
 10) Mutual Termination for Patent Action. This License shall terminate
 automatically and You may no longer exercise any of the rights granted to You
 by this License if You file a lawsuit in any court alleging that any OSI
 Certified open source software that is licensed under any license containing
 this "Mutual Termination for Patent Action" clause infringes any patent claims
 that are essential to use that software.
 .
 11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this
 License may be brought only in the courts of a jurisdiction wherein the Licensor
 resides or in which Licensor conducts its primary business, and under the laws
 of that jurisdiction excluding its conflict-of-law provisions. The application
 of the United Nations Convention on Contracts for the International Sale of
 Goods is expressly excluded. Any use of the Original Work outside the scope of
 this License or after its termination shall be subject to the requirements and
 penalties of the U.S. Copyright Act, 17 U.S.C. å¤ 101 et seq., the equivalent
 laws of other countries, and international treaty. This section shall survive
 the termination of this License.
 .
 12) Attorneys Fees. In any action to enforce the terms of this License or
 seeking damages relating thereto, the prevailing party shall be entitled to
 recover its costs and expenses, including, without limitation, reasonable
 attorneys' fees and costs incurred in connection with such action, including
 any appeal of such action. This section shall survive the termination of this
 License.
 .
 13) Miscellaneous. This License represents the complete agreement concerning
 the subject matter hereof. If any provision of this License is held to be
 unenforceable, such provision shall be reformed only to the extent necessary
 to make it enforceable.
 .
 14) Definition of "You" in This License. "You" throughout this License,
 whether in upper or lower case, means an individual or a legal entity exercising
 rights under, and complying with all of the terms of, this License. For legal
 entities, "You" includes any entity that controls, is controlled by, or is under
 common control with you. For purposes of this definition, "control" means (i)
 the power, direct or indirect, to cause the direction or management of such
 entity, whether by contract or otherwise, or (ii) ownership of fifty percent
 (50%) or more of the outstanding shares, or (iii) beneficial ownership of such
 entity.
 .
 15) Right to Use. You may use the Original Work in all ways not otherwise
 restricted or conditioned by this License or by law, and Licensor promises not
 to interfere with or be responsible for such uses by You.
 .
 This license is Copyright (C) 2002 Lawrence E. Rosen. All rights reserved.
 Permission is hereby granted to copy and distribute this license without
 modification. This license may not be modified without the express written
 permission of its copyright owner.

License: public-domain
 The content of this document is in the public domain, but please be polite and
 attribute any quotes.
Comment: French version
 Ce document est, bien entendu, mis dans le domaine public.
 Toutefois, soyez assez courtois pour ne pas vous en
 approprier la propriété si vous le diffusez...