|
| 1 | +/* |
| 2 | + Copyright (C) 2013 Ariya Hidayat < [email protected]> |
| 3 | + Copyright (C) 2013 Thaddee Tyl < [email protected]> |
| 4 | + Copyright (C) 2012 Ariya Hidayat < [email protected]> |
| 5 | + Copyright (C) 2012 Mathias Bynens < [email protected]> |
| 6 | + Copyright (C) 2012 Joost-Wim Boekesteijn < [email protected]> |
| 7 | + Copyright (C) 2012 Kris Kowal < [email protected]> |
| 8 | + Copyright (C) 2012 Yusuke Suzuki < [email protected]> |
| 9 | + Copyright (C) 2012 Arpad Borsos < [email protected]> |
| 10 | + Copyright (C) 2011 Ariya Hidayat < [email protected]> |
| 11 | + |
| 12 | + Redistribution and use in source and binary forms, with or without |
| 13 | + modification, are permitted provided that the following conditions are met: |
| 14 | + |
| 15 | + * Redistributions of source code must retain the above copyright |
| 16 | + notice, this list of conditions and the following disclaimer. |
| 17 | + * Redistributions in binary form must reproduce the above copyright |
| 18 | + notice, this list of conditions and the following disclaimer in the |
| 19 | + documentation and/or other materials provided with the distribution. |
| 20 | + |
| 21 | + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 22 | + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 23 | + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 24 | + ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY |
| 25 | + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 26 | + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 27 | + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 28 | + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 | + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 30 | + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | +*/ |
| 32 | + |
| 33 | +/* |
| 34 | + * Copyright 2009-2011 Mozilla Foundation and contributors |
| 35 | + * Licensed under the New BSD license. See LICENSE or: |
| 36 | + * http://opensource.org/licenses/BSD-3-Clause |
| 37 | + */ |
| 38 | + |
| 39 | +/* |
| 40 | + * Copyright 2011 Mozilla Foundation and contributors |
| 41 | + * Licensed under the New BSD license. See LICENSE or: |
| 42 | + * http://opensource.org/licenses/BSD-3-Clause |
| 43 | + * |
| 44 | + * Based on the Base 64 VLQ implementation in Closure Compiler: |
| 45 | + * https://code.google.com/p/closure-compiler/source/browse/trunk/src/com/google/debugging/sourcemap/Base64VLQ.java |
| 46 | + * |
| 47 | + * Copyright 2011 The Closure Compiler Authors. All rights reserved. |
| 48 | + * Redistribution and use in source and binary forms, with or without |
| 49 | + * modification, are permitted provided that the following conditions are |
| 50 | + * met: |
| 51 | + * |
| 52 | + * * Redistributions of source code must retain the above copyright |
| 53 | + * notice, this list of conditions and the following disclaimer. |
| 54 | + * * Redistributions in binary form must reproduce the above |
| 55 | + * copyright notice, this list of conditions and the following |
| 56 | + * disclaimer in the documentation and/or other materials provided |
| 57 | + * with the distribution. |
| 58 | + * * Neither the name of Google Inc. nor the names of its |
| 59 | + * contributors may be used to endorse or promote products derived |
| 60 | + * from this software without specific prior written permission. |
| 61 | + * |
| 62 | + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 63 | + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 64 | + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 65 | + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 66 | + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 67 | + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 68 | + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 69 | + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 70 | + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 71 | + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 72 | + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 73 | + */ |
| 74 | + |
| 75 | + |
| 76 | +/** vim: et:ts=4:sw=4:sts=4 |
| 77 | + * @license amdefine 0.1.0 Copyright (c) 2011, The Dojo Foundation All Rights Reserved. |
| 78 | + * Available via the MIT or new BSD license. |
| 79 | + * see: http://github.com/jrburke/amdefine for details |
| 80 | + */ |
0 commit comments