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