OpenLayers OpenLayers

Changeset 6463

Show
Ignore:
Timestamp:
03/08/08 06:41:21 (10 months ago)
Author:
tschaub
Message:

merge r5920:HEAD from trunk

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/tschaub/geoview/build/build.py

    r5904 r6463  
    1818 
    1919sourceDirectory = "../lib" 
    20 configFilename = "library.cfg" 
     20configFilename = "full.cfg" 
    2121outputFilename = "OpenLayers.js" 
    2222 
  • sandbox/tschaub/geoview/build/buildUncompressed.py

    r5904 r6463  
    77 
    88sourceDirectory = "../lib" 
    9 configFilename = "library.cfg" 
     9configFilename = "full.cfg" 
    1010outputFilename = "OpenLayers.js" 
    1111 
  • sandbox/tschaub/geoview/build/full.cfg

    r3601 r6463  
    1414Firebug/firebug.js 
    1515Firebug/firebugx.js 
     16OpenLayers/Lang/de.js 
     17OpenLayers/Lang/en-CA.js 
     18OpenLayers/Lang/fr.js 
  • sandbox/tschaub/geoview/doc/Jugl.js

    • Property svn:eol-style set to native
  • sandbox/tschaub/geoview/doc/authors.txt

    r5920 r6463  
    11OpenLayers contributors: 
     2 
     3Seb Benthall 
    24Howard Butler 
    35Bertil Chaupis                                                                
     
    2426James Stembridge 
    2527Erik Uzureau 
     28Ivan Willig 
    2629Bill Woodall 
    2730Steve Woodbridge 
    2831 
     32Some portions of OpenLayers are used under the Apache 2.0 license, available 
     33in doc/licenses/APACHE-2.0.txt. 
    2934 
    30 OpenLayers is graciously supported by MetaCarta, Inc. 
    31 <http://www.metacarta.com>. 
     35Some portions of OpenLayers are used under the MIT license, availabie in  
     36doc/licenses/MIT-LICENSE.txt. 
     37 
     38Some portions of OpenLayers are Copyright 2001 Robert Penner, and are used  
     39under the BSD license, available in doc/licenses/BSD-LICENSE.txt 
  • sandbox/tschaub/geoview/doc/examples.html

    • Property svn:eol-style set to native
  • sandbox/tschaub/geoview/doc/walkthru.html

    • Property svn:eol-style set to native
  • sandbox/tschaub/geoview/examples/GMLParser.html

    r5362 r6463  
    22  <head> 
    33    <title>OpenLayers GML Parser</title> 
     4    <link rel="stylesheet" href="../theme/default/style.css" type="text/css" /> 
    45    <style type="text/css"> 
    56        #map { 
  • sandbox/tschaub/geoview/examples/KMLParser.html

    r5362 r6463  
    55    <script type="text/javascript"> 
    66        function parseData(req) { 
    7           g =  new OpenLayers.Format.KML(); 
     7          g =  new OpenLayers.Format.KML({extractStyles: true}); 
    88          html = "" 
    99          features = g.read(req.responseText); 
     
    1212                html += "<ul>"; 
    1313            for (var j in features[feat].attributes) { 
    14                 html += "<li>"+j+":"+features[feat].attributes[j]+"</li>"; 
     14                html += "<li>Attribute "+j+":"+features[feat].attributes[j]+"</li>"; 
     15            } 
     16                html += "</ul>" 
     17                html += "<ul>"; 
     18            for (var j in features[feat].style) { 
     19                html += "<li>Style "+j+":"+features[feat].style[j]+"</li>"; 
    1520            } 
    1621                html += "</ul>" 
  • sandbox/tschaub/geoview/examples/accessible.html

    • Property svn:eol-style set to native
    r5362 r6463  
    22    <head> 
    33        <title>OpenLayers Accessible Example</title> 
     4        <link rel="stylesheet" href="../theme/default/style.css" type="text/css" /> 
    45         
    56        <style type="text/css"> 
  • sandbox/tschaub/geoview/examples/attribution.html

    • Property svn:eol-style set to native
    r5362 r6463  
    22    <head> 
    33        <title>OpenLayers Attribution Example</title> 
     4        <link rel="stylesheet" href="../theme/default/style.css" type="text/css" /> 
    45 
    56        <style type="text/css"> 
  • sandbox/tschaub/geoview/examples/baseLayers.html

    r5362 r6463  
    33        <title>OpenLayers Base Layers Example</title> 
    44         
     5        <link rel="stylesheet" href="../theme/default/style.css" type="text/css" /&