From a1dfae87ae6048b82e91112d3d992c472b49b7a2 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Mon, 28 Jan 2013 21:11:01 -0800 Subject: xml-parsing: accept 'sitelat' and 'sitelon' for GPS coordinates Are they ugly and insane tags? Yes. Are they used? Bingo. MacDive uses this lovely format for specifying dive site location. Signed-off-by: Linus Torvalds Signed-off-by: Dirk Hohndel --- parse-xml.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/parse-xml.c b/parse-xml.c index e2f84f073..765843fbc 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -1004,8 +1004,12 @@ static void try_to_fill_dive(struct dive *dive, const char *name, char *buf) return; if (MATCH(".latitude", gps_lat, dive)) return; + if (MATCH(".sitelat", gps_lat, dive)) + return; if (MATCH(".longitude", gps_long, dive)) return; + if (MATCH(".sitelon", gps_long, dive)) + return; if (MATCH(".location", utf8_string, &dive->location)) return; if (MATCH("dive.name", utf8_string, &dive->location)) -- cgit v1.2.3-70-g09d2