license.txt 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. OpenLayers.js -- OpenLayers Map Viewer Library
  3. Copyright 2005-2011 OpenLayers Contributors, released under the FreeBSD
  4. license. Please see http://svn.openlayers.org/trunk/openlayers/license.txt
  5. for the full text of the license.
  6. Includes compressed code under the following licenses:
  7. (For uncompressed versions of the code used please see the
  8. OpenLayers SVN repository: <http://openlayers.org/>)
  9. */
  10. /* Contains portions of Prototype.js:
  11. *
  12. * Prototype JavaScript framework, version 1.4.0
  13. * (c) 2005 Sam Stephenson <sam@conio.net>
  14. *
  15. * Prototype is freely distributable under the terms of an MIT-style license.
  16. * For details, see the Prototype web site: http://prototype.conio.net/
  17. *
  18. *--------------------------------------------------------------------------*/
  19. /**
  20. *
  21. * Contains portions of Rico <http://openrico.org/>
  22. *
  23. * Copyright 2005 Sabre Airline Solutions
  24. *
  25. * Licensed under the Apache License, Version 2.0 (the "License"); you
  26. * may not use this file except in compliance with the License. You
  27. * may obtain a copy of the License at
  28. *
  29. * http://www.apache.org/licenses/LICENSE-2.0
  30. *
  31. * Unless required by applicable law or agreed to in writing, software
  32. * distributed under the License is distributed on an "AS IS" BASIS,
  33. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  34. * implied. See the License for the specific language governing
  35. * permissions and limitations under the License.
  36. *
  37. **/
  38. /**
  39. * Contains XMLHttpRequest.js <http://code.google.com/p/xmlhttprequest/>
  40. * Copyright 2007 Sergey Ilinsky (http://www.ilinsky.com)
  41. *
  42. * Licensed under the Apache License, Version 2.0 (the "License");
  43. * you may not use this file except in compliance with the License.
  44. * You may obtain a copy of the License at
  45. * http://www.apache.org/licenses/LICENSE-2.0
  46. */
  47. /**
  48. * Contains portions of Gears <http://code.google.com/apis/gears/>
  49. *
  50. * Copyright 2007, Google Inc.
  51. *
  52. * Redistribution and use in source and binary forms, with or without
  53. * modification, are permitted provided that the following conditions are met:
  54. *
  55. * 1. Redistributions of source code must retain the above copyright notice,
  56. * this list of conditions and the following disclaimer.
  57. * 2. Redistributions in binary form must reproduce the above copyright notice,
  58. * this list of conditions and the following disclaimer in the documentation
  59. * and/or other materials provided with the distribution.
  60. * 3. Neither the name of Google Inc. nor the names of its contributors may be
  61. * used to endorse or promote products derived from this software without
  62. * specific prior written permission.
  63. *
  64. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
  65. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  66. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
  67. * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  68. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  69. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  70. * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  71. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  72. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  73. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  74. *
  75. * Sets up google.gears.*, which is *the only* supported way to access Gears.
  76. *
  77. * Circumvent this file at your own risk!
  78. *
  79. * In the future, Gears may automatically define google.gears.* without this
  80. * file. Gears may use these objects to transparently fix bugs and compatibility
  81. * issues. Applications that use the code below will continue to work seamlessly
  82. * when that happens.
  83. */
  84. /**
  85. * OpenLayers.Util.pagePosition is based on Yahoo's getXY method, which is
  86. * Copyright (c) 2006, Yahoo! Inc.
  87. * All rights reserved.
  88. *
  89. * Redistribution and use of this software in source and binary forms, with or
  90. * without modification, are permitted provided that the following conditions
  91. * are met:
  92. *
  93. * * Redistributions of source code must retain the above copyright notice,
  94. * this list of conditions and the following disclaimer.
  95. *
  96. * * Redistributions in binary form must reproduce the above copyright notice,
  97. * this list of conditions and the following disclaimer in the documentation
  98. * and/or other materials provided with the distribution.
  99. *
  100. * * Neither the name of Yahoo! Inc. nor the names of its contributors may be
  101. * used to endorse or promote products derived from this software without
  102. * specific prior written permission of Yahoo! Inc.
  103. *
  104. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  105. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  106. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  107. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  108. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  109. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  110. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  111. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  112. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  113. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  114. * POSSIBILITY OF SUCH DAMAGE.
  115. */