utf8proc
diff utf8proc_data.c @ 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.
- 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 | aaad485d5335 |
children | 6921ee309940 |
line diff
1.1 --- a/utf8proc_data.c Fri Mar 16 12:00:00 2007 +0100 1.2 +++ b/utf8proc_data.c Sun Jul 22 12:00:00 2007 +0200 1.3 @@ -1,6 +1,6 @@ 1.4 /* 1.5 - * This file contains derived data from a modified version of the Unicode 1.6 - * data files. 1.7 + * This file contains derived data from a modified version of the 1.8 + * Unicode data files. 1.9 * 1.10 * The original data files are available at 1.11 * http://www.unicode.org/Public/UNIDATA/ 1.12 @@ -8,40 +8,37 @@ 1.13 * 1.14 * COPYRIGHT AND PERMISSION NOTICE 1.15 * 1.16 - * Copyright (c) 1991-2005 Unicode, Inc. All rights reserved. 1.17 - * Distributed under the Terms of Use in 1.18 - * http://www.unicode.org/copyright.html. 1.19 + * Copyright (c) 1991-2007 Unicode, Inc. All rights reserved. Distributed 1.20 + * under the Terms of Use in http://www.unicode.org/copyright.html. 1.21 * 1.22 * Permission is hereby granted, free of charge, to any person obtaining a 1.23 - * copy of the Unicode data files and any associated documentation (the 1.24 - * "Data Files") or Unicode software and any associated documentation (the 1.25 + * copy of the Unicode data files and any associated documentation (the "Data 1.26 + * Files") or Unicode software and any associated documentation (the 1.27 * "Software") to deal in the Data Files or Software without restriction, 1.28 * including without limitation the rights to use, copy, modify, merge, 1.29 - * publish, distribute, and/or sell copies of the Data Files or Software, 1.30 - * and to permit persons to whom the Data Files or Software are furnished 1.31 - * to do so, provided that (a) the above copyright notice(s) and this 1.32 - * permission notice appear with all copies of the Data Files or Software, 1.33 - * (b) both the above copyright notice(s) and this permission notice appear 1.34 - * in associated documentation, and (c) there is clear notice in each 1.35 - * modified Data File or in the Software as well as in the documentation 1.36 - * associated with the Data File(s) or Software that the data or software 1.37 - * has been modified. 1.38 + * publish, distribute, and/or sell copies of the Data Files or Software, and 1.39 + * to permit persons to whom the Data Files or Software are furnished to do 1.40 + * so, provided that (a) the above copyright notice(s) and this permission 1.41 + * notice appear with all copies of the Data Files or Software, (b) both the 1.42 + * above copyright notice(s) and this permission notice appear in associated 1.43 + * documentation, and (c) there is clear notice in each modified Data File or 1.44 + * in the Software as well as in the documentation associated with the Data 1.45 + * File(s) or Software that the data or software has been modified. 1.46 * 1.47 - * THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF 1.48 - * ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 1.49 - * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 1.50 - * NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT 1.51 - * HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR 1.52 - * ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER 1.53 - * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF 1.54 - * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 1.55 - * CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE. 1.56 + * THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY 1.57 + * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 1.58 + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF 1.59 + * THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS 1.60 + * INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR 1.61 + * CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF 1.62 + * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 1.63 + * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 1.64 + * PERFORMANCE OF THE DATA FILES OR SOFTWARE. 1.65 * 1.66 * Except as contained in this notice, the name of a copyright holder shall 1.67 - * not be used in advertising or otherwise to promote the sale, use or 1.68 - * other dealings in these Data Files or Software without prior written 1.69 + * not be used in advertising or otherwise to promote the sale, use or other 1.70 + * dealings in these Data Files or Software without prior written 1.71 * authorization of the copyright holder. 1.72 - * 1.73 */ 1.74 1.75