Changeset b9b0b5720e7f0cebdbc138982e041d73c32419af
- Timestamp:
- 12/18/09 01:32:26 (3 years ago)
- git-parent:
- Files:
-
- buildtools/license-audit (modified) (2 diffs)
- src/eventer/OETS_asn1_helper.h (modified) (1 diff)
- src/modules-lua/noit/HttpClient.lua (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
buildtools/license-audit
r54eb3fe rb9b0b57 19 19 This code may be used and distributed under the same license as any 20 20 version of Perl 21 %), 22 'openevidence-BSD' => normalize(q% 23 * Redistribution and use in source and binary forms, with or without 24 * modification, are permitted provided that the following conditions 25 * are met: 26 * 27 * 1. Redistributions of source code must retain the above copyright 28 * notice, this list of conditions, the following disclaimer, 29 * and the original OpenSSL and SSLeay Licences below. 30 * 31 * 2. Redistributions in binary form must reproduce the above copyright 32 * notice, this list of conditions, the following disclaimer 33 * and the original OpenSSL and SSLeay Licences below in 34 * the documentation and/or other materials provided with the 35 * distribution. 36 * 37 * 3. All advertising materials mentioning features or use of this 38 * software must display the following acknowledgments: 39 * "This product includes software developed by the Openevidence Project 40 * for use in the OpenEvidence Toolkit. (http://www.openevidence.org/)" 41 * This product includes software developed by the OpenSSL Project 42 * for use in the OpenSSL Toolkit (http://www.openssl.org/)" 43 * This product includes cryptographic software written by Eric Young 44 * (eay@cryptsoft.com). This product includes software written by Tim 45 * Hudson (tjh@cryptsoft.com)." 46 * 47 * 4. The names "OpenEvidence Toolkit" and "OpenEvidence Project" must not be 48 * used to endorse or promote products derived from this software without 49 * prior written permission. For written permission, please contact 50 * openevidence-core@openevidence.org. 51 * 52 * 5. Products derived from this software may not be called "OpenEvidence" 53 * nor may "OpenEvidence" appear in their names without prior written 54 * permission of the OpenEvidence Project. 55 * 56 * 6. Redistributions of any form whatsoever must retain the following 57 * acknowledgments: 58 * "This product includes software developed by the OpenEvidence Project 59 * for use in the OpenEvidence Toolkit (http://www.openevidence.org/) 60 * This product includes software developed by the OpenSSL Project 61 * for use in the OpenSSL Toolkit (http://www.openssl.org/)" 62 * This product includes cryptographic software written by Eric Young 63 * (eay@cryptsoft.com). This product includes software written by Tim 64 * Hudson (tjh@cryptsoft.com)." 65 * 66 * THIS SOFTWARE IS PROVIDED BY THE OpenEvidence PROJECT ``AS IS'' AND ANY 67 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 68 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 69 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenEvidence PROJECT OR 70 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 71 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 72 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 73 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 74 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 75 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 76 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 77 * OF THE POSSIBILITY OF SUCH DAMAGE. 21 78 %), 22 79 'labs-omni-BSD' => normalize(q% … … 231 288 my $fname = $File::Find::name; 232 289 if($fname =~ /\.(?:c|h|java|cpp|hpp|C|s|lua)$/) { 290 next if $fname =~ /^\.\/src\/lua\/(?:test|etc)\//; 233 291 my $license = detect_license($fname); 234 292 if(($include_re && $license =~ $include_re) || src/eventer/OETS_asn1_helper.h
r72c5b0b rb9b0b57 1 /* 2 * Copyright (c) 2009, OmniTI Computer Consulting, Inc. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: 8 * 9 * * Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * * Redistributions in binary form must reproduce the above 12 * copyright notice, this list of conditions and the following 13 * disclaimer in the documentation and/or other materials provided 14 * with the distribution. 15 * * Neither the name OmniTI Computer Consulting, Inc. nor the names 16 * of its contributors may be used to endorse or promote products 17 * derived from this software without specific prior written 18 * permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 */ 32 33 1 34 #ifndef OETS_ASN1_HELPER_H 2 35 #define OETS_ASN1_HELPER_H src/modules-lua/noit/HttpClient.lua
rcec1cb6 rb9b0b57 1 -- Copyright (c) 2008, OmniTI Computer Consulting, Inc. 2 -- All rights reserved. 3 -- 4 -- Redistribution and use in source and binary forms, with or without 5 -- modification, are permitted provided that the following conditions are 6 -- met: 7 -- 8 -- * Redistributions of source code must retain the above copyright 9 -- notice, this list of conditions and the following disclaimer. 10 -- * Redistributions in binary form must reproduce the above 11 -- copyright notice, this list of conditions and the following 12 -- disclaimer in the documentation and/or other materials provided 13 -- with the distribution. 14 -- * Neither the name OmniTI Computer Consulting, Inc. nor the names 15 -- of its contributors may be used to endorse or promote products 16 -- derived from this software without specific prior written 17 -- permission. 18 -- 19 -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 20 -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 21 -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 22 -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 23 -- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 24 -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 25 -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26 -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27 -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 1 31 local HttpClient = {}; 2 32 HttpClient.__index = HttpClient;
