From a507e78b106982577a3847760d24c0da0ccb55f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kom=D1=8Fpa?= Date: Tue, 6 Jul 2010 17:55:20 +0300 Subject: [PATCH] MapCSS NE (!=) condition support --- src/mapcss/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/mapcss/__init__.py b/src/mapcss/__init__.py index 7721cc5..ff9fba4 100644 --- a/src/mapcss/__init__.py +++ b/src/mapcss/__init__.py @@ -274,9 +274,12 @@ def parseCondition(s): log.debug("condition unset: %s"%(a)) return Condition('unset' ,a) + if CONDITION_NE.match(s): + a = CONDITION_NE.match(s).groups() + log.debug("condition NE: %s = %s"%(a[0], a[1])) + return Condition('ne' ,a) ## FIXME: convert other conditions to python - #else if ((o=CONDITION_NE.exec(s))) { return new Condition('ne' ,o[1],o[2]); } #else if ((o=CONDITION_GT.exec(s))) { return new Condition('>' ,o[1],o[2]); } #else if ((o=CONDITION_GE.exec(s))) { return new Condition('>=' ,o[1],o[2]); } #else if ((o=CONDITION_LT.exec(s))) { return new Condition('<' ,o[1],o[2]); }