rust/cargo-c: update to 0.10.7+cargo-0.84.0
[oi-userland.git] / components / x11 / xorg-docs / src / License.html
blob53be49a4393554cc7b052fc46ffb0c717f77b63d
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Licenses</title><meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_9276" /><style xmlns="" type="text/css">/*
4 * Copyright (c) 2011 Gaetan Nadon
5 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
28 * Shared stylesheet for X.Org documentation translated to HTML format
29 * http://www.sagehill.net/docbookxsl/UsingCSS.html
30 * http://www.w3schools.com/css/default.asp
31 * https://addons.mozilla.org/en-US/firefox/addon/web-developer/developers
32 * https://addons.mozilla.org/en-US/firefox/addon/font-finder/
36 * The sans-serif fonts are considered more legible on a computer screen
37 * http://dry.sailingissues.com/linux-equivalents-verdana-arial.html
40 body {
41 font-family: "Bitstream Vera Sans", "DejaVu Sans", Tahoma, Geneva, Arial, Sans-serif;
42 /* In support of using "em" font size unit, the w3c recommended method */
43 font-size: 100%;
47 * Selection: all elements requiring mono spaced fonts.
49 * The family names attempt to match the proportionally spaced font
50 * family names such that the same font name is used for both.
51 * We'd like to use Bitstream, for example, in both proportionally and
52 * mono spaced font text.
54 .command,
55 .errorcode,
56 .errorname,
57 .errortype,
58 .filename,
59 .funcsynopsis,
60 .function,
61 .parameter,
62 .programlisting,
63 .property,
64 .screen,
65 .structname,
66 .symbol,
67 .synopsis,
68 .type
70 font-family: "Bitstream Vera Sans Mono", "DejaVu Sans Mono", Courier, "Liberation Mono", Monospace;
74 * Books have a title page, a preface, some chapters and appendices,
75 * a glossary, an index and a bibliography, in that order.
77 * An Article has no preface and no chapters. It has sections, appendices,
78 * a glossary, an index and a bibliography.
82 * Selection: book main title and subtitle
84 div.book>div.titlepage h1.title,
85 div.book>div.titlepage h2.subtitle {
86 text-align: center;
90 * Selection: article main title and subtitle
92 div.article>div.titlepage h2.title,
93 div.article>div.titlepage h3.subtitle,
94 div.article>div.sect1>div.titlepage h2.title,
95 div.article>div.section>div.titlepage h2.title {
96 text-align: center;
100 * Selection: various types of authors and collaborators, individuals or corporate
102 * These authors are not always contained inside an authorgroup.
103 * They can be contained inside a lot of different parent types where they might
104 * not be centered.
105 * Reducing the margin at the bottom makes a visual separation between authors
106 * We specify here the ones on the title page, others may be added based on merit.
108 div.titlepage .authorgroup,
109 div.titlepage .author,
110 div.titlepage .collab,
111 div.titlepage .corpauthor,
112 div.titlepage .corpcredit,
113 div.titlepage .editor,
114 div.titlepage .othercredit {
115 text-align: center;
116 margin-bottom: 0.25em;
120 * Selection: the affiliation of various types of authors and collaborators,
121 * individuals or corporate.
123 div.titlepage .affiliation {
124 text-align: center;
128 * Selection: product release information (X Version 11, Release 7)
130 * The releaseinfo element can be contained inside a lot of different parent
131 * types where it might not be centered.
132 * We specify here the one on the title page, others may be added based on merit.
134 div.titlepage p.releaseinfo {
135 font-weight: bold;
136 text-align: center;
140 * Selection: publishing date
142 div.titlepage .pubdate {
143 text-align: center;
147 * The legal notices are displayed in smaller sized fonts
148 * Justification is only supported in IE and therefore not requested.
151 .legalnotice {
152 font-size: small;
153 font-style: italic;
157 * For documentation having multiple licenses, the copyright and legalnotice
158 * elements sequence cannot instantiated multiple times.
159 * The copyright notice and license text are therefore coded inside a legalnotice
160 * element. The role attribute on the paragraph is used to allow styling of the
161 * copyright notice text which should not be italicized.
163 p.multiLicensing {
164 font-style: normal;
165 font-size: medium;
169 * Selection: book or article main ToC title
170 * A paragraph is generated for the title rather than a level 2 heading.
171 * We do not want to select chapters sub table of contents, only the main one
173 div.book>div.toc>p,
174 div.article>div.toc>p {
175 font-size: 1.5em;
176 text-align: center;
180 * Selection: major sections of a book or an article
182 * Unlike books, articles do not have a titlepage element for appendix.
183 * Using the selector "div.titlepage h2.title" would be too general.
185 div.book>div.preface>div.titlepage h2.title,
186 div.book>div.chapter>div.titlepage h2.title,
187 div.article>div.sect1>div.titlepage h2.title,
188 div.article>div.section>div.titlepage h2.title,
189 div.book>div.appendix>div.titlepage h2.title,
190 div.article>div.appendix h2.title,
191 div.glossary>div.titlepage h2.title,
192 div.index>div.titlepage h2.title,
193 div.bibliography>div.titlepage h2.title {
194 /* Add a border top over the major parts, just like printed books */
195 /* The Gray color is already used for the ruler over the main ToC. */
196 border-top-style: solid;
197 border-top-width: 2px;
198 border-top-color: Gray;
199 /* Put some space between the border and the title */
200 padding-top: 0.2em;
201 text-align: center;
205 * A Screen is a verbatim environment for displaying text that the user might
206 * see on a computer terminal. It is often used to display the results of a command.
208 * http://www.css3.info/preview/rounded-border/
210 .screen {
211 background: #e0ffff;
212 border-width: 1px;
213 border-style: solid;
214 border-color: #B0C4DE;
215 border-radius: 1.0em;
216 /* Browser's vendor properties prior to CSS 3 */
217 -moz-border-radius: 1.0em;
218 -webkit-border-radius: 1.0em;
219 -khtml-border-radius: 1.0em;
220 margin-left: 1.0em;
221 margin-right: 1.0em;
222 padding: 0.5em;
226 * Emphasis program listings with a light shade of gray similar to what
227 * DocBook XSL guide does: http://www.sagehill.net/docbookxsl/ProgramListings.html
228 * Found many C API docs on the web using like shades of gray.
230 .programlisting {
231 background: #F4F4F4;
232 border-width: 1px;
233 border-style: solid;
234 border-color: Gray;
235 padding: 0.5em;
239 * Emphasis functions synopsis using a darker shade of gray.
240 * Add a border such that it stands out more.
241 * Set the padding so the text does not touch the border.
243 .funcsynopsis, .synopsis {
244 background: #e6e6fa;
245 border-width: 1px;
246 border-style: solid;
247 border-color: Gray;
248 clear: both;
249 margin: 0.5em;
250 padding: 0.25em;
254 * Selection: paragraphs inside synopsis
256 * Removes the default browser margin, let the container set the padding.
257 * Paragraphs are not always used in synopsis
259 .funcsynopsis p,
260 .synopsis p {
261 margin: 0;
262 padding: 0;
266 * Selection: variable lists, informal tables and tables
268 * Note the parameter name "variablelist.as.table" in xorg-xhtml.xsl
269 * A table with rows and columns is constructed inside div.variablelist
271 * Set the left margin so it is indented to the right
272 * Display informal tables with single line borders
274 table {
275 margin-left: 0.5em;
276 border-collapse: collapse;
280 * Selection: paragraphs inside tables
282 * Removes the default browser margin, let the container set the padding.
283 * Paragraphs are not always used in tables
285 td p {
286 margin: 0;
287 padding: 0;
291 * Add some space between the left and right column.
292 * The vertical alignment helps the reader associate a term
293 * with a multi-line definition.
295 td, th {
296 padding-left: 1.0em;
297 padding-right: 1.0em;
298 vertical-align: top;
301 .warning {
302 border: 1px solid red;
303 background: #FFFF66;
304 padding-left: 0.5em;
306 </style></head><body><div class="article"><div class="titlepage"><div><div><h2 class="title"><a id="License"></a>Licenses</h2></div><div><h3 class="corpauthor">The X.Org Foundation</h3></div><div><p class="pubdate">April 2012</p></div></div><hr /></div><div class="toc"><p><strong>Table of Contents</strong></p><dl><dt><span class="sect1"><a href="#Introduction">Introduction</a></span></dt><dt><span class="sect1"><a href="#X.Org_Preferred_License">X.Org Preferred License</a></span></dt><dt><span class="sect1"><a href="#XFree86_License_1.0">XFree86 License 1.0</a></span></dt><dt><span class="sect1"><a href="#Other_Licenses">Other Licenses</a></span></dt><dd><dl><dt><span class="sect2"><a href="#X_MIT_Copyrights">X/MIT Copyrights</a></span></dt><dt><span class="sect2"><a href="#Berkeley-based_copyrights">Berkeley-based copyrights</a></span></dt><dt><span class="sect2"><a href="#SGI_Free_Software_License_B">SGI Free Software License B</a></span></dt><dt><span class="sect2"><a href="#Bigelow_Holmes_Inc_and_URW_GmbH_Luxi_font_license">Bigelow &amp; Holmes Inc and URW++ GmbH Luxi font license</a></span></dt></dl></dd></dl></div><div class="sect1"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="Introduction"></a>Introduction</h2></div></div></div><p>
307 The X.Org Foundation X Window System distribution is a compilation of code and
308 documentation from many sources. This document is intended primarily
309 as a guide to the licenses used in the distribution: you must check
310 each file and/or package for precise redistribution
311 terms. None-the-less, this summary may be useful to many users.
312 </p><p>
313 This document is based on the compilation from XFree86.
314 If you find any errors or significant omissions in this document, please
315 contact us with details at <code class="email">&lt;<a class="email" href="mailto:xorg@lists.freedesktop.org">xorg@lists.freedesktop.org</a>&gt;</code>.
316 </p><p>
317 Most of these licenses are based on the MIT, X Consortium, or BSD
318 (original and revised) licenses. All of them are consistent with the
319 <a class="ulink" href="http://www.opensource.org/docs/definition.php" target="_top">Open Source Definition</a>, and most are
320 consistent with the Free Software Foundation's <a class="ulink" href="http://www.fsf.org/philosophy/free-sw.html" target="_top">Free Software
321 Definition</a>.
322 </p><p>
323 While the current licenses are all open source licenses, the
324 X.Org Foundation is attempting, over time, to bring as much as
325 possible of the code's licenses in the distribution into compliance with the
326 <a class="ulink" href="http://www.debian.org/social_contract#guidelines" target="_top">Debian Free Software Guidelines</a>.
327 </p></div><div class="sect1"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="X.Org_Preferred_License"></a>X.Org Preferred License</h2></div></div></div><p>
328 The X.Org Foundation has chosen the following format of the MIT
329 License as the preferred format for code included in the X Window System
330 distribution. This is a slight variant of the common MIT license
331 form published by the Open Source Initiative at
332 <a class="ulink" href="http://www.opensource.org/licenses/mit-license.php" target="_top">http://www.opensource.org/licenses/mit-license.php</a>.
333 </p><div class="blockquote"><blockquote class="blockquote"><p>
334 Copyright ©<em class="parameter"><code>[year]</code></em> <em class="parameter"><code>[copyright holder]</code></em>
335 </p><p>
336 Permission is hereby granted, free of charge, to any person obtaining a
337 copy of this software and associated documentation files (the "Software"),
338 to deal in the Software without restriction, including without limitation
339 the rights to use, copy, modify, merge, publish, distribute, sublicense,
340 and/or sell copies of the Software, and to permit persons to whom the
341 Software is furnished to do so, subject to the following conditions:
342 </p><p>
343 The above copyright notice and this permission notice (including the next
344 paragraph) shall be included in all copies or substantial portions of the
345 Software.
346 </p><p>
347 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
348 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
349 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
350 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
351 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
352 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
353 DEALINGS IN THE SOFTWARE.
354 </p></blockquote></div><p>
355 When listing multiple copyright holders with the license statement,
356 please sort by surname for people, and by the full name for other
357 entities (e.g. Juliusz Chroboczek sorts before Intel Corporation sorts
358 before Daniel Stone).
359 </p></div><div class="sect1"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="XFree86_License_1.0"></a>XFree86 License 1.0</h2></div></div></div><p>
360 XFree86 code without an explicit copyright is covered by the following
361 copyright/license:
362 </p><div class="blockquote"><blockquote class="blockquote"><p>
363 Copyright (C) 1994-2003 The XFree86 Project, Inc. All Rights Reserved.
364 </p><p>
365 Permission is hereby granted, free of charge, to any person obtaining a
366 copy of this software and associated documentation files (the "Software"),
367 to deal in the Software without restriction, including without limitation
368 the rights to use, copy, modify, merge, publish, distribute, sublicense,
369 and/or sell copies of the Software, and to permit persons to whom the
370 Software is furnished to do so, subject to the following conditions:
371 </p><p>
372 The above copyright notice and this permission notice shall be included in
373 all copies or substantial portions of the Software.
374 </p><p>
375 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
376 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
377 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
378 THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
379 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
380 OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
381 SOFTWARE.
382 </p><p>
383 Except as contained in this notice, the name of the XFree86 Project shall
384 not be used in advertising or otherwise to promote the sale, use or other
385 dealings in this Software without prior written authorization from the
386 XFree86 Project.
387 </p></blockquote></div><p>
388 No software incorporating the XFree86 1.1 license has been incorporated.
389 </p></div><div class="sect1"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="Other_Licenses"></a>Other Licenses</h2></div></div></div><p>
390 Portions of code are covered by the following licenses/copyrights. See
391 individual files for the copyright dates.
392 </p><div class="sect2"><div class="titlepage"><div><div><h3 class="title"><a id="X_MIT_Copyrights"></a>X/MIT Copyrights</h3></div></div></div><div class="sect3"><div class="titlepage"><div><div><h4 class="title"><a id="X_Consortium"></a>X Consortium</h4></div></div></div><p>
393 Copyright (C) <span class="emphasis"><em>&lt;date&gt;</em></span> X Consortium
394 </p><p>
395 Permission is hereby granted, free of charge, to any person obtaining a
396 copy of this software and associated documentation files (the "Software"),
397 to deal in the Software without restriction, including without
398 limitation the rights to use, copy, modify, merge, publish, distribute,
399 sublicense, and/or sell copies of the Software, and to permit persons to
400 whom the Software is furnished to do so, subject to the following conditions:
401 </p><p>
402 The above copyright notice and this permission notice shall be included
403 in all copies or substantial portions of the Software.
404 </p><p>
405 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
406 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
407 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
408 SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
409 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
410 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
411 IN THE SOFTWARE.
412 </p><p>
413 Except as contained in this notice, the name of the X Consortium shall
414 not be used in advertising or otherwise to promote the sale, use or
415 other dealings in this Software without prior written authorization from
416 the X Consortium.
417 </p><p>
418 X Window System is a trademark of X Consortium, Inc.
419 </p></div><div class="sect3"><div class="titlepage"><div><div><h4 class="title"><a id="The_Open_Group"></a>The Open Group</h4></div></div></div><p>
420 Copyright <span class="emphasis"><em>&lt;date&gt;</em></span> The Open Group
421 </p><p>
422 Permission to use, copy, modify, distribute, and sell this software and its
423 documentation for any purpose is hereby granted without fee, provided that
424 the above copyright notice appear in all copies and that both that
425 copyright notice and this permission notice appear in supporting
426 documentation.
427 </p><p>
428 The above copyright notice and this permission notice shall be included in
429 all copies or substantial portions of the Software.
430 </p><p>
431 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
432 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
433 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
434 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
435 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
436 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
437 </p><p>
438 Except as contained in this notice, the name of The Open Group shall not be
439 used in advertising or otherwise to promote the sale, use or other dealings
440 in this Software without prior written authorization from The Open Group.
441 </p></div></div><div class="sect2"><div class="titlepage"><div><div><h3 class="title"><a id="Berkeley-based_copyrights"></a>Berkeley-based copyrights</h3></div></div></div><div class="sect3"><div class="titlepage"><div><div><h4 class="title"><a id="General"></a>General</h4></div></div></div><p>
442 Redistribution and use in source and binary forms, with or without
443 modification, are permitted provided that the following conditions
444 are met:
445 </p><p>
447 </p><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><p>
448 Redistributions of source code must retain the above copyright
449 notice, this list of conditions and the following disclaimer.
450 </p></li><li class="listitem"><p>
451 Redistributions in binary form must reproduce the above copyright
452 notice, this list of conditions and the following disclaimer in the
453 documentation and/or other materials provided with the distribution.
454 </p></li><li class="listitem"><p>
455 The name of the author may not be used to endorse or promote products
456 derived from this software without specific prior written permission.
457 </p></li></ol></div><p>
459 </p><p>
460 THIS SOFTWARE IS PROVIDED BY THE AUTHOR <span class="quote"><span class="quote">AS IS</span></span> AND ANY EXPRESS OR
461 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
462 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
463 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
464 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
465 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
466 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
467 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
468 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
469 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
470 </p></div><div class="sect3"><div class="titlepage"><div><div><h4 class="title"><a id="UCB_LBL"></a>UCB/LBL</h4></div></div></div><p>
471 Copyright (c) 1993
472 The Regents of the University of California. All rights reserved.
473 </p><p>
474 This software was developed by the Computer Systems Engineering group
475 at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
476 contributed to Berkeley.
477 </p><p>
478 All advertising materials mentioning features or use of this software
479 must display the following acknowledgement:
480 This product includes software developed by the University of
481 California, Lawrence Berkeley Laboratory.
482 </p><p>
483 Redistribution and use in source and binary forms, with or without
484 modification, are permitted provided that the following conditions
485 are met:
486 </p><p>
488 </p><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><p>
489 Redistributions of source code must retain the above copyright
490 notice, this list of conditions and the following disclaimer.
491 </p></li><li class="listitem"><p>
492 Redistributions in binary form must reproduce the above copyright
493 notice, this list of conditions and the following disclaimer in the
494 documentation and/or other materials provided with the distribution.
495 </p></li><li class="listitem"><p>
496 All advertising materials mentioning features or use of this software
497 must display the following acknowledgement:
498 This product includes software developed by the University of
499 California, Berkeley and its contributors.
500 </p></li><li class="listitem"><p>
501 Neither the name of the University nor the names of its contributors
502 may be used to endorse or promote products derived from this software
503 without specific prior written permission.
504 </p></li></ol></div><p>
506 </p><p>
507 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS <span class="quote"><span class="quote">AS IS</span></span> AND
508 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
509 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
510 ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
511 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
512 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
513 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
514 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
515 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
516 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
517 SUCH DAMAGE.
518 </p></div><div class="sect3"><div class="titlepage"><div><div><h4 class="title"><a id="The_NetBSD_Foundation_Inc."></a>The NetBSD Foundation, Inc.</h4></div></div></div><p>
519 Copyright (c) 2003 The NetBSD Foundation, Inc.
520 All rights reserved.
521 </p><p>
522 This code is derived from software contributed to The NetBSD Foundation
523 by Ben Collver &lt;collver1@attbi.com&gt;
524 </p><p>
525 Redistribution and use in source and binary forms, with or without
526 modification, are permitted provided that the following conditions
527 are met:
529 </p><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><p>
530 Redistributions of source code must retain the above copyright
531 notice, this list of conditions and the following disclaimer.
532 </p></li><li class="listitem"><p>
533 Redistributions in binary form must reproduce the above copyright
534 notice, this list of conditions and the following disclaimer in the
535 documentation and/or other materials provided with the distribution.
536 </p></li></ol></div><p>
538 </p><p>
539 THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
540 <span class="quote"><span class="quote">AS IS</span></span> AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
541 TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
542 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
543 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
544 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
545 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
546 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
547 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
548 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
549 POSSIBILITY OF SUCH DAMAGE.
550 </p></div><div class="sect3"><div class="titlepage"><div><div><h4 class="title"><a id="Theodore_Tso"></a>Theodore Ts'o</h4></div></div></div><p>
551 Copyright Theodore Ts'o, 1994, 1995, 1996, 1997, 1998, 1999. All
552 rights reserved.
553 </p><p>
554 Redistribution and use in source and binary forms, with or without
555 modification, are permitted provided that the following conditions
556 are met:
558 </p><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><p>
559 Redistributions of source code must retain the above copyright
560 notice, and the entire permission notice in its entirety,
561 including the disclaimer of warranties.
562 </p></li><li class="listitem"><p>
563 Redistributions in binary form must reproduce the above copyright
564 notice, this list of conditions and the following disclaimer in the
565 documentation and/or other materials provided with the distribution.
566 </p></li><li class="listitem"><p>
567 The name of the author may not be used to endorse or promote
568 products derived from this software without specific prior
569 written permission.
570 </p></li></ol></div><p>
572 </p><p>
573 THIS SOFTWARE IS PROVIDED <span class="quote"><span class="quote">AS IS</span></span> AND ANY EXPRESS OR IMPLIED
574 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
575 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF
576 WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
577 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
578 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
579 OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
580 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
581 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
582 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
583 USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH
584 DAMAGE.
585 </p></div><div class="sect3"><div class="titlepage"><div><div><h4 class="title"><a id="Theo_de_Raadt_and_Damien_Miller"></a>Theo de Raadt and Damien Miller</h4></div></div></div><p>
586 Copyright (c) 1995,1999 Theo de Raadt. All rights reserved.
587 Copyright (c) 2001-2002 Damien Miller. All rights reserved.
588 </p><p>
589 Redistribution and use in source and binary forms, with or without
590 modification, are permitted provided that the following conditions
591 are met:
593 </p><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><p>
594 Redistributions of source code must retain the above copyright
595 notice, this list of conditions and the following disclaimer.
596 </p></li><li class="listitem"><p>
597 Redistributions in binary form must reproduce the above copyright
598 notice, this list of conditions and the following disclaimer in the
599 documentation and/or other materials provided with the distribution.
600 </p></li></ol></div><p>
602 </p><p>
603 THIS SOFTWARE IS PROVIDED BY THE AUTHOR <span class="quote"><span class="quote">AS IS</span></span> AND ANY EXPRESS OR
604 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
605 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
606 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
607 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
608 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
609 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
610 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
611 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
612 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
613 </p></div><div class="sect3"><div class="titlepage"><div><div><h4 class="title"><a id="Todd_C._Miller"></a>Todd C. Miller</h4></div></div></div><p>
614 Copyright (c) 1998 Todd C. Miller &lt;Todd.Miller@courtesan.com&gt;
615 </p><p>
616 Permission to use, copy, modify, and distribute this software for any
617 purpose with or without fee is hereby granted, provided that the above
618 copyright notice and this permission notice appear in all copies.
619 </p><p>
620 THE SOFTWARE IS PROVIDED "AS IS" AND TODD C. MILLER DISCLAIMS ALL
621 WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
622 OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL TODD C. MILLER BE LIABLE
623 FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
624 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
625 OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
626 CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
627 </p></div><div class="sect3"><div class="titlepage"><div><div><h4 class="title"><a id="Thomas_Winischhofer"></a>Thomas Winischhofer</h4></div></div></div><p>
628 Copyright (C) 2001-2004 Thomas Winischhofer
629 </p><p>
630 Redistribution and use in source and binary forms, with or without
631 modification, are permitted provided that the following conditions are met:
632 </p><p>
634 </p><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><p>
635 Redistributions of source code must retain the above copyright
636 notice, this list of conditions and the following disclaimer.
637 </p></li><li class="listitem"><p>
638 Redistributions in binary form must reproduce the above copyright
639 notice, this list of conditions and the following disclaimer in the
640 documentation and/or other materials provided with the distribution.
641 </p></li><li class="listitem"><p>
642 The name of the author may not be used to endorse or promote products
643 derived from this software without specific prior written permission.
644 </p></li></ol></div><p>
646 </p><p>
647 THIS SOFTWARE IS PROVIDED BY THE AUTHOR <span class="quote"><span class="quote">AS IS</span></span> AND ANY EXPRESSED OR
648 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
649 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
650 DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
651 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
652 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
653 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
654 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
655 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
656 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
657 POSSIBILITY OF SUCH DAMAGE.
658 </p></div></div><div class="sect2"><div class="titlepage"><div><div><h3 class="title"><a id="SGI_Free_Software_License_B"></a>SGI Free Software License B</h3></div></div></div><p>
659 SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
660 </p><p>
661 Copyright (C) 1991-2000 Silicon Graphics, Inc. All Rights Reserved.
662 </p><p>
663 Permission is hereby granted, free of charge, to any person obtaining a
664 copy of this software and associated documentation files (the "Software"),
665 to deal in the Software without restriction, including without limitation
666 the rights to use, copy, modify, merge, publish, distribute, sublicense,
667 and/or sell copies of the Software, and to permit persons to whom the
668 Software is furnished to do so, subject to the following conditions:
669 </p><p>
670 The above copyright notice including the dates of first publication and
671 either this permission notice or a reference to
672 <a class="ulink" href="http://oss.sgi.com/projects/FreeB/" target="_top">http://oss.sgi.com/projects/FreeB/</a>
673 shall be included in all copies or substantial portions of the Software.
674 </p><p>
675 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
676 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
677 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
678 SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
679 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
680 OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
681 SOFTWARE.
682 </p></div><div class="sect2"><div class="titlepage"><div><div><h3 class="title"><a id="Bigelow_Holmes_Inc_and_URW_GmbH_Luxi_font_license"></a>Bigelow &amp; Holmes Inc and URW++ GmbH Luxi font license</h3></div></div></div><p>
683 Luxi fonts copyright (c) 2001 by Bigelow &amp; Holmes Inc. Luxi font
684 instruction code copyright (c) 2001 by URW++ GmbH. All Rights
685 Reserved. Luxi is a registered trademark of Bigelow &amp; Holmes Inc.
686 </p><p>
687 Permission is hereby granted, free of charge, to any person obtaining
688 a copy of these Fonts and associated documentation files (the "Font
689 Software"), to deal in the Font Software, including without
690 limitation the rights to use, copy, merge, publish, distribute,
691 sublicense, and/or sell copies of the Font Software, and to permit
692 persons to whom the Font Software is furnished to do so, subject to
693 the following conditions:
694 </p><p>
695 The above copyright and trademark notices and this permission notice
696 shall be included in all copies of one or more of the Font Software.
697 </p><p>
698 The Font Software may not be modified, altered, or added to, and in
699 particular the designs of glyphs or characters in the Fonts may not
700 be modified nor may additional glyphs or characters be added to the
701 Fonts. This License becomes null and void when the Fonts or Font
702 Software have been modified.
703 </p><p>
704 THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
705 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
706 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
707 OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL
708 BIGELOW &amp; HOLMES INC. OR URW++ GMBH. BE LIABLE FOR ANY CLAIM, DAMAGES
709 OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT,
710 INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF
711 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR
712 INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT
713 SOFTWARE.
714 </p><p>
715 Except as contained in this notice, the names of Bigelow &amp; Holmes
716 Inc. and URW++ GmbH. shall not be used in advertising or otherwise to
717 promote the sale, use or other dealings in this Font Software without
718 prior written authorization from Bigelow &amp; Holmes Inc. and URW++ GmbH.
719 </p><p>
720 For further information, contact:
721 </p><p>
722 info@urwpp.de
724 design@bigelowandholmes.com
725 </p></div></div></div></body></html>