utf8proc

diff LICENSE @ 7:fcfd8c836c64

Version 1.1.1

- Added a new PostgreSQL function 'unistrip', which behaves like 'unifold', but also removes all character marks (e.g. accents).
- Changed license from BSD to MIT style.
- Added a new function 'utf8proc_codepoint_valid' to the C library.
- Changed compiler flags in Makefile from -g -O0 to -O2
- The ruby script, which was used to build the utf8proc_data.c file, is now included in the distribution.
author jbe
date Sun Jul 22 12:00:00 2007 +0200 (2007-07-22)
parents d04d3a9b486e
children 951e73a98021
line diff
     1.1 --- a/LICENSE	Fri Mar 16 12:00:00 2007 +0100
     1.2 +++ b/LICENSE	Sun Jul 22 12:00:00 2007 +0200
     1.3 @@ -1,81 +1,64 @@
     1.4 -/*
     1.5 - *  Copyright (c) 2006-2007, FlexiGuided GmbH, Berlin, Germany
     1.6 - *  Author: Jan Behrens <jan.behrens@flexiguided.de>
     1.7 - *  All rights reserved.
     1.8 - *
     1.9 - *  Redistribution and use in source and binary forms, with or without
    1.10 - *  modification, are permitted provided that the following conditions are
    1.11 - *  met:
    1.12 - *
    1.13 - *  1. Redistributions of source code must retain the above copyright
    1.14 - *     notice, this list of conditions and the following disclaimer.
    1.15 - *  2. Redistributions in binary form must reproduce the above copyright
    1.16 - *     notice, this list of conditions and the following disclaimer in the
    1.17 - *     documentation and/or other materials provided with the distribution.
    1.18 - *  3. Neither the name of the FlexiGuided GmbH nor the names of its
    1.19 - *     contributors may be used to endorse or promote products derived from
    1.20 - *     this software without specific prior written permission.
    1.21 - *
    1.22 - *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    1.23 - *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    1.24 - *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
    1.25 - *  PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
    1.26 - *  OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
    1.27 - *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
    1.28 - *  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
    1.29 - *  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
    1.30 - *  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    1.31 - *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    1.32 - *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1.33 - *
    1.34 - */
    1.35 +
    1.36 +Copyright (c) 2006-2007 Jan Behrens, FlexiGuided GmbH, Berlin
    1.37 +
    1.38 +Permission is hereby granted, free of charge, to any person obtaining a
    1.39 +copy of this software and associated documentation files (the "Software"),
    1.40 +to deal in the Software without restriction, including without limitation
    1.41 +the rights to use, copy, modify, merge, publish, distribute, sublicense,
    1.42 +and/or sell copies of the Software, and to permit persons to whom the
    1.43 +Software is furnished to do so, subject to the following conditions:
    1.44  
    1.45 -/*
    1.46 - *  This software distribution contains derived data from a modified version
    1.47 - *  of the Unicode data files. The following license applies to that data:
    1.48 - *
    1.49 - *  COPYRIGHT AND PERMISSION NOTICE
    1.50 - *
    1.51 - *  Copyright (c) 1991-2005 Unicode, Inc. All rights reserved.
    1.52 - *  Distributed under the Terms of Use in
    1.53 - *  http://www.unicode.org/copyright.html.
    1.54 - *
    1.55 - *  Permission is hereby granted, free of charge, to any person obtaining a
    1.56 - *  copy of the Unicode data files and any associated documentation (the
    1.57 - *  "Data Files") or Unicode software and any associated documentation (the
    1.58 - *  "Software") to deal in the Data Files or Software without restriction,
    1.59 - *  including without limitation the rights to use, copy, modify, merge,
    1.60 - *  publish, distribute, and/or sell copies of the Data Files or Software,
    1.61 - *  and to permit persons to whom the Data Files or Software are furnished
    1.62 - *  to do so, provided that (a) the above copyright notice(s) and this
    1.63 - *  permission notice appear with all copies of the Data Files or Software,
    1.64 - *  (b) both the above copyright notice(s) and this permission notice appear
    1.65 - *  in associated documentation, and (c) there is clear notice in each
    1.66 - *  modified Data File or in the Software as well as in the documentation
    1.67 - *  associated with the Data File(s) or Software that the data or software
    1.68 - *  has been modified.
    1.69 - *
    1.70 - *  THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
    1.71 - *  ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
    1.72 - *  WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    1.73 - *  NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
    1.74 - *  HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
    1.75 - *  ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER
    1.76 - *  RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
    1.77 - *  CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
    1.78 - *  CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE.
    1.79 - *
    1.80 - *  Except as contained in this notice, the name of a copyright holder shall
    1.81 - *  not be used in advertising or otherwise to promote the sale, use or
    1.82 - *  other dealings in these Data Files or Software without prior written
    1.83 - *  authorization of the copyright holder.
    1.84 - *
    1.85 - */
    1.86 +The above copyright notice and this permission notice shall be included in
    1.87 +all copies or substantial portions of the Software.
    1.88  
    1.89 -/*
    1.90 - *  Unicode is a trademark of Unicode, Inc., and may be registered in some
    1.91 - *  jurisdictions.
    1.92 - *
    1.93 - */
    1.94 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    1.95 +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    1.96 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    1.97 +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    1.98 +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    1.99 +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
   1.100 +DEALINGS IN THE SOFTWARE.
   1.101  
   1.102  
   1.103 +This software distribution contains derived data from a modified version of
   1.104 +the Unicode data files. The following license applies to that data:
   1.105 +
   1.106 +COPYRIGHT AND PERMISSION NOTICE
   1.107 +
   1.108 +Copyright (c) 1991-2007 Unicode, Inc. All rights reserved. Distributed
   1.109 +under the Terms of Use in http://www.unicode.org/copyright.html.
   1.110 +
   1.111 +Permission is hereby granted, free of charge, to any person obtaining a
   1.112 +copy of the Unicode data files and any associated documentation (the "Data
   1.113 +Files") or Unicode software and any associated documentation (the
   1.114 +"Software") to deal in the Data Files or Software without restriction,
   1.115 +including without limitation the rights to use, copy, modify, merge,
   1.116 +publish, distribute, and/or sell copies of the Data Files or Software, and
   1.117 +to permit persons to whom the Data Files or Software are furnished to do
   1.118 +so, provided that (a) the above copyright notice(s) and this permission
   1.119 +notice appear with all copies of the Data Files or Software, (b) both the
   1.120 +above copyright notice(s) and this permission notice appear in associated
   1.121 +documentation, and (c) there is clear notice in each modified Data File or
   1.122 +in the Software as well as in the documentation associated with the Data
   1.123 +File(s) or Software that the data or software has been modified.
   1.124 +
   1.125 +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
   1.126 +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   1.127 +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
   1.128 +THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
   1.129 +INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
   1.130 +CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
   1.131 +USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
   1.132 +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
   1.133 +PERFORMANCE OF THE DATA FILES OR SOFTWARE.
   1.134 +
   1.135 +Except as contained in this notice, the name of a copyright holder shall
   1.136 +not be used in advertising or otherwise to promote the sale, use or other
   1.137 +dealings in these Data Files or Software without prior written
   1.138 +authorization of the copyright holder.
   1.139 +
   1.140 +
   1.141 +Unicode and the Unicode logo are trademarks of Unicode, Inc., and may be
   1.142 +registered in some jurisdictions. All other trademarks and registered
   1.143 +trademarks mentioned herein are the property of their respective owners.
   1.144 +

Impressum / About Us