htmlparser-license.txt 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. License
  2. This is for the HTML parser as a whole except the rewindable input stream,
  3. the named character classes and the Live DOM Viewer.
  4. For the copyright notices for individual files, please see individual files.
  5. /*
  6. * Copyright (c) 2005, 2006, 2007 Henri Sivonen
  7. * Copyright (c) 2007-2011 Mozilla Foundation
  8. * Portions of comments Copyright 2004-2007 Apple Computer, Inc., Mozilla
  9. * Foundation, and Opera Software ASA.
  10. *
  11. * Permission is hereby granted, free of charge, to any person obtaining a
  12. * copy of this software and associated documentation files (the "Software"),
  13. * to deal in the Software without restriction, including without limitation
  14. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  15. * and/or sell copies of the Software, and to permit persons to whom the
  16. * Software is furnished to do so, subject to the following conditions:
  17. *
  18. * The above copyright notice and this permission notice shall be included in
  19. * all copies or substantial portions of the Software.
  20. *
  21. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  22. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  23. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  24. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  25. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  26. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  27. * DEALINGS IN THE SOFTWARE.
  28. */
  29. The following license is for the WHATWG spec from which the named character
  30. data was extracted.
  31. /*
  32. * Copyright 2004-2010 Apple Computer, Inc., Mozilla Foundation, and Opera
  33. * Software ASA.
  34. *
  35. * You are granted a license to use, reproduce and create derivative works of
  36. * this document.
  37. */
  38. The following license is for the rewindable input stream.
  39. /*
  40. * Copyright (c) 2001-2003 Thai Open Source Software Center Ltd
  41. * All rights reserved.
  42. *
  43. * Redistribution and use in source and binary forms, with or without
  44. * modification, are permitted provided that the following conditions
  45. * are met:
  46. *
  47. * * Redistributions of source code must retain the above copyright
  48. * notice, this list of conditions and the following disclaimer.
  49. * * Redistributions in binary form must reproduce the above
  50. * copyright notice, this list of conditions and the following
  51. * disclaimer in the documentation and/or other materials provided
  52. * with the distribution.
  53. * * Neither the name of the Thai Open Source Software Center Ltd nor
  54. * the names of its contributors may be used to endorse or promote
  55. * products derived from this software without specific prior
  56. * written permission.
  57. *
  58. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  59. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  60. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  61. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  62. * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  63. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  64. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  65. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  66. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  67. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  68. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  69. * POSSIBILITY OF SUCH DAMAGE.
  70. */
  71. The following license applies to the Live DOM Viewer:
  72. Copyright (c) 2000, 2006, 2008 Ian Hickson and various contributors
  73. Permission is hereby granted, free of charge, to any person obtaining a copy
  74. of this software and associated documentation files (the "Software"), to deal
  75. in the Software without restriction, including without limitation the rights
  76. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  77. copies of the Software, and to permit persons to whom the Software is
  78. furnished to do so, subject to the following conditions:
  79. The above copyright notice and this permission notice shall be included in
  80. all copies or substantial portions of the Software.
  81. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  82. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  83. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  84. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  85. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  86. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  87. THE SOFTWARE.