UNPKG

3.49 kBPlain TextView Raw
1rrule.js: Library for working with recurrence rules for calendar dates.
2=======================================================================
3
4Copyright 2010, Jakub Roztocil <jakub@roztocil.name> and Lars Schöning
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8
9 1. Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
11
12 2. Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
15
16 3. Neither the name of The author nor the names of its contributors may
17 be used to endorse or promote products derived from this software
18 without specific prior written permission.
19
20THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND
21ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23DISCLAIMED. IN NO EVENT SHALL THE AUTHOR AND CONTRIBUTORS BE LIABLE FOR
24ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
27ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31
32
33./rrule.js and ./test/tests.js is based on python-dateutil. LICENCE:
34
35python-dateutil - Extensions to the standard Python datetime module.
36====================================================================
37
38Copyright (c) 2003-2011 - Gustavo Niemeyer <gustavo@niemeyer.net>
39Copyright (c) 2012 - Tomi Pieviläinen <tomi.pievilainen@iki.fi>
40
41All rights reserved.
42
43Redistribution and use in source and binary forms, with or without
44modification, are permitted provided that the following conditions are met:
45
46 * Redistributions of source code must retain the above copyright notice,
47 this list of conditions and the following disclaimer.
48 * Redistributions in binary form must reproduce the above copyright notice,
49 this list of conditions and the following disclaimer in the documentation
50 and/or other materials provided with the distribution.
51 * Neither the name of the copyright holder nor the names of its
52 contributors may be used to endorse or promote products derived from
53 this software without specific prior written permission.
54
55THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
56"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
57LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
58A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
59CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
60EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
61PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
62PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
63LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
64NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
65SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.