[Libreoffice-commits] .: 16 commits - connectivity/qa editeng/source sysui/desktop xmloff/source

Jan Holesovsky kendy at kemper.freedesktop.org
Mon Jun 6 05:13:17 PDT 2011


 connectivity/qa/makefile.mk           |    3 +--
 editeng/source/rtf/rtfitem.cxx        |   16 ++++++++++++++++
 sysui/desktop/productversion.mk       |    2 +-
 xmloff/source/forms/elementimport.cxx |    2 +-
 4 files changed, 19 insertions(+), 4 deletions(-)

New commits:
commit f38eedda3e013612088802b3815368238bfc2341
Merge: 2342f72... 633c56f...
Author: Jan Holesovsky <kendy at suse.cz>
Date:   Mon Jun 6 14:06:48 2011 +0200

    Merge remote-tracking branch 'origin/libreoffice-3-4'
    
    Conflicts:
    	connectivity/qa/makefile.mk
    	sfx2/source/appl/appdata.cxx
    	sfx2/source/appl/appinit.cxx
    	sfx2/source/inc/appdata.hxx
    	sysui/desktop/productversion.mk
    	xmloff/source/forms/elementimport.cxx

diff --cc connectivity/qa/makefile.mk
index c087ab9,4dc2ee3..3081a75
--- a/connectivity/qa/makefile.mk
+++ b/connectivity/qa/makefile.mk
@@@ -35,14 -35,13 +35,13 @@@ PACKAGE = complex/connectivit
  
  #----- compile .java files -----------------------------------------
  
- JAVAFILES       :=  $(shell @$(FIND) complex -name "*.java")
- 
  JARFILES        = ridl.jar unoil.jar jurt.jar juh.jar java_uno.jar OOoRunner.jar
+ JAVAFILES       :=  $(shell @$(FIND) complex -name "*.java")
  
  .IF "$(SYSTEM_HSQLDB)" == "YES"
 -XCLASSPATH:=$(XCLASSPATH)$(PATH_SEPERATOR)$(HSQLDB_JAR)
 +EXTRAJARFILES = $(HSQLDB_JAR)
  .ELSE
 -JARFILES+= hsqldb.jar
 +JARFILES += hsqldb.jar
  .ENDIF
  
  #----- make a jar from compiled files ------------------------------
