Custom Query (2152 matches)
Results (226 - 228 of 2152)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#2512 | fixed | Bad link on demo site. | toby | ross |
Description |
On the group read page http://s031.okserver.org:2375/group/nhs the add dataset button goes to the edit group page instead of the add dataset url. |
|||
#1263 | fixed | Bad name for logic action in API causes Exception | dread | dread |
Description |
A bad action name: e.g. curl http://test.ckan.net/api/action/user_showaa -d '{}' causes 500 response. Occurs only on 1.4.3 beta. |
|||
#2231 | fixed | Base harvester broken on 1.6.1 | amercader | amercader |
Description |
On its current version, ckanext-harvest passed a custom schema to package_create and package_update to allow defining an id for new packages (the same as in remote ckan instances) [1] Recent changes in the logic layer have made that the context object is no longer directly read from the context, but only get from plugins [2]. This makes the schema sent from ckanext-harvest to be ignored and the harvesting fails because the id field is not expected ValidationError: {'Id': u'The input field id was not expected.'} We need a way to either:
[1] https://github.com/okfn/ckanext-harvest/blob/master/ckanext/harvest/harvesters/base.py#L115 [2] https://github.com/okfn/ckan/blob/0c07d3be846777318b35c31325215dff00e99313/ckan/logic/action/create.py#L38 |