| OLD | NEW |
| (Empty) | |
| 1 #License START |
| 2 // PCRE LICENCE |
| 3 // ------------ |
| 4 // |
| 5 // PCRE is a library of functions to support regular expressions whose syntax |
| 6 // and semantics are as close as possible to those of the Perl 5 language. |
| 7 // |
| 8 // Release 7 of PCRE is distributed under the terms of the "BSD" licence, as |
| 9 // specified below. The documentation for PCRE, supplied in the "doc" |
| 10 // directory, is distributed under the same terms as the software itself. |
| 11 // |
| 12 // The basic library functions are written in C and are freestanding. Also |
| 13 // included in the distribution is a set of C++ wrapper functions. |
| 14 // |
| 15 // |
| 16 // THE BASIC LIBRARY FUNCTIONS |
| 17 // --------------------------- |
| 18 // |
| 19 // Written by: Philip Hazel |
| 20 // Email local part: ph10 |
| 21 // Email domain: cam.ac.uk |
| 22 // |
| 23 // University of Cambridge Computing Service, |
| 24 // Cambridge, England. |
| 25 // |
| 26 // Copyright (c) 1997-2007 University of Cambridge |
| 27 // All rights reserved. |
| 28 // |
| 29 // |
| 30 // THE C++ WRAPPER FUNCTIONS |
| 31 // ------------------------- |
| 32 // |
| 33 // Contributed by: Google Inc. |
| 34 // |
| 35 // Copyright (c) 2007, Google Inc. |
| 36 // All rights reserved. |
| 37 // |
| 38 // |
| 39 // THE "BSD" LICENCE |
| 40 // ----------------- |
| 41 // |
| 42 // Redistribution and use in source and binary forms, with or without |
| 43 // modification, are permitted provided that the following conditions are met: |
| 44 // |
| 45 // * Redistributions of source code must retain the above copyright notice, |
| 46 // this list of conditions and the following disclaimer. |
| 47 // |
| 48 // * Redistributions in binary form must reproduce the above copyright |
| 49 // notice, this list of conditions and the following disclaimer in the |
| 50 // documentation and/or other materials provided with the distribution. |
| 51 // |
| 52 // * Neither the name of the University of Cambridge nor the name of Google |
| 53 // Inc. nor the names of their contributors may be used to endorse or |
| 54 // promote products derived from this software without specific prior |
| 55 // written permission. |
| 56 // |
| 57 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 58 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 59 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 60 // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
| 61 // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 62 // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 63 // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 64 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 65 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 66 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 67 // POSSIBILITY OF SUCH DAMAGE. |
| 68 // |
| 69 // End |
| 70 |
| 71 This license applies to the following files: |
| 72 -regexp-pcre.js |
| 73 |
| 74 #License END |
| 75 |
| 76 #License START |
| 77 // Copyright (c) 2006 Apple Computer, Inc. All rights reserved. |
| 78 // |
| 79 // Redistribution and use in source and binary forms, with or without |
| 80 // modification, are permitted provided that the following conditions |
| 81 // are met: |
| 82 // |
| 83 // 1. Redistributions of source code must retain the above copyright |
| 84 // notice, this list of conditions and the following disclaimer. |
| 85 // |
| 86 // 2. Redistributions in binary form must reproduce the above |
| 87 // copyright notice, this list of conditions and the following |
| 88 // disclaimer in the documentation and/or other materials provided |
| 89 // with the distribution. |
| 90 // |
| 91 // 3. Neither the name of the copyright holder(s) nor the names of any |
| 92 // contributors may be used to endorse or promote products derived |
| 93 // from this software without specific prior written permission. |
| 94 // |
| 95 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 96 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 97 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 98 // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 99 // COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 100 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 101 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 102 // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 103 // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 104 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 105 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 106 // OF THE POSSIBILITY OF SUCH DAMAGE. |
| 107 |
| 108 This license applies to the following files: |
| 109 -object-keys.js |
| 110 |
| 111 #License END |
| OLD | NEW |