Changeset 167
- Timestamp:
- 05/02/07 18:18:23 (2 years ago)
- Files:
-
- trunk/AdEngine.js (modified) (1 diff)
- trunk/TypeCore.js (modified) (1 diff)
- trunk/TypeCore/App.js (modified) (1 diff)
- trunk/TypeCore/Autolayout.js (modified) (1 diff)
- trunk/TypeCore/Cache.js (modified) (1 diff)
- trunk/TypeCore/Calendar.js (modified) (1 diff)
- trunk/TypeCore/Client.js (modified) (1 diff)
- trunk/TypeCore/Component.js (modified) (1 diff)
- trunk/TypeCore/Cookie.js (modified) (1 diff)
- trunk/TypeCore/DOM.js (modified) (1 diff)
- trunk/TypeCore/DOM/Convert.js (modified) (1 diff)
- trunk/TypeCore/DOM/Proxy.js (modified) (1 diff)
- trunk/TypeCore/Devel.js (modified) (1 diff)
- trunk/TypeCore/Dialog.js (modified) (1 diff)
- trunk/TypeCore/JSON.js (modified) (1 diff)
- trunk/TypeCore/List.js (modified) (1 diff)
- trunk/TypeCore/Observable.js (modified) (1 diff)
- trunk/TypeCore/Pager.js (modified) (1 diff)
- trunk/TypeCore/SelectionRange.js (modified) (1 diff)
- trunk/TypeCore/SpellChecker.js (modified) (1 diff)
- trunk/TypeCore/Template.js (modified) (1 diff)
- trunk/TypeCore/Timer.js (modified) (1 diff)
- trunk/TypeCore/WordWalker.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/AdEngine.js
r166 r167 1 1 /* 2 AdEngine3 2 $Id$ 4 3 5 Copyright (c) 2006, Six Apart, Ltd. 6 All rights reserved. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 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. 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 35 9 */ 36 10 11 37 12 AdEngine = { 38 39 /* called from window.onload ONLY on the logged out blog side (view) */40 13 init: function() { 41 14 var es = document.getElementsByTagName( "script" ); trunk/TypeCore.js
r166 r167 1 /* 2 Core JavaScript Library 1 /* 3 2 $Id$ 4 3 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. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 35 9 */ 36 10 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 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 9 */ 44 10 45 11 trunk/TypeCore/Autolayout.js
r159 r167 1 /* 2 DOM Autolayout Interface 1 /* 3 2 $Id$ 4 3 5 Copyright (c) 2005, Six Apart, Ltd. 6 All rights reserved. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 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: 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 9 */ 11 10 12 * Redistributions of source code must retain the above copyright13 notice, this list of conditions and the following disclaimer.14 15 * Redistributions in binary form must reproduce the above16 copyright notice, this list of conditions and the following disclaimer17 in the documentation and/or other materials provided with the18 distribution.19 20 * Neither the name of "Six Apart" nor the names of its21 contributors may be used to endorse or promote products derived from22 this software without specific prior written permission.23 24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.35 36 */37 11 38 12 Autolayout = { trunk/TypeCore/Cache.js
r159 r167 1 /* 2 LRU Cache Library 1 /* 3 2 $Id$ 4 3 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 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 36 9 */ 10 37 11 38 12 Cache = new Class( Object, { trunk/TypeCore/Calendar.js
r159 r167 1 1 /* 2 Calendar Utility3 2 $Id$ 4 3 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. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 35 9 */ 36 10 trunk/TypeCore/Client.js
r159 r167 1 /* 2 Client Library 1 /* 3 2 $Id$ 4 3 5 Copyright (c) 2005, Six Apart, Ltd. 6 All rights reserved. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 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 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 36 9 */ 37 10 trunk/TypeCore/Component.js
r159 r167 1 /* 2 DOM Component Library - Copyright 2005 Six Apart 1 /* 3 2 $Id$ 4 3 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 */ 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 9 */ 10 66 11 67 12 Component = new Class( Observable, Autolayout, { trunk/TypeCore/Cookie.js
r159 r167 1 /* 2 Cookie JavaScript Library 1 /* 3 2 $Id$ 4 3 5 Copyright (c) 2007, Six Apart, Ltd. 6 All rights reserved. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 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: 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 9 */ 11 10 12 * Redistributions of source code must retain the above copyright13 notice, this list of conditions and the following disclaimer.14 15 * Redistributions in binary form must reproduce the above16 copyright notice, this list of conditions and the following disclaimer17 in the documentation and/or other materials provided with the18 distribution.19 20 * Neither the name of "Six Apart" nor the names of its21 contributors may be used to endorse or promote products derived from22 this software without specific prior written permission.23 24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.35 */36 11 37 12 /* constructor */ trunk/TypeCore/DOM.js
r159 r167 1 /* 2 DOM Library 1 /* 3 2 $Id$ 4 3 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. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 35 9 */ 36 10 trunk/TypeCore/DOM/Convert.js
r159 r167 1 /* 2 DOM Library 1 /* 3 2 $Id$ 4 3 5 Copyright (c) 2005, Six Apart, Ltd. 6 All rights reserved. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 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. 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 35 9 */ 36 10 37 11 38 12 extend( DOM, { 39 13 detectHTML: function( html, filter ) { trunk/TypeCore/DOM/Proxy.js
r159 r167 1 /* 2 DOM Proxy JavaScript Library 1 /* 3 2 $Id$ 4 3 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. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 35 9 */ 36 10 trunk/TypeCore/Devel.js
r161 r167 1 /* 2 Development Library - Copyright 2005 Six Apart 1 /* 3 2 $Id$ 4 3 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. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 35 9 */ 36 10 trunk/TypeCore/Dialog.js
r159 r167 1 /* 2 Dialog Library 1 /* 3 2 $Id$ 4 3 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. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 35 9 */ 10 36 11 37 12 Dialog = {}; trunk/TypeCore/JSON.js
r159 r167 1 /* 2 JavasSript Object Notation (JSON) - Copyright 2005 Six Apart 1 /* 3 2 $Id$ 4 3 5 Copyright (c) 2005-2006, Six Apart, Ltd. 6 All rights reserved. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 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 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 36 9 */ 37 10 trunk/TypeCore/List.js
r159 r167 1 /* 2 List Controller Component 1 /* 3 2 $Id$ 4 3 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. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 35 9 */ 36 10 trunk/TypeCore/Observable.js
r159 r167 1 /* 2 Observable Library 1 /* 3 2 $Id$ 4 3 5 Copyright (c) 2006, Six Apart, Ltd. 6 All rights reserved. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 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. 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 35 9 */ 36 10 trunk/TypeCore/Pager.js
r159 r167 1 /* 2 Pagination Component 1 /* 3 2 $Id$ 4 3 5 Copyright (c) 2006, Six Apart, Ltd. 6 All rights reserved. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 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: 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 9 */ 11 10 12 * Redistributions of source code must retain the above copyright13 notice, this list of conditions and the following disclaimer.14 15 * Redistributions in binary form must reproduce the above16 copyright notice, this list of conditions and the following disclaimer17 in the documentation and/or other materials provided with the18 distribution.19 20 * Neither the name of "Six Apart" nor the names of its21 contributors may be used to endorse or promote products derived from22 this software without specific prior written permission.23 24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR27 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT28 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,29 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT30 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,31 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY32 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE34 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.35 */36 11 37 12 Pager = new Class( Component, { trunk/TypeCore/SelectionRange.js
r164 r167 1 /* 2 SelectionRange Class - Copyright 2005 Six Apart 1 /* 3 2 $Id$ 3 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 4 9 */ 5 10 trunk/TypeCore/SpellChecker.js
r159 r167 1 /* 2 Spell Checking Library 1 /* 3 2 $Id$ 4 3 5 Copyright (c) 2006, Six Apart, Ltd. 6 All rights reserved. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 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. 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 35 9 */ 36 10 trunk/TypeCore/Template.js
r159 r167 1 /* 2 Template - Copyright 2005 Six Apart 1 /* 3 2 $Id$ 4 3 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 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 36 9 */ 37 10 trunk/TypeCore/Timer.js
r159 r167 1 /* 2 Timer Library 1 /* 3 2 $Id$ 4 3 5 Copyright (c) 2005, Six Apart, Ltd. 6 All rights reserved. 4 Copyright Six Apart, Ltd. All rights reserved. 5 Redistribution and use in source and binary forms is 6 subject to the Six Apart JavaScript license: 7 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 8 http://code.sixapart.com/svn/js/trunk/LICENSE.txt 36 9 */ 37 10 trunk/TypeCore/WordWalker.js
