summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/wsgi/atomutil.py
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2013-08-26 03:04:23 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2013-08-26 03:04:23 +0000
commit7905926c413e843d9497948cb824059f2c017f6a (patch)
tree0f88f849a2b6a170319b9ba22b6434ab586a1283 /sca-cpp/trunk/modules/wsgi/atomutil.py
parent64fed3fe80c115c775d45f9b46f661a4d6043e5a (diff)
Support sorting database search results by rank, and add a rank attribute to ATOM entries.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1517412 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-cpp/trunk/modules/wsgi/atomutil.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sca-cpp/trunk/modules/wsgi/atomutil.py b/sca-cpp/trunk/modules/wsgi/atomutil.py
index d65b26c41c..92ad023449 100644
--- a/sca-cpp/trunk/modules/wsgi/atomutil.py
+++ b/sca-cpp/trunk/modules/wsgi/atomutil.py
@@ -70,7 +70,8 @@ def readATOMFeed(l):
# Convert a list of values representy an ATOM entry to a list of elements
def entryElement(l):
- title = elementValue(namedElementChild("'title", l))
+ etitle = namedElementChild("'title", l)
+ title = elementValue(etitle) if elementHasValue(etitle) else ''
id = elementValue(namedElementChild("'id", l))
content = namedElementChild("'content", l)
text = False if isNull(content) else elementHasValue(content)