Changeset 8474 in genesis


Ignore:
Timestamp:
Sep 19, 2010, 11:03:07 AM (14 years ago)
Author:
rick
Message:

Licence blurp, Version and Credits to make it look like a new program.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • nodes/nodemap.html

    • Property svn:keywords set to Id
    r8472 r8474  
    11<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    22        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     3<!--
     4Author: Rick van der Zwet <info@rickvanderzwet.nl>
     5License: BSDLike - http://svn.wirelessleiden.nl/svn/LICENSE.txt
     6-->
    37<html xmlns="http://www.w3.org/1999/xhtml">
    48  <head>
     
    2024      var map, rulerControl, clickControl;
    2125      var mapnik, wms;
     26      var svnVersion = '$Id$';
     27      var version = '0.10';
    2228      var projection_wgs = new OpenLayers.Projection("EPSG:4326"); // WGS 1984
    2329      var projection_smp = new OpenLayers.Projection("EPSG:900913"); // Spherical Mercator Projection
     
    114120      }
    115121     
    116       function init() {
     122      function initMap() {
    117123        map = new OpenLayers.Map("basicMap");
    118124     
     
    391397        });
    392398        map.addControl(rulerControl);
    393       }
    394      
     399      } // end of init
     400
     401
     402
    395403      function resize() {
    396404        size = new OpenLayers.Size(size.w + 10, size.h + 10);
    397405        icon.setSize(size);   
    398406      }
    399      
     407
     408
     409
    400410      function toggleFieldById(field) {
    401411        var e = document.getElementById(field);
     
    406416        }
    407417      }
    408      
     418
     419
     420
    409421      function toggleClickControl() {
    410422          toggleFieldById('coordField');
     
    415427             clickControl.deactivate();
    416428             document.getElementById('click').src = url_pal3 + "icon28.png";
    417              
    418429          }
    419430      }
    420      
     431
    421432
    422433      function toggleRulerControl() {
     
    430441          }
    431442      }
    432      
     443
     444
     445
    433446      function defaultFocus() {
    434447        map.setCenter(new OpenLayers.LonLat(4.50,52.186).transform( projection_wgs, projection_smp), 12);
    435448      }
    436      
    437       // http://openlayers.org/dev/examples/strategy-cluster-threshold.html
     449
     450
     451
     452      function init() {
     453        initMap();
     454        document.getElementById('version').innerHTML = version;
     455        document.getElementById('svnVersion').innerHTML = svnVersion;
     456      }
    438457      // ]]>
    439458
     
    462481          <li>Contrast of background: <a title="decrease opacity" href="javascript: changeOpacity(-0.1);">Decrease</a> or <a title="increase opacity" href="javascript: changeOpacity(0.1);">Increase</a></li>
    463482        </ul>
    464 <p>
     483<p>Validated by:
    465484    <a href="http://validator.w3.org/check?uri=referer"><img
    466485        src="http://www.w3.org/Icons/valid-xhtml10" title="Valid XHTML 1.0 Strict"
    467         alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
     486        alt="Valid XHTML 1.0 Strict" height="17" />
    468487    <a href="http://jslint.com"><img src="http://www.jslint.com/jslintpill.gif" title="Valid JavaScript code" alt="Valid JavaScript code" /></a>
     488    <br />
     489    Version: <em id='version'></em> - <em id='svnVersion'></em>
     490    <p />
     491    <small>
     492    Written by Rick van der Zwet - &lt;info@rickvanderzwet.nl&gt;<br />
     493    Licence: <a href="http://svn.wirelessleiden.nl/svn/LICENSE.txt">BSDlike</a>
     494    </small>
    469495  </p>
    470496      </div>
Note: See TracChangeset for help on using the changeset viewer.