Changeset 167

Show
Ignore:
Timestamp:
05/02/07 18:18:23 (2 years ago)
Author:
ydnar
Message:

bugid:48991; updated license header for TypeCore & AdEngine classes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/AdEngine.js

    r166 r167  
    11/*  
    2 AdEngine 
    32$Id$ 
    43 
    5 Copyright (c) 2006, Six Apart, Ltd. 
    6 All rights reserved. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
    77 
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    359*/ 
    3610 
     11 
    3712AdEngine = { 
    38  
    39     /* called from window.onload ONLY on the logged out blog side (view) */ 
    4013    init: function() { 
    4114        var es = document.getElementsByTagName( "script" ); 
  • trunk/TypeCore.js

    r166 r167  
    1 /* 
    2 Core JavaScript Library 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2005, Six Apart, Ltd. 
    6 All rights reserved. 
    7  
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
     7 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    359*/ 
    3610 
  • trunk/TypeCore/App.js

    r159 r167  
    1 /** 
    2  * App Library - Copyright (c) 2006 Six Apart 
    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  *  
    12  *     * Redistributions in binary form must reproduce the above 
    13  * copyright notice, this list of conditions and the following disclaimer 
    14  * in the documentation and/or other materials provided with the 
    15  * distribution. 
    16  *  
    17  *     * Neither the name of "Six Apart" nor the names of its 
    18  * contributors may be used to endorse or promote products derived from 
    19  * this software without specific prior written permission. 
    20  *  
    21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    24  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    25  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    31  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    32  *  
    33  *  
    34  * This file holds the <code>App</code> class.<br> 
    35  * @object-prop <code>activeComponent</code> <code>Component</code> The currently active component in the  
    36  *              application.  This can be a panel in the application, a modal dialog, or  
    37  *              some other component.<br> 
    38  * @object-prop <code>modalStack</code> <code>Array</code> An array of modal dialog components.<br> 
    39  * @object-prop <code>modalMask</code> <code>Component</code> A div that is used when a modal dialog is displayed  
    40  *              to block events from reaching non-modal components.<br> 
    41  * <br> 
    42  * $Id$ 
    43  */ 
     1/*  
     2$Id$ 
     3 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
     7 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
     9*/ 
    4410 
    4511 
  • trunk/TypeCore/Autolayout.js

    r159 r167  
    1 /* 
    2 DOM Autolayout Interface 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2005, Six Apart, Ltd. 
    6 All rights reserved. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
    77 
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
     9*/ 
    1110 
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    35  
    36 */ 
    3711 
    3812Autolayout = { 
  • trunk/TypeCore/Cache.js

    r159 r167  
    1 /* 
    2 LRU Cache Library 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2005, Six Apart, Ltd. 
    6 All rights reserved. 
    7  
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    35  
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
     7 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    369*/ 
     10 
    3711 
    3812Cache = new Class( Object, { 
  • trunk/TypeCore/Calendar.js

    r159 r167  
    11/*  
    2 Calendar Utility 
    32$Id$ 
    43 
    5 Copyright (c) 2006, Six Apart, Ltd. 
    6 All rights reserved. 
    7  
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
     7 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    359*/ 
    3610 
  • trunk/TypeCore/Client.js

    r159 r167  
    1 /* 
    2 Client Library 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2005, Six Apart, Ltd. 
    6 All rights reserved. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
    77 
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    35  
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    369*/ 
    3710 
  • trunk/TypeCore/Component.js

    r159 r167  
    1 /* 
    2 DOM Component Library - Copyright 2005 Six Apart 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2005, Six Apart, Ltd. 
    6 All rights reserved. 
    7  
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    35  
    36  * <br/><br/> 
    37  * <hr><br/><br/> 
    38  * Class <code>Component</code> class.<br/><br/> 
    39  * @object-prop <code>sentinels</code> <code>Array</code>  A collection of  
    40  *              hidden html input fields that bestow tabbability and modality upon components.<br/> 
    41  * @object-prop <code>ativatable</code> <code>boolean</code> Whether or not this component could 
    42  *              be made active -- see below.<br/> 
    43  * @object-prop <code>ative</code> <code>boolean</code> Whether or not this component is active -- active  
    44  *              components are managed by <code>App</code>.<br/> 
    45  * @object-prop <code>modal</code> <code>boolean</code> Whether or not this component is modal  
    46  *              (is the only part of the application that may be currently interacted with by the user) 
    47  *               -- modal components are managed by <code>App</code>.<br/> 
    48  * @object-prop <code>focusableTagNames</code> <code>Object</code>A dictionary of names of html tags that are  
    49  *              allowed focus under the 'active' state and under modality.  Used for controlling focus.<br/> 
    50  * <br/><hr/> 
    51  * Class <code>Modal</code>  The modal pop-up superclass.<br/> 
    52  * @inherits-from <code>Component</code>.<br/> 
    53  * <hr/> 
    54  * Class <code>Transient</code>  A transient modal pop-up, such as a list or color picker.<br/> 
    55  * @inherits-from <code>Modal</code>.<br/> 
    56  * @listens-to <code>onkeypress</code> <br/> 
    57  * <hr/> 
    58  * Class <code>Modal-Message</code>  A  modal pop-up message, such as a confirm dialog.<br/> 
    59  * @inherits-from <code>Modal</code>.<br/> 
    60  * @listens-to <code>onkeypress</code> <br/> 
    61  * <hr/> 
    62  * Class <code>ModalMask</code>  The event-blocking mask that preserves the modality of modals  
    63  *        from clicking outside their boundaries.<br/> 
    64  * <br/><br/> 
    65  */ 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
     7 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
     9*/ 
     10 
    6611 
    6712Component = new Class( Observable, Autolayout, { 
  • trunk/TypeCore/Cookie.js

    r159 r167  
    1 /* 
    2 Cookie JavaScript Library 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2007, Six Apart, Ltd. 
    6 All rights reserved. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
    77 
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
     9*/ 
    1110 
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    35 */ 
    3611 
    3712/* constructor */ 
  • trunk/TypeCore/DOM.js

    r159 r167  
    1 /* 
    2 DOM Library 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2005, Six Apart, Ltd. 
    6 All rights reserved. 
    7  
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
     7 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    359*/ 
    3610 
  • trunk/TypeCore/DOM/Convert.js

    r159 r167  
    1 /* 
    2 DOM Library 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2005, Six Apart, Ltd. 
    6 All rights reserved. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
    77 
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    359*/ 
    3610 
    37    
     11 
    3812extend( DOM, { 
    3913    detectHTML: function( html, filter ) { 
  • trunk/TypeCore/DOM/Proxy.js

    r159 r167  
    1 /* 
    2 DOM Proxy JavaScript Library 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2006, Six Apart, Ltd. 
    6 All rights reserved. 
    7  
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
     7 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    359*/ 
    3610 
  • trunk/TypeCore/Devel.js

    r161 r167  
    1 /* 
    2 Development Library - Copyright 2005 Six Apart 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2007, Six Apart, Ltd. 
    6 All rights reserved. 
    7  
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
     7 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    359*/ 
    3610 
  • trunk/TypeCore/Dialog.js

    r159 r167  
    1 /* 
    2 Dialog Library 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2006, Six Apart, Ltd. 
    6 All rights reserved. 
    7  
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
     7 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    359*/ 
     10 
    3611 
    3712Dialog = {}; 
  • trunk/TypeCore/JSON.js

    r159 r167  
    1 /* 
    2 JavasSript Object Notation (JSON) - Copyright 2005 Six Apart 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2005-2006, Six Apart, Ltd. 
    6 All rights reserved. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
    77 
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    35  
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    369*/ 
    3710 
  • trunk/TypeCore/List.js

    r159 r167  
    1 /* 
    2 List Controller Component 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2005, Six Apart, Ltd. 
    6 All rights reserved. 
    7  
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
     7 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    359*/ 
    3610 
  • trunk/TypeCore/Observable.js

    r159 r167  
    1 /* 
    2 Observable Library 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2006, Six Apart, Ltd. 
    6 All rights reserved. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
    77 
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    359*/ 
    3610 
  • trunk/TypeCore/Pager.js

    r159 r167  
    1 /* 
    2 Pagination Component 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2006, Six Apart, Ltd. 
    6 All rights reserved. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
    77 
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
     9*/ 
    1110 
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    35 */ 
    3611 
    3712Pager = new Class( Component, { 
  • trunk/TypeCore/SelectionRange.js

    r164 r167  
    1 /* 
    2 SelectionRange Class - Copyright 2005 Six Apart 
     1/*  
    32$Id$ 
     3 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
     7 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    49*/ 
    510 
  • trunk/TypeCore/SpellChecker.js

    r159 r167  
    1 /* 
    2 Spell Checking Library 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2006, Six Apart, Ltd. 
    6 All rights reserved. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
    77 
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    359*/ 
    3610 
  • trunk/TypeCore/Template.js

    r159 r167  
    1 /* 
    2 Template - Copyright 2005 Six Apart 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2005, Six Apart, Ltd. 
    6 All rights reserved. 
    7  
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    35  
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
     7 
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    369*/ 
    3710 
  • trunk/TypeCore/Timer.js

    r159 r167  
    1 /* 
    2 Timer Library 
     1/*  
    32$Id$ 
    43 
    5 Copyright (c) 2005, Six Apart, Ltd. 
    6 All rights reserved. 
     4Copyright Six Apart, Ltd. All rights reserved. 
     5Redistribution and use in source and binary forms is 
     6subject to the Six Apart JavaScript license: 
    77 
    8 Redistribution and use in source and binary forms, with or without 
    9 modification, are permitted provided that the following conditions are 
    10 met: 
    11  
    12     * Redistributions of source code must retain the above copyright 
    13 notice, this list of conditions and the following disclaimer. 
    14  
    15     * Redistributions in binary form must reproduce the above 
    16 copyright notice, this list of conditions and the following disclaimer 
    17 in the documentation and/or other materials provided with the 
    18 distribution. 
    19  
    20     * Neither the name of "Six Apart" nor the names of its 
    21 contributors may be used to endorse or promote products derived from 
    22 this software without specific prior written permission. 
    23  
    24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
    27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
    28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
    29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
    30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
    31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
    32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
    33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    35  
     8http://code.sixapart.com/svn/js/trunk/LICENSE.txt 
    369*/ 
    3710 
  • trunk/TypeCore/WordWalker.js