utf8proc
annotate LICENSE @ 5:c18366878af9
Version 1.0.2
- included a check in Integer#utf8, which raises an exception, if the given code-point is invalid because of being too high (this was missing yet)
- added support for PostgreSQL version 8.2
- included a check in Integer#utf8, which raises an exception, if the given code-point is invalid because of being too high (this was missing yet)
- added support for PostgreSQL version 8.2
| author | jbe |
|---|---|
| date | Tue Dec 26 12:00:00 2006 +0100 (2006-12-26) |
| parents | a0368662434c |
| children | d04d3a9b486e |
| rev | line source |
|---|---|
| jbe@0 | 1 /* |
| jbe@0 | 2 * Copyright (c) 2006, FlexiGuided GmbH, Berlin, Germany |
| jbe@0 | 3 * Author: Jan Behrens <jan.behrens@flexiguided.de> |
| jbe@0 | 4 * All rights reserved. |
| jbe@0 | 5 * |
| jbe@0 | 6 * Redistribution and use in source and binary forms, with or without |
| jbe@0 | 7 * modification, are permitted provided that the following conditions are |
| jbe@0 | 8 * met: |
| jbe@0 | 9 * |
| jbe@0 | 10 * 1. Redistributions of source code must retain the above copyright |
| jbe@0 | 11 * notice, this list of conditions and the following disclaimer. |
| jbe@0 | 12 * 2. Redistributions in binary form must reproduce the above copyright |
| jbe@0 | 13 * notice, this list of conditions and the following disclaimer in the |
| jbe@0 | 14 * documentation and/or other materials provided with the distribution. |
| jbe@0 | 15 * 3. Neither the name of the FlexiGuided GmbH nor the names of its |
| jbe@0 | 16 * contributors may be used to endorse or promote products derived from |
| jbe@0 | 17 * this software without specific prior written permission. |
| jbe@0 | 18 * |
| jbe@0 | 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| jbe@0 | 20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| jbe@0 | 21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| jbe@0 | 22 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER |
| jbe@0 | 23 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| jbe@0 | 24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| jbe@0 | 25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| jbe@0 | 26 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| jbe@0 | 27 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| jbe@0 | 28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| jbe@0 | 29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| jbe@0 | 30 * |
| jbe@0 | 31 */ |
| jbe@0 | 32 |
| jbe@0 | 33 /* |
| jbe@0 | 34 * This software distribution contains derived data from a modified version |
| jbe@0 | 35 * of the Unicode data files. The following license applies to that data: |
| jbe@0 | 36 * |
| jbe@0 | 37 * COPYRIGHT AND PERMISSION NOTICE |
| jbe@0 | 38 * |
| jbe@0 | 39 * Copyright (c) 1991-2005 Unicode, Inc. All rights reserved. |
| jbe@0 | 40 * Distributed under the Terms of Use in |
| jbe@0 | 41 * http://www.unicode.org/copyright.html. |
| jbe@0 | 42 * |
| jbe@0 | 43 * Permission is hereby granted, free of charge, to any person obtaining a |
| jbe@0 | 44 * copy of the Unicode data files and any associated documentation (the |
| jbe@0 | 45 * "Data Files") or Unicode software and any associated documentation (the |
| jbe@0 | 46 * "Software") to deal in the Data Files or Software without restriction, |
| jbe@0 | 47 * including without limitation the rights to use, copy, modify, merge, |
| jbe@0 | 48 * publish, distribute, and/or sell copies of the Data Files or Software, |
| jbe@0 | 49 * and to permit persons to whom the Data Files or Software are furnished |
| jbe@0 | 50 * to do so, provided that (a) the above copyright notice(s) and this |
| jbe@0 | 51 * permission notice appear with all copies of the Data Files or Software, |
| jbe@0 | 52 * (b) both the above copyright notice(s) and this permission notice appear |
| jbe@0 | 53 * in associated documentation, and (c) there is clear notice in each |
| jbe@0 | 54 * modified Data File or in the Software as well as in the documentation |
| jbe@0 | 55 * associated with the Data File(s) or Software that the data or software |
| jbe@0 | 56 * has been modified. |
| jbe@0 | 57 * |
| jbe@0 | 58 * THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF |
| jbe@0 | 59 * ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE |
| jbe@0 | 60 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| jbe@0 | 61 * NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT |
| jbe@0 | 62 * HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR |
| jbe@0 | 63 * ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER |
| jbe@0 | 64 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF |
| jbe@0 | 65 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN |
| jbe@0 | 66 * CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE. |
| jbe@0 | 67 * |
| jbe@0 | 68 * Except as contained in this notice, the name of a copyright holder shall |
| jbe@0 | 69 * not be used in advertising or otherwise to promote the sale, use or |
| jbe@0 | 70 * other dealings in these Data Files or Software without prior written |
| jbe@0 | 71 * authorization of the copyright holder. |
| jbe@0 | 72 * |
| jbe@0 | 73 */ |
| jbe@0 | 74 |
| jbe@0 | 75 /* |
| jbe@0 | 76 * Unicode is a trademark of Unicode, Inc., and may be registered in some |
| jbe@0 | 77 * jurisdictions. |
| jbe@0 | 78 * |
| jbe@0 | 79 */ |
| jbe@0 | 80 |
| jbe@0 | 81 |