diff --cc xmloff/source/forms/elementimport.cxx
index 051b7c2,7f5688e..cdf3d12
--- a/xmloff/source/forms/elementimport.cxx
+++ b/xmloff/source/forms/elementimport.cxx
@@@ -889,12 -889,12 +889,12 @@@ namespace xmlof
                          if (!bRetrievedValues)
                          {
                              getValuePropertyNames(m_eElementType, nClassId, pCurrentValueProperty, pValueProperty);
-                             ENSURE_OR_BREAK( pValueProperty, "OControlImport::StartElement: illegal value property names!" );
+                             ENSURE_OR_BREAK( pCurrentValueProperty || pValueProperty, "OControlImport::StartElement: illegal value property names!" );
                              bRetrievedValues = sal_True;
                          }
 -                        OSL_ENSURE((PROPID_VALUE != aValueProps->Handle) || pValueProperty,
 +                        ENSURE_OR_BREAK((PROPID_VALUE != aValueProps->Handle) || pValueProperty,
                              "OControlImport::StartElement: the control does not have a value property!");
 -                        OSL_ENSURE((PROPID_CURRENT_VALUE != aValueProps->Handle) || pCurrentValueProperty,
 +                        ENSURE_OR_BREAK((PROPID_CURRENT_VALUE != aValueProps->Handle) || pCurrentValueProperty,
                              "OControlImport::StartElement: the control does not have a current-value property!");
  
                          // transfer the name
commit 633c56f36228cdab56cd08e44cc3e029eb742346
Author: Kalman Szalai - KAMI <kami911 at gmail.com>
Date:   Wed May 25 06:50:30 2011 +0200

    Add OxygenOffice menu-icon package support
    
    Signed-off-by: pmladek at suse.cz

diff --git a/sysui/desktop/productversion.mk b/sysui/desktop/productversion.mk
index 8d1f93c..0b027a4 100755
--- a/sysui/desktop/productversion.mk
+++ b/sysui/desktop/productversion.mk
@@ -72,4 +72,9 @@ PKGVERSION.broffice = $(PKGVERSION)
 UNIXFILENAME.broffice = $(PRODUCTNAME.broffice:l)$(PRODUCTVERSION.broffice)
 ICONPREFIX.broffice = $(UNIXFILENAME.broffice:s/.//g)
 
-
+PRODUCTNAME.oxygenoffice = OxygenOffice
+PRODUCTVERSION.oxygenoffice = $(PRODUCTVERSION)
+PRODUCTVERSIONSHORT.oxygenoffice = $(PRODUCTVERSIONSHORT)
+PKGVERSION.oxygenoffice = $(PKGVERSION)
+UNIXFILENAME.oxygenoffice = $(PRODUCTNAME.oxygenoffice:l)$(PRODUCTVERSION.oxygenoffice)
+ICONPREFIX.oxygenoffice = $(UNIXFILENAME.oxygenoffice:s/.//g)
commit 6fbc556ac582a1c6b10cf5e1071324aa7307df63
Author: Michael Meeks <michael.meeks at novell.com>
Date:   Tue May 24 15:27:23 2011 +0100

    remove erroneous FIXMEs when re-starting oosplash.bin
    
    Signed-off-by: Bjoern Michaelsen <bjoern.michaelsen at canonical.com>

diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c
index b6ae8aa..445bd44 100755
--- a/desktop/unx/source/start.c
+++ b/desktop/unx/source/start.c
@@ -999,12 +999,16 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS( argc, argv )
 
             switch (child_get_exit_code (info)) {
             case 79: // re-start with just -env: parameters
-                fprintf (stderr, "FIXME: re-start with just -env: params !\n");
+#if OSL_DEBUG_LEVEL > 0
+                fprintf (stderr, "oosplash: re-start with just -env: params !\n");
+#endif
                 bRestart = sal_True;
                 bAllArgs = sal_False;
                 break;
             case 81: // re-start with all arguments
-                fprintf (stderr, "FIXME: re-start with all params !\n");
+#if OSL_DEBUG_LEVEL > 0
+                fprintf (stderr, "oosplash: re-start with all params !\n");
+#endif
                 bRestart = sal_True;
                 bAllArgs = sal_True;
                 break;
commit d05d6223b5d21ee1ac02219485d45374e794c814
Author: Rene Engelhard <rene at debian.org>
Date:   Tue May 31 13:20:57 2011 +0200

    fix build in connectivity/qa with system-hsqldb

diff --git a/connectivity/qa/makefile.mk b/connectivity/qa/makefile.mk
index ee41cab..4dc2ee3 100755
--- a/connectivity/qa/makefile.mk
+++ b/connectivity/qa/makefile.mk
@@ -35,9 +35,15 @@ PACKAGE = complex/connectivity
 
 #----- compile .java files -----------------------------------------
 
-JARFILES        = ridl.jar unoil.jar jurt.jar juh.jar java_uno.jar OOoRunner.jar hsqldb.jar
+JARFILES        = ridl.jar unoil.jar jurt.jar juh.jar java_uno.jar OOoRunner.jar
 JAVAFILES       :=  $(shell @$(FIND) complex -name "*.java")
 
+.IF "$(SYSTEM_HSQLDB)" == "YES"
+XCLASSPATH:=$(XCLASSPATH)$(PATH_SEPERATOR)$(HSQLDB_JAR)
+.ELSE
+JARFILES+= hsqldb.jar
+.ENDIF
+
 #----- make a jar from compiled files ------------------------------
 
 JARCLASSDIRS = $(PACKAGE)
commit 9b3fb3b00d4ee80c40f62988f4d22b470a833cbf
Author: Kelly Anderson <cbxbiker61 at gmail.com>
Date:   Tue May 31 12:26:34 2011 +0200

    fix compile with Bison 2.5
    
    Signed-off-by: Luboš Luňák <l.lunak at suse.cz>

diff --git a/connectivity/inc/connectivity/sqlparse.hxx b/connectivity/inc/connectivity/sqlparse.hxx
index 531f1ac..5d75c3f 100644
--- a/connectivity/inc/connectivity/sqlparse.hxx
+++ b/connectivity/inc/connectivity/sqlparse.hxx
@@ -232,7 +232,7 @@ namespace connectivity
         // returns the type for a parameter in a given function name
         static sal_Int32 getFunctionParameterType(sal_uInt32 _nTokenId,sal_uInt32 _nPos);
 
-        void error(sal_Char *fmt);
+        void error(const sal_Char *fmt);
         int SQLlex();
 #ifdef YYBISON
         void setParseTree(OSQLParseNode * pNewParseTree);
diff --git a/connectivity/source/parse/sqlbison.y b/connectivity/source/parse/sqlbison.y
index dbfbd7a..4fc353a 100755
--- a/connectivity/source/parse/sqlbison.y
+++ b/connectivity/source/parse/sqlbison.y
@@ -4333,7 +4333,7 @@ void OSQLParser::reduceLiteral(OSQLParseNode*& pLiteral, sal_Bool bAppendBlank)
 }
 
 // -------------------------------------------------------------------------
-void OSQLParser::error(sal_Char *fmt)
+void OSQLParser::error(const sal_Char *fmt)
 {
 	if(!m_sErrorMessage.getLength())
 	{
commit 6fccef85a61d6238744f3cef302f63b5a1b3d11e
Author: Noel Power <noel.power at novell.com>
Date:   Tue May 31 10:11:22 2011 +0100

    fix for bug fdo#37590
    
    Signed-off-by: 	Michael Meeks <michael.meeks at novell.com>

diff --git a/xmloff/source/forms/elementimport.cxx b/xmloff/source/forms/elementimport.cxx
index 6247264..7f5688e 100644
--- a/xmloff/source/forms/elementimport.cxx
+++ b/xmloff/source/forms/elementimport.cxx
@@ -889,7 +889,7 @@ namespace xmloff
                         if (!bRetrievedValues)
                         {
                             getValuePropertyNames(m_eElementType, nClassId, pCurrentValueProperty, pValueProperty);
-                            ENSURE_OR_BREAK( pCurrentValueProperty && pValueProperty, "OControlImport::StartElement: illegal value property names!" );
+                            ENSURE_OR_BREAK( pCurrentValueProperty || pValueProperty, "OControlImport::StartElement: illegal value property names!" );
                             bRetrievedValues = sal_True;
                         }
                         OSL_ENSURE((PROPID_VALUE != aValueProps->Handle) || pValueProperty,
commit 3bc0b8e14b2af29227fb801ef014527c99b605d5
Author: Andras Timar <atimar at suse.com>
Date:   Mon May 30 00:07:50 2011 +0200

    replace "seagull" icons to LibreOffice icons fdo#37617
    
    Signed-off-by: Tor Lillqvist <tlillqvist at novell.com>

diff --git a/sysui/desktop/icons/hicolor/16x16/apps/printeradmin.png b/sysui/desktop/icons/hicolor/16x16/apps/printeradmin.png
index 4e8eb0e..7f2a946 100644
Binary files a/sysui/desktop/icons/hicolor/16x16/apps/printeradmin.png and b/sysui/desktop/icons/hicolor/16x16/apps/printeradmin.png differ
diff --git a/sysui/desktop/icons/hicolor/32x32/apps/printeradmin.png b/sysui/desktop/icons/hicolor/32x32/apps/printeradmin.png
index 2c7a0c0..05cfd5f 100644
Binary files a/sysui/desktop/icons/hicolor/32x32/apps/printeradmin.png and b/sysui/desktop/icons/hicolor/32x32/apps/printeradmin.png differ
diff --git a/sysui/desktop/icons/hicolor/48x48/apps/printeradmin.png b/sysui/desktop/icons/hicolor/48x48/apps/printeradmin.png
index 41971c9..ab5c0ef 100644
Binary files a/sysui/desktop/icons/hicolor/48x48/apps/printeradmin.png and b/sysui/desktop/icons/hicolor/48x48/apps/printeradmin.png differ
diff --git a/sysui/desktop/icons/locolor/16x16/apps/printeradmin.png b/sysui/desktop/icons/locolor/16x16/apps/printeradmin.png
index c64e48f..c84c387 100644
Binary files a/sysui/desktop/icons/locolor/16x16/apps/printeradmin.png and b/sysui/desktop/icons/locolor/16x16/apps/printeradmin.png differ
diff --git a/sysui/desktop/icons/locolor/32x32/apps/printeradmin.png b/sysui/desktop/icons/locolor/32x32/apps/printeradmin.png
index 2ad360f..9d13304 100644
Binary files a/sysui/desktop/icons/locolor/32x32/apps/printeradmin.png and b/sysui/desktop/icons/locolor/32x32/apps/printeradmin.png differ
commit 927963c53561a7609c6f0d80cbe0f36107cce5c6
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Tue May 24 21:22:49 2011 +0200

    set all border lines, not only one
    
    Signed-off-by: Cédric Bosdonnat <cedric.bosdonnat.ooo at free.fr>

diff --git a/editeng/source/rtf/rtfitem.cxx b/editeng/source/rtf/rtfitem.cxx
index f482e56..da0aa48 100644
--- a/editeng/source/rtf/rtfitem.cxx
+++ b/editeng/source/rtf/rtfitem.cxx
@@ -1431,25 +1431,41 @@ void SvxRTFParser::ReadBorderAttr( int nToken, SfxItemSet& rSet,
         case RTF_CLBRDRT:       // Cell top border
             {
                 if( bTableDef )
+                {
+                    if (nBorderTyp != 0)
+                        SetBorderLine( nBorderTyp, aAttr, aBrd );
                     nBorderTyp = RTF_BRDRT;
+                }
                 break;
             }
         case RTF_CLBRDRB:       // Cell bottom border
             {
                 if( bTableDef )
+                {
+                    if (nBorderTyp != 0)
+                        SetBorderLine( nBorderTyp, aAttr, aBrd );
                     nBorderTyp = RTF_BRDRB;
+                }
                 break;
             }
         case RTF_CLBRDRL:       // Cell left border
             {
                 if( bTableDef )
+                {
+                    if (nBorderTyp != 0)
+                        SetBorderLine( nBorderTyp, aAttr, aBrd );
                     nBorderTyp = RTF_BRDRL;
+                }
                 break;
             }
         case RTF_CLBRDRR:       // Cell right border
             {
                 if( bTableDef )
+                {
+                    if (nBorderTyp != 0)
+                        SetBorderLine( nBorderTyp, aAttr, aBrd );
                     nBorderTyp = RTF_BRDRR;
+                }
                 break;
             }
 
commit c2ae5e6acf081e52356a51d497c19f4c433e9638
Author: Samphan Raruenrom <samphan at osdev.co.th>
Date:   Mon May 23 19:36:05 2011 +0700

    change default fall-back font lists for Thai locale in vcl.xcu
    
    I've done a small research on preferred fonts for Thai in
    Windows/Linux/MacOSX by consulting several communities, font developers
    and authority. Here is the modification that the Thai community decide
    that best for Thai locale. It will help users when exchanging documents
    between these platforms with different installed fonts and also promote
    the use of the new government sponsored free fonts (TH_Sarabun) as the
    standard cross-platform fonts.
    
    Signed-off-by: Luboš Luňák <l.lunak at suse.cz>

diff --git a/officecfg/registry/data/org/openoffice/VCL.xcu b/officecfg/registry/data/org/openoffice/VCL.xcu
index 0eb2144..3288ec5 100644
--- a/officecfg/registry/data/org/openoffice/VCL.xcu
+++ b/officecfg/registry/data/org/openoffice/VCL.xcu
@@ -500,22 +500,22 @@
     </node>
     <node oor:name="th" oor:op="replace">
      <prop oor:name="UI_SANS" oor:op="replace" oor:type="xs:string">
-        <value>Angsana New;OONaksit;Tahoma;Lucidasans;Arial Unicode MS;clearlyU</value>
+        <value>Tahoma;Arial Unicode MS;Waree;Loma;Thonburi;Lucidasans;Lucida Sans;clearlyU</value>
      </prop>
      <prop oor:name="CTL_DISPLAY" oor:type="xs:string" oor:op="replace">
-        <value>Angsana New;OONaksit;Tahoma;Lucidasans;Lucida Sans;Arial Unicode MS</value>
+        <value>Tahoma;Arial Unicode MS;Waree;Loma;Thonburi;Lucidasans;Lucida Sans;Angsana New</value>
      </prop>
      <prop oor:name="CTL_HEADING" oor:type="xs:string" oor:op="replace">
-        <value>Angsana New;OONaksit;Tahoma;Lucidasans;Lucida Sans;Arial Unicode MS</value>
+        <value>Cordia New;CordiaUPC;Browallia New;BrowalliaUPC;Bromlila;Corada;Umpush;Thonburi;TH SarabunPSK;TH SarabunNew;Angsana New;AngsanaUPC;Tahoma;Arial Unicode MS;Lucidasans;Lucida Sans</value>
      </prop>
      <prop oor:name="CTL_PRESENTATION" oor:type="xs:string" oor:op="replace">
-        <value>Cordia New;CordiaUPC;Angsana New;OONaksit;Tahoma;Lucidasans;Lucida Sans;Arial Unicode MS</value>
+        <value>Cordia New;CordiaUPC;Browallia New;BrowalliaUPC;Bromlila;Corada;Umpush;Thonburi;TH SarabunPSK;TH SarabunNew;Angsana New;AngsanaUPC;Tahoma;Arial Unicode MS;Lucidasans;Lucida Sans</value>
      </prop>
      <prop oor:name="CTL_SPREADSHEET" oor:type="xs:string" oor:op="replace">
-        <value>Tahoma;Angsana New;OONaksit;Lucidasans;Lucida Sans;Arial Unicode MS</value>
+        <value>Tahoma;Arial Unicode MS;Waree;Loma;Thonburi;TH SarabunPSK;TH SarabunNew;Angsana New;AngsanaUPC;Lucidasans;Lucida Sans</value>
      </prop>
      <prop oor:name="CTL_TEXT" oor:type="xs:string" oor:op="replace">
-        <value>Angsana New;OONaksit;Tahoma;Lucidasans;Lucida Sans;Arial Unicode MS</value>
+        <value>Angsana New;AngsanaUPC;Angsima;Kinnari;Norasi;Thonburi;TH SarabunPSK;TH SarabunNew;Tahoma;Arial Unicode MS;Lucidasans;Lucida Sans</value>
      </prop>
     </node>
     <node oor:name="ja" oor:op="replace">
commit 955842481e06a938b1ba3ac32d71d562c6bf6aa3
Author: Andras Timar <atimar at suse.com>
Date:   Tue May 24 12:05:59 2011 +0200

    fdo#37001 - updated license information
    
    Signed-off-by: Petr Mladek <pmladek at suse.cz>

diff --git a/readlicense_oo/html/THIRDPARTYLICENSEREADME.html b/readlicense_oo/html/THIRDPARTYLICENSEREADME.html
old mode 100755
new mode 100644
index 9e141af..c32b3a3
--- a/readlicense_oo/html/THIRDPARTYLICENSEREADME.html
+++ b/readlicense_oo/html/THIRDPARTYLICENSEREADME.html
@@ -1,5611 +1,1707 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-  <meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-  <title>THIRDPARTYLICENSEREADME</title>
-</head>
-DO NOT TRANSLATE OR LOCALIZE THIS DOCUMENT
-</html>
-
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product:Bitstram Vera Fonts; Use of any of this software
-is governed
-by the terms of the license below:<br>
-<h2>Bitstream, Inc.
-			  <br>
-</h2>
-<h3>Bitstream Vera Fonts<br>
-</h3>
-
-      <em>Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
-Bitstream Vera is a trademark of Bitstream, Inc. <br>
-      <br>
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of the fonts accompanying this license (“Fonts”) and associated
-documentation files (the “Font Software”), to reproduce and distribute
-the Font Software, including without limitation the rights to use, copy,
-merge, publish, distribute, and/or sell copies of the Font Software, and
-to permit persons to whom the Font Software is furnished to do so,
-subject to the following conditions: <br>
-      <br>
-The above copyright and trademark notices and this permission notice
-shall be included in all copies of one or more of the Font Software
-typefaces.<br>
-      <br>
-The Font Software may be modified, altered, or added to, and in
-particular the designs of glyphs or characters in the Fonts may be
-modified and additional glyphs or characters may be added to the Fonts,
-only if the fonts are renamed to names not containing either the words
-“Bitstream” or the word “Vera”.<br>
-      <br>
-This License becomes null and void to the extent applicable to Fonts or
-Font Software that has been modified and is distributed under the
-“Bitstream Vera” names. <br>
-      <br>
-The Font Software may be sold as part of a larger software package but
-no copy of one or more of the Font Software typefaces may be sold by
-itself. <br>
-      <br>
-THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL
-BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR
-OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL,
-OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR
-OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT
-SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. <br>
-      <br>
-Except as contained in this notice, the names of Gnome, the Gnome
-Foundation, and Bitstream Inc., shall not be used in advertising or
-otherwise to promote the sale, use or other dealings in this Font
-Software without prior written authorization from the Gnome Foundation
-or Bitstream Inc., respectively. For further information, contact: fonts
-at gnome dot org. </em> <br>
-</body>
-</html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product:BerkeleyDB; Use of any of this software
-is governed
-by the terms of the license below:<br>
-<h2>Sleepycat Software
-			  <br>
-</h2>
-<h3>BerkeleyDB<br>
-</h3>>
-<pre>
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
-/*
- * Copyright (c) 1990-2004
- *      Sleepycat Software.  All rights reserved.
- *
- * 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. Redistributions in any form must be accompanied by information on
- *    how to obtain complete source code for the DB software and any
- *    accompanying software that uses the DB software.  The source code
- *    must either be included in the distribution or be available for no
- *    more than the cost of distribution plus a nominal fee, and must be
- *    freely redistributable under reasonable conditions.  For an
- *    executable file, complete source code means the source code for all
- *    modules it contains.  It does not include source code for modules or
- *    files that typically accompany the major components of the operating
- *    system on which the executable file runs.
- *
- * THIS SOFTWARE IS PROVIDED BY SLEEPYCAT SOFTWARE ``AS IS'' AND ANY EXPRESS
- * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
- * NON-INFRINGEMENT, ARE DISCLAIMED.  IN NO EVENT SHALL SLEEPYCAT SOFTWARE
- * 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.
- */
-/*
- * Copyright (c) 1990, 1993, 1994, 1995
- *	The Regents of the University of California.  All rights reserved.
- *
- * 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. Neither the name of the University 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 REGENTS 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 REGENTS 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.
- */
-/*
- * Copyright (c) 1995, 1996
- *	The President and Fellows of Harvard University.  All rights reserved.
- *
- * 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. Neither the name of the University 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 HARVARD AND ITS 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 HARVARD OR ITS 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.
- */
-
-
- </pre>
-
-
-</body></html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product:Czech thesaurus database; Use of any of this software
-is governed
-by the terms of the license below:<br>
-<h2>Pavel Rychly, Pavel Smrz, {pary,smrz}@fi.muni.cz,
-	          NLPlab, Faculty of Informatics, Masaryk University
-			  <br>
-</h2>
-<h3>Czech Thesaurus Database<br>
-</h3>
-Copyright (c) 2002 Pavel Rychly, Pavel Smrz, {pary,smrz}@fi.muni.cz,
-          NLPlab, Faculty of Informatics, Masaryk University
-		  <br>
-		  Permission is hereby granted, free of charge, to any person
-		  obtaining
-		  a copy of this data (the "Data"), to deal in the Data without
-		  restriction, including without limitation the rights to use, copy,
-		  modify, merge, publish, distribute, sublicense, and/or sell copies
-		  of
-		  the Data, and to permit persons to whom the Data is furnished to do
-		  so, subject to the following conditions:
-		  <br>
-		  The above copyright notice and this permission notice shall be
-		  included in all copies or substantial portions of the Data.
-		  <br>
-		  THE DATA ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-		  OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-		  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-		  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
-		  BE
-		  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
-		  ACTION
-		  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-		  CONNECTION
-		  WITH THE DATA OR THE USE OR OTHER DEALINGS IN THE DATA.
-
-		  <br>
-</body>
-</html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product:Generic Polygon Clipper (GPC); Use of any of this software
-is governed
-by the terms of the license below:<br>
-<h2>Alan Murta
-			  <br>
-</h2>
-<h3>GPC<br>
-</h3>
-Copyright: (C) 1997-1999, Advanced Interfaces Group,
-           University of Manchester.
-<br>
-           This software is free for non-commercial use. It may be copied,
-           modified, and redistributed provided that this copyright notice
-           is preserved on all copies. The intellectual property rights of
-           the algorithms used reside with the University of Manchester
-           Advanced Interfaces Group.
-<br>
-           You may not use this software, in whole or in part, in support
-           of any commercial product without the express consent of the
-           author.
-<br>
-           There is no warranty or other guarantee of fitness of this
-           software for any purpose. It is provided solely "as is".
-<br>
-</body>
-</html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product: LaTeX dictinary data; Use of any of this software
-is governed by the terms of the license below:<br>
-<h2>LaTeX3 Project
-			  <br>
-</h2>
-<h3>LPPL version 1.3b<br>
-</h3>
-
-The LaTeX Project Public License
-<br>
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-<br>
-
-<br>
-LPPL Version 1.3b  2006-01-07
-<br>
-
-<br>
-Copyright 1999 2002-2006 LaTeX3 Project
-<br>
-    Everyone is allowed to distribute verbatim copies of this
-    license document, but modification of it is not allowed.
-
-	<br>
-
-PREAMBLE
-<br>
-========
-<br>
-
-The LaTeX Project Public License (LPPL) is the primary license under
-which the the LaTeX kernel and the base LaTeX packages are distributed.
-
-<br>
-You may use this license for any work of which you hold the copyright
-and which you wish to distribute.  This license may be particularly
-suitable if your work is TeX-related (such as a LaTeX package), but
-you may use it with small modifications even if your work is unrelated
-to TeX.
-<br>
-
-The section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE',
-below, gives instructions, examples, and recommendations for authors
-who are considering distributing their works under this license.
-<br>
-
-This license gives conditions under which a work may be distributed
-and modified, as well as conditions under which modified versions of
-that work may be distributed.
-<br>
-
-We, the LaTeX3 Project, believe that the conditions below give you
-the freedom to make and distribute modified versions of your work
-that conform with whatever technical specifications you wish while
-maintaining the availability, integrity, and reliability of
-that work.  If you do not see how to achieve your goal while
-meeting these conditions, then read the document `cfgguide.tex'
-and `modguide.tex' in the base LaTeX distribution for suggestions.
-<br>
-
-
-<br>
-DEFINITIONS
-<br>
-===========
-<br>
-
-<br>
-In this license document the following terms are used:
-<br>
-
-   `Work'
-    Any work being distributed under this License.
-    
-	<br>
-   `Derived Work'
-    Any work that under any applicable law is derived from the Work.
-
-	<br>
-   `Modification' 
-    Any procedure that produces a Derived Work under any applicable
-    law -- for example, the production of a file containing an
-    original file associated with the Work or a significant portion of
-    such a file, either verbatim or with modifications and/or
-    translated into another language.
-
-	<br>
-   `Modify'
-    To apply any procedure that produces a Derived Work under any
-    applicable law.
-    
-	<br>
-   `Distribution'
-    Making copies of the Work available from one person to another, in
-    whole or in part.  Distribution includes (but is not limited to)
-    making any electronic components of the Work accessible by
-    file transfer protocols such as FTP or HTTP or by shared file
-    systems such as Sun's Network File System (NFS).
-
-	<br>
-   `Compiled Work'
-    A version of the Work that has been processed into a form where it
-    is directly usable on a computer system.  This processing may
-    include using installation facilities provided by the Work,
-    transformations of the Work, copying of components of the Work, or
-    other activities.  Note that modification of any installation
-    facilities provided by the Work constitutes modification of the Work.
-
-	<br>
-   `Current Maintainer'
-    A person or persons nominated as such within the Work.  If there is
-    no such explicit nomination then it is the `Copyright Holder' under
-    any applicable law.
-
-	<br>
-   `Base Interpreter' 
-    A program or process that is normally needed for running or
-    interpreting a part or the whole of the Work.    
-
-	<br>
-    A Base Interpreter may depend on external components but these
-    are not considered part of the Base Interpreter provided that each
-    external component clearly identifies itself whenever it is used
-    interactively.  Unless explicitly specified when applying the
-    license to the Work, the only applicable Base Interpreter is a
-    `LaTeX-Format' or in the case of files belonging to the 
-    `LaTeX-format' a program implementing the `TeX language'.
-
-	<br>
-
-
-	<br>
-CONDITIONS ON DISTRIBUTION AND MODIFICATION
-<br>
-===========================================
-<br>
-
-<br>
-1.  Activities other than distribution and/or modification of the Work
-are not covered by this license; they are outside its scope.  In
-particular, the act of running the Work is not restricted and no
-requirements are made concerning any offers of support for the Work.
-
-<br>
-2.  You may distribute a complete, unmodified copy of the Work as you
-received it.  Distribution of only part of the Work is considered
-modification of the Work, and no right to distribute such a Derived
-Work may be assumed under the terms of this clause.
-
-<br>
-3.  You may distribute a Compiled Work that has been generated from a
-complete, unmodified copy of the Work as distributed under Clause 2
-above, as long as that Compiled Work is distributed in such a way that
-the recipients may install the Compiled Work on their system exactly
-as it would have been installed if they generated a Compiled Work
-directly from the Work.
-
-<br>
-4.  If you are the Current Maintainer of the Work, you may, without
-restriction, modify the Work, thus creating a Derived Work.  You may
-also distribute the Derived Work without restriction, including
-Compiled Works generated from the Derived Work.  Derived Works
-distributed in this manner by the Current Maintainer are considered to
-be updated versions of the Work.
-
-<br>
-5.  If you are not the Current Maintainer of the Work, you may modify
-your copy of the Work, thus creating a Derived Work based on the Work,
-and compile this Derived Work, thus creating a Compiled Work based on
-the Derived Work.
-
-<br>
-6.  If you are not the Current Maintainer of the Work, you may
-distribute a Derived Work provided the following conditions are met
-for every component of the Work unless that component clearly states
-in the copyright notice that it is exempt from that condition.  Only
-the Current Maintainer is allowed to add such statements of exemption 
-to a component of the Work. 
-
-<br>
-  a. If a component of this Derived Work can be a direct replacement
-     for a component of the Work when that component is used with the
-     Base Interpreter, then, wherever this component of the Work
-     identifies itself to the user when used interactively with that
-     Base Interpreter, the replacement component of this Derived Work
-     clearly and unambiguously identifies itself as a modified version
-     of this component to the user when used interactively with that
-     Base Interpreter.
-     
-	 <br>
-  b. Every component of the Derived Work contains prominent notices
-     detailing the nature of the changes to that component, or a
-     prominent reference to another file that is distributed as part
-     of the Derived Work and that contains a complete and accurate log
-     of the changes.
-  
-	 <br>
-  c. No information in the Derived Work implies that any persons,
-     including (but not limited to) the authors of the original version
-     of the Work, provide any support, including (but not limited to)
-     the reporting and handling of errors, to recipients of the
-     Derived Work unless those persons have stated explicitly that
-     they do provide such support for the Derived Work.
-
-	 <br>
-  d. You distribute at least one of the following with the Derived Work:
-
-  <br>
-       1. A complete, unmodified copy of the Work; 
-          if your distribution of a modified component is made by
-          offering access to copy the modified component from a
-          designated place, then offering equivalent access to copy
-          the Work from the same or some similar place meets this
-          condition, even though third parties are not compelled to
-          copy the Work along with the modified component;
-
-		  <br>
-       2. Information that is sufficient to obtain a complete,
-          unmodified copy of the Work.
-
-		  <br>
-7.  If you are not the Current Maintainer of the Work, you may
-distribute a Compiled Work generated from a Derived Work, as long as
-the Derived Work is distributed to all recipients of the Compiled
-Work, and as long as the conditions of Clause 6, above, are met with
-regard to the Derived Work.
-
-<br>
-8.  The conditions above are not intended to prohibit, and hence do not
-apply to, the modification, by any method, of any component so that it
-becomes identical to an updated version of that component of the Work as
-it is distributed by the Current Maintainer under Clause 4, above.
-
-<br>
-9.  Distribution of the Work or any Derived Work in an alternative
-format, where the Work or that Derived Work (in whole or in part) is
-then produced by applying some process to that format, does not relax or
-nullify any sections of this license as they pertain to the results of
-applying that process.
-     
-<br>
-10. a. A Derived Work may be distributed under a different license
-       provided that license itself honors the conditions listed in
-       Clause 6 above, in regard to the Work, though it does not have
-       to honor the rest of the conditions in this license.
-      
-	   <br>
-    b. If a Derived Work is distributed under a different license, that
-       Derived Work must provide sufficient documentation as part of
-       itself to allow each recipient of that Derived Work to honor the 
-       restrictions in Clause 6 above, concerning changes from the Work.
-
-	   <br>
-11. This license places no restrictions on works that are unrelated to
-the Work, nor does this license place any restrictions on aggregating
-such works with the Work by any means.
-
-<br>
-12.  Nothing in this license is intended to, or may be used to, prevent
-complete compliance by all parties with all applicable laws.
-
-
-<br>
-NO WARRANTY
-<br>
-===========
-<br>
-
-<br>
-There is no warranty for the Work.  Except when otherwise stated in
-writing, the Copyright Holder provides the Work `as is', without
-warranty of any kind, either expressed or implied, including, but not
-limited to, the implied warranties of merchantability and fitness for a
-particular purpose.  The entire risk as to the quality and performance
-of the Work is with you.  Should the Work prove defective, you assume
-the cost of all necessary servicing, repair, or correction.
-
-<br>
-In no event unless required by applicable law or agreed to in writing
-will The Copyright Holder, or any author named in the components of the
-Work, or any other party who may distribute and/or modify the Work as
-permitted above, be liable to you for damages, including any general,
-special, incidental or consequential damages arising out of any use of
-the Work or out of inability to use the Work (including, but not limited
-to, loss of data, data being rendered inaccurate, or losses sustained by
-anyone as a result of any failure of the Work to operate with any other
-programs), even if the Copyright Holder or said author or said other
-party has been advised of the possibility of such damages.
-
-<br>
-
-<br>
-MAINTENANCE OF THE WORK
-<br>
-=======================
-<br>
-
-<br>
-The Work has the status `author-maintained' if the Copyright Holder
-explicitly and prominently states near the primary copyright notice in
-the Work that the Work can only be maintained by the Copyright Holder
-or simply that it is `author-maintained'.
-
-<br>
-The Work has the status `maintained' if there is a Current Maintainer
-who has indicated in the Work that they are willing to receive error
-reports for the Work (for example, by supplying a valid e-mail
-address). It is not required for the Current Maintainer to acknowledge
-or act upon these error reports.
-
-<br>
-The Work changes from status `maintained' to `unmaintained' if there
-is no Current Maintainer, or the person stated to be Current
-Maintainer of the work cannot be reached through the indicated means
-of communication for a period of six months, and there are no other
-significant signs of active maintenance.
-
-<br>
-You can become the Current Maintainer of the Work by agreement with
-any existing Current Maintainer to take over this role.
-
-<br>
-If the Work is unmaintained, you can become the Current Maintainer of
-the Work through the following steps:
-
-<br>
- 1.  Make a reasonable attempt to trace the Current Maintainer (and
-     the Copyright Holder, if the two differ) through the means of
-     an Internet or similar search.
-
-	 <br>
- 2.  If this search is successful, then enquire whether the Work
-     is still maintained.
-
-	 <br>
-  a. If it is being maintained, then ask the Current Maintainer
-     to update their communication data within one month.
-     
-	 <br>
-  b. If the search is unsuccessful or no action to resume active
-     maintenance is taken by the Current Maintainer, then announce
-     within the pertinent community your intention to take over
-     maintenance.  (If the Work is a LaTeX work, this could be
-     done, for example, by posting to comp.text.tex.)
-
-	 <br>
- 3a. If the Current Maintainer is reachable and agrees to pass
-     maintenance of the Work to you, then this takes effect
-     immediately upon announcement.
-     
-	 <br>
-  b. If the Current Maintainer is not reachable and the Copyright
-     Holder agrees that maintenance of the Work be passed to you,
-     then this takes effect immediately upon announcement.  
-    
-	 <br>
- 4.  If you make an `intention announcement' as described in 2b. above
-     and after three months your intention is challenged neither by
-     the Current Maintainer nor by the Copyright Holder nor by other
-     people, then you may arrange for the Work to be changed so as
-     to name you as the (new) Current Maintainer.
-     
-	 <br>
- 5.  If the previously unreachable Current Maintainer becomes
-     reachable once more within three months of a change completed
-     under the terms of 3b) or 4), then that Current Maintainer must
-     become or remain the Current Maintainer upon request provided
-     they then update their communication data within one month.
-
-	 <br>
-A change in the Current Maintainer does not, of itself, alter the fact
-that the Work is distributed under the LPPL license.
-
-<br>
-If you become the Current Maintainer of the Work, you should
-immediately provide, within the Work, a prominent and unambiguous
-statement of your status as Current Maintainer.  You should also
-announce your new status to the same pertinent community as
-in 2b) above.
-
-<br>
-
-<br>
-WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE
-<br>
-======================================================
-<br>
-
-<br>
-This section contains important instructions, examples, and
-recommendations for authors who are considering distributing their
-works under this license.  These authors are addressed as `you' in
-this section.
-
-<br>
-Choosing This License or Another License
-<br>
-----------------------------------------
-<br>
-
-<br>
-If for any part of your work you want or need to use *distribution*
-conditions that differ significantly from those in this license, then
-do not refer to this license anywhere in your work but, instead,
-distribute your work under a different license.  You may use the text
-of this license as a model for your own license, but your license
-should not refer to the LPPL or otherwise give the impression that
-your work is distributed under the LPPL.
-
-<br>
-The document `modguide.tex' in the base LaTeX distribution explains
-the motivation behind the conditions of this license.  It explains,
-for example, why distributing LaTeX under the GNU General Public
-License (GPL) was considered inappropriate.  Even if your work is
-unrelated to LaTeX, the discussion in `modguide.tex' may still be
-relevant, and authors intending to distribute their works under any
-license are encouraged to read it.
-<br>
-
-<br>
-A Recommendation on Modification Without Distribution
-<br>
------------------------------------------------------
-<br>
-
-<br>
-It is wise never to modify a component of the Work, even for your own
-personal use, without also meeting the above conditions for
-distributing the modified component.  While you might intend that such
-modifications will never be distributed, often this will happen by
-accident -- you may forget that you have modified that component; or
-it may not occur to you when allowing others to access the modified
-version that you are thus distributing it and violating the conditions
-of this license in ways that could have legal implications and, worse,
-cause problems for the community.  It is therefore usually in your
-best interest to keep your copy of the Work identical with the public
-one.  Many works provide ways to control the behavior of that work
-without altering any of its licensed components.
-<br>
-
-<br>
-How to Use This License
-<br>
------------------------
-<br>
-
-<br>
-To use this license, place in each of the components of your work both
-an explicit copyright notice including your name and the year the work
-was authored and/or last substantially modified.  Include also a
-statement that the distribution and/or modification of that
-component is constrained by the conditions in this license.
-<br>
-
-Here is an example of such a notice and statement:
-<br>
-
-  %% pig.dtx
-  %% Copyright 2005 M. Y. Name
-  %
-  % This work may be distributed and/or modified under the
-  % conditions of the LaTeX Project Public License, either version 1.3
-  % of this license or (at your option) any later version.
-  % The latest version of this license is in
-  %   http://www.latex-project.org/lppl.txt
-  % and version 1.3 or later is part of all distributions of LaTeX
-  % version 2005/12/01 or later.
-  %
-  % This work has the LPPL maintenance status `maintained'.
-  % 
-  % The Current Maintainer of this work is M. Y. Name.
-  %
-  % This work consists of the files pig.dtx and pig.ins
-  % and the derived file pig.sty.
-
-  <br>
-Given such a notice and statement in a file, the conditions
-given in this license document would apply, with the `Work' referring
-to the three files `pig.dtx', `pig.ins', and `pig.sty' (the last being
-generated from `pig.dtx' using `pig.ins'), the `Base Interpreter'
-referring to any `LaTeX-Format', and both `Copyright Holder' and
-`Current Maintainer' referring to the person `M. Y. Name'.
-<br>
-
-If you do not want the Maintenance section of LPPL to apply to your
-Work, change `maintained' above into `author-maintained'.  
-However, we recommend that you use `maintained', as the Maintenance
-section was added in order to ensure that your Work remains useful to
-the community even when you can no longer maintain and support it
-yourself.
-<br>
-
-<br>
-Derived Works That Are Not Replacements
-<br>
----------------------------------------
-<br>
-
-<br>
-Several clauses of the LPPL specify means to provide reliability and
-stability for the user community. They therefore concern themselves
-with the case that a Derived Work is intended to be used as a
-(compatible or incompatible) replacement of the original Work. If
-this is not the case (e.g., if a few lines of code are reused for a
-completely different task), then clauses 6b and 6d shall not apply.
-<br>
-
-
-<br>
-Important Recommendations
-<br>
--------------------------
-<br>
-
-<br>
- Defining What Constitutes the Work
-
- <br>
-   The LPPL requires that distributions of the Work contain all the
-   files of the Work.  It is therefore important that you provide a
-   way for the licensee to determine which files constitute the Work.
-   This could, for example, be achieved by explicitly listing all the
-   files of the Work near the copyright notice of each file or by
-   using a line such as:
-
-   <br>
-    % This work consists of all files listed in manifest.txt.
-   
-	<br>
-   in that place.  In the absence of an unequivocal list it might be
-   impossible for the licensee to determine what is considered by you
-   to comprise the Work and, in such a case, the licensee would be
-   entitled to make reasonable conjectures as to which files comprise
-   the Work.
-
-   <br>
-
-
-
-
-
-</body>
-</html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product:MS Runtime Libraries; Use of any of this software
-is governed
-by the terms of the license below:<br>
-<h2>Microsoft Corporation
-			  <br>
-</h2>
-<h3>Runtime Libraries<br>
-</h3>
-Microsoft .NET Framework Redistributable EULA
-<br>
-SUPPLEMENTAL END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE
-<br>
-IMPORTANT:
-<br>
-READ CAREFULLY&#151;
-<br>
-These Microsoft Corporation ("Microsoft")<br>
-operating system components, including any "online" or electronic<br>
-documentation ("OS Components") are subject to the terms and <br>
-conditions of the agreement under which you have licensed the <br>
-applicable Microsoft operating system product ("OS Product") <br>
-described below (each an "End User License Agreement" or "EULA") <br>
-and the terms and conditions of this Supplemental EULA. BY INSTALLING, <br>
-COPYING OR OTHERWISE USING THE OS COMPONENTS, YOU AGREE TO BE BOUND <br>
-BY THE TERMS AND CONDITIONS OF THE APPLICABLE OS PRODUCT EULA AND <br>
-THIS SUPPLEMENTAL EULA. IF YOU DO NOT AGREE TO THESE TERMS AND <br>
-CONDITIONS, DO NOT INSTALL, COPY OR USE THE OS COMPONENTS. <br>
-NOTE: IF YOU DO NOT HAVE A VALID EULA FOR ANY "OS PRODUCT" <br>
-(MICROSOFT WINDOWS 98, WINDOWS ME, WINDOWS NT 4.0 (DESKTOP <br>
-EDITION), WINDOWS 2000 OPERATING SYSTEM, WINDOWS XP PROFESSIONAL <br>
-AND/OR WINDOWS XP HOME EDITION), YOU ARE NOT AUTHORIZED TO INSTALL, <br>
-COPY OR OTHERWISE USE THE OS COMPONENTS AND YOU HAVE NO RIGHTS UNDER <br>
-THIS SUPPLEMENTAL EULA. <br>
-Capitalized terms used in this Supplemental EULA and not otherwise <br>
-defined herein shall have the meanings assigned to them in the <br>
-applicable OS Product EULA. <br>
-General. The OS Components are provided to you by Microsoft to update, <br>
-supplement, or replace existing functionality of the applicable OS <br>
-Product Microsoft grants you a license to use the OS Components <br>
-under the terms and conditions of the OS Product EULA for the
-applicable <br>
-OS Product (which are hereby incorporated by reference) and the terms <br>
-and conditions set forth in this Supplemental EULA, provided that you <br>
-comply with all such terms and conditions. To the extent that any terms <br>
-in this Supplemental EULA conflict with terms in the applicable OS <br>
-Product EULA, the terms of this Supplemental EULA control solely with <br>
-respect to the OS Components. <br>
-Additional Rights and Limitations. <br>
-*If you have multiple validly licensed copies of the applicable OS <br>
-Product(s), you may reproduce, install and use one copy of the OS <br>
-Components as part of such applicable OS Product(s) on all of your <br>
-computers running validly licensed copies of the OS Product(s) <br>
-provided that you use such additional copies of the OS Components <br>
-in accordance with the terms and conditions above. You may not <br>
-disclose the results of any benchmark test of the .NET Framework <br>
-component of the OS Components to any third party without Microsoft's <br>
-prior written approval. Microsoft retains all right, title and<br>
-interest in and to the OS Components. All rights not expressly granted <br>
-are reserved by Microsoft. <br>
-IF THE APPLICABLE OS PRODUCT WAS LICENSED TO YOU BY MICROSOFT OR ANY <br>
-OF ITS WHOLLY OWNED SUBSIDIARIES, THE LIMITED WARRANTY (IF ANY) <br>
-INCLUDED IN THE APPLICABLE OS PRODUCT EULA APPLIES TO THE OS COMPONENTS <br>
-PROVIDED THE OS COMPONENTS HAVE BEEN LICENSED BY YOU WITHIN THE TERM OF <br>
-THE LIMITED WARRANTY IN THE APPLICABLE OS PRODUCT EULA. HOWEVER, THIS <br>
-SUPPLEMENTAL EULA DOES NOT EXTEND THE TIME PERIOD FOR WHICH THE LIMITED <br>
-WARRANTY IS PROVIDED. <br>
-IF THE APPLICABLE OS PRODUCT WAS LICENSED TO YOU BY AN ENTITY OTHER
-THAN <br>
-MICROSOFT OR ANY OF ITS WHOLLY OWNED SUBSIDIARIES, MICROSOFT DISCLAIMS <br>
-ALL WARRANTIES WITH RESPECT TO THE OS COMPONENTS AS FOLLOWS: <br>
-DISCLAIMER OF WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE <br>
-LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE TO YOU THE OS COMPONENTS, AND <br>
-ANY (IF ANY) SUPPORT SERVICES RELATED TO THE OS COMPONENTS ("SUPPORT <br>
-SERVICES") <i>AS IS AND WITH ALL FAULTS;</i> and Microsoft and its
-suppliers <br>
-hereby disclaim with respect to THE os COMPONENTS AND SUPPORT SERVICES <br>
-all warranties and conditions, whether express, implied or statutory, <br>
-including, but not limited to, any (if any) warranties or conditions <br>
-of OR RELATED TO:  TITLE, NON-INFRINGEMENT, merchantability, fitness <br>
-for a particular purpose, lack of viruses, accuracy or completeness <br>
-of responses, results, lack of negligence or lack of workmanlike
-effort, <br>
-QUIET ENJOYMENT, QUIET POSSESSION, AND CORRESPONDENCE TO DESCRIPTION. <br>
-The entire risk arising out of use or performance of the OS Components <br>
-AND ANY SUPPORT SERVICES remains with you. <br>
-EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. To <br>
-the maximum extent permitted by applicable law, in no event shall <br>
-Microsoft or its suppliers be liable for any special, incidental, <br>
-indirect, or consequential damages whatsoever (including, but not <br>
-limited to, damages for: loss of profits, LOSS OF confidential or <br>
-other information, business interruption, personal injury, loss of <br>
-privacy, failure to meet any duty (including of good faith or of <br>
-reasonable care), negligence, and any other pecuniary or other loss <br>
-whatsoever) arising out of or in any way related to the use of or <br>
-inability to use the OS Components OR THE SUPPORT SERVICES, OR the <br>
-provision of or failure to provide Support Services, or otherwise <br>
-under or in connection with any provision of this Supplemental EULA, <br>
-even if Microsoft or any supplier has been advised of the possibility <br>
-of such damages. <br>
-LIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT <br>
-YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT <br>
-LIMITATION, ALL DAMAGES REFERENCED ABOVE AND ALL DIRECT OR GENERAL <br>
-DAMAGES), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS <br>
-UNDER ANY PROVISION OF THIS SUPPLEMENTAL EULA AND YOUR EXCLUSIVE <br>
-REMEDY FOR ALL OF THE FOREGOING SHALL BE LIMITED TO THE GREATER OF <br>
-THE AMOUNT ACTUALLY PAID BY YOU FOR THE OS COMPONENTS OR U.S.$5.00. <br>
-THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY <br>
-TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY <br>
-FAILS ITS ESSENTIAL PURPOSE. <br>
-<br>
-Si vous avez acquis votre produit Microsoft au CANADA, le texte suivant <br>
-vous concerne : <br>
-SI LE PRODUIT OS APPLICABLE VOUS A ÉTÉ CONCÉDÉ SOUS LICENCE PAR <br>
-MICROSOFT OU PAR L'UNE QUELCONQUE DE SES FILIALES À 100%, LA GARANTIE <br>
-LIMITÉE (SI ELLE EXISTE) APPLICABLE EN VERTU DU CONTRAT DE LICENCE <br>
-UTILISATEUR FINAL (« CLUF ») RELATIF À CE PRODUIT OS S'APPLIQUE AUX <br>
-COMPOSANTS SYSTÈME D'EXPLOITATION DE MICROSOFT Y COMPRIS TOUTE <br>
-DOCUMENTATION « EN LIGNE » OU SOUS FORME ÉLECTRONIQUE (LES « <br>
-COMPOSANTS OS »), À CONDITION QUE CEUX-CI VOUS AIENT ÉTÉ CONCÉDÉS <br>
-SOUS LICENCE PENDANT LA DURÉE DE LA GARANTIE LIMITÉE DU CLUF RELATIF <br>
-AU PRODUIT OS APPLICABLE. LE PRÉSENT CLUF SUPPLÉMENTAIRE N'A PAS POUR <br>
-EFFET DE PROROGER LA DURÉE DE CETTE GARANTIE LIMITÉE. <br>
-SI LE PRODUIT OS VOUS A ÉTÉ CONCÉDÉ SOUS LICENCE PAR UNE ENTITÉ AUTRE <br>
-QUE MICROSOFT OU QUE L'UNE QUELCONQUE DE SES FILIALES À 100%, <br>
-MICROSOFT EXCLUT TOUTE GARANTIE RELATIVE AUX COMPOSANTS OS COMME <br>
-CELA EST STIPULÉ CI-APRÈS : <br>
-EXCLUSION DE GARANTIE. DANS TOUTE LA MESURE PERMISE PAR LE DROIT <br>
-APPLICABLE, MICROSOFT ET SES FOURNISSEURS VOUS FOURNISSENT LES <br>
-COMPOSANTS OS, AINSI QUE, LE CAS ÉCHÉANT, TOUT SERVICE D'ASSISTANCE <br>
-RELATIF À CES COMPOSANTS OS (LES "SERVICES D'ASSISTANCE"), « COMME <br>
-TELS ET AVEC TOUS LEURS DEFAUTS ». EN OUTRE, MICROSOFT ET SES <br>
-FOURNISSEURS EXCLUENT PAR LES PRÉSENTES TOUTE AUTRE GARANTIE LÉGALE, <br>
-EXPRESSE OU IMPLICITE, RELATIVE AUX COMPOSANTS OS ET AUX SERVICES <br>
-D'ASSISTANCE, NOTAMMENT (LE CAS ÉCHÉANT), TOUTE GARANTIE : DE
-PROPRIÉTÉ, <br>
-D'ABSENCE DE CONTREFAÇON, DE QUALITÉ, D'ADAPTATION À UN USAGE <br>
-PARTICULIER, D'ABSENCE DE VIRUS, DE PRÉCISION, D'EXHAUSTIVITÉ DES <br>
-RÉPONSES, DES RÉSULTATS OBTENUS, D'ABSENCE DE NÉGLIGENCE, OU DE <br>
-DÉFAUT DE FABRICATION, DE JOUISSANCE PAISIBLE, D'ABSENCE DE TROUBLE <br>
-DE POSSESSION ET DE CONFORMITÉ À LA DESCRIPTION. VOUS ASSUMEZ <br>
-L'ENSEMBLE DES RISQUES DÉCOULANT DE L'UTILISATION OU DU FONCTIONNEMENT <br>
-DES COMPOSANTS OS ET DES SERVICES D'ASSISTANCE. <br>
-EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES ACCESSOIRES, INDIRECTS <br>
-ET CERTAINS AUTRES TYPES DE DOMMAGES. DANS TOUTE LA MESURE PERMISE <br>
-PAR LE DROIT APPLICABLE, MICROSOFT OU SES FOURNISSEURS NE POURRONT EN <br>
-AUCUN CAS ÊTRE TENUS RESPONSABLES DE TOUT DOMMAGE SPÉCIAL, ACCESSOIRE, <br>
-INCIDENT OU INDIRECT DE QUELQUE NATURE QUE CE SOIT (Y COMPRIS, MAIS <br>
-NON DE FACON LIMITATIVE, LES PERTES DE BÉNÉFICES, PERTES D'INFORMATIONS <br>
-CONFIDENTIELLES OU AUTRES INFORMATIONS, INTERRUPTIONS D'ACTIVITÉ, <br>
-PRÉJUDICES CORPORELS, ATTEINTES À LA VIE PRIVÉE, MANQUEMENT À TOUTE <br>
-OBLIGATION (NOTAMMENT L'OBLIGATION DE BONNE FOI ET DE DILIGENCE), <br>
-NÉGLIGENCE, ET POUR TOUTE PERTE PÉCUNIAIRE OU AUTRE DE QUELQUE NATURE <br>
-QUE CE SOIT), RÉSULTANT DE, OU RELATIFS A, L'UTILISATION OU <br>
-L'IMPOSSIBILITÉ D'UTILISER LES COMPOSANTS OS OU LES SERVICES
-D'ASSISTANCE, <br>
-OU  LA FOURNITURE OU LE DÉFAUT DE FOURNITURE DES SERVICES D'ASSISTANCE,
-OU <br>
-AUTREMENT EN VERTU DE, OU RELATIVEMENT A, TOUTE DISPOSITION DE CE CLUF <br>
-SUPPLÉMENTAIRE, MÊME SI LA SOCIÉTÉ MICROSOFT OU UN QUELCONQUE
-FOURNISSEUR <br>
-A ÉTÉ PRÉVENU DE L'ÉVENTUALITÉ DE TELS DOMMAGES. <br>
-LIMITATION DE RESPONSABILITÉ ET RECOURS. NONOBSTANT TOUT DOMMAGE QUE
-VOUS <br>
-POURRIEZ SUBIR POUR QUELQUE MOTIF QUE CE SOIT (NOTAMMENT TOUS LES
-DOMMAGES <br>
-ÉNUMÉRÉS CI-DESSUS ET TOUS LES DOMMAGES DIRECTS OU GÉNÉRAUX), L'ENTIÈRE <br>
-RESPONSABILITÉ DE MICROSOFT ET DE L'UN QUELCONQUE DE SES FOURNISSEURS
-AU <br>
-TITRE DE TOUTE STIPULATION DE CE CLUF SUPPLÉMENTAIRE ET VOTRE SEUL
-RECOURS <br>
-EN CE QUI CONCERNE TOUS LES DOMMAGES PRÉCITÉS NE SAURAIENT EXCÉDER LE <br>
-MONTANT QUE VOUS AVEZ EFFECTIVEMENT PAYÉ POUR LES COMPOSANTS OS OU 5
-DOLLARS <br>
-US (US$ 5,00), SELON LE  PLUS ÉLEVÉ DES DEUX MONTANTS. LES PRÉSENTES <br>
-LIMITATIONS ET EXCLUSIONS DEMEURERONT APPLICABLES DANS TOUTE LA MESURE <br>
-PERMISE PAR LE DROIT APPLICABLE QUAND BIEN MÊME UN QUELCONQUE REMÈDE À
-UN <br>
-QUELCONQUE MANQUEMENT NE PRODUIRAIT PAS D'EFFET. <br>
-La présente Convention est régie par les lois de la province d'Ontario, <br>
-Canada. Chacune des parties à la présente reconnaît irrévocablement la <br>
-compétence des tribunaux de la province d'Ontario et consent à
-instituer <br>
-tout litige qui pourrait découler de la présente auprès des tribunaux <br>
-situés dans le district judiciaire de York, province d'Ontario. <br>
-Au cas où vous auriez des questions concernant cette licence ou que
-vous <br>
-désiriez vous mettre en rapport avec Microsoft pour quelque raison que <br>
-ce soit, veuillez contacter la succursale Microsoft desservant votre <br>
-pays, ou écrire à : Microsoft Sales Information Center, One Microsoft <br>
-Way, Redmond, Washington 98052-6399.
-
-</body>
-</html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product: Ispell W?rterbuch igerman98; Use of any of this software
-is governed by the terms of the license below:<br>
-<h2>Bjoern Jacke 
-			  <br>
-</h2>
-<h3>German Dictionaries igerman98<br>
-</h3>
-
-OASIS distribution license agreement 0.1 from 2005-11-10
-<br>
-Without any modifications this dictionary may be distributed with programs
-that
-support the OASIS Open Document Format for Office Applications and whose
-PRIMARY format for saving documents is the Open Document Format.
-<br>
-This requires that all licenses and copyright files are also distributed
-together
-with the package the dictionary is shipped with.
-<br>
-Any modifications of the dictionary files are not allowed for this
-agreement, modifications require the use of the GNU GENERAL PUBLIC LICENSE.
-<br>
-If you have questions or don't get along with this, send me your
-comments/questions/ideas to Bjoern Jacke <bjoern at j3e.de>
-<br>
-
-</body>
-</html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product: WordNet Release 2.1; Use of any of this software
-is governed by the terms of the license below:<br>
-<h2>Princeton University
-			  <br>
-</h2>
-<h3>WordNet 2.1<br>
-</h3>
-WordNet 2.1 Copyright 2005 by Princeton University.
-<br>
-	This software and database is being provided to you, the LICENSEE, by  
-	Princeton University under the following license.  By obtaining, using  
-	and/or copying this software and database, you agree that you have  
-	read, understood, and will comply with these terms and conditions.:  
-<br>
-    Permission to use, copy, modify and distribute this software and  
-    database and its documentation for any purpose and without fee or  
-    royalty is hereby granted, provided that you agree to comply with  
-    the following copyright notice and statements, including the disclaimer,  
-    and that the same appear on ALL copies of the software, database and  
-    documentation, including modifications that you make for internal  
-    use or for distribution.  
-<br>
-	WordNet 2.1 Copyright 2005 by Princeton University.  All rights reserved.  
-<br>
-	THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON  
-	UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR  
-	IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON  
-	UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT-  
-	ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE  
-	OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT  
-	INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR  
-	OTHER RIGHTS.  
-<br>
-	The name of Princeton University or Princeton may not be used in  
-	advertising or publicity pertaining to distribution of the software  
-	and/or database.  Title to copyright in this software, database and  
-	any associated documentation shall at all times remain with  
-	Princeton University and LICENSEE agrees to preserve same.  
-<br>
-</body>
-</html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product:Bitstram Vera Fonts; Use of any of this software
-is governed
-by the terms of the license below:<br>
-<h2>Bitstream, Inc.
-			  <br>
-</h2>
-<h3>Bitstream Vera Fonts<br>
-</h3>
-
-      <em>Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
-Bitstream Vera is a trademark of Bitstream, Inc. <br>
-      <br>
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of the fonts accompanying this license (“Fonts”) and associated
-documentation files (the “Font Software”), to reproduce and distribute
-the Font Software, including without limitation the rights to use, copy,
-merge, publish, distribute, and/or sell copies of the Font Software, and
-to permit persons to whom the Font Software is furnished to do so,
-subject to the following conditions: <br>
-      <br>
-The above copyright and trademark notices and this permission notice
-shall be included in all copies of one or more of the Font Software
-typefaces.<br>
-      <br>
-The Font Software may be modified, altered, or added to, and in
-particular the designs of glyphs or characters in the Fonts may be
-modified and additional glyphs or characters may be added to the Fonts,
-only if the fonts are renamed to names not containing either the words
-“Bitstream” or the word “Vera”.<br>
-      <br>
-This License becomes null and void to the extent applicable to Fonts or
-Font Software that has been modified and is distributed under the
-“Bitstream Vera” names. <br>
-      <br>
-The Font Software may be sold as part of a larger software package but
-no copy of one or more of the Font Software typefaces may be sold by
-itself. <br>
-      <br>
-THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL
-BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR
-OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL,
-OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR
-OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT
-SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. <br>
-      <br>
-Except as contained in this notice, the names of Gnome, the Gnome
-Foundation, and Bitstream Inc., shall not be used in advertising or
-otherwise to promote the sale, use or other dealings in this Font
-Software without prior written authorization from the Gnome Foundation
-or Bitstream Inc., respectively. For further information, contact: fonts
-at gnome dot org. </em> <br>
-Arev Fonts Copyright
-<br>
-Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved.
-<br>
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-the fonts accompanying this license ("Fonts") and associated documentation files
-(the "Font Software"), to reproduce and distribute the modifications to the
-Bitstream Vera Font Software, including without limitation the rights to use,
-copy, merge, publish, distribute, and/or sell copies of the Font Software, and
-to permit persons to whom the Font Software is furnished to do so, subject to
-the following conditions:
-<br>
-The above copyright and trademark notices and this permission notice shall be
-included in all copies of one or more of the Font Software typefaces.
-<br>
-The Font Software may be modified, altered, or added to, and in particular the
-designs of glyphs or characters in the Fonts may be modified and additional
-glyphs or characters may be added to the Fonts, only if the fonts are renamed to
-names not containing either the words "Tavmjong Bah" or the word "Arev".
-<br>
-This License becomes null and void to the extent applicable to Fonts or Font
-Software that has been modified and is distributed under the "Tavmjong Bah Arev"
-names.
-<br>
-The Font Software may be sold as part of a larger software package but no copy
-of one or more of the Font Software typefaces may be sold by itself.
-<br>
-THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS
-FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR
-OTHER RIGHT. IN NO EVENT SHALL TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR
-OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR
-CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
-ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
-DEALINGS IN THE FONT SOFTWARE.
-<br>
-Except as contained in this notice, the name of Tavmjong Bah shall not be used
-in advertising or otherwise to promote the sale, use or other dealings in this
-Font Software without prior written authorization from Tavmjong Bah. For further
-information, contact: tavmjong @ free . fr.
-<br>
-</body>
-</html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product: Liberation Fonts; Use of any of this
-software
-is governed
-by the terms of the license below:<br>
-<h2>RedHat, Inc.<br>
-</h2>
-<h3>Liberation Fonts<br>
-</h3>
-
-<a href="#gpl">refer to GNU General Public License</a> and the following terms:
-
-<br>
-
-LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY LIBERATION FONT SOFTWARE
-<br>
-This agreement governs the use of the Software and any updates to the
-Software, regardless of the delivery mechanism. Subject to the following
-terms, Red Hat, Inc. ("Red Hat") grants to the user ("Client") a license to
-this collective work pursuant to the GNU General Public License v.2 with the
-exceptions set forth below and such other terms as our set forth in this End
-User License Agreement.
-<br>
-1. The Software and License Exception. LIBERATION font software  (the
-"Software") consists of TrueType-OpenType formatted font software for
-rendering LIBERATION typefaces in sans serif, serif, and monospaced character
-styles. You are licensed to use, modify, copy, and distribute the Software
-pursuant to the GNU General Public License v.2 with the following exceptions:  
-<br>
-1) As a special exception, if you create a document which uses this font, and
-embed this font or unaltered portions of this font into the document, this
-font does not by itself cause the resulting document to be covered by the GNU
-General Public License.  This exception does not however invalidate any other
-reasons why the document might be covered by the GNU General Public License. 
-If you modify this font, you may extend this exception to your version of the
-font, but you are not obligated to do so. If you do not wish to do so, delete
-this exception statement from your version. 
-
-<br>
-2) As a further exception, any distribution of the object code of the Software
-in a physical product must provide you the right to access and modify the
-source code for the Software and to reinstall that modified version of the
-Software in object code form on the same physical product on which you
-received it.
-<br>
-2. Intellectual Property Rights. The Software and each of its components,
-including the source code, documentation, appearance, structure and
-organization are owned by Red Hat and others and are protected under copyright
-and other laws. Title to the Software and any component, or to any copy,
-modification, or merged portion shall remain with the aforementioned, subject
-to the applicable license. The "LIBERATION" trademark is a trademark of Red
-Hat, Inc. in the U.S. and other countries. This agreement does not permit
-Client to distribute modified versions of the Software using Red Hat's
-trademarks. If Client makes a redistribution of a modified version of the
-Software, then Client must modify the files names to remove any reference to
-the Red Hat trademarks and must not use the Red Hat trademarks in any way to
-reference or promote the modified Software. 
-<br>
-3. Limited Warranty. To the maximum extent permitted under applicable law, the
-Software is provided and licensed "as is" without warranty of any kind,
-expressed or implied, including the implied warranties of merchantability,
-non-infringement or fitness for a particular purpose. Red Hat does not warrant
-that the functions contained in the Software will meet Client's requirements
-or that the operation of the Software will be entirely error free or appear
-precisely as described in the accompanying documentation. 
-<br>
-4. Limitation of Remedies and Liability.  To the maximum extent permitted by
-applicable law, Red Hat or any Red Hat authorized dealer will not be liable to
-Client for any incidental or consequential damages, including lost profits or
-lost savings arising out of the use or inability to use the Software, even if
-Red Hat or such dealer has been advised of the possibility of such damages. 
-<br>
-5. Export Control. As required by U.S. law, Client represents and warrants
-that it: (a) understands that the Software is subject to export controls under
-the U.S. Commerce Department's Export Administration Regulations ("EAR"); (b)
-is not located in a prohibited destination country under the EAR or U.S.
-sanctions regulations (currently Cuba, Iran, Iraq, Libya, North Korea, Sudan
-and Syria); (c) will not export, re-export, or transfer the Software to any
-prohibited destination, entity, or individual without the necessary export
-license(s) or authorizations(s) from the U.S. Government; (d) will not use or
-transfer the Software for use in any sensitive nuclear, chemical or biological
-weapons, or missile technology end-uses unless authorized by the U.S.
-Government by regulation or specific license; (e) understands and agrees that
-if it is in the United States and exports or transfers the Software to
-eligible end users, it will, as required by EAR Section 740.17(e), submit
-semi-annual reports to the Commerce Department's Bureau of Industry & Security
-(BIS), which include the name and address (including country) of each
-transferee; and (f) understands that countries other than the United States
-may restrict the import, use, or export of encryption products and that it
-shall be solely responsible for compliance with any such import, use, or
-export restrictions.
-<br>
-6. General. If any provision of this agreement is held to be unenforceable,
-that shall not affect the enforceability of the remaining provisions. This
-agreement shall be governed by the laws of the State of North Carolina and of
-the United States, without regard to any conflict of laws provisions, except
-that the United Nations Convention on the International Sale of Goods shall
-not apply.
-<br>
-Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark
-of Red Hat, Inc.
-<br>
-</tt>
-<br>
-</body>
-</html>
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<!-- W3C IPR SOFTWARE NOTICE               --><!-- downloaded from:                      --><!--    http://www.w3.org/Consortium/Legal/copyright-software-19980720 --><!--                                       --><!-- Changed: 24. July 2001                --><!-- 1) removed link to stylesheet         --><!-- 2) removed "webmaster" link           --><!-- 3) changed site-relative URLs to absolute URLs --><!-- 4) added this comment block           --><!-- Changes are intended to allow proper  --><!-- off-line viewing of the license.      -->
-  <meta content="HTML Tidy, see www.w3.org" name="generator">
-  <meta content="text/html; charset=iso-8859-1"
- http-equiv="Content-Type">
-  <title>W3C IPR SOFTWARE NOTICE</title>
-</head>
-<body bgcolor="#ffffff" text="#000000">
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product: MathML DTD; Use of any of this
-software
-is governed
-by the terms of the license below:<br>
-<h2>World Wide Web Consortium (W3C)<br>
-</h2>
-<h3>MathML DTD<br>
-</h3>
-<h1>W3C<sup>&reg;</sup> SOFTWARE NOTICE AND LICENSE</h1>
-<h4>Copyright &copy; 1994-2001 <a href="http://www.w3.org/">World
-Wide Web Consortium</a>, (<a href="http://www.lcs.mit.edu/">Massachusetts
-Institute of
-Technology</a>, <a href="http://www.inria.fr/">Institut National de
-Recherche en Informatique et en Automatique</a>, <a
- href="http://www.keio.ac.jp/">Keio University</a>). All Rights
-Reserved.
-http://www.w3.org/Consortium/Legal/</h4>
-<p>This W3C work (including software, documents, or other related
-items) is being provided by the copyright holders under the
-following license. By obtaining, using and/or copying this work,
-you (the licensee) agree that you have read, understood, and will
-comply with the following terms and conditions:</p>
-<p>Permission to use, copy, modify, and distribute this software
-and its documentation, with or without modification,&nbsp; for any
-purpose and without fee or royalty is hereby granted, provided that
-you include the following on ALL copies of the software and
-documentation or portions thereof, including modifications, that
-you make:</p>
-<ol>
-  <li>The full text of this NOTICE in a location viewable to users of
-the redistributed or derivative work.</li>
-  <li>Any pre-existing intellectual property disclaimers, notices, or
-terms and conditions. If none exist, a short notice of the
-following form (hypertext is preferred, text is permitted) should
-be used within the body of any redistributed or derivative code:
-"Copyright &copy; [$date-of-software] <a href="http://www.w3.org/">
-World Wide Web Consortium</a>, (<a href="http://www.lcs.mit.edu/">Massachusetts
-Institute of
-Technology</a>, <a href="http://www.inria.fr/">Institut National de
-Recherche en Informatique et en Automatique</a>, <a
- href="http://www.keio.ac.jp/">Keio University</a>). All Rights
-Reserved.
-http://www.w3.org/Consortium/Legal/"</li>
-  <li>Notice of any changes or modifications to the W3C files,
-including the date changes were made. (We recommend you provide
-URIs to the location from which the code is derived.)</li>
-</ol>
-<p>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND
-COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF
-MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
-USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD
-PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</p>
-<p>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,
-SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE
-SOFTWARE OR DOCUMENTATION.</p>
-<p>The name and trademarks of copyright holders may NOT be used in
-advertising or publicity pertaining to the software without
-specific, written prior permission. Title to copyright in this
-software and any associated documentation will at all times remain
-with copyright holders.</p>
-<br>
-</body>
-</html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product: NSIS; Use of any of this
-software
-is governed
-by the terms of the license below:<br>
-<h2>Nullsoft, Inc.<br>
-</h2>
-<h3>NSIS<br>
-</h3>
-Copyright (C) 1999-2003 Nullsoft, Inc.
-<br>
-This license applies to everything in the NSIS package, except where otherwise
-noted.
-<br>
-This software is provided 'as-is', without any express or implied warranty.  In
-no event will the authors be held liable for any damages arising from the use of
-this software.
-<br>
-Permission is granted to anyone to use this software for any purpose, including
-commercial applications, and to alter it and redistribute it freely, subject to
-the following restrictions:
-<br>
-   1. The origin of this software must not be misrepresented; you must not claim
-that you wrote the original software. If you use this software in a product, an
-acknowledgment in the product documentation would be appreciated but is not
-required.
-<br>
-   2. Altered source versions must be plainly marked as such, and must not be
-misrepresented as being the original software.
-<br>
-   3. This notice may not be removed or altered from any source distribution.
-
-<br>
-</body>
-</html>
-<html>
-<body>
-  <hr style="width: 100%; height: 2px;">The following software may be
-included in this product: PostScript(R) AFM Files; Use of any of this software
-is governed
-by the terms of the license below:<br>
-<h2>Adobe<br>
-</h2>
-<h3>PostScript(R) AFM files<br>
-</h3>
-<br>
-    Adobe Core 35 AFM Files with 314 Glyph Entries
-
-<br>
-        This file and the 35 PostScript(R) AFM files it
-        accompanies may be used, copied, and distributed for any purpose and
-        without charge, with or without modification, provided that all
-        copyright notices are retained; that the AFM files are not
-        distributed without this file; that all modifications to this file
-        or any of the AFM files are prominently noted in the modified
-        file(s); and that this paragraph is not modified. Adobe Systems has
-        no responsibility or obligation to support the use of the AFM
-        files.
-
-<br>
-    </body>
-
-</html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product: Antigrain; Use of any of this
-software
-is governed
-by the terms of the license below:<br>
-<h2>Axim Shemanarev<br>
-</h2>
-<h3>Antigrain<br>
-</h3>
-
-<br>
-Anti-Grain Geometry - Version 2.0
-<br>
-Copyright (C) 2002-2004 Maxim Shemanarev (McSeem)
-<br>
-
-Permission to copy, use, modify, sell and distribute this software 
-is granted provided this copyright notice appears in all copies. 
-This software is provided "as is" without express or implied
-warranty, and with no claim as to its suitability for any purpose.
-<br>
-</body>
-</html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product: beanshell; Use of any of this
-software
-is governed
-by the terms of the license below:<br>
-<h2>Pat Niemeyer<br>
-</h2>
-<h3>beanshell<br>
-</h3>
-<a href="#lgpl">jump to LGPL</a><br>
-
-<pre>
-
-/*****************************************************************************
- *                                                                           *
- *  This file is part of the BeanShell Java Scripting distribution.          *
- *  Documentation and updates may be found at http://www.beanshell.org/      *
- *                                                                           *
- *  Sun Public License Notice:                                               *
- *                                                                           *
- *  The contents of this file are subject to the Sun Public License Version  *
- *  1.0 (the "License"); you may not use this file except in compliance with *
- *  the License. A copy of the License is available at http://www.sun.com    *
- *                                                                           *
- *  The Original Code is BeanShell. The Initial Developer of the Original    *
- *  Code is Pat Niemeyer. Portions created by Pat Niemeyer are Copyright     *
- *  (C) 2000.  All Rights Reserved.                                          *
- *                                                                           *
- *  GNU Public License Notice:                                               *
- *                                                                           *
- *  Alternatively, the contents of this file may be used under the terms of  *
- *  the GNU Lesser General Public License (the "LGPL"), in which case the    *
- *  provisions of LGPL are applicable instead of those above. If you wish to *
- *  allow use of your version of this file only under the  terms of the LGPL *
- *  and not to allow others to use your version of this file under the SPL,  *
- *  indicate your decision by deleting the provisions above and replace      *
- *  them with the notice and other provisions required by the LGPL.  If you  *
- *  do not delete the provisions above, a recipient may use your version of  *
- *  this file under either the SPL or the LGPL.                              *
- *                                                                           *
- *  Patrick Niemeyer (pat at pat.net)                                           *
- *  Author of Learning Java, O'Reilly & Associates                           *
- *  http://www.pat.net/~pat/                                                 *
- *                                                                           *
- *****************************************************************************/
-</pre>
-
-</body>
-</html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product: C++ Boost Library; Use of any of this
-software
-is governed
-by the terms of the license below:<br>
-<h2>Boost.org<br>
-</h2>
-<h3>C++ Boost Library<br>
-</h3>
-Boost Software License - Version 1.0 - August 17th, 2003
-<br>
-
-Permission is hereby granted, free of charge, to any person or organization
-obtaining a copy of the software and accompanying documentation covered by
-this license (the "Software") to use, reproduce, display, distribute,
-execute, and transmit the Software, and to prepare derivative works of the
-Software, and to permit third-parties to whom the Software is furnished to
-do so, all subject to the following:
-<br>
-
-The copyright notices in the Software and this entire statement, including
-the above license grant, this restriction and the following disclaimer,
-must be included in all copies of the Software, in whole or in part, and
-all derivative works of the Software, unless such copies or derivative
-works are solely in the form of machine-executable object code generated by
-a source language processor.
-<br>
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
-SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
-FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
-ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-DEALINGS IN THE SOFTWARE.
-<br>
-</body>
-</html>
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product: Cairo; Use of any of this
-software
-is governed
-by the terms of the license below:<br>
-<h2>Cairographics.org<br>
-</h2>
-<h3>Cairo (B)<br>
-</h3> 
-
-
-<a href="#mpllic">jump to MPL 1.1</a><br>
-
-
- </body>
- </html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product:Charis SIL v4; Use of any of this software
-is governed
-by the terms of the license below:<br>
-<h2>SIL International<br>
-</h2>
-<h3>Charis SIL v.4<br>
-</h3>
-<br>This Font Software is Copyright (c) 1997-2006, SIL International
-(http://scripts.sil.org/).
-<br>
-All Rights Reserved.
-<br>
-
-"Charis SIL" is a Reserved Font Name for this Font Software.
-<br>
-"SIL" is a Reserved Font Name for this Font Software.
-<br>
-
-This Font Software is licensed under the SIL Open Font License, Version 1.0.
-<br>
-No modification of the license is permitted, only verbatim copy is allowed.
-<br>
-This license is copied below, and is also available with a FAQ at:
-http://scripts.sil.org/OFL
-<br>
-
------------------------------------------------------------
-<br>
-SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005
-<br>
------------------------------------------------------------
-<br>
-PREAMBLE
-<br>
-The goals of the Open Font License (OFL) are to stimulate worldwide
-
-development of cooperative font projects, to support the font creation
-
-efforts of academic and linguistic communities, and to provide an open
-
-framework in which fonts may be shared and improved in partnership with
-
-others.
-
-<br>
-
-The OFL allows the licensed fonts to be used, studied, modified and
-
-redistributed freely as long as they are not sold by themselves. The
-
-fonts, including any derivative works, can be bundled, embedded, 
-
-redistributed and sold with any software provided that the font
-
-names of derivative works are changed. The fonts and derivatives,
-
-however, cannot be released under any other type of license.
-
-<br>
-
-DEFINITIONS
-<br>
-"Font Software" refers to any and all of the following:
-<br>
-	- font files
-	<br>
-	- data files
-	<br>
-	- source code
-	<br>
-	- build scripts
-	<br>
-	- documentation
-	<br>
-
-
-"Reserved Font Name" refers to the Font Software name as seen by
-
-users and any other names as specified after the copyright statement.
-
-<br>
-
-"Standard Version" refers to the collection of Font Software
-
-components as distributed by the Copyright Holder.
-<br>
-
-
-"Modified Version" refers to any derivative font software made by
-
-adding to, deleting, or substituting -- in part or in whole --
-
-any of the components of the Standard Version, by changing formats
-
-or by porting the Font Software to a new environment.
-
-<br>
-
-"Author" refers to any designer, engineer, programmer, technical
-
-writer or other person who contributed to the Font Software.
-
-<br>
-
-PERMISSION & CONDITIONS
-<br>
-Permission is hereby granted, free of charge, to any person obtaining
-
-a copy of the Font Software, to use, study, copy, merge, embed, modify,
-
-redistribute, and sell modified and unmodified copies of the Font
-
-Software, subject to the following conditions:
-
-<br>
-
-1) Neither the Font Software nor any of its individual components,
-
-in Standard or Modified Versions, may be sold by itself.
-<br>
-
-
-2) Standard or Modified Versions of the Font Software may be bundled,
-
-redistributed and sold with any software, provided that each copy
-
-contains the above copyright notice and this license. These can be
-
-included either as stand-alone text files, human-readable headers or
-
-in the appropriate machine-readable metadata fields within text or
-
-binary files as long as those fields can be easily viewed by the user.
-
-<br>
-
-3) No Modified Version of the Font Software may use the Reserved Font
-
-Name(s), in part or in whole, unless explicit written permission is
-
-granted by the Copyright Holder. This restriction applies to all 
-
-references stored in the Font Software, such as the font menu name and
-
-other font description fields, which are used to differentiate the
-
-font from others.
-
-<br>
-
-4) The name(s) of the Copyright Holder or the Author(s) of the Font
-
-Software shall not be used to promote, endorse or advertise any
-
-Modified Version, except to acknowledge the contribution(s) of the
-
-Copyright Holder and the Author(s) or with their explicit written
-
-permission.
-
-<br>
-
-5) The Font Software, modified or unmodified, in part or in whole,
-
-must be distributed using this license, and may not be distributed
-
-under any other license.
-
-<br>
-
-TERMINATION
-<br>
-This license becomes null and void if any of the above conditions are
-
-not met.
-
-<br>
-
-DISCLAIMER
-
-THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
-
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
-
-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
-
-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-
-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
-
-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-
-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
-
-OTHER DEALINGS IN THE FONT SOFTWARE.
-  <br>
- 
-  </body>
-  </html>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
-<hr style="width: 100%; height: 2px;">The following software may be
-included in this product:KDE Crystal theme icons; Use of any of this software
-is governed
-by the terms of the license below:<br>
-<h2>KDE Artists: <br>
-</h2>
-<h3>KDE Crystal theme icons<br>
-</h3>
-KDE Crystal theme icons.
-<br>
-Copyright (C) 2002 and following years KDE Artists
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation,
-version 2.1 of the License.
-<br>
-<pre>
-License
-
-The Crystal Project are released under LGPL.
-
-GNU General Public License.
-
-   0.
-
-      This License Agreement applies to any software library or other program
-which contains a notice placed by the copyright holder or other authorized party
-saying it may be distributed under the terms of this Lesser General Public
-License (also called "this License"). Each licensee is addressed as "you".
-
-      A "library" means a collection of software functions and/or data prepared
-so as to be conveniently linked with application programs (which use some of
-those functions and data) to form executables.
-
-      The "Library", below, refers to any such software library or work which
-has been distributed under these terms. A "work based on the Library" means
-either the Library or any derivative work under copyright law: that is to say, a
-work containing the Library or a portion of it, either verbatim or with
-modifications and/or translated straightforwardly into another language.
-(Hereinafter, translation is included without limitation in the term
-"modification".)
-
-      "Source code" for a work means the preferred form of the work for making
-modifications to it. For a library, complete source code means all the source
-code for all modules it contains, plus any associated interface definition
-files, plus the scripts used to control compilation and installation of the library.
-
-      Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope. The act of running a
-program using the Library is not restricted, and output from such a program is
-covered only if its contents constitute a work based on the Library (independent
-of the use of the Library in a tool for writing it). Whether that is true
-depends on what the Library does and what the program that uses the Library does.
-   1.
-
-      You may copy and distribute verbatim copies of the Library's complete
-source code as you receive it, in any medium, provided that you conspicuously
-and appropriately publish on each copy an appropriate copyright notice and
-disclaimer of warranty; keep intact all the notices that refer to this License
-and to the absence of any warranty; and distribute a copy of this License along
-with the Library.
-
-      You may charge a fee for the physical act of transferring a copy, and you
-may at your option offer warranty protection in exchange for a fee.
-   2.
-
-      You may modify your copy or copies of the Library or any portion of it,
-thus forming a work based on the Library, and copy and distribute such
-modifications or work under the terms of Section 1 above, provided that you also
-meet all of these conditions:
-         1. The modified work must itself be a software library.
-         2. You must cause the files modified to carry prominent notices stating
-that you changed the files and the date of any change.
-         3. You must cause the whole of the work to be licensed at no charge to
-all third parties under the terms of this License.
-         4. If a facility in the modified Library refers to a function or a
-table of data to be supplied by an application program that uses the facility,
-other than as an argument passed when the facility is invoked, then you must
-make a good faith effort to ensure that, in the event an application does not
-supply such function or table, the facility still operates, and performs
-whatever part of its purpose remains meaningful.
-
-      (For example, a function in a library to compute square roots has a
-purpose that is entirely well-defined independent of the application. Therefore,
-Subsection 2d requires that any application-supplied function or table used by
-this function must be optional: if the application does not supply it, the
-square root function must still compute square roots.)
-
-      These requirements apply to the modified work as a whole. If identifiable
-sections of that work are not derived from the Library, and can be reasonably
-considered independent and separate works in themselves, then this License, and
-its terms, do not apply to those sections when you distribute them as separate
-works. But when you distribute the same sections as part of a whole which is a
-work based on the Library, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the entire whole,
-and thus to each and every part regardless of who wrote it.
-
-      Thus, it is not the intent of this section to claim rights or contest your
-rights to work written entirely by you; rather, the intent is to exercise the
-right to control the distribution of derivative or collective works based on the
-Library.
-
-      In addition, mere aggregation of another work not based on the Library
-with the Library (or with a work based on the Library) on a volume of a storage
-or distribution medium does not bring the other work under the scope of this
-License.
-   3.
-
-      You may opt to apply the terms of the ordinary GNU General Public License
-instead of this License to a given copy of the Library. To do this, you must
-alter all the notices that refer to this License, so that they refer to the
-ordinary GNU General Public License, version 2, instead of to this License. (If
-a newer version than version 2 of the ordinary GNU General Public License has
-appeared, then you can specify that version instead if you wish.) Do not make
-any other change in these notices.
-
-      Once this change is made in a given copy, it is irreversible for that
-copy, so the ordinary GNU General Public License applies to all subsequent
-copies and derivative works made from that copy.
-
-      This option is useful when you wish to copy part of the code of the
-Library into a program that is not a library.
-   4.
-
-      You may copy and distribute the Library (or a portion or derivative of it,
-under Section 2) in object code or executable form under the terms of Sections 1
-and 2 above provided that you accompany it with the complete corresponding
-machine-readable source code, which must be distributed under the terms of
-Sections 1 and 2 above on a medium customarily used for software interchange.
-
-      If distribution of object code is made by offering access to copy from a
-designated place, then offering equivalent access to copy the source code from
-the same place satisfies the requirement to distribute the source code, even
-though third parties are not compelled to copy the source along with the object
-code.
-   5.
-
-      A program that contains no derivative of any portion of the Library, but
-is designed to work with the Library by being compiled or linked with it, is
-called a "work that uses the Library". Such a work, in isolation, is not a
-derivative work of the Library, and therefore falls outside the scope of this
-License.
-      However, linking a "work that uses the Library" with the Library creates
-an executable that is a derivative of the Library (because it contains portions
-of the Library), rather than a "work that uses the library". The executable is
-therefore covered by this License. Section 6 states terms for distribution of
-such executables.
-

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list