git-svn-id: http://svn.openlayers.org/branches/openlayers/2.11@11996 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
/* Copyright (c) 2006-2011 by OpenLayers Contributors (see authors.txt for
|
|
* full list of contributors). Published under the Clear BSD license.
|
|
* See http://svn.openlayers.org/trunk/openlayers/license.txt for the
|
|
* full text of the license. */
|
|
|
|
var OpenLayers = {
|
|
/**
|
|
* Constant: VERSION_NUMBER
|
|
*/
|
|
VERSION_NUMBER: "Release 2.11-rc1",
|
|
|
|
/**
|
|
* Constant: singleFile
|
|
* TODO: remove this in 3.0 when we stop supporting build profiles that
|
|
* include OpenLayers.js
|
|
*/
|
|
singleFile: true,
|
|
|
|
/**
|
|
* Method: _getScriptLocation
|
|
* Return the path to this script. This is also implemented in
|
|
* OpenLayers.js
|
|
*
|
|
* Returns:
|
|
* {String} Path to this script
|
|
*/
|
|
_getScriptLocation: (function() {
|
|
var r = new RegExp("(^|(.*?\\/))(OpenLayers\.js)(\\?|$)"),
|
|
s = document.getElementsByTagName('script'),
|
|
src, m, l = "";
|
|
for(var i=0, len=s.length; i<len; i++) {
|
|
src = s[i].getAttribute('src');
|
|
if(src) {
|
|
var m = src.match(r);
|
|
if(m) {
|
|
l = m[1];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return (function() { return l; });
|
|
})()
|
|
};
|