trying to address issue 67 on bad error messages.
This commit is contained in:
parent
ced1d2ba67
commit
2c44867618
|
@ -7,4 +7,4 @@
|
||||||
(provide version)
|
(provide version)
|
||||||
(: version String)
|
(: version String)
|
||||||
|
|
||||||
(define version "1.83")
|
(define version "1.88")
|
||||||
|
|
|
@ -980,6 +980,9 @@
|
||||||
'longitude' : Number(position.coords.longitude) }));
|
'longitude' : Number(position.coords.longitude) }));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
var fail = function(err) {
|
||||||
|
// Quiet failure
|
||||||
|
};
|
||||||
// If we fail while trying to watch the position
|
// If we fail while trying to watch the position
|
||||||
// using high accuracy, switch over to the coarse one.
|
// using high accuracy, switch over to the coarse one.
|
||||||
var onFailSwitchoverToCoerse = function() {
|
var onFailSwitchoverToCoerse = function() {
|
||||||
|
@ -988,9 +991,6 @@
|
||||||
success,
|
success,
|
||||||
fail);
|
fail);
|
||||||
};
|
};
|
||||||
var fail = function(err) {
|
|
||||||
// Quiet failure
|
|
||||||
};
|
|
||||||
if (!!(navigator.geolocation)) {
|
if (!!(navigator.geolocation)) {
|
||||||
navigator.geolocation.getCurrentPosition(success, fail);
|
navigator.geolocation.getCurrentPosition(success, fail);
|
||||||
this.id = navigator.geolocation.watchPosition(
|
this.id = navigator.geolocation.watchPosition(
|
||||||
|
@ -1353,6 +1353,27 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// We keep a cache of valid element names. The only keys here are
|
||||||
|
// those elements whose names are valid. We don't record invalid
|
||||||
|
// ones, since there's an unbound number of those.
|
||||||
|
var validElementNames = {};
|
||||||
|
var isValidElementName = function(name) {
|
||||||
|
if (! (validElementNames.hasOwnProperty(name))) {
|
||||||
|
// Permissive parsing: see that the name is a valid
|
||||||
|
// element type.
|
||||||
|
// Is there a nicer way to do this besides exception
|
||||||
|
// handling?
|
||||||
|
try {
|
||||||
|
document.createElement(name);
|
||||||
|
validElementNames[name] = true;
|
||||||
|
} catch(e) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
// An xexp is one of the following:
|
// An xexp is one of the following:
|
||||||
// xexp :== (name (@ (key value) ...) xexp ...)
|
// xexp :== (name (@ (key value) ...) xexp ...)
|
||||||
// :== (name xexp ...)
|
// :== (name xexp ...)
|
||||||
|
@ -1367,6 +1388,10 @@
|
||||||
}
|
}
|
||||||
if (isList(x) && !(isEmpty(x))) {
|
if (isList(x) && !(isEmpty(x))) {
|
||||||
if (isSymbol(x.first)) {
|
if (isSymbol(x.first)) {
|
||||||
|
if (! isValidElementName(x.first.val)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
children = x.rest;
|
children = x.rest;
|
||||||
// Check the rest of the children. The first is special.
|
// Check the rest of the children. The first is special.
|
||||||
if (isEmpty(children)) {
|
if (isEmpty(children)) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user