|
@@ -22,6 +22,7 @@ answer_xpath = '//pod[attribute::primary="true"]/subpod/plaintext'
|
22
|
22
|
input_xpath = '//pod[starts-with(attribute::id, "Input")]/subpod/plaintext'
|
23
|
23
|
pods_xpath = '//pod'
|
24
|
24
|
subpods_xpath = './subpod'
|
|
25
|
+pod_primary_xpath = './@primary'
|
25
|
26
|
pod_id_xpath = './@id'
|
26
|
27
|
pod_title_xpath = './@title'
|
27
|
28
|
plaintext_xpath = './plaintext'
|
|
@@ -78,10 +79,12 @@ def response(resp):
|
78
|
79
|
infobox_title = None
|
79
|
80
|
|
80
|
81
|
pods = search_results.xpath(pods_xpath)
|
|
82
|
+ result = ""
|
81
|
83
|
result_chunks = []
|
82
|
84
|
for pod in pods:
|
83
|
85
|
pod_id = pod.xpath(pod_id_xpath)[0]
|
84
|
86
|
pod_title = pod.xpath(pod_title_xpath)[0]
|
|
87
|
+ pod_is_result = pod.xpath(pod_primary_xpath)
|
85
|
88
|
|
86
|
89
|
subpods = pod.xpath(subpods_xpath)
|
87
|
90
|
if not subpods:
|
|
@@ -94,6 +97,9 @@ def response(resp):
|
94
|
97
|
|
95
|
98
|
if content and pod_id not in image_pods:
|
96
|
99
|
|
|
100
|
+ if pod_is_result:
|
|
101
|
+ result = content
|
|
102
|
+
|
97
|
103
|
# if no input pod was found, title is first plaintext pod
|
98
|
104
|
if not infobox_title:
|
99
|
105
|
infobox_title = content
|
|
@@ -116,7 +122,7 @@ def response(resp):
|
116
|
122
|
|
117
|
123
|
# append link to site
|
118
|
124
|
results.append({'url': resp.request.headers['Referer'].decode('utf8'),
|
119
|
|
- 'title': 'Wolfram|Alpha',
|
120
|
|
- 'content': infobox_title})
|
|
125
|
+ 'title': infobox_title + ' - Wolfram|Alpha',
|
|
126
|
+ 'content': result})
|
121
|
127
|
|
122
|
128
|
return results
|