Custom Query (2152 matches)
Results (1450 - 1452 of 2152)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1428 | fixed | config options not used or documented | dread | dread |
| Description |
Need to ensure config options in the deployment.ini_tmpl match up with doc/configuration.rst. Remove any unused ones too. |
|||
| #1430 | fixed | Documents get mixed between SOLR cores | amercader | |
| Description |
On some occasions (apparently random), the documents indexed in a specific SOLR core get mixed with different site_ids. E.g: We look for all documents in the testing.iatiregistry.org core, faceted by site_id. We would expect all documents to have site_id = iati_testing, but some of them have site_id = iatiregistry.org <lst name="facet_fields"> <lst name="site_id"> <int name="iati_testing">265</int> <int name="iatiregistry.org">255</int> </lst> </lst> If we compare one of the records which disappeared from the "iati_testing" site_id in both the production and testing SOLR cores of the server, the records are exactly the same, including the indexed_ts property: Note that the response from the URLs shown may vary, as the testing site could have been reindexed. |
|||
| #1431 | fixed | Captcha field - foreign chars cause exception | dread | dread |
| Description |
During registering a user, the user inputs foreign chars into the captcha field. URL: http://thedatahub.org/user/register
...
Module ckan.lib.captcha:22 in check_recaptcha
<< remoteip=client_ip_address,
challenge=recaptcha_challenge_field,
response=recaptcha_response_field))
f = urllib2.urlopen(recaptcha_server_name, params)
data = f.read()
>> response=recaptcha_response_field))
Module urllib:1267 in urlencode
<< for k, v in query:
k = quote_plus(str(k))
v = quote_plus(str(v))
l.append(k + '=' + v)
else:
>> v = quote_plus(str(v))
UnicodeEncodeError: 'ascii' codec can't encode character u'\xea' in position 0: ordinal not in range(128)
|
|||
